-- ============================================
-- Database Backup: addsolutions_techwave
-- Generated: 2026-09-04 00:33:47
-- Pure PHP Export (no shell commands)
-- ============================================

SET FOREIGN_KEY_CHECKS=0;
SET NAMES utf8mb4;
SET SQL_MODE='NO_AUTO_VALUE_ON_ZERO';

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

DROP TABLE IF EXISTS `addons`;
CREATE TABLE `addons` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `unique_identifier` varchar(255) DEFAULT NULL,
  `version` varchar(255) DEFAULT NULL,
  `activated` int(1) NOT NULL DEFAULT 1,
  `image` varchar(1000) DEFAULT NULL,
  `purchase_code` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `addons`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `addresses`;
CREATE TABLE `addresses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `address` varchar(255) DEFAULT NULL,
  `country_id` int(11) DEFAULT NULL,
  `state_id` int(11) NOT NULL,
  `city_id` int(11) DEFAULT NULL,
  `longitude` float(17,15) DEFAULT NULL,
  `latitude` float(17,15) DEFAULT NULL,
  `postal_code` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `set_default` int(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `addresses`
-- ----------------------------------------

INSERT INTO `addresses` (`id`, `user_id`, `address`, `country_id`, `state_id`, `city_id`, `longitude`, `latitude`, `postal_code`, `phone`, `set_default`, `created_at`, `updated_at`) VALUES
('1', '22', 'Colombo 5', '206', '3327', '38891', NULL, NULL, '444544', '+94719645680', '0', '2026-08-31 09:25:11', '2026-08-31 09:25:11'),
('2', '50', 'colombo', '206', '3324', '38863', '79.906478881835940', '6.890639781951904', '00500', '+940768965714', '0', '2026-09-01 15:47:29', '2026-09-01 15:47:29');

-- ----------------------------------------
-- Table structure for `app_translations`
-- ----------------------------------------

DROP TABLE IF EXISTS `app_translations`;
CREATE TABLE `app_translations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `lang` varchar(10) DEFAULT NULL,
  `lang_key` varchar(255) DEFAULT NULL,
  `lang_value` varchar(255) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `app_translations`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `attribute_category`
-- ----------------------------------------

DROP TABLE IF EXISTS `attribute_category`;
CREATE TABLE `attribute_category` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL,
  `attribute_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `attribute_category`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `attribute_translations`;
CREATE TABLE `attribute_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `attribute_id` bigint(20) NOT NULL,
  `name` varchar(50) NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `attribute_translations`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `attribute_values`
-- ----------------------------------------

DROP TABLE IF EXISTS `attribute_values`;
CREATE TABLE `attribute_values` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `attribute_id` int(11) NOT NULL,
  `value` varchar(255) NOT NULL,
  `color_code` varchar(100) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `attribute_values`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `attributes`;
CREATE TABLE `attributes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `attributes`
-- ----------------------------------------

INSERT INTO `attributes` (`id`, `name`, `created_at`, `updated_at`) VALUES
('1', 'Size', '2020-02-24 11:25:07', '2020-02-24 11:25:07'),
('2', 'Fabric', '2020-02-24 11:25:13', '2020-02-24 11:25:13');

-- ----------------------------------------
-- Table structure for `blog_categories`
-- ----------------------------------------

DROP TABLE IF EXISTS `blog_categories`;
CREATE TABLE `blog_categories` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_name` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `blog_categories`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `blogs`;
CREATE TABLE `blogs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL,
  `title` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `short_description` text DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `banner` int(11) DEFAULT NULL,
  `meta_title` varchar(255) DEFAULT NULL,
  `meta_img` int(11) DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `meta_keywords` text DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `blogs`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `brand_translations`;
CREATE TABLE `brand_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `brand_id` bigint(20) NOT NULL,
  `name` varchar(50) NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `brand_translations`
-- ----------------------------------------

INSERT INTO `brand_translations` (`id`, `brand_id`, `name`, `lang`, `created_at`, `updated_at`) VALUES
('1', '3', 'HIKVISION', 'en', '2025-09-22 12:35:33', '2025-09-22 12:35:33'),
('2', '4', 'SONOFF', 'en', '2026-05-12 15:06:47', '2026-05-12 15:06:47'),
('3', '5', 'LUVIEW', 'en', '2026-06-19 14:40:22', '2026-08-30 16:37:26'),
('4', '6', 'RENATA', 'en', '2026-08-30 16:24:54', '2026-08-30 16:39:04'),
('5', '7', 'PANASONIC', 'en', '2026-08-30 16:27:16', '2026-08-30 16:38:23'),
('6', '8', 'SANDISK', 'en', '2026-08-30 16:43:48', '2026-08-30 16:43:48');

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

DROP TABLE IF EXISTS `brands`;
CREATE TABLE `brands` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `logo` varchar(100) DEFAULT NULL,
  `top` int(1) NOT NULL DEFAULT 0,
  `slug` varchar(255) DEFAULT NULL,
  `meta_title` varchar(255) DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `brands`
-- ----------------------------------------

INSERT INTO `brands` (`id`, `name`, `logo`, `top`, `slug`, `meta_title`, `meta_description`, `created_at`, `updated_at`) VALUES
('3', 'HIKVISION', '124', '0', 'hikvision-24xpe', 'Hikvision CCTV  Hikvision IP Camera  Hikvision Dome Camera  Hikvision Bullet Camera  Hikvision Security Camera  Hikvision DVR  Hikvision NVR  Hikvision CCTV System  Hikvision Camera Price  Hikvision Authorized Dealer  Hikvision Installation  Hikvision Sur', 'Shop Hikvision CCTV cameras, DVRs, NVRs, and surveillance systems at the best prices. High-quality Hikvision dome & bullet cameras with night vision, HD recording, and advanced security features. Authorized dealer with installation support.\"', '2025-09-22 12:35:33', '2025-09-22 12:39:12'),
('4', 'SONOFF', '192', '0', 'SONOFF-sFfND', NULL, NULL, '2026-05-12 15:06:47', '2026-05-12 15:06:47'),
('5', 'LUVIEW', '195', '0', 'luview-kocjb', 'Luview', NULL, '2026-06-19 14:40:22', '2026-08-30 16:37:26'),
('6', 'RENATA', '210', '0', 'renata-batteries-5xhgb', 'Renata', NULL, '2026-08-30 16:24:54', '2026-08-30 16:39:04'),
('7', 'PANASONIC', '211', '0', 'panasonic-sp9eh', 'Panasonic', NULL, '2026-08-30 16:27:16', '2026-08-30 16:38:23'),
('8', 'SANDISK', '212', '0', 'SANDISK-3D6wb', 'Sandisk', NULL, '2026-08-30 16:43:48', '2026-08-30 16:43:48');

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

DROP TABLE IF EXISTS `business_settings`;
CREATE TABLE `business_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(255) NOT NULL,
  `value` longtext DEFAULT NULL,
  `lang` varchar(30) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=232 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `business_settings`
-- ----------------------------------------

INSERT INTO `business_settings` (`id`, `type`, `value`, `lang`, `created_at`, `updated_at`) VALUES
('1', 'home_default_currency', '1', NULL, '2018-10-16 07:05:52', '2019-01-28 06:56:53'),
('2', 'system_default_currency', '29', NULL, '2018-10-16 07:06:58', '2025-07-22 19:21:48'),
('3', 'currency_format', '1', NULL, '2018-10-17 08:31:59', '2018-10-17 08:31:59'),
('4', 'symbol_format', '1', NULL, '2018-10-17 08:31:59', '2019-01-20 07:40:55'),
('5', 'no_of_decimals', '2', NULL, '2018-10-17 08:31:59', '2020-03-04 06:27:16'),
('6', 'product_activation', '1', NULL, '2018-10-28 07:08:37', '2019-02-04 06:41:41'),
('7', 'vendor_system_activation', '1', NULL, '2018-10-28 13:14:16', '2019-02-04 06:41:38'),
('8', 'show_vendors', '1', NULL, '2018-10-28 13:14:47', '2019-02-04 06:41:13'),
('11', 'cash_payment', '1', NULL, '2018-10-28 13:16:05', '2019-01-24 09:10:18'),
('12', 'payumoney_payment', '0', NULL, '2018-10-28 13:16:27', '2019-03-05 11:11:36'),
('13', 'best_selling', '1', NULL, '2018-12-24 13:43:44', '2019-02-14 10:59:13'),
('14', 'paypal_sandbox', '0', NULL, '2019-01-16 18:14:18', '2019-01-16 18:14:18'),
('15', 'sslcommerz_sandbox', '1', NULL, '2019-01-16 18:14:18', '2019-03-14 05:37:26'),
('17', 'vendor_commission', '20', NULL, '2019-01-31 11:48:04', '2019-04-13 12:19:26'),
('18', 'verification_form', '[{\"type\":\"text\",\"label\":\"Your name\"},{\"type\":\"text\",\"label\":\"Shop name\"},{\"type\":\"text\",\"label\":\"Email\"},{\"type\":\"text\",\"label\":\"License No\"},{\"type\":\"text\",\"label\":\"Full Address\"},{\"type\":\"text\",\"label\":\"Phone Number\"},{\"type\":\"file\",\"label\":\"Tax Papers\"}]', NULL, '2019-02-03 17:06:58', '2019-02-16 11:44:42'),
('19', 'google_analytics', '0', NULL, '2019-02-06 17:52:35', '2019-02-06 17:52:35'),
('20', 'facebook_login', '1', NULL, '2019-02-07 18:21:59', '2025-08-07 19:25:30'),
('21', 'google_login', '1', NULL, '2019-02-07 18:22:10', '2025-08-07 19:25:28'),
('22', 'twitter_login', '0', NULL, '2019-02-07 18:22:20', '2019-02-08 08:02:56'),
('23', 'payumoney_payment', '1', NULL, '2019-03-05 17:08:17', '2019-03-05 17:08:17'),
('24', 'payumoney_sandbox', '1', NULL, '2019-03-05 17:08:17', '2019-03-05 11:09:18'),
('36', 'facebook_chat', '0', NULL, '2019-04-15 17:15:04', '2019-04-15 17:15:04'),
('37', 'email_verification', '0', NULL, '2019-04-30 13:00:07', '2019-04-30 13:00:07'),
('38', 'wallet_system', '0', NULL, '2019-05-19 13:35:44', '2019-05-19 07:41:57'),
('39', 'coupon_system', '0', NULL, '2019-06-11 15:16:18', '2019-06-11 15:16:18'),
('40', 'current_version', '9.6', NULL, '2019-06-11 15:16:18', '2019-06-11 15:16:18'),
('42', 'instamojo_sandbox', '1', NULL, '2019-07-06 15:28:43', '2019-07-06 15:28:43'),
('45', 'pickup_point', '0', NULL, '2019-10-17 17:20:39', '2019-10-17 17:20:39'),
('46', 'maintenance_mode', '0', NULL, '2019-10-17 17:21:04', '2025-07-21 15:35:54'),
('48', 'voguepay_sandbox', '0', NULL, '2019-10-17 17:21:38', '2019-10-17 17:21:38'),
('50', 'category_wise_commission', '0', NULL, '2020-01-21 12:52:47', '2020-01-21 12:52:47'),
('51', 'conversation_system', '1', NULL, '2020-01-21 12:53:21', '2020-01-21 12:53:21'),
('52', 'guest_checkout_active', '1', NULL, '2020-01-22 13:06:38', '2020-01-22 13:06:38'),
('53', 'facebook_pixel', '0', NULL, '2020-01-22 17:13:58', '2020-01-22 17:13:58'),
('55', 'classified_product', '0', NULL, '2020-05-13 18:31:05', '2020-05-13 18:31:05'),
('56', 'pos_activation_for_seller', '1', NULL, '2020-06-11 15:15:02', '2020-06-11 15:15:02'),
('57', 'shipping_type', 'product_wise_shipping', NULL, '2020-07-01 19:19:56', '2020-07-01 19:19:56'),
('58', 'flat_rate_shipping_cost', '0', NULL, '2020-07-01 19:19:56', '2020-07-01 19:19:56'),
('59', 'shipping_cost_admin', '0', NULL, '2020-07-01 19:19:56', '2020-07-01 19:19:56'),
('60', 'payhere_sandbox', '0', NULL, '2020-07-30 23:53:53', '2020-07-30 23:53:53'),
('62', 'google_recaptcha', '0', NULL, '2020-08-17 12:43:37', '2020-08-17 12:43:37'),
('64', 'header_logo', '17', NULL, '2020-11-16 12:56:36', '2025-08-22 12:33:13'),
('65', 'show_language_switcher', 'on', NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('66', 'show_currency_switcher', 'on', NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('67', 'header_stikcy', 'on', NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('68', 'footer_logo', '111', NULL, '2020-11-16 12:56:36', '2025-11-18 13:09:06'),
('69', 'about_us_description', NULL, NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('70', 'contact_address', NULL, NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('71', 'contact_phone', '0778826828', NULL, '2020-11-16 12:56:36', '2025-12-02 16:44:04'),
('72', 'contact_email', 'info@techwave.lk', NULL, '2020-11-16 12:56:36', '2025-09-06 09:21:58'),
('73', 'widget_one_labels', NULL, NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('74', 'widget_one_links', '[\"www.techwave.lk\"]', NULL, '2020-11-16 12:56:36', '2025-09-06 09:42:24'),
('75', 'widget_one', NULL, NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('76', 'frontend_copyright_text', NULL, NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('77', 'show_social_links', NULL, NULL, '2020-11-16 12:56:36', '2025-11-18 13:14:56'),
('78', 'facebook_link', 'facbook.techwavw.com', NULL, '2020-11-16 12:56:36', '2025-09-06 09:23:29'),
('79', 'twitter_link', 'twitter.tachwave.com', NULL, '2020-11-16 12:56:36', '2025-09-06 09:25:33'),
('80', 'instagram_link', 'insta.techwave.com', NULL, '2020-11-16 12:56:36', '2025-09-06 09:25:33'),
('81', 'youtube_link', 'youtube.techwave.com', NULL, '2020-11-16 12:56:36', '2025-09-06 09:25:33'),
('82', 'linkedin_link', 'linkdin.techwave.com', NULL, '2020-11-16 12:56:36', '2025-09-06 09:25:33'),
('83', 'payment_method_images', NULL, NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('84', 'home_slider_images', '[\"112\",\"106\"]', 'en', '2020-11-16 12:56:36', '2025-09-09 21:24:49'),
('85', 'home_slider_links', '[null,null]', 'en', '2020-11-16 12:56:36', '2025-09-06 09:04:19'),
('86', 'home_banner1_images', '[\"100\"]', 'en', '2020-11-16 12:56:36', '2025-11-19 11:37:51'),
('87', 'home_banner1_links', '[null]', 'en', '2020-11-16 12:56:36', '2025-11-19 11:37:51'),
('88', 'home_banner2_images', NULL, 'en', '2020-11-16 12:56:36', '2025-09-06 09:11:54'),
('89', 'home_banner2_links', NULL, 'en', '2020-11-16 12:56:36', '2025-09-06 09:11:54'),
('90', 'home_categories', NULL, NULL, '2020-11-16 12:56:36', '2025-11-18 14:25:56'),
('91', 'top10_categories', '[]', NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('92', 'top10_brands', '[]', NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('93', 'website_name', 'Techwave', NULL, '2020-11-16 12:56:36', '2024-11-26 07:19:56'),
('94', 'site_motto', 'Upgrade to the Next Dimension of Computing', NULL, '2020-11-16 12:56:36', '2024-11-26 07:19:56'),
('95', 'site_icon', '190', NULL, '2020-11-16 12:56:36', '2025-11-19 12:35:52'),
('96', 'base_color', '#fcb001', NULL, '2020-11-16 12:56:36', '2025-08-07 19:48:22'),
('97', 'base_hov_color', NULL, NULL, '2020-11-16 12:56:36', '2025-08-07 19:52:12'),
('98', 'meta_title', 'Techwave.lk | Electrical, Electronic, Automation & Computer Items Online in Sri Lanka', NULL, '2020-11-16 12:56:36', '2025-09-09 19:39:27'),
('99', 'meta_description', 'Shop at Techwave.lk for the best range of electrical, electronic, automation products, computers, and laptops in Sri Lanka. Affordable prices, trusted brands, and fast delivery nationwide.', NULL, '2020-11-16 12:56:36', '2025-09-09 19:39:27'),
('100', 'meta_keywords', 'Techwave.lk, electronics Sri Lanka, buy laptops online, computer accessories, electrical items, automation products, electronic components, IT products, laptops Sri Lanka, online electronics store, tech shop Sri Lanka', NULL, '2020-11-16 12:56:36', '2025-09-09 19:39:27'),
('101', 'meta_image', NULL, NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('102', 'site_name', 'Techwave', NULL, '2020-11-16 12:56:36', '2024-11-26 07:19:56'),
('103', 'system_logo_white', '17', NULL, '2020-11-16 12:56:36', '2025-09-09 21:05:38'),
('104', 'system_logo_black', '111', NULL, '2020-11-16 12:56:36', '2025-09-09 21:16:13'),
('105', 'timezone', NULL, NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('106', 'admin_login_background', NULL, NULL, '2020-11-16 12:56:36', '2020-11-16 12:56:36'),
('107', 'iyzico_sandbox', '1', NULL, '2020-12-30 22:15:56', '2020-12-30 22:15:56'),
('109', 'decimal_separator', '1', NULL, '2020-12-30 22:15:56', '2020-12-30 22:15:56'),
('112', 'bkash_sandbox', '1', NULL, '2021-01-22 16:00:03', '2021-01-22 16:00:03'),
('113', 'header_menu_labels', '[\"Home\",\"Flash Sale\",\"All Brands\",\"All Categories\",null]', NULL, '2021-02-16 08:13:11', '2025-11-19 12:29:01'),
('114', 'header_menu_links', '[\"https:\\/\\/techwave.lk\",\"https:\\/\\/techwave.lk\\/flash-deals\",\"https:\\/\\/techwave.lk\\/brands\",\"https:\\/\\/techwave.lk\\/categories\",null]', NULL, '2021-02-16 08:13:11', '2025-11-19 15:12:00'),
('115', 'proxypay', '1', NULL, '2021-06-20 16:55:42', '2021-06-20 16:55:42'),
('116', 'proxypay_sandbox', '1', NULL, '2021-06-20 16:55:42', '2021-06-20 16:55:42'),
('117', 'google_map', '1', NULL, '2021-07-27 21:19:39', '2025-08-07 19:19:59'),
('118', 'google_firebase', '0', NULL, '2021-07-27 21:19:39', '2021-07-27 21:19:39'),
('119', 'authorizenet_sandbox', '1', NULL, '2021-02-16 08:13:11', '2021-06-14 10:30:23'),
('120', 'min_order_amount_check_activat', NULL, NULL, '2022-04-17 12:27:17', '2022-04-17 12:27:17'),
('121', 'minimum_order_amount', NULL, NULL, '2022-04-17 12:27:17', '2022-04-17 12:27:17'),
('122', 'item_name', 'eCommerce', NULL, '2022-04-17 12:27:17', '2022-04-17 12:27:17'),
('124', 'aamarpay_sandbox', '0', NULL, '2022-04-17 12:27:17', '2022-04-17 12:27:17'),
('125', 'secondary_base_color', '#13814C', NULL, '2023-11-19 15:15:29', '2023-11-19 15:15:29'),
('126', 'secondary_base_hov_color', '#0f6f41', NULL, '2023-11-19 15:15:29', '2023-11-19 15:15:29'),
('127', 'header_nav_menu_text', 'dark', NULL, '2023-11-19 15:15:29', '2025-08-14 08:41:17'),
('128', 'homepage_select', 'megamart', NULL, '2023-11-19 15:15:29', '2025-08-22 11:28:24'),
('129', 'todays_deal_section_bg', '0', NULL, '2023-11-19 15:15:29', '2023-11-19 15:15:29'),
('130', 'todays_deal_section_bg_color', '#3d4666', NULL, '2023-11-19 15:15:29', '2023-11-19 15:15:29'),
('131', 'flash_deal_bg_color', '#d33533', NULL, '2023-11-19 15:15:29', '2023-11-19 15:15:29'),
('132', 'flash_deal_bg_full_width', NULL, NULL, '2023-11-19 15:15:29', '2024-11-27 09:50:57'),
('133', 'flash_deal_banner_menu_text', 'dark', NULL, '2023-11-19 15:15:29', '2025-08-31 09:07:20'),
('134', 'todays_deal_banner_text_color', 'light', NULL, '2023-11-19 15:15:29', '2023-11-19 15:15:29'),
('135', 'coupon_background_image', NULL, NULL, '2023-11-19 15:15:29', '2023-11-19 15:15:29'),
('136', 'admin_login_page_image', '185', NULL, '2023-12-11 15:25:33', '2025-11-19 11:30:11'),
('137', 'customer_login_page_image', '185', NULL, '2023-12-11 15:25:33', '2025-11-19 11:30:11'),
('138', 'customer_register_page_image', '185', NULL, '2023-12-11 15:25:33', '2025-11-19 11:30:11'),
('139', 'seller_login_page_image', '185', NULL, '2023-12-11 15:25:33', '2025-11-19 11:30:11'),
('140', 'seller_register_page_image', '185', NULL, '2023-12-11 15:25:33', '2025-11-19 11:30:11'),
('141', 'delivery_boy_login_page_image', NULL, NULL, '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('142', 'forgot_password_page_image', '185', NULL, '2023-12-11 15:25:33', '2025-11-19 11:30:11'),
('143', 'password_reset_page_image', '185', NULL, '2023-12-11 15:25:33', '2025-11-19 11:30:11'),
('144', 'phone_number_verify_page_image', NULL, NULL, '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('145', 'authentication_layout_select', 'boxed', NULL, '2023-12-11 15:25:33', '2025-11-19 10:55:01'),
('146', 'flash_deal_card_bg_image', NULL, 'en', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('147', 'flash_deal_card_bg_title', NULL, 'en', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('148', 'flash_deal_card_bg_subtitle', NULL, 'en', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('149', 'flash_deal_card_text', NULL, NULL, '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('150', 'todays_deal_card_bg_image', NULL, 'en', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('151', 'todays_deal_card_bg_title', NULL, 'en', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('152', 'todays_deal_card_bg_subtitle', NULL, 'en', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('153', 'todays_deal_card_text', NULL, NULL, '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('154', 'new_product_card_bg_image', NULL, 'en', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('155', 'new_product_card_bg_title', NULL, 'en', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('156', 'new_product_card_bg_subtitle', NULL, 'en', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('157', 'new_product_card_text', NULL, NULL, '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('158', 'featured_categories_text', 'dark', NULL, '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('159', 'guest_checkout_activation', '0', NULL, '2024-03-05 18:05:24', '2024-03-05 18:05:24'),
('160', 'slider_section_full_width', '1', NULL, '2024-03-19 11:42:16', '2025-09-09 19:52:09'),
('161', 'slider_section_bg_color', '#ffffff', NULL, '2024-03-19 11:42:16', '2025-09-09 19:52:09'),
('162', 'home_banner4_images', NULL, 'en', '2024-03-19 11:42:16', '2024-03-19 11:42:16'),
('163', 'home_banner4_links', NULL, 'en', '2024-03-19 11:42:16', '2024-03-19 11:42:16'),
('164', 'home_banner5_images', NULL, 'en', '2024-03-19 11:42:16', '2024-03-19 11:42:16'),
('165', 'home_banner5_links', NULL, 'en', '2024-03-19 11:42:16', '2024-03-19 11:42:16'),
('166', 'home_banner6_images', NULL, 'en', '2024-03-19 11:42:16', '2024-03-19 11:42:16'),
('167', 'home_banner6_links', NULL, 'en', '2024-03-19 11:42:16', '2024-03-19 11:42:16'),
('168', 'last_viewed_product_activation', '1', NULL, '2024-04-02 12:29:06', '2024-04-02 12:29:06'),
('169', 'custom_alert_location', 'bottom-left', NULL, '2024-04-03 09:00:20', '2024-04-03 09:00:20'),
('170', 'notification_show_type', 'only_text', NULL, '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('171', 'cupon_text_color', 'dark', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('172', 'flash_deal_section_outline', '0', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('173', 'flash_deal_section_outline_color', '#000000', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('174', 'featured_section_bg_color', '#ffffff', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('175', 'featured_section_outline', '1', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('176', 'featured_section_outline_color', '#dfdfe6', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('177', 'best_selling_section_bg_color', '#ffffff', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('178', 'best_selling_section_outline', '1', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('179', 'best_selling_section_outline_color', '#dfdfe6', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('180', 'new_products_section_bg_color', '#f5f5f5', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('181', 'new_products_section_outline', '0', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('182', 'new_products_section_outline_color', '#000000', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('183', 'home_categories_section_bg_color', '#f2f4f5', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('184', 'home_categories_content_bg_color', '#ffffff', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('185', 'home_categories_content_outline', '0', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('186', 'home_categories_content_outline_color', '#000000', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('187', 'classified_section_bg_color', '#fff9ed', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('188', 'classified_section_outline', '0', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('189', 'classified_section_outline_color', '#000000', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('190', 'sellers_section_bg_color', '#fff9ed', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('191', 'sellers_section_outline', '0', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('192', 'sellers_section_outline_color', '#000000', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('193', 'brands_section_bg_color', '#f0f2f5', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('194', 'brands_section_outline', '0', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('195', 'brands_section_outline_color', '#000000', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('196', 'uploaded_image_format', 'default', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47'),
('197', 'product_external_link_for_seller', '1', NULL, '2024-08-22 11:15:04', '2024-08-22 11:15:04'),
('198', 'use_floating_buttons', '1', NULL, '2024-08-22 11:15:04', '2024-08-22 11:15:04'),
('199', 'seller_commission_type', 'fixed_rate', NULL, '2024-08-22 11:15:04', '2024-08-22 11:15:04'),
('200', 'purchase_code', '282e947b-dc67-4480-b107-d4978e1921e0', NULL, '2024-11-26 06:33:15', '2024-11-26 06:33:15'),
('201', 'flash_deal_banner', NULL, NULL, '2024-11-26 12:52:30', '2024-11-26 12:52:30'),
('202', 'flash_deal_banner_small', NULL, NULL, '2024-11-26 12:52:30', '2024-11-26 12:52:30'),
('203', 'frontend_copyright_text', NULL, 'en', '2024-11-27 10:07:43', '2024-11-27 10:07:43'),
('204', 'seller_app_link', NULL, NULL, '2024-11-27 10:07:43', '2024-11-27 10:07:43'),
('205', 'topbar_banner', NULL, NULL, '2025-07-21 15:41:24', '2025-07-21 15:41:24'),
('206', 'topbar_banner_medium', NULL, NULL, '2025-07-21 15:41:24', '2025-07-21 15:41:24'),
('207', 'topbar_banner_small', NULL, NULL, '2025-07-21 15:41:24', '2025-07-21 15:41:24'),
('208', 'topbar_banner_link', NULL, NULL, '2025-07-21 15:41:24', '2025-07-21 15:41:24'),
('209', 'helpline_number', '0778826828', NULL, '2025-07-21 15:41:24', '2025-12-02 16:43:28'),
('210', 'top_brands', '[\"3\",\"4\",\"5\",\"6\",\"7\",\"8\"]', NULL, '2025-08-07 18:50:44', '2026-08-30 16:44:27'),
('211', 'google_map_longtitude', '79.88805800796312', NULL, '2025-08-07 19:21:19', '2025-08-07 19:21:19'),
('212', 'google_map_latitude', '6.890214389063028', NULL, '2025-08-07 19:21:19', '2025-08-07 19:21:19'),
('213', 'apple_login', '1', NULL, '2025-08-07 19:25:33', '2025-08-07 19:25:33'),
('214', 'color_filter_activation', '0', NULL, '2025-08-07 19:27:31', '2025-08-07 19:27:39'),
('215', 'use_image_watermark', NULL, NULL, '2025-08-07 19:40:44', '2025-11-18 16:10:17'),
('216', 'image_watermark_type', 'text', NULL, '2025-08-07 19:40:44', '2025-09-03 19:56:25'),
('217', 'watermark_image', NULL, NULL, '2025-08-07 19:40:44', '2025-09-03 19:56:25'),
('218', 'watermark_text', 'TECHWAVE.LK', NULL, '2025-08-07 19:40:44', '2025-09-22 12:31:37'),
('219', 'watermark_text_size', '55', NULL, '2025-08-07 19:40:44', '2025-08-07 20:06:39'),
('220', 'watermark_text_color', '#fdd926', NULL, '2025-08-07 19:40:44', '2025-09-03 20:00:39'),
('221', 'watermark_position', 'center', NULL, '2025-08-07 19:40:44', '2025-09-22 12:30:49'),
('222', 'footer_title', NULL, 'en', '2025-09-06 09:17:01', '2025-09-06 09:23:42'),
('223', 'footer_description', NULL, 'en', '2025-09-06 09:17:01', '2025-09-06 09:17:01'),
('224', 'contact_address', NULL, 'en', '2025-09-06 09:21:58', '2025-09-12 22:24:28'),
('225', 'about_us_description', '<i><b>                                        INNOVATION IN EVERY CONNECTION.</b></i>', 'en', '2025-09-06 09:30:33', '2025-09-06 09:35:12'),
('226', 'play_store_link', NULL, NULL, '2025-09-06 09:30:33', '2025-09-06 09:30:33'),
('227', 'app_store_link', NULL, NULL, '2025-09-06 09:30:33', '2025-09-06 09:30:33'),
('228', 'widget_one', 'About us:', 'en', '2025-09-06 09:36:04', '2025-09-06 09:38:21'),
('229', 'widget_one_labels', '[\"techwave.lk the future electronic seller in sri lanka\"]', 'en', '2025-09-06 09:36:04', '2025-09-06 09:45:47'),
('230', 'header_script', NULL, NULL, '2025-09-09 19:38:54', '2025-09-09 19:38:54'),
('231', 'footer_script', NULL, NULL, '2025-09-09 19:38:54', '2025-09-09 19:38:54');

-- ----------------------------------------
-- Table structure for `carrier_range_prices`
-- ----------------------------------------

DROP TABLE IF EXISTS `carrier_range_prices`;
CREATE TABLE `carrier_range_prices` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `carrier_id` int(11) NOT NULL,
  `carrier_range_id` int(11) NOT NULL,
  `zone_id` int(11) NOT NULL,
  `price` double(8,2) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `carrier_range_prices`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `carrier_ranges`
-- ----------------------------------------

DROP TABLE IF EXISTS `carrier_ranges`;
CREATE TABLE `carrier_ranges` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `carrier_id` int(11) NOT NULL,
  `billing_type` varchar(20) NOT NULL,
  `delimiter1` double(25,2) NOT NULL,
  `delimiter2` double(25,2) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `carrier_ranges`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `carriers`
-- ----------------------------------------

DROP TABLE IF EXISTS `carriers`;
CREATE TABLE `carriers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `logo` int(11) DEFAULT NULL,
  `transit_time` varchar(255) NOT NULL,
  `free_shipping` tinyint(1) NOT NULL DEFAULT 0,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `carriers`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `carts`;
CREATE TABLE `carts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  `owner_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `temp_user_id` varchar(255) DEFAULT NULL,
  `address_id` int(11) NOT NULL DEFAULT 0,
  `product_id` int(11) DEFAULT NULL,
  `variation` text DEFAULT NULL,
  `price` double(20,2) DEFAULT 0.00,
  `tax` double(20,2) DEFAULT 0.00,
  `shipping_cost` double(20,2) NOT NULL DEFAULT 0.00,
  `shipping_type` varchar(30) NOT NULL DEFAULT '',
  `pickup_point` int(11) DEFAULT NULL,
  `carrier_id` int(11) DEFAULT NULL,
  `discount` double(10,2) NOT NULL DEFAULT 0.00,
  `product_referral_code` varchar(255) DEFAULT NULL,
  `coupon_code` varchar(255) DEFAULT NULL,
  `coupon_applied` tinyint(4) NOT NULL DEFAULT 0,
  `quantity` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `carts`
-- ----------------------------------------

INSERT INTO `carts` (`id`, `status`, `owner_id`, `user_id`, `temp_user_id`, `address_id`, `product_id`, `variation`, `price`, `tax`, `shipping_cost`, `shipping_type`, `pickup_point`, `carrier_id`, `discount`, `product_referral_code`, `coupon_code`, `coupon_applied`, `quantity`, `created_at`, `updated_at`) VALUES
('4', '1', '9', '19', NULL, '0', '30', NULL, '850.00', '0.00', '0.00', 'home_delivery', NULL, NULL, '0.00', NULL, NULL, '0', '1', '2025-10-15 15:46:23', '2025-10-15 15:46:33'),
('5', '1', '9', '41', NULL, '0', '14', NULL, '90.00', '0.00', '0.00', 'home_delivery', NULL, NULL, '0.00', NULL, NULL, '0', '1', '2026-04-07 18:08:00', '2026-04-07 18:08:15'),
('6', '1', '9', '44', NULL, '0', '22', NULL, '4850.00', '0.00', '0.00', 'home_delivery', NULL, NULL, '0.00', NULL, NULL, '0', '1', '2026-05-07 10:32:28', '2026-05-07 10:33:26'),
('7', '1', '9', '46', NULL, '0', '39', NULL, '200.00', '0.00', '0.00', 'home_delivery', NULL, NULL, '0.00', NULL, NULL, '0', '1', '2026-05-26 12:30:39', '2026-05-26 12:38:37'),
('8', '1', '9', '49', NULL, '0', '27', NULL, '7200.00', '0.00', '0.00', 'home_delivery', NULL, NULL, '0.00', NULL, NULL, '0', '1', '2026-06-19 17:29:41', '2026-06-20 09:10:20'),
('9', '1', '9', '49', NULL, '0', '21', NULL, '63.00', '0.00', '0.00', 'home_delivery', NULL, NULL, '0.00', NULL, NULL, '0', '1', '2026-06-20 09:10:03', '2026-06-20 09:10:20'),
('11', '1', '9', '53', NULL, '0', '16', NULL, '28.00', '0.00', '0.00', 'home_delivery', NULL, NULL, '0.00', NULL, NULL, '0', '1', '2026-07-27 10:40:23', '2026-07-27 10:40:31'),
('15', '1', '9', '50', NULL, '0', '14', NULL, '90.00', '0.00', '0.00', '', NULL, NULL, '0.00', NULL, NULL, '0', '1', '2026-09-02 10:23:48', '2026-09-02 10:23:48');

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

DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) DEFAULT 0,
  `level` int(11) NOT NULL DEFAULT 0,
  `name` varchar(50) NOT NULL,
  `order_level` int(11) NOT NULL DEFAULT 0,
  `commision_rate` double(8,2) NOT NULL DEFAULT 0.00,
  `banner` varchar(100) DEFAULT NULL,
  `icon` varchar(100) DEFAULT NULL,
  `cover_image` varchar(100) DEFAULT NULL,
  `featured` int(1) NOT NULL DEFAULT 0,
  `top` int(1) NOT NULL DEFAULT 0,
  `digital` int(1) NOT NULL DEFAULT 0,
  `slug` varchar(255) DEFAULT NULL,
  `meta_title` varchar(255) DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `slug` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `categories`
-- ----------------------------------------

INSERT INTO `categories` (`id`, `parent_id`, `level`, `name`, `order_level`, `commision_rate`, `banner`, `icon`, `cover_image`, `featured`, `top`, `digital`, `slug`, `meta_title`, `meta_description`, `created_at`, `updated_at`) VALUES
('4', '0', '0', 'Electronic component', '0', '0.00', '162', '177', '162', '1', '0', '0', 'electronic-component-ebuq7', NULL, NULL, '2025-11-18 16:11:10', '2025-11-18 16:11:10'),
('5', '4', '1', 'SMD Component', '0', '0.00', '163', NULL, NULL, '1', '0', '0', 'smd-component-kxeky', NULL, NULL, '2025-11-09 13:34:07', '2025-11-09 13:34:07'),
('6', '0', '0', 'Battery', '0', '0.00', '161', '178', NULL, '1', '0', '0', 'battery-omcm1', NULL, NULL, '2025-11-18 16:15:23', '2025-11-18 16:15:23'),
('7', '0', '0', 'CCTV & Cabling', '0', '0.00', '160', '179', NULL, '1', '0', '0', 'cctv--cabling-omfka', NULL, NULL, '2026-06-21 22:42:34', '2026-06-21 22:42:34'),
('8', '0', '0', 'Computer Accessories', '0', '0.00', '166', '180', NULL, '1', '0', '0', 'computer-accesorice-xsr8n', NULL, NULL, '2026-06-22 08:52:19', '2026-06-22 08:52:19'),
('9', '0', '0', 'CNC Machine parts', '0', '0.00', '167', '183', NULL, '1', '0', '0', 'cnc-machine-parts-qlbtb', NULL, NULL, '2025-11-18 16:32:46', '2025-11-18 16:32:46'),
('10', '0', '0', 'Motors', '0', '0.00', '168', '182', NULL, '1', '0', '0', 'moters-nbot8', NULL, NULL, '2026-06-21 22:44:24', '2026-06-21 22:44:24'),
('11', '10', '1', 'AC MOTORS', '0', '0.00', NULL, NULL, NULL, '0', '0', '0', 'ac-moters-n25ap', NULL, NULL, '2025-11-13 10:52:27', '2025-11-13 10:52:27'),
('12', '10', '1', 'DC MOTORS', '0', '0.00', NULL, NULL, NULL, '0', '0', '0', 'dc-moters-lmocz', NULL, NULL, '2025-11-13 10:52:27', '2025-11-13 10:52:27'),
('13', '10', '1', 'STEP MOT0RS', '0', '0.00', NULL, NULL, NULL, '0', '0', '0', 'STEP-MOT0RS-8EYOm', NULL, NULL, '2025-11-13 10:52:21', '2025-11-13 10:52:21'),
('14', '10', '1', 'SERVO MOTORS', '0', '0.00', NULL, NULL, NULL, '0', '0', '0', 'SERVO-MOTORS-eftjP', NULL, NULL, '2025-11-13 10:52:21', '2025-11-13 10:52:21');

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

DROP TABLE IF EXISTS `category_translations`;
CREATE TABLE `category_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `category_id` bigint(20) NOT NULL,
  `name` varchar(50) NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `category_translations`
-- ----------------------------------------

INSERT INTO `category_translations` (`id`, `category_id`, `name`, `lang`, `created_at`, `updated_at`) VALUES
('1', '4', 'Electronic component', 'en', '2025-09-03 15:44:48', '2025-09-03 15:44:48'),
('2', '5', 'SMD Component', 'en', '2025-09-03 20:07:42', '2025-09-03 20:07:42'),
('3', '6', 'Battery', 'en', '2025-09-10 01:47:05', '2025-09-10 01:47:05'),
('4', '7', 'CCTV & Cabling', 'en', '2025-09-22 12:33:54', '2026-06-21 22:42:34'),
('5', '8', 'Computer Accessories', 'en', '2025-09-22 13:16:17', '2026-06-22 08:52:19'),
('6', '9', 'CNC Machine parts', 'en', '2025-09-23 09:40:23', '2025-09-23 09:40:23'),
('7', '10', 'Motors', 'en', '2025-09-23 12:21:16', '2026-06-21 22:44:24'),
('8', '11', 'AC MOTORS', 'en', '2025-09-23 12:21:47', '2025-09-23 12:24:28'),
('9', '12', 'DC MOTORS', 'en', '2025-09-23 12:22:13', '2025-09-23 12:26:21'),
('10', '13', 'STEP MOT0RS', 'en', '2025-09-23 12:23:25', '2025-09-23 12:23:25'),
('11', '14', 'SERVO MOTORS', 'en', '2025-09-23 12:23:59', '2025-09-23 12:23:59');

-- ----------------------------------------
-- Table structure for `cities`
-- ----------------------------------------

DROP TABLE IF EXISTS `cities`;
CREATE TABLE `cities` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `state_id` int(11) NOT NULL,
  `cost` double(20,2) NOT NULL DEFAULT 0.00,
  `status` int(11) NOT NULL DEFAULT 1,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=48357 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `cities`
-- ----------------------------------------

INSERT INTO `cities` (`id`, `name`, `state_id`, `cost`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES
('1', 'Sed ea dolore offici', '1', '0.00', '1', '2021-04-06 06:43:42', '2021-10-11 06:21:51', NULL),
('2', 'Garacharma', '1', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3', 'Port Blair', '1', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4', 'Rangat', '1', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('5', 'Addanki', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('6', 'Adivivaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('7', 'Adoni', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('8', 'Aganampudi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('9', 'Ajjaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('10', 'Akividu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('11', 'Akkarampalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('12', 'Akkayapalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('13', 'Akkireddipalem', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('14', 'Alampur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('15', 'Amalapuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('16', 'Amudalavalasa', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('17', 'Amur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('18', 'Anakapalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('19', 'Anantapur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('20', 'Andole', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('21', 'Atmakur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('22', 'Attili', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('23', 'Avanigadda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('24', 'Badepalli', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('25', 'Badvel', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('26', 'Balapur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('27', 'Bandarulanka', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('28', 'Banganapalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('29', 'Bapatla', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('30', 'Bapulapadu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('31', 'Belampalli', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('32', 'Bestavaripeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('33', 'Betamcherla', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('34', 'Bhattiprolu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('35', 'Bhimavaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('36', 'Bhimunipatnam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('37', 'Bobbili', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('38', 'Bombuflat', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('39', 'Bommuru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('40', 'Bugganipalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('41', 'Challapalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('42', 'Chandur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('43', 'Chatakonda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('44', 'Chemmumiahpet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('45', 'Chidiga', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('46', 'Chilakaluripet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('47', 'Chimakurthy', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('48', 'Chinagadila', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('49', 'Chinagantyada', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('50', 'Chinnachawk', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('51', 'Chintalavalasa', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('52', 'Chipurupalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('53', 'Chirala', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('54', 'Chittoor', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('55', 'Chodavaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('56', 'Choutuppal', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('57', 'Chunchupalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('58', 'Cuddapah', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('59', 'Cumbum', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('60', 'Darnakal', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('61', 'Dasnapur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('62', 'Dauleshwaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('63', 'Dharmavaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('64', 'Dhone', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('65', 'Dommara Nandyal', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('66', 'Dowlaiswaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('67', 'East Godavari Dist.', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('68', 'Eddumailaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('69', 'Edulapuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('70', 'Ekambara kuppam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('71', 'Eluru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('72', 'Enikapadu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('73', 'Fakirtakya', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('74', 'Farrukhnagar', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('75', 'Gaddiannaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('76', 'Gajapathinagaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('77', 'Gajularega', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('78', 'Gajuvaka', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('79', 'Gannavaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('80', 'Garacharma', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('81', 'Garimellapadu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('82', 'Giddalur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('83', 'Godavarikhani', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('84', 'Gopalapatnam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('85', 'Gopalur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('86', 'Gorrekunta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('87', 'Gudivada', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('88', 'Gudur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('89', 'Guntakal', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('90', 'Guntur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('91', 'Guti', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('92', 'Hindupur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('93', 'Hukumpeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('94', 'Ichchapuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('95', 'Isnapur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('96', 'Jaggayyapeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('97', 'Jallaram Kamanpur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('98', 'Jammalamadugu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('99', 'Jangampalli', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('100', 'Jarjapupeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('101', 'Kadiri', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('102', 'Kaikalur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('103', 'Kakinada', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('104', 'Kallur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('105', 'Kalyandurg', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('106', 'Kamalapuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('107', 'Kamareddi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('108', 'Kanapaka', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('109', 'Kanigiri', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('110', 'Kanithi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('111', 'Kankipadu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('112', 'Kantabamsuguda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('113', 'Kanuru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('114', 'Karnul', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('115', 'Katheru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('116', 'Kavali', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('117', 'Kazipet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('118', 'Khanapuram Haveli', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('119', 'Kodar', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('120', 'Kollapur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('121', 'Kondapalem', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('122', 'Kondapalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('123', 'Kondukur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('124', 'Kosgi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('125', 'Kothavalasa', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('126', 'Kottapalli', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('127', 'Kovur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('128', 'Kovurpalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('129', 'Kovvur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('130', 'Krishna', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('131', 'Kuppam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('132', 'Kurmannapalem', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('133', 'Kurnool', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('134', 'Lakshettipet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('135', 'Lalbahadur Nagar', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('136', 'Machavaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('137', 'Macherla', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('138', 'Machilipatnam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('139', 'Madanapalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('140', 'Madaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('141', 'Madhuravada', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('142', 'Madikonda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('143', 'Madugule', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('144', 'Mahabubnagar', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('145', 'Mahbubabad', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('146', 'Malkajgiri', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('147', 'Mamilapalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('148', 'Mancheral', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('149', 'Mandapeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('150', 'Mandasa', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('151', 'Mangalagiri', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('152', 'Manthani', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('153', 'Markapur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('154', 'Marturu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('155', 'Metpalli', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('156', 'Mindi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('157', 'Mirpet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('158', 'Moragudi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('159', 'Mothugudam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('160', 'Nagari', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('161', 'Nagireddipalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('162', 'Nandigama', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('163', 'Nandikotkur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('164', 'Nandyal', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('165', 'Narasannapeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('166', 'Narasapur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('167', 'Narasaraopet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('168', 'Narayanavanam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('169', 'Narsapur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('170', 'Narsingi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('171', 'Narsipatnam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('172', 'Naspur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('173', 'Nathayyapalem', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('174', 'Nayudupeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('175', 'Nelimaria', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('176', 'Nellore', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('177', 'Nidadavole', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('178', 'Nuzvid', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('179', 'Omerkhan daira', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('180', 'Ongole', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('181', 'Osmania University', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('182', 'Pakala', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('183', 'Palakole', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('184', 'Palakurthi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('185', 'Palasa', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('186', 'Palempalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('187', 'Palkonda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('188', 'Palmaner', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('189', 'Pamur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('190', 'Panjim', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('191', 'Papampeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('192', 'Parasamba', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('193', 'Parvatipuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('194', 'Patancheru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('195', 'Payakaraopet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('196', 'Pedagantyada', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('197', 'Pedana', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('198', 'Peddapuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('199', 'Pendurthi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('200', 'Penugonda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('201', 'Penukonda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('202', 'Phirangipuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('203', 'Pithapuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('204', 'Ponnur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('205', 'Port Blair', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('206', 'Pothinamallayyapalem', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('207', 'Prakasam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('208', 'Prasadampadu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('209', 'Prasantinilayam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('210', 'Proddatur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('211', 'Pulivendla', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('212', 'Punganuru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('213', 'Puttur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('214', 'Qutubullapur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('215', 'Rajahmundry', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('216', 'Rajamahendri', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('217', 'Rajampet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('218', 'Rajendranagar', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('219', 'Rajoli', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('220', 'Ramachandrapuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('221', 'Ramanayyapeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('222', 'Ramapuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('223', 'Ramarajupalli', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('224', 'Ramavarappadu', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('225', 'Rameswaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('226', 'Rampachodavaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('227', 'Ravulapalam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('228', 'Rayachoti', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('229', 'Rayadrug', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('230', 'Razam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('231', 'Razole', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('232', 'Renigunta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('233', 'Repalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('234', 'Rishikonda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('235', 'Salur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('236', 'Samalkot', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('237', 'Sattenapalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('238', 'Seetharampuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('239', 'Serilungampalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('240', 'Shankarampet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('241', 'Shar', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('242', 'Singarayakonda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('243', 'Sirpur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('244', 'Sirsilla', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('245', 'Sompeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('246', 'Sriharikota', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('247', 'Srikakulam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('248', 'Srikalahasti', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('249', 'Sriramnagar', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('250', 'Sriramsagar', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('251', 'Srisailam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('252', 'Srisailamgudem Devasthanam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('253', 'Sulurpeta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('254', 'Suriapet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('255', 'Suryaraopet', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('256', 'Tadepalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('257', 'Tadepalligudem', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('258', 'Tadpatri', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('259', 'Tallapalle', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('260', 'Tanuku', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('261', 'Tekkali', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('262', 'Tenali', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('263', 'Tigalapahad', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('264', 'Tiruchanur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('265', 'Tirumala', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('266', 'Tirupati', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('267', 'Tirvuru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('268', 'Trimulgherry', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('269', 'Tuni', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('270', 'Turangi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('271', 'Ukkayapalli', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('272', 'Ukkunagaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('273', 'Uppal Kalan', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('274', 'Upper Sileru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('275', 'Uravakonda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('276', 'Vadlapudi', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('277', 'Vaparala', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('278', 'Vemalwada', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('279', 'Venkatagiri', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('280', 'Venkatapuram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('281', 'Vepagunta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('282', 'Vetapalem', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('283', 'Vijayapuri', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('284', 'Vijayapuri South', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('285', 'Vijayawada', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('286', 'Vinukonda', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('287', 'Visakhapatnam', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('288', 'Vizianagaram', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('289', 'Vuyyuru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('290', 'Wanparti', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('291', 'West Godavari Dist.', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('292', 'Yadagirigutta', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('293', 'Yarada', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('294', 'Yellamanchili', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('295', 'Yemmiganur', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('296', 'Yenamalakudru', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('297', 'Yendada', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('298', 'Yerraguntla', '2', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('299', 'Along', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('300', 'Basar', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('301', 'Bondila', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('302', 'Changlang', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('303', 'Daporijo', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('304', 'Deomali', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('305', 'Itanagar', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('306', 'Jairampur', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('307', 'Khonsa', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('308', 'Naharlagun', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('309', 'Namsai', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('310', 'Pasighat', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('311', 'Roing', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('312', 'Seppa', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('313', 'Tawang', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('314', 'Tezu', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('315', 'Ziro', '3', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('316', 'Abhayapuri', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('317', 'Ambikapur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('318', 'Amguri', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('319', 'Anand Nagar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('320', 'Badarpur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('321', 'Badarpur Railway Town', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('322', 'Bahbari Gaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('323', 'Bamun Sualkuchi', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('324', 'Barbari', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('325', 'Barpathar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('326', 'Barpeta', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('327', 'Barpeta Road', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('328', 'Basugaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('329', 'Bihpuria', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('330', 'Bijni', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('331', 'Bilasipara', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('332', 'Biswanath Chariali', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('333', 'Bohori', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('334', 'Bokajan', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('335', 'Bokokhat', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('336', 'Bongaigaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('337', 'Bongaigaon Petro-chemical Town', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('338', 'Borgolai', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('339', 'Chabua', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('340', 'Chandrapur Bagicha', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('341', 'Chapar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('342', 'Chekonidhara', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('343', 'Choto Haibor', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('344', 'Dergaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('345', 'Dharapur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('346', 'Dhekiajuli', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('347', 'Dhemaji', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('348', 'Dhing', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('349', 'Dhubri', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('350', 'Dhuburi', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('351', 'Dibrugarh', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('352', 'Digboi', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('353', 'Digboi Oil Town', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('354', 'Dimaruguri', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('355', 'Diphu', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('356', 'Dispur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('357', 'Doboka', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('358', 'Dokmoka', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('359', 'Donkamokan', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('360', 'Duliagaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('361', 'Duliajan', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('362', 'Duliajan No.1', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('363', 'Dum Duma', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('364', 'Durga Nagar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('365', 'Gauripur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('366', 'Goalpara', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('367', 'Gohpur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('368', 'Golaghat', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('369', 'Golakganj', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('370', 'Gossaigaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('371', 'Guwahati', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('372', 'Haflong', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('373', 'Hailakandi', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('374', 'Hamren', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('375', 'Hauli', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('376', 'Hauraghat', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('377', 'Hojai', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('378', 'Jagiroad', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('379', 'Jagiroad Paper Mill', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('380', 'Jogighopa', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('381', 'Jonai Bazar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('382', 'Jorhat', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('383', 'Kampur Town', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('384', 'Kamrup', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('385', 'Kanakpur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('386', 'Karimganj', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('387', 'Kharijapikon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('388', 'Kharupetia', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('389', 'Kochpara', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('390', 'Kokrajhar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('391', 'Kumar Kaibarta Gaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('392', 'Lakhimpur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('393', 'Lakhipur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('394', 'Lala', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('395', 'Lanka', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('396', 'Lido Tikok', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('397', 'Lido Town', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('398', 'Lumding', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('399', 'Lumding Railway Colony', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('400', 'Mahur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('401', 'Maibong', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('402', 'Majgaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('403', 'Makum', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('404', 'Mangaldai', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('405', 'Mankachar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('406', 'Margherita', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('407', 'Mariani', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('408', 'Marigaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('409', 'Moran', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('410', 'Moranhat', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('411', 'Nagaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('412', 'Naharkatia', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('413', 'Nalbari', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('414', 'Namrup', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('415', 'Naubaisa Gaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('416', 'Nazira', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('417', 'New Bongaigaon Railway Colony', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('418', 'Niz-Hajo', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('419', 'North Guwahati', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('420', 'Numaligarh', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('421', 'Palasbari', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('422', 'Panchgram', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('423', 'Pathsala', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('424', 'Raha', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('425', 'Rangapara', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('426', 'Rangia', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('427', 'Salakati', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('428', 'Sapatgram', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('429', 'Sarthebari', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('430', 'Sarupathar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('431', 'Sarupathar Bengali', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('432', 'Senchoagaon', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('433', 'Sibsagar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('434', 'Silapathar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('435', 'Silchar', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('436', 'Silchar Part-X', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('437', 'Sonari', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('438', 'Sorbhog', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('439', 'Sualkuchi', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('440', 'Tangla', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('441', 'Tezpur', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('442', 'Tihu', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('443', 'Tinsukia', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('444', 'Titabor', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('445', 'Udalguri', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('446', 'Umrangso', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('447', 'Uttar Krishnapur Part-I', '4', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('448', 'Amarpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('449', 'Ara', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('450', 'Araria', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('451', 'Areraj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('452', 'Asarganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('453', 'Aurangabad', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('454', 'Bagaha', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('455', 'Bahadurganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('456', 'Bairgania', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('457', 'Bakhtiyarpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('458', 'Banka', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('459', 'Banmankhi', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('460', 'Bar Bigha', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('461', 'Barauli', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('462', 'Barauni Oil Township', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('463', 'Barh', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('464', 'Barhiya', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('465', 'Bariapur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('466', 'Baruni', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('467', 'Begusarai', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('468', 'Behea', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('469', 'Belsand', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('470', 'Bettiah', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('471', 'Bhabua', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('472', 'Bhagalpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('473', 'Bhimnagar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('474', 'Bhojpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('475', 'Bihar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('476', 'Bihar Sharif', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('477', 'Bihariganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('478', 'Bikramganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('479', 'Birpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('480', 'Bodh Gaya', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('481', 'Buxar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('482', 'Chakia', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('483', 'Chanpatia', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('484', 'Chhapra', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('485', 'Chhatapur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('486', 'Colgong', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('487', 'Dalsingh Sarai', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('488', 'Darbhanga', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('489', 'Daudnagar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('490', 'Dehri', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('491', 'Dhaka', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('492', 'Dighwara', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('493', 'Dinapur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('494', 'Dinapur Cantonment', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('495', 'Dumra', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('496', 'Dumraon', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('497', 'Fatwa', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('498', 'Forbesganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('499', 'Gaya', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('500', 'Gazipur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('501', 'Ghoghardiha', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('502', 'Gogri Jamalpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('503', 'Gopalganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('504', 'Habibpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('505', 'Hajipur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('506', 'Hasanpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('507', 'Hazaribagh', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('508', 'Hilsa', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('509', 'Hisua', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('510', 'Islampur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('511', 'Jagdispur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('512', 'Jahanabad', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('513', 'Jamalpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('514', 'Jamhaur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('515', 'Jamui', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('516', 'Janakpur Road', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('517', 'Janpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('518', 'Jaynagar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('519', 'Jha Jha', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('520', 'Jhanjharpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('521', 'Jogbani', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('522', 'Kanti', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('523', 'Kasba', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('524', 'Kataiya', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('525', 'Katihar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('526', 'Khagaria', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('527', 'Khagaul', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('528', 'Kharagpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('529', 'Khusrupur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('530', 'Kishanganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('531', 'Koath', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('532', 'Koilwar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('533', 'Lakhisarai', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('534', 'Lalganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('535', 'Lauthaha', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('536', 'Madhepura', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('537', 'Madhubani', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('538', 'Maharajganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('539', 'Mahnar Bazar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('540', 'Mairwa', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('541', 'Makhdumpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('542', 'Maner', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('543', 'Manihari', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('544', 'Marhaura', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('545', 'Masaurhi', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('546', 'Mirganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('547', 'Mohiuddinagar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('548', 'Mokama', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('549', 'Motihari', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('550', 'Motipur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('551', 'Munger', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('552', 'Murliganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('553', 'Muzaffarpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('554', 'Nabinagar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('555', 'Narkatiaganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('556', 'Nasriganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('557', 'Natwar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('558', 'Naugachhia', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('559', 'Nawada', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('560', 'Nirmali', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('561', 'Nokha', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('562', 'Paharpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('563', 'Patna', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('564', 'Phulwari', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('565', 'Piro', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('566', 'Purnia', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('567', 'Pusa', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('568', 'Rafiganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('569', 'Raghunathpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('570', 'Rajgir', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('571', 'Ramnagar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('572', 'Raxaul', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('573', 'Revelganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('574', 'Rusera', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('575', 'Sagauli', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('576', 'Saharsa', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('577', 'Samastipur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('578', 'Sasaram', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('579', 'Shahpur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('580', 'Shaikhpura', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('581', 'Sherghati', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('582', 'Shivhar', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('583', 'Silao', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('584', 'Sitamarhi', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('585', 'Siwan', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('586', 'Sonepur', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('587', 'Sultanganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('588', 'Supaul', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('589', 'Teghra', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('590', 'Tekari', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('591', 'Thakurganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('592', 'Vaishali', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('593', 'Waris Aliganj', '5', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('594', 'Chandigarh', '6', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('595', 'Ahiwara', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('596', 'Akaltara', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('597', 'Ambagarh Chauki', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('598', 'Ambikapur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('599', 'Arang', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('600', 'Bade Bacheli', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('601', 'Bagbahara', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('602', 'Baikunthpur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('603', 'Balod', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('604', 'Baloda', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('605', 'Baloda Bazar', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('606', 'Banarsi', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('607', 'Basna', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('608', 'Bemetra', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('609', 'Bhanpuri', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('610', 'Bhatapara', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('611', 'Bhatgaon', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('612', 'Bhilai', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('613', 'Bilaspur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('614', 'Bilha', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('615', 'Birgaon', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('616', 'Bodri', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('617', 'Champa', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('618', 'Charcha', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('619', 'Charoda', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('620', 'Chhuikhadan', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('621', 'Chirmiri', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('622', 'Dantewada', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('623', 'Deori', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('624', 'Dhamdha', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('625', 'Dhamtari', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('626', 'Dharamjaigarh', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('627', 'Dipka', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('628', 'Doman Hill Colliery', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('629', 'Dongargaon', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('630', 'Dongragarh', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('631', 'Durg', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('632', 'Frezarpur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('633', 'Gandai', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('634', 'Gariaband', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('635', 'Gaurela', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('636', 'Gelhapani', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('637', 'Gharghoda', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('638', 'Gidam', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('639', 'Gobra Nawapara', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('640', 'Gogaon', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('641', 'Hatkachora', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('642', 'Jagdalpur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('643', 'Jamui', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('644', 'Jashpurnagar', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('645', 'Jhagrakhand', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('646', 'Kanker', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('647', 'Katghora', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('648', 'Kawardha', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('649', 'Khairagarh', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('650', 'Khamhria', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('651', 'Kharod', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('652', 'Kharsia', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('653', 'Khonga Pani', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('654', 'Kirandu', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('655', 'Kirandul', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('656', 'Kohka', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('657', 'Kondagaon', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('658', 'Korba', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('659', 'Korea', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('660', 'Koria Block', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('661', 'Kota', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('662', 'Kumhari', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('663', 'Kumud Katta', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('664', 'Kurasia', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('665', 'Kurud', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('666', 'Lingiyadih', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('667', 'Lormi', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('668', 'Mahasamund', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('669', 'Mahendragarh', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('670', 'Mehmand', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('671', 'Mongra', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('672', 'Mowa', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('673', 'Mungeli', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('674', 'Nailajanjgir', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('675', 'Namna Kalan', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('676', 'Naya Baradwar', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('677', 'Pandariya', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('678', 'Patan', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('679', 'Pathalgaon', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('680', 'Pendra', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('681', 'Phunderdihari', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('682', 'Pithora', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('683', 'Raigarh', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('684', 'Raipur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('685', 'Rajgamar', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('686', 'Rajhara', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('687', 'Rajnandgaon', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('688', 'Ramanuj Ganj', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('689', 'Ratanpur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('690', 'Sakti', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('691', 'Saraipali', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('692', 'Sarajpur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('693', 'Sarangarh', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('694', 'Shivrinarayan', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('695', 'Simga', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('696', 'Sirgiti', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('697', 'Takhatpur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('698', 'Telgaon', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('699', 'Tildanewra', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('700', 'Urla', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('701', 'Vishrampur', '7', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('702', 'Amli', '8', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('703', 'Silvassa', '8', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('704', 'Daman', '9', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('705', 'Diu', '9', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('706', 'Delhi', '10', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('707', 'New Delhi', '10', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('708', 'Aldona', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('709', 'Altinho', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('710', 'Aquem', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('711', 'Arpora', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('712', 'Bambolim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('713', 'Bandora', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('714', 'Bardez', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('715', 'Benaulim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('716', 'Betora', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('717', 'Bicholim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('718', 'Calapor', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('719', 'Candolim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('720', 'Caranzalem', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('721', 'Carapur', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('722', 'Chicalim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('723', 'Chimbel', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('724', 'Chinchinim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('725', 'Colvale', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('726', 'Corlim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('727', 'Cortalim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('728', 'Cuncolim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('729', 'Curchorem', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('730', 'Curti', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('731', 'Davorlim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('732', 'Dona Paula', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('733', 'Goa', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('734', 'Guirim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('735', 'Jua', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('736', 'Kalangat', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('737', 'Kankon', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('738', 'Kundaim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('739', 'Loutulim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('740', 'Madgaon', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('741', 'Mapusa', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('742', 'Margao', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('743', 'Margaon', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('744', 'Miramar', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('745', 'Morjim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('746', 'Mormugao', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('747', 'Navelim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('748', 'Pale', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('749', 'Panaji', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('750', 'Parcem', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('751', 'Parra', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('752', 'Penha de Franca', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('753', 'Pernem', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('754', 'Pilerne', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('755', 'Pissurlem', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('756', 'Ponda', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('757', 'Porvorim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('758', 'Quepem', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('759', 'Queula', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('760', 'Raia', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('761', 'Reis Magos', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('762', 'Salcette', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('763', 'Saligao', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('764', 'Sancoale', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('765', 'Sanguem', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('766', 'Sanquelim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('767', 'Sanvordem', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('768', 'Sao Jose-de-Areal', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('769', 'Sattari', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('770', 'Serula', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('771', 'Sinquerim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('772', 'Siolim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('773', 'Taleigao', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('774', 'Tivim', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('775', 'Valpoi', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('776', 'Varca', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('777', 'Vasco', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('778', 'Verna', '11', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('779', 'Abrama', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('780', 'Adalaj', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('781', 'Adityana', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('782', 'Advana', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('783', 'Ahmedabad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('784', 'Ahwa', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('785', 'Alang', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('786', 'Ambaji', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('787', 'Ambaliyasan', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('788', 'Amod', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('789', 'Amreli', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('790', 'Amroli', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('791', 'Anand', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('792', 'Andada', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('793', 'Anjar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('794', 'Anklav', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('795', 'Ankleshwar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('796', 'Anklesvar INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('797', 'Antaliya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('798', 'Arambhada', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('799', 'Asarma', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('800', 'Atul', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('801', 'Babra', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('802', 'Bag-e-Firdosh', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('803', 'Bagasara', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('804', 'Bahadarpar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('805', 'Bajipura', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('806', 'Bajva', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('807', 'Balasinor', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('808', 'Banaskantha', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('809', 'Bansda', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('810', 'Bantva', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('811', 'Bardoli', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('812', 'Barwala', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('813', 'Bayad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('814', 'Bechar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('815', 'Bedi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('816', 'Beyt', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('817', 'Bhachau', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('818', 'Bhanvad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('819', 'Bharuch', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('820', 'Bharuch INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('821', 'Bhavnagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('822', 'Bhayavadar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('823', 'Bhestan', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('824', 'Bhuj', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('825', 'Bilimora', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('826', 'Bilkha', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('827', 'Billimora', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('828', 'Bodakdev', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('829', 'Bodeli', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('830', 'Bopal', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('831', 'Boria', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('832', 'Boriavi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('833', 'Borsad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('834', 'Botad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('835', 'Cambay', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('836', 'Chaklasi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('837', 'Chala', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('838', 'Chalala', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('839', 'Chalthan', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('840', 'Chanasma', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('841', 'Chandisar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('842', 'Chandkheda', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('843', 'Chanod', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('844', 'Chaya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('845', 'Chenpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('846', 'Chhapi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('847', 'Chhaprabhatha', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('848', 'Chhatral', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('849', 'Chhota Udepur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('850', 'Chikhli', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('851', 'Chiloda', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('852', 'Chorvad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('853', 'Chotila', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('854', 'Dabhoi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('855', 'Dadara', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('856', 'Dahod', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('857', 'Dakor', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('858', 'Damnagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('859', 'Deesa', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('860', 'Delvada', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('861', 'Devgadh Baria', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('862', 'Devsar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('863', 'Dhandhuka', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('864', 'Dhanera', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('865', 'Dhangdhra', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('866', 'Dhansura', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('867', 'Dharampur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('868', 'Dhari', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('869', 'Dhola', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('870', 'Dholka', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('871', 'Dholka Rural', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('872', 'Dhoraji', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('873', 'Dhrangadhra', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('874', 'Dhrol', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('875', 'Dhuva', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('876', 'Dhuwaran', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('877', 'Digvijaygram', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('878', 'Disa', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('879', 'Dungar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('880', 'Dungarpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('881', 'Dungra', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('882', 'Dwarka', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('883', 'Flelanganj', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('884', 'GSFC Complex', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('885', 'Gadhda', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('886', 'Gandevi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('887', 'Gandhidham', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('888', 'Gandhinagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('889', 'Gariadhar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('890', 'Ghogha', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('891', 'Godhra', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('892', 'Gondal', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('893', 'Hajira INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('894', 'Halol', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('895', 'Halvad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('896', 'Hansot', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('897', 'Harij', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('898', 'Himatnagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('899', 'Ichchhapor', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('900', 'Idar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('901', 'Jafrabad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('902', 'Jalalpore', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('903', 'Jambusar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('904', 'Jamjodhpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('905', 'Jamnagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('906', 'Jasdan', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('907', 'Jawaharnagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('908', 'Jetalsar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('909', 'Jetpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('910', 'Jodiya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('911', 'Joshipura', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('912', 'Junagadh', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('913', 'Kadi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('914', 'Kadodara', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('915', 'Kalavad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('916', 'Kali', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('917', 'Kaliawadi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('918', 'Kalol', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('919', 'Kalol INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('920', 'Kandla', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('921', 'Kanjari', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('922', 'Kanodar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('923', 'Kapadwanj', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('924', 'Karachiya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('925', 'Karamsad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('926', 'Karjan', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('927', 'Kathial', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('928', 'Kathor', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('929', 'Katpar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('930', 'Kavant', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('931', 'Keshod', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('932', 'Kevadiya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('933', 'Khambhaliya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('934', 'Khambhat', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('935', 'Kharaghoda', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('936', 'Khed Brahma', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('937', 'Kheda', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('938', 'Kheralu', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('939', 'Kodinar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('940', 'Kosamba', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('941', 'Kundla', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('942', 'Kutch', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('943', 'Kutiyana', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('944', 'Lakhtar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('945', 'Lalpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('946', 'Lambha', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('947', 'Lathi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('948', 'Limbdi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('949', 'Limla', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('950', 'Lunavada', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('951', 'Madhapar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('952', 'Maflipur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('953', 'Mahemdavad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('954', 'Mahudha', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('955', 'Mahuva', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('956', 'Mahuvar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('957', 'Makarba', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('958', 'Makarpura', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('959', 'Makassar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('960', 'Maktampur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('961', 'Malia', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('962', 'Malpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('963', 'Manavadar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('964', 'Mandal', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('965', 'Mandvi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('966', 'Mangrol', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('967', 'Mansa', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('968', 'Meghraj', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('969', 'Mehsana', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('970', 'Mendarla', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('971', 'Mithapur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('972', 'Modasa', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('973', 'Mogravadi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('974', 'Morbi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('975', 'Morvi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('976', 'Mundra', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('977', 'Nadiad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('978', 'Naliya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('979', 'Nanakvada', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('980', 'Nandej', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('981', 'Nandesari', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('982', 'Nandesari INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('983', 'Naroda', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('984', 'Navagadh', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('985', 'Navagam Ghed', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('986', 'Navsari', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('987', 'Ode', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('988', 'Okaf', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('989', 'Okha', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('990', 'Olpad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('991', 'Paddhari', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('992', 'Padra', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('993', 'Palanpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('994', 'Palej', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('995', 'Pali', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('996', 'Palitana', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('997', 'Paliyad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('998', 'Pandesara', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('999', 'Panoli', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1000', 'Pardi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1001', 'Parnera', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1002', 'Parvat', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1003', 'Patan', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1004', 'Patdi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1005', 'Petlad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1006', 'Petrochemical Complex', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1007', 'Porbandar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1008', 'Prantij', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1009', 'Radhanpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1010', 'Raiya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1011', 'Rajkot', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1012', 'Rajpipla', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1013', 'Rajula', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1014', 'Ramod', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1015', 'Ranavav', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1016', 'Ranoli', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1017', 'Rapar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1018', 'Sahij', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1019', 'Salaya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1020', 'Sanand', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1021', 'Sankheda', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1022', 'Santrampur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1023', 'Saribujrang', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1024', 'Sarigam INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1025', 'Sayan', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1026', 'Sayla', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1027', 'Shahpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1028', 'Shahwadi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1029', 'Shapar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1030', 'Shivrajpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1031', 'Siddhapur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1032', 'Sidhpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1033', 'Sihor', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1034', 'Sika', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1035', 'Singarva', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1036', 'Sinor', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1037', 'Sojitra', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1038', 'Sola', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1039', 'Songadh', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1040', 'Suraj Karadi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1041', 'Surat', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1042', 'Surendranagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1043', 'Talaja', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1044', 'Talala', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1045', 'Talod', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1046', 'Tankara', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1047', 'Tarsali', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1048', 'Thangadh', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1049', 'Tharad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1050', 'Thasra', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1051', 'Udyognagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1052', 'Ukai', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1053', 'Umbergaon', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1054', 'Umbergaon INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1055', 'Umrala', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1056', 'Umreth', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1057', 'Un', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1058', 'Una', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1059', 'Unjha', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1060', 'Upleta', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1061', 'Utran', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1062', 'Uttarsanda', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1063', 'V.U. Nagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1064', 'V.V. Nagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1065', 'Vadia', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1066', 'Vadla', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1067', 'Vadnagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1068', 'Vadodara', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1069', 'Vaghodia INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1070', 'Valbhipur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1071', 'Vallabh Vidyanagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1072', 'Valsad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1073', 'Valsad INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1074', 'Vanthali', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1075', 'Vapi', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1076', 'Vapi INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1077', 'Vartej', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1078', 'Vasad', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1079', 'Vasna Borsad INA', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1080', 'Vaso', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1081', 'Veraval', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1082', 'Vidyanagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1083', 'Vijalpor', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1084', 'Vijapur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1085', 'Vinchhiya', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1086', 'Vinzol', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1087', 'Virpur', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1088', 'Visavadar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1089', 'Visnagar', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1090', 'Vyara', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1091', 'Wadhwan', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1092', 'Waghai', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1093', 'Waghodia', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1094', 'Wankaner', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1095', 'Zalod', '12', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1096', 'Ambala', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1097', 'Ambala Cantt', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1098', 'Asan Khurd', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1099', 'Asandh', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1100', 'Ateli', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1101', 'Babiyal', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1102', 'Bahadurgarh', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1103', 'Ballabgarh', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1104', 'Barwala', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1105', 'Bawal', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1106', 'Bawani Khera', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1107', 'Beri', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1108', 'Bhiwani', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1109', 'Bilaspur', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1110', 'Buria', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1111', 'Charkhi Dadri', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1112', 'Chhachhrauli', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1113', 'Chita', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1114', 'Dabwali', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1115', 'Dharuhera', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1116', 'Dundahera', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1117', 'Ellenabad', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1118', 'Farakhpur', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1119', 'Faridabad', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1120', 'Farrukhnagar', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1121', 'Fatehabad', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1122', 'Firozpur Jhirka', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1123', 'Gannaur', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1124', 'Ghraunda', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1125', 'Gohana', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1126', 'Gurgaon', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1127', 'Haileymandi', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1128', 'Hansi', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1129', 'Hasanpur', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1130', 'Hathin', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1131', 'Hisar', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1132', 'Hissar', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1133', 'Hodal', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1134', 'Indri', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1135', 'Jagadhri', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1136', 'Jakhal Mandi', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1137', 'Jhajjar', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1138', 'Jind', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1139', 'Julana', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1140', 'Kaithal', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1141', 'Kalanur', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1142', 'Kalanwali', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1143', 'Kalayat', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1144', 'Kalka', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1145', 'Kanina', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1146', 'Kansepur', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1147', 'Kardhan', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1148', 'Karnal', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1149', 'Kharkhoda', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1150', 'Kheri Sampla', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1151', 'Kundli', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1152', 'Kurukshetra', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1153', 'Ladrawan', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1154', 'Ladwa', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1155', 'Loharu', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1156', 'Maham', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1157', 'Mahendragarh', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1158', 'Mustafabad', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1159', 'Nagai Chaudhry', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1160', 'Narayangarh', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1161', 'Narnaul', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1162', 'Narnaund', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1163', 'Narwana', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1164', 'Nilokheri', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1165', 'Nuh', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1166', 'Palwal', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1167', 'Panchkula', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1168', 'Panipat', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1169', 'Panipat Taraf Ansar', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1170', 'Panipat Taraf Makhdum Zadgan', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1171', 'Panipat Taraf Rajputan', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1172', 'Pehowa', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1173', 'Pinjaur', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1174', 'Punahana', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1175', 'Pundri', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1176', 'Radaur', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1177', 'Raipur Rani', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1178', 'Rania', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1179', 'Ratiya', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1180', 'Rewari', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1181', 'Rohtak', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1182', 'Ropar', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1183', 'Sadauri', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1184', 'Safidon', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1185', 'Samalkha', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1186', 'Sankhol', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1187', 'Sasauli', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1188', 'Shahabad', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1189', 'Sirsa', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1190', 'Siwani', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1191', 'Sohna', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1192', 'Sonipat', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1193', 'Sukhrali', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1194', 'Taoru', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1195', 'Taraori', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1196', 'Tauru', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1197', 'Thanesar', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1198', 'Tilpat', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1199', 'Tohana', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1200', 'Tosham', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1201', 'Uchana', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1202', 'Uklana Mandi', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1203', 'Uncha Siwana', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1204', 'Yamunanagar', '13', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1205', 'Arki', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1206', 'Baddi', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1207', 'Bakloh', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1208', 'Banjar', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1209', 'Bhota', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1210', 'Bhuntar', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1211', 'Bilaspur', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1212', 'Chamba', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1213', 'Chaupal', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1214', 'Chuari Khas', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1215', 'Dagshai', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1216', 'Dalhousie', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1217', 'Dalhousie Cantonment', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1218', 'Damtal', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1219', 'Daulatpur', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1220', 'Dera Gopipur', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1221', 'Dhalli', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1222', 'Dharamshala', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1223', 'Gagret', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1224', 'Ghamarwin', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1225', 'Hamirpur', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1226', 'Jawala Mukhi', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1227', 'Jogindarnagar', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1228', 'Jubbal', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1229', 'Jutogh', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1230', 'Kala Amb', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1231', 'Kalpa', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1232', 'Kangra', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1233', 'Kasauli', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1234', 'Kot Khai', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1235', 'Kullu', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1236', 'Kulu', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1237', 'Manali', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1238', 'Mandi', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1239', 'Mant Khas', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1240', 'Mehatpur Basdehra', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1241', 'Nadaun', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1242', 'Nagrota', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1243', 'Nahan', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1244', 'Naina Devi', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1245', 'Nalagarh', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1246', 'Narkanda', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1247', 'Nurpur', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1248', 'Palampur', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1249', 'Pandoh', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1250', 'Paonta Sahib', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1251', 'Parwanoo', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1252', 'Parwanu', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1253', 'Rajgarh', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1254', 'Rampur', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1255', 'Rawalsar', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1256', 'Rohru', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1257', 'Sabathu', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1258', 'Santokhgarh', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1259', 'Sarahan', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1260', 'Sarka Ghat', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1261', 'Seoni', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1262', 'Shimla', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1263', 'Sirmaur', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1264', 'Solan', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1265', 'Solon', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1266', 'Sundarnagar', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1267', 'Sundernagar', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1268', 'Talai', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1269', 'Theog', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1270', 'Tira Sujanpur', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1271', 'Una', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1272', 'Yol', '14', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1273', 'Achabal', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1274', 'Akhnur', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1275', 'Anantnag', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1276', 'Arnia', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1277', 'Awantipora', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1278', 'Badami Bagh', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1279', 'Bandipur', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1280', 'Banihal', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1281', 'Baramula', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1282', 'Baramulla', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1283', 'Bari Brahmana', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1284', 'Bashohli', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1285', 'Batote', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1286', 'Bhaderwah', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1287', 'Bijbiara', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1288', 'Billawar', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1289', 'Birwah', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1290', 'Bishna', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1291', 'Budgam', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1292', 'Charari Sharief', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1293', 'Chenani', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1294', 'Doda', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1295', 'Duru-Verinag', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1296', 'Gandarbat', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1297', 'Gho Manhasan', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1298', 'Gorah Salathian', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1299', 'Gulmarg', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1300', 'Hajan', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1301', 'Handwara', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1302', 'Hiranagar', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1303', 'Jammu', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1304', 'Jammu Cantonment', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1305', 'Jammu Tawi', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1306', 'Jourian', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1307', 'Kargil', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1308', 'Kathua', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1309', 'Katra', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1310', 'Khan Sahib', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1311', 'Khour', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1312', 'Khrew', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1313', 'Kishtwar', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1314', 'Kud', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1315', 'Kukernag', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1316', 'Kulgam', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1317', 'Kunzer', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1318', 'Kupwara', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1319', 'Lakhenpur', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1320', 'Leh', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1321', 'Magam', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1322', 'Mattan', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1323', 'Naushehra', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1324', 'Pahalgam', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1325', 'Pampore', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1326', 'Parole', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1327', 'Pattan', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1328', 'Pulwama', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1329', 'Punch', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1330', 'Qazigund', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1331', 'Rajauri', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1332', 'Ramban', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1333', 'Ramgarh', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1334', 'Ramnagar', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1335', 'Ranbirsingh Pora', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1336', 'Reasi', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1337', 'Rehambal', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1338', 'Samba', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1339', 'Shupiyan', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1340', 'Sopur', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1341', 'Srinagar', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1342', 'Sumbal', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1343', 'Sunderbani', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1344', 'Talwara', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1345', 'Thanamandi', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1346', 'Tral', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1347', 'Udhampur', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1348', 'Uri', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1349', 'Vijaypur', '15', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1350', 'Adityapur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1351', 'Amlabad', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1352', 'Angarpathar', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1353', 'Ara', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1354', 'Babua Kalan', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1355', 'Bagbahra', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1356', 'Baliapur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1357', 'Baliari', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1358', 'Balkundra', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1359', 'Bandhgora', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1360', 'Barajamda', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1361', 'Barhi', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1362', 'Barka Kana', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1363', 'Barki Saraiya', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1364', 'Barughutu', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1365', 'Barwadih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1366', 'Basaria', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1367', 'Basukinath', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1368', 'Bermo', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1369', 'Bhagatdih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1370', 'Bhaurah', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1371', 'Bhojudih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1372', 'Bhuli', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1373', 'Bokaro', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1374', 'Borio Bazar', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1375', 'Bundu', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1376', 'Chaibasa', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1377', 'Chaitudih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1378', 'Chakradharpur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1379', 'Chakulia', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1380', 'Chandaur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1381', 'Chandil', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1382', 'Chandrapura', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1383', 'Chas', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1384', 'Chatra', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1385', 'Chhatatanr', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1386', 'Chhotaputki', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1387', 'Chiria', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1388', 'Chirkunda', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1389', 'Churi', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1390', 'Daltenganj', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1391', 'Danguwapasi', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1392', 'Dari', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1393', 'Deoghar', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1394', 'Deorikalan', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1395', 'Devghar', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1396', 'Dhanbad', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1397', 'Dhanwar', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1398', 'Dhaunsar', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1399', 'Dugda', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1400', 'Dumarkunda', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1401', 'Dumka', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1402', 'Egarkunr', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1403', 'Gadhra', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1404', 'Garwa', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1405', 'Ghatsila', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1406', 'Ghorabandha', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1407', 'Gidi', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1408', 'Giridih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1409', 'Gobindpur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1410', 'Godda', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1411', 'Godhar', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1412', 'Golphalbari', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1413', 'Gomoh', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1414', 'Gua', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1415', 'Gumia', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1416', 'Gumla', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1417', 'Haludbani', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1418', 'Hazaribag', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1419', 'Hesla', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1420', 'Husainabad', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1421', 'Isri', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1422', 'Jadugora', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1423', 'Jagannathpur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1424', 'Jamadoba', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1425', 'Jamshedpur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1426', 'Jamtara', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1427', 'Jarangdih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1428', 'Jaridih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1429', 'Jasidih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1430', 'Jena', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1431', 'Jharia', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1432', 'Jharia Khas', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1433', 'Jhinkpani', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1434', 'Jhumri Tilaiya', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1435', 'Jorapokhar', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1436', 'Jugsalai', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1437', 'Kailudih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1438', 'Kalikapur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1439', 'Kandra', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1440', 'Kanke', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1441', 'Katras', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1442', 'Kedla', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1443', 'Kenduadih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1444', 'Kharkhari', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1445', 'Kharsawan', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1446', 'Khelari', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1447', 'Khunti', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1448', 'Kiri Buru', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1449', 'Kiriburu', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1450', 'Kodarma', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1451', 'Kuju', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1452', 'Kurpania', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1453', 'Kustai', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1454', 'Lakarka', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1455', 'Lapanga', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1456', 'Latehar', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1457', 'Lohardaga', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1458', 'Loiya', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1459', 'Loyabad', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1460', 'Madhupur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1461', 'Mahesh Mundi', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1462', 'Maithon', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1463', 'Malkera', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1464', 'Mango', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1465', 'Manoharpur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1466', 'Marma', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1467', 'Meghahatuburu Forest village', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1468', 'Mera', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1469', 'Meru', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1470', 'Mihijam', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1471', 'Mugma', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1472', 'Muri', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1473', 'Mushabani', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1474', 'Nagri Kalan', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1475', 'Netarhat', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1476', 'Nirsa', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1477', 'Noamundi', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1478', 'Okni', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1479', 'Orla', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1480', 'Pakaur', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1481', 'Palamau', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1482', 'Palawa', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1483', 'Panchet', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1484', 'Panrra', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1485', 'Paratdih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1486', 'Pathardih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1487', 'Patratu', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1488', 'Phusro', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1489', 'Pondar Kanali', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1490', 'Rajmahal', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1491', 'Ramgarh', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1492', 'Ranchi', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1493', 'Ray', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1494', 'Rehla', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1495', 'Religara', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1496', 'Rohraband', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1497', 'Sahibganj', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1498', 'Sahnidih', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1499', 'Saraidhela', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1500', 'Saraikela', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1501', 'Sarjamda', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1502', 'Saunda', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1503', 'Sewai', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1504', 'Sijhua', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1505', 'Sijua', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1506', 'Simdega', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1507', 'Sindari', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1508', 'Sinduria', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1509', 'Sini', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1510', 'Sirka', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1511', 'Siuliban', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1512', 'Surubera', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1513', 'Tati', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1514', 'Tenudam', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1515', 'Tisra', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1516', 'Topa', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1517', 'Topchanchi', '16', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1518', 'Adityanagar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1519', 'Adityapatna', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1520', 'Afzalpur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1521', 'Ajjampur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1522', 'Aland', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1523', 'Almatti Sitimani', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1524', 'Alnavar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1525', 'Alur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1526', 'Ambikanagara', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1527', 'Anekal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1528', 'Ankola', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1529', 'Annigeri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1530', 'Arkalgud', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1531', 'Arsikere', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1532', 'Athni', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1533', 'Aurad', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1534', 'Badagavettu', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1535', 'Badami', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1536', 'Bagalkot', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1537', 'Bagepalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1538', 'Bailhongal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1539', 'Baindur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1540', 'Bajala', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1541', 'Bajpe', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1542', 'Banavar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1543', 'Bangarapet', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1544', 'Bankapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1545', 'Bannur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1546', 'Bantwal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1547', 'Basavakalyan', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1548', 'Basavana Bagevadi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1549', 'Belagula', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1550', 'Belakavadiq', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1551', 'Belgaum', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1552', 'Belgaum Cantonment', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1553', 'Bellary', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1554', 'Belluru', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1555', 'Beltangadi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1556', 'Belur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1557', 'Belvata', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1558', 'Bengaluru', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1559', 'Bhadravati', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1560', 'Bhalki', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1561', 'Bhatkal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1562', 'Bhimarayanagudi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1563', 'Bhogadi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1564', 'Bidar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1565', 'Bijapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1566', 'Bilgi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1567', 'Birur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1568', 'Bommanahalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1569', 'Bommasandra', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1570', 'Byadgi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1571', 'Byatarayanapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1572', 'Chakranagar Colony', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1573', 'Challakere', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1574', 'Chamrajnagar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1575', 'Chamundi Betta', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1576', 'Channagiri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1577', 'Channapatna', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1578', 'Channarayapatna', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1579', 'Chickballapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1580', 'Chik Ballapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1581', 'Chikkaballapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1582', 'Chikmagalur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1583', 'Chiknayakanhalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1584', 'Chikodi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1585', 'Chincholi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1586', 'Chintamani', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1587', 'Chitaguppa', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1588', 'Chitapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1589', 'Chitradurga', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1590', 'Coorg', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1591', 'Dandeli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1592', 'Dargajogihalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1593', 'Dasarahalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1594', 'Davangere', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1595', 'Devadurga', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1596', 'Devagiri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1597', 'Devanhalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1598', 'Dharwar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1599', 'Dhupdal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1600', 'Dod Ballapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1601', 'Donimalai', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1602', 'Gadag', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1603', 'Gajendragarh', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1604', 'Ganeshgudi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1605', 'Gangawati', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1606', 'Gangoli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1607', 'Gauribidanur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1608', 'Gokak', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1609', 'Gokak Falls', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1610', 'Gonikoppal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1611', 'Gorur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1612', 'Gottikere', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1613', 'Gubbi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1614', 'Gudibanda', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1615', 'Gulbarga', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1616', 'Guledgudda', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1617', 'Gundlupet', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1618', 'Gurmatkal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1619', 'Haliyal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1620', 'Hangal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1621', 'Harihar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1622', 'Harpanahalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1623', 'Hassan', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1624', 'Hatti', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1625', 'Hatti Gold Mines', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1626', 'Haveri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1627', 'Hebbagodi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1628', 'Hebbalu', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1629', 'Hebri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1630', 'Heggadadevanakote', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1631', 'Herohalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1632', 'Hidkal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1633', 'Hindalgi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1634', 'Hirekerur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1635', 'Hiriyur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1636', 'Holalkere', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1637', 'Hole Narsipur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1638', 'Homnabad', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1639', 'Honavar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1640', 'Honnali', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1641', 'Hosakote', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1642', 'Hosanagara', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1643', 'Hosangadi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1644', 'Hosdurga', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1645', 'Hoskote', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1646', 'Hospet', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1647', 'Hubli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1648', 'Hukeri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1649', 'Hunasagi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1650', 'Hunasamaranahalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1651', 'Hungund', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1652', 'Hunsur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1653', 'Huvina Hadagalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1654', 'Ilkal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1655', 'Indi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1656', 'Jagalur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1657', 'Jamkhandi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1658', 'Jevargi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1659', 'Jog Falls', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1660', 'Kabini Colony', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1661', 'Kadur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1662', 'Kalghatgi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1663', 'Kamalapuram', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1664', 'Kampli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1665', 'Kanakapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1666', 'Kangrali BK', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1667', 'Kangrali KH', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1668', 'Kannur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1669', 'Karkala', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1670', 'Karwar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1671', 'Kemminja', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1672', 'Kengeri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1673', 'Kerur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1674', 'Khanapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1675', 'Kodigenahalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1676', 'Kodiyal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1677', 'Kodlipet', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1678', 'Kolar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1679', 'Kollegal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1680', 'Konanakunte', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1681', 'Konanur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1682', 'Konnur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1683', 'Koppa', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1684', 'Koppal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1685', 'Koratagere', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1686', 'Kotekara', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1687', 'Kothnur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1688', 'Kotturu', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1689', 'Krishnapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1690', 'Krishnarajanagar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1691', 'Krishnarajapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1692', 'Krishnarajasagara', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1693', 'Krishnarajpet', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1694', 'Kudchi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1695', 'Kudligi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1696', 'Kudremukh', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1697', 'Kumsi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1698', 'Kumta', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1699', 'Kundapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1700', 'Kundgol', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1701', 'Kunigal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1702', 'Kurgunta', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1703', 'Kushalnagar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1704', 'Kushtagi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1705', 'Kyathanahalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1706', 'Lakshmeshwar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1707', 'Lingsugur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1708', 'Londa', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1709', 'Maddur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1710', 'Madhugiri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1711', 'Madikeri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1712', 'Magadi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1713', 'Magod Falls', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1714', 'Mahadeswara Hills', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1715', 'Mahadevapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1716', 'Mahalingpur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1717', 'Maisuru', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1718', 'Maisuru Cantonment', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1719', 'Malavalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1720', 'Mallar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1721', 'Malpe', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1722', 'Malur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1723', 'Manchenahalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1724', 'Mandya', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1725', 'Mangalore', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1726', 'Mangaluru', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1727', 'Manipal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1728', 'Manvi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1729', 'Maski', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1730', 'Mastikatte Colony', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1731', 'Mayakonda', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1732', 'Melukote', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1733', 'Molakalmuru', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1734', 'Mudalgi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1735', 'Mudbidri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1736', 'Muddebihal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1737', 'Mudgal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1738', 'Mudhol', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1739', 'Mudigere', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1740', 'Mudushedde', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1741', 'Mulbagal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1742', 'Mulgund', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1743', 'Mulki', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1744', 'Mulur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1745', 'Mundargi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1746', 'Mundgod', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1747', 'Munirabad', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1748', 'Munnur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1749', 'Murudeshwara', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1750', 'Mysore', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1751', 'Nagamangala', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1752', 'Nanjangud', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1753', 'Naragund', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1754', 'Narasimharajapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1755', 'Naravi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1756', 'Narayanpur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1757', 'Naregal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1758', 'Navalgund', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1759', 'Nelmangala', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1760', 'Nipani', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1761', 'Nitte', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1762', 'Nyamati', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1763', 'Padu', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1764', 'Pandavapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1765', 'Pattanagere', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1766', 'Pavagada', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1767', 'Piriyapatna', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1768', 'Ponnampet', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1769', 'Puttur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1770', 'Rabkavi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1771', 'Raichur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1772', 'Ramanagaram', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1773', 'Ramdurg', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1774', 'Ranibennur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1775', 'Raybag', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1776', 'Robertsonpet', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1777', 'Ron', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1778', 'Sadalgi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1779', 'Sagar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1780', 'Sakleshpur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1781', 'Saligram', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1782', 'Sandur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1783', 'Sanivarsante', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1784', 'Sankeshwar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1785', 'Sargur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1786', 'Sathyamangala', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1787', 'Saundatti Yellamma', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1788', 'Savanur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1789', 'Sedam', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1790', 'Shahabad', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1791', 'Shahabad A.C.C.', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1792', 'Shahapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1793', 'Shahpur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1794', 'Shaktinagar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1795', 'Shiggaon', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1796', 'Shikarpur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1797', 'Shimoga', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1798', 'Shirhatti', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1799', 'Shorapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1800', 'Shravanabelagola', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1801', 'Shrirangapattana', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1802', 'Siddapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1803', 'Sidlaghatta', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1804', 'Sindgi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1805', 'Sindhnur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1806', 'Sira', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1807', 'Sirakoppa', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1808', 'Sirsi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1809', 'Siruguppa', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1810', 'Someshwar', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1811', 'Somvarpet', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1812', 'Sorab', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1813', 'Sringeri', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1814', 'Srinivaspur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1815', 'Sulya', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1816', 'Suntikopa', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1817', 'Talikota', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1818', 'Tarikera', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1819', 'Tekkalakota', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1820', 'Terdal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1821', 'Thokur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1822', 'Thumbe', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1823', 'Tiptur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1824', 'Tirthahalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1825', 'Tirumakudal Narsipur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1826', 'Tonse', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1827', 'Tumkur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1828', 'Turuvekere', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1829', 'Udupi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1830', 'Ullal', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1831', 'Uttarahalli', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1832', 'Venkatapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1833', 'Vijayapura', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1834', 'Virarajendrapet', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1835', 'Wadi', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1836', 'Wadi A.C.C.', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1837', 'Yadgir', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1838', 'Yelahanka', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1839', 'Yelandur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1840', 'Yelbarga', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1841', 'Yellapur', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1842', 'Yenagudde', '17', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1843', 'Adimaly', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1844', 'Adoor', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1845', 'Adur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1846', 'Akathiyur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1847', 'Alangad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1848', 'Alappuzha', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1849', 'Aluva', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1850', 'Ancharakandy', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1851', 'Angamaly', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1852', 'Aroor', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1853', 'Arukutti', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1854', 'Attingal', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1855', 'Avinissery', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1856', 'Azhikode North', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1857', 'Azhikode South', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1858', 'Azhiyur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1859', 'Balussery', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1860', 'Bangramanjeshwar', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1861', 'Beypur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1862', 'Brahmakulam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1863', 'Chala', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1864', 'Chalakudi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1865', 'Changanacheri', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1866', 'Chauwara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1867', 'Chavakkad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1868', 'Chelakkara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1869', 'Chelora', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1870', 'Chendamangalam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1871', 'Chengamanad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1872', 'Chengannur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1873', 'Cheranallur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1874', 'Cheriyakadavu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1875', 'Cherthala', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1876', 'Cherukunnu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1877', 'Cheruthazham', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1878', 'Cheruvannur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1879', 'Cheruvattur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1880', 'Chevvur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1881', 'Chirakkal', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1882', 'Chittur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1883', 'Chockli', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1884', 'Churnikkara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1885', 'Dharmadam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1886', 'Edappal', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1887', 'Edathala', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1888', 'Elayavur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1889', 'Elur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1890', 'Eranholi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1891', 'Erattupetta', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1892', 'Ernakulam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1893', 'Eruvatti', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1894', 'Ettumanoor', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1895', 'Feroke', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1896', 'Guruvayur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1897', 'Haripad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1898', 'Hosabettu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1899', 'Idukki', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1900', 'Iringaprom', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1901', 'Irinjalakuda', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1902', 'Iriveri', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1903', 'Kadachira', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1904', 'Kadalundi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1905', 'Kadamakkudy', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1906', 'Kadirur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1907', 'Kadungallur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1908', 'Kakkodi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1909', 'Kalady', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1910', 'Kalamassery', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1911', 'Kalliasseri', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1912', 'Kalpetta', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1913', 'Kanhangad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1914', 'Kanhirode', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1915', 'Kanjikkuzhi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1916', 'Kanjikode', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1917', 'Kanjirappalli', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1918', 'Kannadiparamba', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1919', 'Kannangad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1920', 'Kannapuram', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1921', 'Kannur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1922', 'Kannur Cantonment', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1923', 'Karunagappally', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1924', 'Karuvamyhuruthy', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1925', 'Kasaragod', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1926', 'Kasargod', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1927', 'Kattappana', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1928', 'Kayamkulam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1929', 'Kedamangalam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1930', 'Kochi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1931', 'Kodamthuruthu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1932', 'Kodungallur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1933', 'Koduvally', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1934', 'Koduvayur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1935', 'Kokkothamangalam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1936', 'Kolazhy', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1937', 'Kollam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1938', 'Komalapuram', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1939', 'Koothattukulam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1940', 'Koratty', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1941', 'Kothamangalam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1942', 'Kottarakkara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1943', 'Kottayam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1944', 'Kottayam Malabar', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1945', 'Kottuvally', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1946', 'Koyilandi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1947', 'Kozhikode', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1948', 'Kudappanakunnu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1949', 'Kudlu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1950', 'Kumarakom', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1951', 'Kumily', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1952', 'Kunnamangalam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1953', 'Kunnamkulam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1954', 'Kurikkad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1955', 'Kurkkanchery', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1956', 'Kuthuparamba', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1957', 'Kuttakulam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1958', 'Kuttikkattur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1959', 'Kuttur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1960', 'Malappuram', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1961', 'Mallappally', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1962', 'Manjeri', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1963', 'Manjeshwar', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1964', 'Mannancherry', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1965', 'Mannar', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1966', 'Mannarakkat', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1967', 'Maradu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1968', 'Marathakkara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1969', 'Marutharod', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1970', 'Mattannur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1971', 'Mavelikara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1972', 'Mavilayi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1973', 'Mavur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1974', 'Methala', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1975', 'Muhamma', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1976', 'Mulavukad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1977', 'Mundakayam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1978', 'Munderi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1979', 'Munnar', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1980', 'Muthakunnam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1981', 'Muvattupuzha', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1982', 'Muzhappilangad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1983', 'Nadapuram', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1984', 'Nadathara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1985', 'Narath', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1986', 'Nattakam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1987', 'Nedumangad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1988', 'Nenmenikkara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1989', 'New Mahe', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1990', 'Neyyattinkara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1991', 'Nileshwar', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1992', 'Olavanna', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1993', 'Ottapalam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1994', 'Ottappalam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1995', 'Paduvilayi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1996', 'Palai', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1997', 'Palakkad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1998', 'Palayad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('1999', 'Palissery', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2000', 'Pallikkunnu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2001', 'Paluvai', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2002', 'Panniyannur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2003', 'Pantalam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2004', 'Panthiramkavu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2005', 'Panur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2006', 'Pappinisseri', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2007', 'Parassala', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2008', 'Paravur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2009', 'Pathanamthitta', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2010', 'Pathanapuram', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2011', 'Pathiriyad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2012', 'Pattambi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2013', 'Pattiom', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2014', 'Pavaratty', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2015', 'Payyannur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2016', 'Peermade', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2017', 'Perakam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2018', 'Peralasseri', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2019', 'Peringathur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2020', 'Perinthalmanna', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2021', 'Perole', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2022', 'Perumanna', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2023', 'Perumbaikadu', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2024', 'Perumbavoor', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2025', 'Pinarayi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2026', 'Piravam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2027', 'Ponnani', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2028', 'Pottore', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2029', 'Pudukad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2030', 'Punalur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2031', 'Puranattukara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2032', 'Puthunagaram', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2033', 'Puthuppariyaram', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2034', 'Puzhathi', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2035', 'Ramanattukara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2036', 'Shoranur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2037', 'Sultans Battery', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2038', 'Sulthan Bathery', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2039', 'Talipparamba', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2040', 'Thaikkad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2041', 'Thalassery', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2042', 'Thannirmukkam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2043', 'Theyyalingal', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2044', 'Thiruvalla', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2045', 'Thiruvananthapuram', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2046', 'Thiruvankulam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2047', 'Thodupuzha', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2048', 'Thottada', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2049', 'Thrippunithura', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2050', 'Thrissur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2051', 'Tirur', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2052', 'Udma', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2053', 'Vadakara', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2054', 'Vaikam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2055', 'Valapattam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2056', 'Vallachira', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2057', 'Varam', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2058', 'Varappuzha', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2059', 'Varkala', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2060', 'Vayalar', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2061', 'Vazhakkala', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2062', 'Venmanad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2063', 'Villiappally', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2064', 'Wayanad', '19', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2065', 'Agethi', '20', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2066', 'Amini', '20', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2067', 'Androth Island', '20', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2068', 'Kavaratti', '20', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2069', 'Minicoy', '20', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2070', 'Agar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2071', 'Ajaigarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2072', 'Akoda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2073', 'Akodia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2074', 'Alampur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2075', 'Alirajpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2076', 'Alot', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2077', 'Amanganj', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2078', 'Amarkantak', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2079', 'Amarpatan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2080', 'Amarwara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2081', 'Ambada', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2082', 'Ambah', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2083', 'Amla', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2084', 'Amlai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2085', 'Anjad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2086', 'Antri', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2087', 'Anuppur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2088', 'Aron', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2089', 'Ashoknagar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2090', 'Ashta', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2091', 'Babai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2092', 'Bada Malhera', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2093', 'Badagaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2094', 'Badagoan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2095', 'Badarwas', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2096', 'Badawada', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2097', 'Badi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2098', 'Badkuhi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2099', 'Badnagar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2100', 'Badnawar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2101', 'Badod', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2102', 'Badoda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2103', 'Badra', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2104', 'Bagh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2105', 'Bagli', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2106', 'Baihar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2107', 'Baikunthpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2108', 'Bakswaha', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2109', 'Balaghat', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2110', 'Baldeogarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2111', 'Bamaniya', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2112', 'Bamhani', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2113', 'Bamor', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2114', 'Bamora', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2115', 'Banda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2116', 'Bangawan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2117', 'Bansatar Kheda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2118', 'Baraily', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2119', 'Barela', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2120', 'Barghat', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2121', 'Bargi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2122', 'Barhi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2123', 'Barigarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2124', 'Barwaha', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2125', 'Barwani', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2126', 'Basoda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2127', 'Begamganj', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2128', 'Beohari', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2129', 'Berasia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2130', 'Betma', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2131', 'Betul', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2132', 'Betul Bazar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2133', 'Bhainsdehi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2134', 'Bhamodi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2135', 'Bhander', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2136', 'Bhanpura', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2137', 'Bharveli', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2138', 'Bhaurasa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2139', 'Bhavra', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2140', 'Bhedaghat', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2141', 'Bhikangaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2142', 'Bhilakhedi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2143', 'Bhind', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2144', 'Bhitarwar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2145', 'Bhopal', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2146', 'Bhuibandh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2147', 'Biaora', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2148', 'Bijawar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2149', 'Bijeypur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2150', 'Bijrauni', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2151', 'Bijuri', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2152', 'Bilaua', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2153', 'Bilpura', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2154', 'Bina Railway Colony', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2155', 'Bina-Etawa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2156', 'Birsinghpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2157', 'Boda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2158', 'Budhni', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2159', 'Burhanpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2160', 'Burhar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2161', 'Chachaura Binaganj', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2162', 'Chakghat', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2163', 'Chandameta Butar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2164', 'Chanderi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2165', 'Chandia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2166', 'Chandla', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2167', 'Chaurai Khas', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2168', 'Chhatarpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2169', 'Chhindwara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2170', 'Chhota Chhindwara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2171', 'Chichli', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2172', 'Chitrakut', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2173', 'Churhat', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2174', 'Daboh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2175', 'Dabra', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2176', 'Damoh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2177', 'Damua', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2178', 'Datia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2179', 'Deodara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2180', 'Deori', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2181', 'Deori Khas', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2182', 'Depalpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2183', 'Devendranagar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2184', 'Devhara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2185', 'Dewas', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2186', 'Dhamnod', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2187', 'Dhana', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2188', 'Dhanpuri', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2189', 'Dhar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2190', 'Dharampuri', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2191', 'Dighawani', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2192', 'Diken', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2193', 'Dindori', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2194', 'Dola', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2195', 'Dumar Kachhar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2196', 'Dungariya Chhapara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2197', 'Gadarwara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2198', 'Gairatganj', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2199', 'Gandhi Sagar Hydel Colony', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2200', 'Ganjbasoda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2201', 'Garhakota', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2202', 'Garhi Malhara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2203', 'Garoth', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2204', 'Gautapura', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2205', 'Ghansor', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2206', 'Ghuwara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2207', 'Gogaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2208', 'Gogapur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2209', 'Gohad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2210', 'Gormi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2211', 'Govindgarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2212', 'Guna', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2213', 'Gurh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2214', 'Gwalior', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2215', 'Hanumana', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2216', 'Harda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2217', 'Harpalpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2218', 'Harrai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2219', 'Harsud', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2220', 'Hatod', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2221', 'Hatpipalya', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2222', 'Hatta', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2223', 'Hindoria', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2224', 'Hirapur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2225', 'Hoshangabad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2226', 'Ichhawar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2227', 'Iklehra', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2228', 'Indergarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2229', 'Indore', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2230', 'Isagarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2231', 'Itarsi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2232', 'Jabalpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2233', 'Jabalpur Cantonment', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2234', 'Jabalpur G.C.F', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2235', 'Jaisinghnagar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2236', 'Jaithari', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2237', 'Jaitwara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2238', 'Jamai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2239', 'Jaora', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2240', 'Jatachhapar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2241', 'Jatara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2242', 'Jawad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2243', 'Jawar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2244', 'Jeronkhalsa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2245', 'Jhabua', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2246', 'Jhundpura', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2247', 'Jiran', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2248', 'Jirapur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2249', 'Jobat', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2250', 'Joura', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2251', 'Kailaras', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2252', 'Kaimur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2253', 'Kakarhati', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2254', 'Kalichhapar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2255', 'Kanad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2256', 'Kannod', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2257', 'Kantaphod', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2258', 'Kareli', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2259', 'Karera', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2260', 'Kari', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2261', 'Karnawad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2262', 'Karrapur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2263', 'Kasrawad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2264', 'Katangi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2265', 'Katni', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2266', 'Kelhauri', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2267', 'Khachrod', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2268', 'Khajuraho', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2269', 'Khamaria', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2270', 'Khand', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2271', 'Khandwa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2272', 'Khaniyadhana', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2273', 'Khargapur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2274', 'Khargone', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2275', 'Khategaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2276', 'Khetia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2277', 'Khilchipur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2278', 'Khirkiya', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2279', 'Khujner', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2280', 'Khurai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2281', 'Kolaras', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2282', 'Kotar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2283', 'Kothi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2284', 'Kotma', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2285', 'Kukshi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2286', 'Kumbhraj', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2287', 'Kurwai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2288', 'Lahar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2289', 'Lakhnadon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2290', 'Lateri', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2291', 'Laundi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2292', 'Lidhora Khas', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2293', 'Lodhikheda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2294', 'Loharda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2295', 'Machalpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2296', 'Madhogarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2297', 'Maharajpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2298', 'Maheshwar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2299', 'Mahidpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2300', 'Maihar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2301', 'Majholi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2302', 'Makronia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2303', 'Maksi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2304', 'Malaj Khand', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2305', 'Malanpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2306', 'Malhargarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2307', 'Manasa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2308', 'Manawar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2309', 'Mandav', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2310', 'Mandideep', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2311', 'Mandla', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2312', 'Mandleshwar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2313', 'Mandsaur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2314', 'Manegaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2315', 'Mangawan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2316', 'Manglaya Sadak', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2317', 'Manpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2318', 'Mau', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2319', 'Mauganj', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2320', 'Meghnagar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2321', 'Mehara Gaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2322', 'Mehgaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2323', 'Mhaugaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2324', 'Mhow', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2325', 'Mihona', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2326', 'Mohgaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2327', 'Morar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2328', 'Morena', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2329', 'Morwa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2330', 'Multai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2331', 'Mundi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2332', 'Mungaoli', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2333', 'Murwara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2334', 'Nagda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2335', 'Nagod', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2336', 'Nagri', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2337', 'Naigarhi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2338', 'Nainpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2339', 'Nalkheda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2340', 'Namli', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2341', 'Narayangarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2342', 'Narsimhapur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2343', 'Narsingarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2344', 'Narsinghpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2345', 'Narwar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2346', 'Nasrullaganj', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2347', 'Naudhia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2348', 'Naugaon', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2349', 'Naurozabad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2350', 'Neemuch', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2351', 'Nepa Nagar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2352', 'Neuton Chikhli Kalan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2353', 'Nimach', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2354', 'Niwari', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2355', 'Obedullaganj', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2356', 'Omkareshwar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2357', 'Orachha', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2358', 'Ordinance Factory Itarsi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2359', 'Pachmarhi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2360', 'Pachmarhi Cantonment', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2361', 'Pachore', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2362', 'Palchorai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2363', 'Palda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2364', 'Palera', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2365', 'Pali', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2366', 'Panagar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2367', 'Panara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2368', 'Pandaria', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2369', 'Pandhana', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2370', 'Pandhurna', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2371', 'Panna', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2372', 'Pansemal', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2373', 'Parasia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2374', 'Pasan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2375', 'Patan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2376', 'Patharia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2377', 'Pawai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2378', 'Petlawad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2379', 'Phuph Kalan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2380', 'Pichhore', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2381', 'Pipariya', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2382', 'Pipliya Mandi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2383', 'Piploda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2384', 'Pithampur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2385', 'Polay Kalan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2386', 'Porsa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2387', 'Prithvipur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2388', 'Raghogarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2389', 'Rahatgarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2390', 'Raisen', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2391', 'Rajakhedi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2392', 'Rajgarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2393', 'Rajnagar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2394', 'Rajpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2395', 'Rampur Baghelan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2396', 'Rampur Naikin', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2397', 'Rampura', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2398', 'Ranapur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2399', 'Ranipura', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2400', 'Ratangarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2401', 'Ratlam', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2402', 'Ratlam Kasba', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2403', 'Rau', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2404', 'Rehli', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2405', 'Rehti', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2406', 'Rewa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2407', 'Sabalgarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2408', 'Sagar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2409', 'Sagar Cantonment', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2410', 'Sailana', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2411', 'Sanawad', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2412', 'Sanchi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2413', 'Sanwer', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2414', 'Sarangpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2415', 'Sardarpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2416', 'Sarni', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2417', 'Satai', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2418', 'Satna', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2419', 'Satwas', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2420', 'Sausar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2421', 'Sehore', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2422', 'Semaria', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2423', 'Sendhwa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2424', 'Seondha', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2425', 'Seoni', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2426', 'Seoni Malwa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2427', 'Sethia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2428', 'Shahdol', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2429', 'Shahgarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2430', 'Shahpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2431', 'Shahpura', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2432', 'Shajapur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2433', 'Shamgarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2434', 'Sheopur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2435', 'Shivpuri', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2436', 'Shujalpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2437', 'Sidhi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2438', 'Sihora', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2439', 'Singolo', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2440', 'Singrauli', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2441', 'Sinhasa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2442', 'Sirgora', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2443', 'Sirmaur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2444', 'Sironj', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2445', 'Sitamau', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2446', 'Sohagpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2447', 'Sonkatch', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2448', 'Soyatkalan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2449', 'Suhagi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2450', 'Sultanpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2451', 'Susner', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2452', 'Suthaliya', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2453', 'Tal', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2454', 'Talen', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2455', 'Tarana', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2456', 'Taricharkalan', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2457', 'Tekanpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2458', 'Tendukheda', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2459', 'Teonthar', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2460', 'Thandia', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2461', 'Tikamgarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2462', 'Timarni', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2463', 'Tirodi', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2464', 'Udaipura', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2465', 'Ujjain', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2466', 'Ukwa', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2467', 'Umaria', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2468', 'Unchahara', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2469', 'Unhel', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2470', 'Vehicle Factory Jabalpur', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2471', 'Vidisha', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2472', 'Vijayraghavgarh', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2473', 'Waraseoni', '21', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2474', 'Achalpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2475', 'Aheri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2476', 'Ahmadnagar Cantonment', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2477', 'Ahmadpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2478', 'Ahmednagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2479', 'Ajra', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2480', 'Akalkot', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2481', 'Akkalkuwa', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2482', 'Akola', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2483', 'Akot', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2484', 'Alandi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2485', 'Alibag', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2486', 'Allapalli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2487', 'Alore', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2488', 'Amalner', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2489', 'Ambad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2490', 'Ambajogai', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2491', 'Ambernath', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2492', 'Ambivali Tarf Wankhal', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2493', 'Amgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2494', 'Amravati', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2495', 'Anjangaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2496', 'Arvi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2497', 'Ashta', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2498', 'Ashti', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2499', 'Aurangabad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2500', 'Aurangabad Cantonment', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2501', 'Ausa', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2502', 'Babhulgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2503', 'Badlapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2504', 'Balapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2505', 'Ballarpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2506', 'Baramati', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2507', 'Barshi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2508', 'Basmat', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2509', 'Beed', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2510', 'Bhadravati', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2511', 'Bhagur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2512', 'Bhandara', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2513', 'Bhigvan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2514', 'Bhingar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2515', 'Bhiwandi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2516', 'Bhokhardan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2517', 'Bhor', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2518', 'Bhosari', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2519', 'Bhum', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2520', 'Bhusawal', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2521', 'Bid', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2522', 'Biloli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2523', 'Birwadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2524', 'Boisar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2525', 'Bop Khel', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2526', 'Brahmapuri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2527', 'Budhgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2528', 'Buldana', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2529', 'Buldhana', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2530', 'Butibori', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2531', 'Chakan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2532', 'Chalisgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2533', 'Chandrapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2534', 'Chandur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2535', 'Chandur Bazar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2536', 'Chandvad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2537', 'Chicholi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2538', 'Chikhala', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2539', 'Chikhaldara', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2540', 'Chikhli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2541', 'Chinchani', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2542', 'Chinchwad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2543', 'Chiplun', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2544', 'Chopda', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2545', 'Dabhol', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2546', 'Dahance', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2547', 'Dahanu', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2548', 'Daharu', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2549', 'Dapoli Camp', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2550', 'Darwa', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2551', 'Daryapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2552', 'Dattapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2553', 'Daund', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2554', 'Davlameti', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2555', 'Deglur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2556', 'Dehu Road', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2557', 'Deolali', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2558', 'Deolali Pravara', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2559', 'Deoli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2560', 'Desaiganj', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2561', 'Deulgaon Raja', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2562', 'Dewhadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2563', 'Dharangaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2564', 'Dharmabad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2565', 'Dharur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2566', 'Dhatau', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2567', 'Dhule', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2568', 'Digdoh', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2569', 'Diglur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2570', 'Digras', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2571', 'Dombivli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2572', 'Dondaicha', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2573', 'Dudhani', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2574', 'Durgapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2575', 'Dyane', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2576', 'Edandol', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2577', 'Eklahare', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2578', 'Faizpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2579', 'Fekari', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2580', 'Gadchiroli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2581', 'Gadhinghaj', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2582', 'Gandhi Nagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2583', 'Ganeshpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2584', 'Gangakher', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2585', 'Gangapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2586', 'Gevrai', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2587', 'Ghatanji', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2588', 'Ghoti', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2589', 'Ghugus', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2590', 'Ghulewadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2591', 'Godoli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2592', 'Gondia', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2593', 'Guhagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2594', 'Hadgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2595', 'Harnai Beach', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2596', 'Hinganghat', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2597', 'Hingoli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2598', 'Hupari', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2599', 'Ichalkaranji', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2600', 'Igatpuri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2601', 'Indapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2602', 'Jaisinghpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2603', 'Jalgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2604', 'Jalna', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2605', 'Jamkhed', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2606', 'Jawhar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2607', 'Jaysingpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2608', 'Jejuri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2609', 'Jintur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2610', 'Junnar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2611', 'Kabnur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2612', 'Kagal', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2613', 'Kalamb', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2614', 'Kalamnuri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2615', 'Kalas', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2616', 'Kalmeshwar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2617', 'Kalundre', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2618', 'Kalyan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2619', 'Kamthi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2620', 'Kamthi Cantonment', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2621', 'Kandari', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2622', 'Kandhar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2623', 'Kandri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2624', 'Kandri II', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2625', 'Kanhan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2626', 'Kankavli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2627', 'Kannad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2628', 'Karad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2629', 'Karanja', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2630', 'Karanje Tarf', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2631', 'Karivali', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2632', 'Karjat', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2633', 'Karmala', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2634', 'Kasara Budruk', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2635', 'Katai', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2636', 'Katkar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2637', 'Katol', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2638', 'Kegaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2639', 'Khadkale', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2640', 'Khadki', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2641', 'Khamgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2642', 'Khapa', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2643', 'Kharadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2644', 'Kharakvasla', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2645', 'Khed', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2646', 'Kherdi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2647', 'Khoni', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2648', 'Khopoli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2649', 'Khuldabad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2650', 'Kinwat', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2651', 'Kodoli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2652', 'Kolhapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2653', 'Kon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2654', 'Kondumal', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2655', 'Kopargaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2656', 'Kopharad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2657', 'Koradi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2658', 'Koregaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2659', 'Korochi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2660', 'Kudal', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2661', 'Kundaim', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2662', 'Kundalwadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2663', 'Kurandvad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2664', 'Kurduvadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2665', 'Kusgaon Budruk', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2666', 'Lanja', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2667', 'Lasalgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2668', 'Latur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2669', 'Loha', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2670', 'Lohegaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2671', 'Lonar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2672', 'Lonavala', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2673', 'Madhavnagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2674', 'Mahabaleshwar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2675', 'Mahad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2676', 'Mahadula', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2677', 'Maindargi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2678', 'Majalgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2679', 'Malegaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2680', 'Malgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2681', 'Malkapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2682', 'Malwan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2683', 'Manadur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2684', 'Manchar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2685', 'Mangalvedhe', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2686', 'Mangrul Pir', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2687', 'Manmad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2688', 'Manor', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2689', 'Mansar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2690', 'Manwath', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2691', 'Mapuca', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2692', 'Matheran', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2693', 'Mehkar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2694', 'Mhasla', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2695', 'Mhaswad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2696', 'Mira Bhayandar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2697', 'Miraj', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2698', 'Mohpa', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2699', 'Mohpada', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2700', 'Moram', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2701', 'Morshi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2702', 'Mowad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2703', 'Mudkhed', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2704', 'Mukhed', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2705', 'Mul', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2706', 'Mulshi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2707', 'Mumbai', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2708', 'Murbad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2709', 'Murgud', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2710', 'Murtijapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2711', 'Murud', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2712', 'Nachane', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2713', 'Nagardeole', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2714', 'Nagothane', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2715', 'Nagpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2716', 'Nakoda', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2717', 'Nalasopara', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2718', 'Naldurg', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2719', 'Nanded', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2720', 'Nandgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2721', 'Nandura', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2722', 'Nandurbar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2723', 'Narkhed', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2724', 'Nashik', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2725', 'Navapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2726', 'Navi Mumbai', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2727', 'Navi Mumbai Panvel', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2728', 'Neral', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2729', 'Nigdi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2730', 'Nilanga', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2731', 'Nildoh', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2732', 'Nimbhore', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2733', 'Ojhar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2734', 'Osmanabad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2735', 'Pachgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2736', 'Pachora', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2737', 'Padagha', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2738', 'Paithan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2739', 'Palghar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2740', 'Pali', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2741', 'Panchgani', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2742', 'Pandhakarwada', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2743', 'Pandharpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2744', 'Panhala', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2745', 'Panvel', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2746', 'Paranda', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2747', 'Parbhani', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2748', 'Parli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2749', 'Parola', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2750', 'Partur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2751', 'Pasthal', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2752', 'Patan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2753', 'Pathardi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2754', 'Pathri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2755', 'Patur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2756', 'Pawni', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2757', 'Pen', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2758', 'Pethumri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2759', 'Phaltan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2760', 'Pimpri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2761', 'Poladpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2762', 'Pulgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2763', 'Pune', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2764', 'Pune Cantonment', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2765', 'Purna', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2766', 'Purushottamnagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2767', 'Pusad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2768', 'Rahimatpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2769', 'Rahta Pimplas', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2770', 'Rahuri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2771', 'Raigad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2772', 'Rajapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2773', 'Rajgurunagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2774', 'Rajur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2775', 'Rajura', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2776', 'Ramtek', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2777', 'Ratnagiri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2778', 'Ravalgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2779', 'Raver', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2780', 'Revadanda', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2781', 'Risod', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2782', 'Roha Ashtami', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2783', 'Sakri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2784', 'Sandor', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2785', 'Sangamner', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2786', 'Sangli', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2787', 'Sangole', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2788', 'Sasti', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2789', 'Sasvad', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2790', 'Satana', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2791', 'Satara', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2792', 'Savantvadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2793', 'Savda', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2794', 'Savner', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2795', 'Sawari Jawharnagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2796', 'Selu', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2797', 'Shahada', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2798', 'Shahapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2799', 'Shegaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2800', 'Shelar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2801', 'Shendurjana', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2802', 'Shirdi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2803', 'Shirgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2804', 'Shirpur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2805', 'Shirur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2806', 'Shirwal', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2807', 'Shivatkar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2808', 'Shrigonda', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2809', 'Shrirampur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2810', 'Shrirampur Rural', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2811', 'Sillewada', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2812', 'Sillod', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2813', 'Sindhudurg', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2814', 'Sindi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2815', 'Sindi Turf Hindnagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2816', 'Sindkhed Raja', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2817', 'Singnapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2818', 'Sinnar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2819', 'Sirur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2820', 'Sitasawangi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2821', 'Solapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2822', 'Sonai', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2823', 'Sonegaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2824', 'Soyagaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2825', 'Srivardhan', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2826', 'Surgana', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2827', 'Talegaon Dabhade', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2828', 'Taloda', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2829', 'Taloja', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2830', 'Talwade', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2831', 'Tarapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2832', 'Tasgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2833', 'Tathavade', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2834', 'Tekadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2835', 'Telhara', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2836', 'Thane', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2837', 'Tirira', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2838', 'Totaladoh', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2839', 'Trimbak', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2840', 'Tuljapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2841', 'Tumsar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2842', 'Uchgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2843', 'Udgir', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2844', 'Ulhasnagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2845', 'Umarga', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2846', 'Umarkhed', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2847', 'Umarsara', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2848', 'Umbar Pada Nandade', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2849', 'Umred', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2850', 'Umri Pragane Balapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2851', 'Uran', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2852', 'Uran Islampur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2853', 'Utekhol', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2854', 'Vada', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2855', 'Vadgaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2856', 'Vadgaon Kasba', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2857', 'Vaijapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2858', 'Vanvadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2859', 'Varangaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2860', 'Vasai', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2861', 'Vasantnagar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2862', 'Vashind', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2863', 'Vengurla', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2864', 'Virar', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2865', 'Visapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2866', 'Vite', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2867', 'Vithalwadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2868', 'Wadi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2869', 'Waghapur', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2870', 'Wai', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2871', 'Wajegaon', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2872', 'Walani', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2873', 'Wanadongri', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2874', 'Wani', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2875', 'Wardha', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2876', 'Warora', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2877', 'Warthi', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2878', 'Warud', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2879', 'Washim', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2880', 'Yaval', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2881', 'Yavatmal', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2882', 'Yeola', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2883', 'Yerkheda', '22', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2884', 'Andro', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2885', 'Bijoy Govinda', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2886', 'Bishnupur', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2887', 'Churachandpur', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2888', 'Heriok', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2889', 'Imphal', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2890', 'Jiribam', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2891', 'Kakching', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2892', 'Kakching Khunou', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2893', 'Khongman', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2894', 'Kumbi', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2895', 'Kwakta', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2896', 'Lamai', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2897', 'Lamjaotongba', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2898', 'Lamshang', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2899', 'Lilong', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2900', 'Mayang Imphal', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2901', 'Moirang', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2902', 'Moreh', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2903', 'Nambol', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2904', 'Naoriya Pakhanglakpa', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2905', 'Ningthoukhong', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2906', 'Oinam', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2907', 'Porompat', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2908', 'Samurou', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2909', 'Sekmai Bazar', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2910', 'Senapati', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2911', 'Sikhong Sekmai', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2912', 'Sugnu', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2913', 'Thongkhong Laxmi Bazar', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2914', 'Thoubal', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2915', 'Torban', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2916', 'Wangjing', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2917', 'Wangoi', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2918', 'Yairipok', '23', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2919', 'Baghmara', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2920', 'Cherrapunji', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2921', 'Jawai', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2922', 'Madanrting', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2923', 'Mairang', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2924', 'Mawlai', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2925', 'Nongmynsong', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2926', 'Nongpoh', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2927', 'Nongstoin', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2928', 'Nongthymmai', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2929', 'Pynthorumkhrah', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2930', 'Resubelpara', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2931', 'Shillong', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2932', 'Shillong Cantonment', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2933', 'Tura', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2934', 'Williamnagar', '24', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2935', 'Aizawl', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2936', 'Bairabi', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2937', 'Biate', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2938', 'Champhai', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2939', 'Darlawn', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2940', 'Hnahthial', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2941', 'Kawnpui', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2942', 'Khawhai', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2943', 'Khawzawl', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2944', 'Kolasib', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2945', 'Lengpui', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2946', 'Lunglei', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2947', 'Mamit', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2948', 'North Vanlaiphai', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2949', 'Saiha', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2950', 'Sairang', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2951', 'Saitul', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2952', 'Serchhip', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2953', 'Thenzawl', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2954', 'Tlabung', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2955', 'Vairengte', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2956', 'Zawlnuam', '25', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2957', 'Chumukedima', '26', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2958', 'Dimapur', '26', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2959', 'Kohima', '26', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2960', 'Mokokchung', '26', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2961', 'Mon', '26', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2962', 'Phek', '26', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2963', 'Tuensang', '26', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2964', 'Wokha', '26', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2965', 'Zunheboto', '26', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2966', 'Anandapur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2967', 'Angul', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2968', 'Aska', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2969', 'Athgarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2970', 'Athmallik', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2971', 'Balagoda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2972', 'Balangir', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2973', 'Balasore', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2974', 'Baleshwar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2975', 'Balimeta', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2976', 'Balugaon', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2977', 'Banapur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2978', 'Bangura', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2979', 'Banki', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2980', 'Banposh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2981', 'Barbil', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2982', 'Bargarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2983', 'Baripada', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2984', 'Barpali', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2985', 'Basudebpur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2986', 'Baudh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2987', 'Belagachhia', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2988', 'Belaguntha', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2989', 'Belpahar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2990', 'Berhampur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2991', 'Bhadrak', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2992', 'Bhanjanagar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2993', 'Bhawanipatna', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2994', 'Bhuban', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2995', 'Bhubaneswar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2996', 'Binika', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2997', 'Birmitrapur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2998', 'Bishama Katek', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('2999', 'Bolangir', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3000', 'Brahmapur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3001', 'Brajrajnagar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3002', 'Buguda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3003', 'Burla', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3004', 'Byasanagar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3005', 'Champua', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3006', 'Chandapur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3007', 'Chandbali', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3008', 'Chandili', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3009', 'Charibatia', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3010', 'Chatrapur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3011', 'Chikitigarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3012', 'Chitrakonda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3013', 'Choudwar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3014', 'Cuttack', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3015', 'Dadhapatna', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3016', 'Daitari', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3017', 'Damanjodi', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3018', 'Deogarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3019', 'Deracolliery', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3020', 'Dhamanagar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3021', 'Dhenkanal', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3022', 'Digapahandi', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3023', 'Dungamal', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3024', 'Fertilizer Corporation of Indi', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3025', 'Ganjam', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3026', 'Ghantapada', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3027', 'Gopalpur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3028', 'Gudari', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3029', 'Gunupur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3030', 'Hatibandha', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3031', 'Hinjilikatu', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3032', 'Hirakud', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3033', 'Jagatsinghapur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3034', 'Jajpur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3035', 'Jalda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3036', 'Jaleswar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3037', 'Jatni', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3038', 'Jaypur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3039', 'Jeypore', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3040', 'Jharsuguda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3041', 'Jhumpura', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3042', 'Joda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3043', 'Junagarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3044', 'Kamakhyanagar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3045', 'Kantabanji', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3046', 'Kantilo', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3047', 'Karanja', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3048', 'Kashinagara', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3049', 'Kataka', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3050', 'Kavisuryanagar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3051', 'Kendrapara', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3052', 'Kendujhar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3053', 'Keonjhar', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3054', 'Kesinga', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3055', 'Khaliapali', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3056', 'Khalikote', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3057', 'Khandaparha', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3058', 'Kharhial', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3059', 'Kharhial Road', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3060', 'Khatiguda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3061', 'Khurda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3062', 'Kochinda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3063', 'Kodala', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3064', 'Konark', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3065', 'Koraput', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3066', 'Kotaparh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3067', 'Lanjigarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3068', 'Lattikata', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3069', 'Makundapur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3070', 'Malkangiri', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3071', 'Mukhiguda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3072', 'Nabarangpur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3073', 'Nalco', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3074', 'Naurangapur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3075', 'Nayagarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3076', 'Nilagiri', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3077', 'Nimaparha', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3078', 'Nuapada', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3079', 'Nuapatna', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3080', 'OCL Industrialship', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3081', 'Padampur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3082', 'Paradip', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3083', 'Paradwip', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3084', 'Parlakimidi', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3085', 'Patamundai', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3086', 'Patnagarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3087', 'Phulabani', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3088', 'Pipili', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3089', 'Polasara', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3090', 'Pratapsasan', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3091', 'Puri', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3092', 'Purushottampur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3093', 'Rairangpur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3094', 'Raj Gangpur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3095', 'Rambha', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3096', 'Raurkela', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3097', 'Raurkela Civil Township', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3098', 'Rayagada', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3099', 'Redhakhol', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3100', 'Remuna', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3101', 'Rengali', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3102', 'Rourkela', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3103', 'Sambalpur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3104', 'Sinapali', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3105', 'Sonepur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3106', 'Sorada', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3107', 'Soro', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3108', 'Sunabeda', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3109', 'Sundargarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3110', 'Talcher', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3111', 'Talcher Thermal Power Station ', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3112', 'Tarabha', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3113', 'Tensa', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3114', 'Titlagarh', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3115', 'Udala', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3116', 'Udayagiri', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3117', 'Umarkot', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3118', 'Vikrampur', '29', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3119', 'Ariankuppam', '31', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3120', 'Karaikal', '31', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3121', 'Kurumbapet', '31', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3122', 'Mahe', '31', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3123', 'Ozhukarai', '31', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3124', 'Pondicherry', '31', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3125', 'Villianur', '31', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3126', 'Yanam', '31', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3127', 'Abohar', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3128', 'Adampur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3129', 'Ahmedgarh', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3130', 'Ajnala', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3131', 'Akalgarh', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3132', 'Alawalpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3133', 'Amloh', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3134', 'Amritsar', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3135', 'Amritsar Cantonment', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3136', 'Anandpur Sahib', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3137', 'Badhni Kalan', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3138', 'Bagh Purana', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3139', 'Balachaur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3140', 'Banaur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3141', 'Banga', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3142', 'Banur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3143', 'Baretta', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3144', 'Bariwala', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3145', 'Barnala', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3146', 'Bassi Pathana', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3147', 'Batala', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3148', 'Bathinda', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3149', 'Begowal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3150', 'Behrampur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3151', 'Bhabat', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3152', 'Bhadur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3153', 'Bhankharpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3154', 'Bharoli Kalan', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3155', 'Bhawanigarh', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3156', 'Bhikhi', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3157', 'Bhikhiwind', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3158', 'Bhisiana', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3159', 'Bhogpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3160', 'Bhuch', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3161', 'Bhulath', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3162', 'Budha Theh', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3163', 'Budhlada', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3164', 'Chima', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3165', 'Chohal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3166', 'Dasuya', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3167', 'Daulatpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3168', 'Dera Baba Nanak', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3169', 'Dera Bassi', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3170', 'Dhanaula', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3171', 'Dharam Kot', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3172', 'Dhariwal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3173', 'Dhilwan', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3174', 'Dhuri', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3175', 'Dinanagar', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3176', 'Dirba', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3177', 'Doraha', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3178', 'Faridkot', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3179', 'Fateh Nangal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3180', 'Fatehgarh Churian', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3181', 'Fatehgarh Sahib', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3182', 'Fazilka', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3183', 'Firozpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3184', 'Firozpur Cantonment', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3185', 'Gardhiwala', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3186', 'Garhshankar', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3187', 'Ghagga', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3188', 'Ghanaur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3189', 'Giddarbaha', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3190', 'Gobindgarh', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3191', 'Goniana', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3192', 'Goraya', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3193', 'Gurdaspur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3194', 'Guru Har Sahai', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3195', 'Hajipur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3196', 'Handiaya', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3197', 'Hariana', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3198', 'Hoshiarpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3199', 'Hussainpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3200', 'Jagraon', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3201', 'Jaitu', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3202', 'Jalalabad', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3203', 'Jalandhar', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3204', 'Jalandhar Cantonment', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3205', 'Jandiala', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3206', 'Jugial', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3207', 'Kalanaur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3208', 'Kapurthala', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3209', 'Karoran', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3210', 'Kartarpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3211', 'Khamanon', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3212', 'Khanauri', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3213', 'Khanna', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3214', 'Kharar', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3215', 'Khem Karan', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3216', 'Kot Fatta', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3217', 'Kot Isa Khan', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3218', 'Kot Kapura', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3219', 'Kotkapura', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3220', 'Kurali', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3221', 'Lalru', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3222', 'Lehra Gaga', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3223', 'Lodhian Khas', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3224', 'Longowal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3225', 'Ludhiana', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3226', 'Machhiwara', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3227', 'Mahilpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3228', 'Majitha', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3229', 'Makhu', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3230', 'Malaut', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3231', 'Malerkotla', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3232', 'Maloud', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3233', 'Mandi Gobindgarh', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3234', 'Mansa', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3235', 'Maur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3236', 'Moga', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3237', 'Mohali', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3238', 'Moonak', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3239', 'Morinda', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3240', 'Mukerian', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3241', 'Muktsar', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3242', 'Mullanpur Dakha', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3243', 'Mullanpur Garibdas', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3244', 'Munak', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3245', 'Muradpura', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3246', 'Nabha', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3247', 'Nakodar', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3248', 'Nangal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3249', 'Nawashahr', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3250', 'Naya Nangal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3251', 'Nehon', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3252', 'Nurmahal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3253', 'Pathankot', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3254', 'Patiala', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3255', 'Patti', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3256', 'Pattran', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3257', 'Payal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3258', 'Phagwara', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3259', 'Phillaur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3260', 'Qadian', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3261', 'Rahon', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3262', 'Raikot', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3263', 'Raja Sansi', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3264', 'Rajpura', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3265', 'Ram Das', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3266', 'Raman', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3267', 'Rampura', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3268', 'Rayya', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3269', 'Rupnagar', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3270', 'Rurki Kasba', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3271', 'Sahnewal', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3272', 'Samana', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3273', 'Samrala', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3274', 'Sanaur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3275', 'Sangat', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3276', 'Sangrur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3277', 'Sansarpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3278', 'Sardulgarh', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3279', 'Shahkot', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3280', 'Sham Churasi', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3281', 'Shekhpura', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3282', 'Sirhind', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3283', 'Sri Hargobindpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3284', 'Sujanpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3285', 'Sultanpur Lodhi', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3286', 'Sunam', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3287', 'Talwandi Bhai', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3288', 'Talwara', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3289', 'Tappa', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3290', 'Tarn Taran', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3291', 'Urmar Tanda', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3292', 'Zira', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3293', 'Zirakpur', '32', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3294', 'Abu Road', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3295', 'Ajmer', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3296', 'Aklera', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3297', 'Alwar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3298', 'Amet', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3299', 'Antah', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3300', 'Anupgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3301', 'Asind', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3302', 'Bagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3303', 'Bagru', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3304', 'Bahror', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3305', 'Bakani', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3306', 'Bali', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3307', 'Balotra', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3308', 'Bandikui', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3309', 'Banswara', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3310', 'Baran', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3311', 'Bari', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3312', 'Bari Sadri', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3313', 'Barmer', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3314', 'Basi', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3315', 'Basni Belima', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3316', 'Baswa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3317', 'Bayana', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3318', 'Beawar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3319', 'Begun', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3320', 'Bhadasar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3321', 'Bhadra', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3322', 'Bhalariya', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3323', 'Bharatpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3324', 'Bhasawar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3325', 'Bhawani Mandi', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3326', 'Bhawri', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3327', 'Bhilwara', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3328', 'Bhindar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3329', 'Bhinmal', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3330', 'Bhiwadi', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3331', 'Bijoliya Kalan', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3332', 'Bikaner', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3333', 'Bilara', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3334', 'Bissau', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3335', 'Borkhera', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3336', 'Budhpura', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3337', 'Bundi', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3338', 'Chatsu', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3339', 'Chechat', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3340', 'Chhabra', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3341', 'Chhapar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3342', 'Chhipa Barod', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3343', 'Chhoti Sadri', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3344', 'Chirawa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3345', 'Chittaurgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3346', 'Chittorgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3347', 'Chomun', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3348', 'Churu', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3349', 'Daosa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3350', 'Dariba', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3351', 'Dausa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3352', 'Deoli', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3353', 'Deshnok', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3354', 'Devgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3355', 'Devli', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3356', 'Dhariawad', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3357', 'Dhaulpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3358', 'Dholpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3359', 'Didwana', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3360', 'Dig', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3361', 'Dungargarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3362', 'Dungarpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3363', 'Falna', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3364', 'Fatehnagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3365', 'Fatehpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3366', 'Gajsinghpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3367', 'Galiakot', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3368', 'Ganganagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3369', 'Gangapur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3370', 'Goredi Chancha', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3371', 'Gothra', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3372', 'Govindgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3373', 'Gulabpura', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3374', 'Hanumangarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3375', 'Hindaun', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3376', 'Indragarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3377', 'Jahazpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3378', 'Jaipur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3379', 'Jaisalmer', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3380', 'Jaiselmer', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3381', 'Jaitaran', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3382', 'Jalore', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3383', 'Jhalawar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3384', 'Jhalrapatan', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3385', 'Jhunjhunun', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3386', 'Jobner', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3387', 'Jodhpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3388', 'Kaithun', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3389', 'Kaman', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3390', 'Kankroli', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3391', 'Kanor', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3392', 'Kapasan', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3393', 'Kaprain', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3394', 'Karanpura', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3395', 'Karauli', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3396', 'Kekri', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3397', 'Keshorai Patan', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3398', 'Kesrisinghpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3399', 'Khairthal', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3400', 'Khandela', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3401', 'Khanpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3402', 'Kherli', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3403', 'Kherliganj', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3404', 'Kherwara Chhaoni', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3405', 'Khetri', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3406', 'Kiranipura', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3407', 'Kishangarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3408', 'Kishangarh Ranwal', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3409', 'Kolvi Rajendrapura', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3410', 'Kot Putli', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3411', 'Kota', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3412', 'Kuchaman', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3413', 'Kuchera', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3414', 'Kumbhalgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3415', 'Kumbhkot', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3416', 'Kumher', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3417', 'Kushalgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3418', 'Lachhmangarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3419', 'Ladnun', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3420', 'Lakheri', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3421', 'Lalsot', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3422', 'Losal', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3423', 'Madanganj', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3424', 'Mahu Kalan', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3425', 'Mahwa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3426', 'Makrana', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3427', 'Malpura', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3428', 'Mandal', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3429', 'Mandalgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3430', 'Mandawar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3431', 'Mandwa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3432', 'Mangrol', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3433', 'Manohar Thana', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3434', 'Manoharpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3435', 'Marwar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3436', 'Merta', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3437', 'Modak', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3438', 'Mount Abu', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3439', 'Mukandgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3440', 'Mundwa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3441', 'Nadbai', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3442', 'Naenwa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3443', 'Nagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3444', 'Nagaur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3445', 'Napasar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3446', 'Naraina', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3447', 'Nasirabad', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3448', 'Nathdwara', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3449', 'Nawa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3450', 'Nawalgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3451', 'Neem Ka Thana', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3452', 'Neemrana', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3453', 'Newa Talai', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3454', 'Nimaj', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3455', 'Nimbahera', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3456', 'Niwai', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3457', 'Nohar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3458', 'Nokha', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3459', 'One SGM', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3460', 'Padampur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3461', 'Pali', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3462', 'Partapur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3463', 'Parvatsar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3464', 'Pasoond', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3465', 'Phalna', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3466', 'Phalodi', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3467', 'Phulera', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3468', 'Pilani', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3469', 'Pilibanga', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3470', 'Pindwara', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3471', 'Pipalia Kalan', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3472', 'Pipar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3473', 'Pirawa', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3474', 'Pokaran', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3475', 'Pratapgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3476', 'Pushkar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3477', 'Raipur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3478', 'Raisinghnagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3479', 'Rajakhera', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3480', 'Rajaldesar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3481', 'Rajgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3482', 'Rajsamand', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3483', 'Ramganj Mandi', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3484', 'Ramgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3485', 'Rani', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3486', 'Raniwara', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3487', 'Ratan Nagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3488', 'Ratangarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3489', 'Rawatbhata', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3490', 'Rawatsar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3491', 'Rikhabdev', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3492', 'Ringas', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3493', 'Sadri', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3494', 'Sadulshahar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3495', 'Sagwara', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3496', 'Salumbar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3497', 'Sambhar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3498', 'Samdari', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3499', 'Sanchor', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3500', 'Sangariya', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3501', 'Sangod', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3502', 'Sardarshahr', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3503', 'Sarwar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3504', 'Satal Kheri', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3505', 'Sawai Madhopur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3506', 'Sewan Kalan', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3507', 'Shahpura', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3508', 'Sheoganj', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3509', 'Sikar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3510', 'Sirohi', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3511', 'Siwana', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3512', 'Sogariya', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3513', 'Sojat', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3514', 'Sojat Road', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3515', 'Sri Madhopur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3516', 'Sriganganagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3517', 'Sujangarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3518', 'Suket', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3519', 'Sumerpur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3520', 'Sunel', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3521', 'Surajgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3522', 'Suratgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3523', 'Swaroopganj', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3524', 'Takhatgarh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3525', 'Taranagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3526', 'Three STR', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3527', 'Tijara', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3528', 'Toda Bhim', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3529', 'Toda Raisingh', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3530', 'Todra', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3531', 'Tonk', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3532', 'Udaipur', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3533', 'Udpura', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3534', 'Uniara', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3535', 'Vanasthali', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3536', 'Vidyavihar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3537', 'Vijainagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3538', 'Viratnagar', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3539', 'Wer', '33', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3540', 'Gangtok', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3541', 'Gezing', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3542', 'Jorethang', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3543', 'Mangan', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3544', 'Namchi', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3545', 'Naya Bazar', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3546', 'No City', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3547', 'Rangpo', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3548', 'Sikkim', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3549', 'Singtam', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3550', 'Upper Tadong', '34', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3551', 'Abiramam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3552', 'Achampudur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3553', 'Acharapakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3554', 'Acharipallam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3555', 'Achipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3556', 'Adikaratti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3557', 'Adiramapattinam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3558', 'Aduturai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3559', 'Adyar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3560', 'Agaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3561', 'Agasthiswaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3562', 'Akkaraipettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3563', 'Alagappapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3564', 'Alagapuri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3565', 'Alampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3566', 'Alandur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3567', 'Alanganallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3568', 'Alangayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3569', 'Alangudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3570', 'Alangulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3571', 'Alanthurai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3572', 'Alapakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3573', 'Allapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3574', 'Alur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3575', 'Alwar Tirunagari', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3576', 'Alwarkurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3577', 'Ambasamudram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3578', 'Ambur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3579', 'Ammainaickanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3580', 'Ammaparikuppam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3581', 'Ammapettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3582', 'Ammavarikuppam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3583', 'Ammur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3584', 'Anaimalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3585', 'Anaiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3586', 'Anakaputhur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3587', 'Ananthapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3588', 'Andanappettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3589', 'Andipalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3590', 'Andippatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3591', 'Anjugramam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3592', 'Annamalainagar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3593', 'Annavasal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3594', 'Annur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3595', 'Anthiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3596', 'Appakudal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3597', 'Arachalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3598', 'Arakandanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3599', 'Arakonam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3600', 'Aralvaimozhi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3601', 'Arani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3602', 'Arani Road', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3603', 'Arantangi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3604', 'Arasiramani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3605', 'Aravakurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3606', 'Aravankadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3607', 'Arcot', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3608', 'Arimalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3609', 'Ariyalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3610', 'Ariyappampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3611', 'Ariyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3612', 'Arni', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3613', 'Arulmigu Thirumuruganpundi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3614', 'Arumanai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3615', 'Arumbavur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3616', 'Arumuganeri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3617', 'Aruppukkottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3618', 'Ashokapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3619', 'Athani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3620', 'Athanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3621', 'Athimarapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3622', 'Athipattu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3623', 'Athur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3624', 'Attayyampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3625', 'Attur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3626', 'Auroville', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3627', 'Avadattur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3628', 'Avadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3629', 'Avalpundurai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3630', 'Avaniapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3631', 'Avinashi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3632', 'Ayakudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3633', 'Ayanadaippu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3634', 'Aygudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3635', 'Ayothiapattinam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3636', 'Ayyalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3637', 'Ayyampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3638', 'Ayyampettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3639', 'Azhagiapandiapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3640', 'Balakrishnampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3641', 'Balakrishnapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3642', 'Balapallam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3643', 'Balasamudram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3644', 'Bargur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3645', 'Belur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3646', 'Berhatty', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3647', 'Bhavani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3648', 'Bhawanisagar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3649', 'Bhuvanagiri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3650', 'Bikketti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3651', 'Bodinayakkanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3652', 'Brahmana Periya Agraharam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3653', 'Buthapandi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3654', 'Buthipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3655', 'Chatrapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3656', 'Chembarambakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3657', 'Chengalpattu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3658', 'Chengam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3659', 'Chennai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3660', 'Chennasamudram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3661', 'Chennimalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3662', 'Cheranmadevi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3663', 'Cheruvanki', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3664', 'Chetpet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3665', 'Chettiarpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3666', 'Chettipalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3667', 'Chettipalayam Cantonment', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3668', 'Chettithangal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3669', 'Cheyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3670', 'Cheyyar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3671', 'Chidambaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3672', 'Chinalapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3673', 'Chinna Anuppanadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3674', 'Chinna Salem', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3675', 'Chinnakkampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3676', 'Chinnammanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3677', 'Chinnampalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3678', 'Chinnasekkadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3679', 'Chinnavedampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3680', 'Chitlapakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3681', 'Chittodu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3682', 'Cholapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3683', 'Coimbatore', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3684', 'Coonoor', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3685', 'Courtalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3686', 'Cuddalore', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3687', 'Dalavaipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3688', 'Darasuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3689', 'Denkanikottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3690', 'Desur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3691', 'Devadanapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3692', 'Devakkottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3693', 'Devakottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3694', 'Devanangurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3695', 'Devarshola', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3696', 'Devasthanam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3697', 'Dhalavoipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3698', 'Dhali', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3699', 'Dhaliyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3700', 'Dharapadavedu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3701', 'Dharapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3702', 'Dharmapuri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3703', 'Dindigul', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3704', 'Dusi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3705', 'Edaganasalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3706', 'Edaikodu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3707', 'Edakalinadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3708', 'Elathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3709', 'Elayirampannai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3710', 'Elumalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3711', 'Eral', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3712', 'Eraniel', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3713', 'Eriodu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3714', 'Erode', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3715', 'Erumaipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3716', 'Eruvadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3717', 'Ethapur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3718', 'Ettaiyapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3719', 'Ettimadai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3720', 'Ezhudesam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3721', 'Ganapathipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3722', 'Gandhi Nagar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3723', 'Gangaikondan', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3724', 'Gangavalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3725', 'Ganguvarpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3726', 'Gingi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3727', 'Gopalasamudram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3728', 'Gopichettipalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3729', 'Gudalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3730', 'Gudiyattam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3731', 'Guduvanchery', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3732', 'Gummidipoondi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3733', 'Hanumanthampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3734', 'Harur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3735', 'Harveypatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3736', 'Highways', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3737', 'Hosur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3738', 'Hubbathala', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3739', 'Huligal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3740', 'Idappadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3741', 'Idikarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3742', 'Ilampillai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3743', 'Ilanji', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3744', 'Iluppaiyurani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3745', 'Iluppur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3746', 'Inam Karur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3747', 'Injambakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3748', 'Irugur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3749', 'Jaffrabad', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3750', 'Jagathala', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3751', 'Jalakandapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3752', 'Jalladiampet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3753', 'Jambai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3754', 'Jayankondam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3755', 'Jolarpet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3756', 'Kadambur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3757', 'Kadathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3758', 'Kadayal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3759', 'Kadayampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3760', 'Kadayanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3761', 'Kadiapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3762', 'Kalakkad', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3763', 'Kalambur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3764', 'Kalapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3765', 'Kalappanaickenpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3766', 'Kalavai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3767', 'Kalinjur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3768', 'Kaliyakkavilai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3769', 'Kallakkurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3770', 'Kallakudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3771', 'Kallidaikurichchi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3772', 'Kallukuttam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3773', 'Kallupatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3774', 'Kalpakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3775', 'Kalugumalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3776', 'Kamayagoundanpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3777', 'Kambainallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3778', 'Kambam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3779', 'Kamuthi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3780', 'Kanadukathan', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3781', 'Kanakkampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3782', 'Kanam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3783', 'Kanchipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3784', 'Kandanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3785', 'Kangayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3786', 'Kangayampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3787', 'Kangeyanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3788', 'Kaniyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3789', 'Kanjikoil', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3790', 'Kannadendal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3791', 'Kannamangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3792', 'Kannampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3793', 'Kannankurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3794', 'Kannapalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3795', 'Kannivadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3796', 'Kanyakumari', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3797', 'Kappiyarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3798', 'Karaikkudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3799', 'Karamadai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3800', 'Karambakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3801', 'Karambakkudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3802', 'Kariamangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3803', 'Kariapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3804', 'Karugampattur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3805', 'Karumandi Chellipalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3806', 'Karumathampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3807', 'Karumbakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3808', 'Karungal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3809', 'Karunguzhi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3810', 'Karuppur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3811', 'Karur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3812', 'Kasipalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3813', 'Kasipalayam G', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3814', 'Kathirvedu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3815', 'Kathujuganapalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3816', 'Katpadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3817', 'Kattivakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3818', 'Kattumannarkoil', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3819', 'Kattupakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3820', 'Kattuputhur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3821', 'Kaveripakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3822', 'Kaveripattinam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3823', 'Kavundampalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3824', 'Kavundampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3825', 'Kayalpattinam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3826', 'Kayattar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3827', 'Kelamangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3828', 'Kelambakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3829', 'Kembainaickenpalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3830', 'Kethi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3831', 'Kilakarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3832', 'Kilampadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3833', 'Kilkulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3834', 'Kilkunda', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3835', 'Killiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3836', 'Killlai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3837', 'Kilpennathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3838', 'Kilvelur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3839', 'Kinathukadavu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3840', 'Kiramangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3841', 'Kiranur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3842', 'Kiripatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3843', 'Kizhapavur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3844', 'Kmarasamipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3845', 'Kochadai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3846', 'Kodaikanal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3847', 'Kodambakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3848', 'Kodavasal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3849', 'Kodumudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3850', 'Kolachal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3851', 'Kolappalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3852', 'Kolathupalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3853', 'Kolathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3854', 'Kollankodu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3855', 'Kollankoil', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3856', 'Komaralingam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3857', 'Komarapalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3858', 'Kombai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3859', 'Konakkarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3860', 'Konavattam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3861', 'Kondalampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3862', 'Konganapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3863', 'Koradacheri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3864', 'Korampallam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3865', 'Kotagiri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3866', 'Kothinallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3867', 'Kottaiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3868', 'Kottakuppam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3869', 'Kottaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3870', 'Kottivakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3871', 'Kottur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3872', 'Kovilpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3873', 'Koyampattur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3874', 'Krishnagiri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3875', 'Krishnarayapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3876', 'Krishnasamudram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3877', 'Kuchanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3878', 'Kuhalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3879', 'Kulasekarappattinam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3880', 'Kulasekarapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3881', 'Kulithalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3882', 'Kumarapalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3883', 'Kumarapalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3884', 'Kumarapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3885', 'Kumbakonam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3886', 'Kundrathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3887', 'Kuniyamuthur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3888', 'Kunnathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3889', 'Kunur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3890', 'Kuraikundu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3891', 'Kurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3892', 'Kurinjippadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3893', 'Kurudampalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3894', 'Kurumbalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3895', 'Kuthalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3896', 'Kuthappar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3897', 'Kuttalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3898', 'Kuttanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3899', 'Kuzhithurai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3900', 'Labbaikudikadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3901', 'Lakkampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3902', 'Lalgudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3903', 'Lalpet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3904', 'Llayangudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3905', 'Madambakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3906', 'Madanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3907', 'Madathukulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3908', 'Madhavaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3909', 'Madippakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3910', 'Madukkarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3911', 'Madukkur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3912', 'Madurai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3913', 'Maduranthakam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3914', 'Maduravoyal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3915', 'Mahabalipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3916', 'Makkinanpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3917', 'Mallamuppampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3918', 'Mallankinaru', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3919', 'Mallapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3920', 'Mallasamudram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3921', 'Mallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3922', 'Mamallapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3923', 'Mamsapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3924', 'Manachanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3925', 'Manali', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3926', 'Manalmedu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3927', 'Manalurpet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3928', 'Manamadurai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3929', 'Manapakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3930', 'Manapparai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3931', 'Manavalakurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3932', 'Mandaikadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3933', 'Mandapam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3934', 'Mangadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3935', 'Mangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3936', 'Mangalampet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3937', 'Manimutharu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3938', 'Mannargudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3939', 'Mappilaiurani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3940', 'Maraimalai Nagar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3941', 'Marakkanam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3942', 'Maramangalathupatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3943', 'Marandahalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3944', 'Markayankottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3945', 'Marudur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3946', 'Marungur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3947', 'Masinigudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3948', 'Mathigiri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3949', 'Mattur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3950', 'Mayiladuthurai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3951', 'Mecheri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3952', 'Melacheval', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3953', 'Melachokkanathapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3954', 'Melagaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3955', 'Melamadai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3956', 'Melamaiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3957', 'Melanattam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3958', 'Melathiruppanthuruthi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3959', 'Melattur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3960', 'Melmananbedu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3961', 'Melpattampakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3962', 'Melur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3963', 'Melvisharam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3964', 'Mettupalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3965', 'Mettur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3966', 'Meyyanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3967', 'Milavittan', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3968', 'Minakshipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3969', 'Minambakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3970', 'Minjur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3971', 'Modakurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3972', 'Mohanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3973', 'Mopperipalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3974', 'Mudalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3975', 'Mudichur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3976', 'Mudukulathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3977', 'Mukasipidariyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3978', 'Mukkudal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3979', 'Mulagumudu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3980', 'Mulakaraipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3981', 'Mulanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3982', 'Mullakkadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3983', 'Muruganpalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3984', 'Musiri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3985', 'Muthupet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3986', 'Muthur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3987', 'Muttayyapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3988', 'Muttupet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3989', 'Muvarasampettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3990', 'Myladi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3991', 'Mylapore', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3992', 'Nadukkuthagai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3993', 'Naduvattam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3994', 'Nagapattinam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3995', 'Nagavakulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3996', 'Nagercoil', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3997', 'Nagojanahalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3998', 'Nallampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('3999', 'Nallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4000', 'Namagiripettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4001', 'Namakkal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4002', 'Nambiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4003', 'Nambutalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4004', 'Nandambakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4005', 'Nandivaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4006', 'Nangavalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4007', 'Nangavaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4008', 'Nanguneri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4009', 'Nanjikottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4010', 'Nannilam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4011', 'Naranammalpuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4012', 'Naranapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4013', 'Narasimhanaickenpalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4014', 'Narasingapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4015', 'Narasojipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4016', 'Naravarikuppam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4017', 'Nasiyanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4018', 'Natham', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4019', 'Nathampannai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4020', 'Natrampalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4021', 'Nattam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4022', 'Nattapettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4023', 'Nattarasankottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4024', 'Navalpattu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4025', 'Nazarethpettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4026', 'Nazerath', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4027', 'Neikkarapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4028', 'Neiyyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4029', 'Nellikkuppam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4030', 'Nelliyalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4031', 'Nemili', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4032', 'Nemilicheri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4033', 'Neripperichal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4034', 'Nerkunram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4035', 'Nerkuppai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4036', 'Nerunjipettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4037', 'Neykkarappatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4038', 'Neyveli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4039', 'Nidamangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4040', 'Nilagiri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4041', 'Nilakkottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4042', 'Nilankarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4043', 'Odaipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4044', 'Odaiyakulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4045', 'Oddanchatram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4046', 'Odugathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4047', 'Oggiyamduraipakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4048', 'Olagadam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4049', 'Omalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4050', 'Ooty', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4051', 'Orathanadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4052', 'Othakadai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4053', 'Othakalmandapam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4054', 'Ottapparai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4055', 'Pacode', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4056', 'Padaividu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4057', 'Padianallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4058', 'Padirikuppam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4059', 'Padmanabhapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4060', 'Padririvedu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4061', 'Palaganangudy', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4062', 'Palaimpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4063', 'Palakkodu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4064', 'Palamedu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4065', 'Palani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4066', 'Palani Chettipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4067', 'Palavakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4068', 'Palavansathu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4069', 'Palayakayal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4070', 'Palayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4071', 'Palayamkottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4072', 'Palladam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4073', 'Pallapalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4074', 'Pallapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4075', 'Pallattur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4076', 'Pallavaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4077', 'Pallikaranai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4078', 'Pallikonda', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4079', 'Pallipalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4080', 'Pallipalaiyam Agraharam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4081', 'Pallipattu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4082', 'Pammal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4083', 'Panagudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4084', 'Panaimarathupatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4085', 'Panapakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4086', 'Panboli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4087', 'Pandamangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4088', 'Pannaikadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4089', 'Pannaipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4090', 'Pannuratti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4091', 'Panruti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4092', 'Papanasam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4093', 'Pappankurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4094', 'Papparapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4095', 'Pappireddipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4096', 'Paramakkudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4097', 'Paramankurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4098', 'Paramathi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4099', 'Parangippettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4100', 'Paravai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4101', 'Pasur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4102', 'Pathamadai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4103', 'Pattinam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4104', 'Pattiviranpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4105', 'Pattukkottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4106', 'Pazhugal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4107', 'Pennadam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4108', 'Pennagaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4109', 'Pennathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4110', 'Peraiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4111', 'Peralam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4112', 'Perambalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4113', 'Peranamallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4114', 'Peravurani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4115', 'Periyakodiveri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4116', 'Periyakulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4117', 'Periyanayakkanpalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4118', 'Periyanegamam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4119', 'Periyapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4120', 'Periyasemur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4121', 'Pernambut', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4122', 'Perumagalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4123', 'Perumandi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4124', 'Perumuchi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4125', 'Perundurai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4126', 'Perungalathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4127', 'Perungudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4128', 'Perungulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4129', 'Perur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4130', 'Perur Chettipalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4131', 'Pethampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4132', 'Pethanaickenpalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4133', 'Pillanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4134', 'Pirkankaranai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4135', 'Polichalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4136', 'Pollachi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4137', 'Polur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4138', 'Ponmani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4139', 'Ponnamaravathi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4140', 'Ponnampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4141', 'Ponneri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4142', 'Porur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4143', 'Pothanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4144', 'Pothatturpettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4145', 'Pudukadai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4146', 'Pudukkottai Cantonment', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4147', 'Pudukottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4148', 'Pudupalaiyam Aghraharam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4149', 'Pudupalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4150', 'Pudupatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4151', 'Pudupattinam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4152', 'Pudur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4153', 'Puduvayal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4154', 'Pulambadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4155', 'Pulampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4156', 'Puliyampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4157', 'Puliyankudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4158', 'Puliyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4159', 'Pullampadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4160', 'Puluvapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4161', 'Punamalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4162', 'Punjai Puliyampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4163', 'Punjai Thottakurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4164', 'Punjaipugalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4165', 'Puthalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4166', 'Putteri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4167', 'Puvalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4168', 'Puzhal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4169', 'Puzhithivakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4170', 'Rajapalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4171', 'Ramanathapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4172', 'Ramapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4173', 'Rameswaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4174', 'Ranipet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4175', 'Rasipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4176', 'Rayagiri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4177', 'Rithapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4178', 'Rosalpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4179', 'Rudravathi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4180', 'Sadayankuppam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4181', 'Saint Thomas Mount', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4182', 'Salangapalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4183', 'Salem', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4184', 'Samalapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4185', 'Samathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4186', 'Sambavar Vadagarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4187', 'Sankaramanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4188', 'Sankarankoil', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4189', 'Sankarapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4190', 'Sankari', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4191', 'Sankarnagar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4192', 'Saravanampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4193', 'Sarcarsamakulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4194', 'Sathiyavijayanagaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4195', 'Sathuvachari', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4196', 'Sathyamangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4197', 'Sattankulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4198', 'Sattur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4199', 'Sayalgudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4200', 'Sayapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4201', 'Seithur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4202', 'Sembakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4203', 'Semmipalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4204', 'Sennirkuppam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4205', 'Senthamangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4206', 'Sentharapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4207', 'Senur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4208', 'Sethiathoppu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4209', 'Sevilimedu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4210', 'Sevugampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4211', 'Shenbakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4212', 'Shencottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4213', 'Shenkottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4214', 'Sholavandan', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4215', 'Sholinganallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4216', 'Sholingur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4217', 'Sholur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4218', 'Sikkarayapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4219', 'Singampuneri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4220', 'Singanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4221', 'Singaperumalkoil', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4222', 'Sirapalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4223', 'Sirkali', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4224', 'Sirugamani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4225', 'Sirumugai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4226', 'Sithayankottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4227', 'Sithurajapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4228', 'Sivaganga', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4229', 'Sivagiri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4230', 'Sivakasi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4231', 'Sivanthipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4232', 'Sivur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4233', 'Soranjeri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4234', 'South Kannanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4235', 'South Kodikulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4236', 'Srimushnam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4237', 'Sriperumpudur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4238', 'Sriramapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4239', 'Srirangam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4240', 'Srivaikuntam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4241', 'Srivilliputtur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4242', 'Suchindram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4243', 'Suliswaranpatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4244', 'Sulur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4245', 'Sundarapandiam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4246', 'Sundarapandiapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4247', 'Surampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4248', 'Surandai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4249', 'Suriyampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4250', 'Swamimalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4251', 'TNPL Pugalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4252', 'Tambaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4253', 'Taramangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4254', 'Tattayyangarpettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4255', 'Tayilupatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4256', 'Tenkasi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4257', 'Thadikombu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4258', 'Thakkolam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4259', 'Thalainayar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4260', 'Thalakudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4261', 'Thamaraikulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4262', 'Thammampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4263', 'Thanjavur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4264', 'Thanthoni', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4265', 'Tharangambadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4266', 'Thedavur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4267', 'Thenambakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4268', 'Thengampudur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4269', 'Theni', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4270', 'Theni Allinagaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4271', 'Thenkarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4272', 'Thenthamaraikulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4273', 'Thenthiruperai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4274', 'Thesur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4275', 'Thevaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4276', 'Thevur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4277', 'Thiagadurgam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4278', 'Thiagarajar Colony', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4279', 'Thingalnagar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4280', 'Thiruchirapalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4281', 'Thirukarungudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4282', 'Thirukazhukundram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4283', 'Thirumalayampalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4284', 'Thirumazhisai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4285', 'Thirunagar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4286', 'Thirunageswaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4287', 'Thirunindravur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4288', 'Thirunirmalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4289', 'Thiruparankundram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4290', 'Thiruparappu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4291', 'Thiruporur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4292', 'Thiruppanandal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4293', 'Thirupuvanam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4294', 'Thiruthangal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4295', 'Thiruthuraipundi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4296', 'Thiruvaivaru', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4297', 'Thiruvalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4298', 'Thiruvarur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4299', 'Thiruvattaru', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4300', 'Thiruvenkatam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4301', 'Thiruvennainallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4302', 'Thiruvithankodu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4303', 'Thisayanvilai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4304', 'Thittacheri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4305', 'Thondamuthur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4306', 'Thorapadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4307', 'Thottipalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4308', 'Thottiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4309', 'Thudiyalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4310', 'Thuthipattu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4311', 'Thuvakudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4312', 'Timiri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4313', 'Tindivanam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4314', 'Tinnanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4315', 'Tiruchchendur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4316', 'Tiruchengode', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4317', 'Tirukkalukkundram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4318', 'Tirukkattuppalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4319', 'Tirukkoyilur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4320', 'Tirumangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4321', 'Tirumullaivasal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4322', 'Tirumuruganpundi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4323', 'Tirunageswaram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4324', 'Tirunelveli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4325', 'Tirupathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4326', 'Tirupattur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4327', 'Tiruppuvanam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4328', 'Tirupur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4329', 'Tirusulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4330', 'Tiruttani', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4331', 'Tiruvallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4332', 'Tiruvannamalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4333', 'Tiruverambur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4334', 'Tiruverkadu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4335', 'Tiruvethipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4336', 'Tiruvidaimarudur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4337', 'Tiruvottiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4338', 'Tittakudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4339', 'Tondi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4340', 'Turaiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4341', 'Tuticorin', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4342', 'Udagamandalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4343', 'Udagamandalam Valley', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4344', 'Udankudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4345', 'Udayarpalayam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4346', 'Udumalaipettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4347', 'Udumalpet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4348', 'Ullur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4349', 'Ulundurpettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4350', 'Unjalaur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4351', 'Unnamalaikadai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4352', 'Uppidamangalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4353', 'Uppiliapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4354', 'Urachikkottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4355', 'Urapakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4356', 'Usilampatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4357', 'Uthangarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4358', 'Uthayendram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4359', 'Uthiramerur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4360', 'Uthukkottai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4361', 'Uttamapalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4362', 'Uttukkuli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4363', 'Vadakarai Kizhpadugai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4364', 'Vadakkanandal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4365', 'Vadakku Valliyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4366', 'Vadalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4367', 'Vadamadurai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4368', 'Vadavalli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4369', 'Vadipatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4370', 'Vadugapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4371', 'Vaithiswarankoil', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4372', 'Valangaiman', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4373', 'Valasaravakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4374', 'Valavanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4375', 'Vallam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4376', 'Valparai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4377', 'Valvaithankoshtam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4378', 'Vanavasi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4379', 'Vandalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4380', 'Vandavasi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4381', 'Vandiyur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4382', 'Vaniputhur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4383', 'Vaniyambadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4384', 'Varadarajanpettai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4385', 'Varadharajapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4386', 'Vasudevanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4387', 'Vathirairuppu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4388', 'Vattalkundu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4389', 'Vazhapadi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4390', 'Vedapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4391', 'Vedaranniyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4392', 'Vedasandur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4393', 'Velampalaiyam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4394', 'Velankanni', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4395', 'Vellakinar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4396', 'Vellakoil', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4397', 'Vellalapatti', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4398', 'Vellalur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4399', 'Vellanur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4400', 'Vellimalai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4401', 'Vellore', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4402', 'Vellottamparappu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4403', 'Velluru', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4404', 'Vengampudur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4405', 'Vengathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4406', 'Vengavasal', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4407', 'Venghatur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4408', 'Venkarai', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4409', 'Vennanthur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4410', 'Veppathur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4411', 'Verkilambi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4412', 'Vettaikaranpudur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4413', 'Vettavalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4414', 'Vijayapuri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4415', 'Vikramasingapuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4416', 'Vikravandi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4417', 'Vilangudi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4418', 'Vilankurichi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4419', 'Vilapakkam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4420', 'Vilathikulam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4421', 'Vilavur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4422', 'Villukuri', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4423', 'Villupuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4424', 'Viraganur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4425', 'Virakeralam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4426', 'Virakkalpudur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4427', 'Virapandi', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4428', 'Virapandi Cantonment', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4429', 'Virappanchatram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4430', 'Viravanallur', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4431', 'Virudambattu', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4432', 'Virudhachalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4433', 'Virudhunagar', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4434', 'Virupakshipuram', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4435', 'Viswanatham', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4436', 'Vriddhachalam', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4437', 'Walajabad', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4438', 'Walajapet', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4439', 'Wellington', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4440', 'Yercaud', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4441', 'Zamin Uthukuli', '35', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4442', 'Achampet', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4443', 'Adilabad', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4444', 'Armoor', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4445', 'Asifabad', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4446', 'Badepally', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4447', 'Banswada', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4448', 'Bellampalli', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4449', 'Bhadrachalam', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4450', 'Bhainsa', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4451', 'Bhongir', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4452', 'Bhupalpally', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4453', 'Bodhan', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4454', 'Bollaram', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4455', 'Devarkonda', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4456', 'Farooqnagar', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4457', 'Gadwal', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4458', 'Gajwel', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4459', 'Ghatkesar', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4460', 'Hyderabad', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4461', 'Jagtial', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4462', 'Jangaon', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4463', 'Kagaznagar', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4464', 'Kalwakurthy', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4465', 'Kamareddy', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4466', 'Karimnagar', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4467', 'Khammam', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4468', 'Kodada', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4469', 'Koratla', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4470', 'Kottagudem', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4471', 'Kyathampalle', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4472', 'Madhira', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4473', 'Mahabubabad', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4474', 'Mahbubnagar', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4475', 'Mancherial', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4476', 'Mandamarri', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4477', 'Manuguru', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4478', 'Medak', '36', '0.00', '1', '2021-04-06 06:43:42', '2021-04-06 06:43:42', NULL),
('4479', 'Medchal', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4480', 'Miryalaguda', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4481', 'Nagar Karnul', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4482', 'Nakrekal', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4483', 'Nalgonda', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4484', 'Narayanpet', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4485', 'Narsampet', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4486', 'Nirmal', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4487', 'Nizamabad', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4488', 'Palwancha', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4489', 'Peddapalli', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4490', 'Ramagundam', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4491', 'Ranga Reddy district', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4492', 'Sadasivpet', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4493', 'Sangareddy', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4494', 'Sarapaka', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4495', 'Sathupalle', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4496', 'Secunderabad', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4497', 'Siddipet', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4498', 'Singapur', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4499', 'Sircilla', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4500', 'Suryapet', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4501', 'Tandur', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4502', 'Vemulawada', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4503', 'Vikarabad', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4504', 'Wanaparthy', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4505', 'Warangal', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4506', 'Yellandu', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4507', 'Zahirabad', '36', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4508', 'Agartala', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4509', 'Amarpur', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4510', 'Ambassa', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4511', 'Badharghat', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4512', 'Belonia', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4513', 'Dharmanagar', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4514', 'Gakulnagar', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4515', 'Gandhigram', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4516', 'Indranagar', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4517', 'Jogendranagar', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4518', 'Kailasahar', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4519', 'Kamalpur', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4520', 'Kanchanpur', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4521', 'Khowai', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4522', 'Kumarghat', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4523', 'Kunjaban', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4524', 'Narsingarh', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4525', 'Pratapgarh', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4526', 'Ranir Bazar', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4527', 'Sabrum', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4528', 'Sonamura', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4529', 'Teliamura', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4530', 'Udaipur', '37', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4531', 'Achhalda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4532', 'Achhnera', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4533', 'Adari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4534', 'Afzalgarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4535', 'Agarwal Mandi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4536', 'Agra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4537', 'Agra Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4538', 'Ahraura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4539', 'Ailum', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4540', 'Air Force Area', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4541', 'Ajhuwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4542', 'Akbarpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4543', 'Alapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4544', 'Aliganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4545', 'Aligarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4546', 'Allahabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4547', 'Allahabad Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4548', 'Allahganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4549', 'Amanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4550', 'Ambahta', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4551', 'Amethi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4552', 'Amila', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4553', 'Amilo', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4554', 'Aminagar Sarai', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4555', 'Aminagar Urf Bhurbaral', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4556', 'Amraudha', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4557', 'Amroha', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4558', 'Anandnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4559', 'Anpara', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4560', 'Antu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4561', 'Anupshahr', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4562', 'Aonla', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4563', 'Armapur Estate', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4564', 'Ashokpuram', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4565', 'Ashrafpur Kichhauchha', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4566', 'Atarra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4567', 'Atasu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4568', 'Atrauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4569', 'Atraulia', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4570', 'Auraiya', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4571', 'Aurangabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4572', 'Aurangabad Bangar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4573', 'Auras', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4574', 'Awagarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4575', 'Ayodhya', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4576', 'Azamgarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4577', 'Azizpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4578', 'Azmatgarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4579', 'Babarpur Ajitmal', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4580', 'Baberu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4581', 'Babina', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4582', 'Babrala', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4583', 'Babugarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4584', 'Bachhiowan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4585', 'Bachhraon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4586', 'Bad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4587', 'Badaun', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4588', 'Baghpat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4589', 'Bah', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4590', 'Bahadurganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4591', 'Baheri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4592', 'Bahjoi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4593', 'Bahraich', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4594', 'Bahsuma', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4595', 'Bahua', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4596', 'Bajna', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4597', 'Bakewar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4598', 'Bakiabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4599', 'Baldeo', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4600', 'Ballia', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4601', 'Balrampur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4602', 'Banat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4603', 'Banda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4604', 'Bangarmau', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4605', 'Banki', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4606', 'Bansdih', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4607', 'Bansgaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4608', 'Bansi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4609', 'Barabanki', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4610', 'Baragaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4611', 'Baraut', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4612', 'Bareilly', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4613', 'Bareilly Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4614', 'Barhalganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4615', 'Barhani', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4616', 'Barhapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4617', 'Barkhera', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4618', 'Barsana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4619', 'Barva Sagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4620', 'Barwar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4621', 'Basti', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4622', 'Begumabad Budhana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4623', 'Behat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4624', 'Behta Hajipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4625', 'Bela', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4626', 'Belthara', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4627', 'Beniganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4628', 'Beswan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4629', 'Bewar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4630', 'Bhadarsa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4631', 'Bhadohi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4632', 'Bhagwantnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4633', 'Bharatganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4634', 'Bhargain', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4635', 'Bharthana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4636', 'Bharuhana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4637', 'Bharwari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4638', 'Bhatni Bazar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4639', 'Bhatpar Rani', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4640', 'Bhawan Bahadurnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4641', 'Bhinga', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4642', 'Bhojpur Dharampur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4643', 'Bhokarhedi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4644', 'Bhongaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4645', 'Bhulepur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4646', 'Bidhuna', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4647', 'Bighapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4648', 'Bijnor', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4649', 'Bijpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4650', 'Bikapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4651', 'Bilari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4652', 'Bilaspur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4653', 'Bilgram', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4654', 'Bilhaur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4655', 'Bilram', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4656', 'Bilrayaganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4657', 'Bilsanda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4658', 'Bilsi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4659', 'Bindki', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4660', 'Bisalpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4661', 'Bisanda Buzurg', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4662', 'Bisauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4663', 'Bisharatganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4664', 'Bisokhar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4665', 'Biswan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4666', 'Bithur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4667', 'Budaun', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4668', 'Bugrasi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4669', 'Bulandshahar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4670', 'Burhana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4671', 'Chail', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4672', 'Chak Imam Ali', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4673', 'Chakeri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4674', 'Chakia', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4675', 'Chandauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4676', 'Chandausi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4677', 'Chandpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4678', 'Charkhari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4679', 'Charthawal', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4680', 'Chaumuhan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4681', 'Chhaprauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4682', 'Chhara Rafatpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4683', 'Chharprauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4684', 'Chhata', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4685', 'Chhatari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4686', 'Chhibramau', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4687', 'Chhutmalpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4688', 'Chilkana Sultanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4689', 'Chirgaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4690', 'Chit Baragaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4691', 'Chitrakut Dham', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4692', 'Chopan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4693', 'Choubepur Kalan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4694', 'Chunar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4695', 'Churk Ghurma', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4696', 'Colonelganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4697', 'Dadri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4698', 'Dalmau', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4699', 'Dankaur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4700', 'Dariyabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4701', 'Dasna', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4702', 'Dataganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4703', 'Daurala', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4704', 'Dayal Bagh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4705', 'Deoband', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4706', 'Deoranian', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4707', 'Deoria', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4708', 'Dewa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4709', 'Dhampur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4710', 'Dhanauha', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4711', 'Dhanauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4712', 'Dhanaura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4713', 'Dharoti Khurd', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4714', 'Dhauratanda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4715', 'Dhaurhra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4716', 'Dibai', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4717', 'Dibiyapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4718', 'Dildarnagar Fatehpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4719', 'Do Ghat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4720', 'Dohrighat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4721', 'Dostpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4722', 'Dudhinagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4723', 'Dulhipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4724', 'Dundwaraganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4725', 'Ekdil', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4726', 'Erich', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4727', 'Etah', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4728', 'Etawah', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4729', 'Faizabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4730', 'Faizabad Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4731', 'Faizganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4732', 'Farah', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4733', 'Faridnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4734', 'Faridpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4735', 'Faridpur Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4736', 'Fariha', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4737', 'Farrukhabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4738', 'Fatehabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4739', 'Fatehganj Pashchimi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4740', 'Fatehganj Purvi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4741', 'Fatehgarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4742', 'Fatehpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4743', 'Fatehpur Chaurasi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4744', 'Fatehpur Sikri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4745', 'Firozabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4746', 'Gajraula', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4747', 'Ganga Ghat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4748', 'Gangapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4749', 'Gangoh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4750', 'Ganj Muradabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4751', 'Garautha', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4752', 'Garhi Pukhta', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4753', 'Garhmukteshwar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4754', 'Gaura Barahaj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4755', 'Gauri Bazar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4756', 'Gausganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4757', 'Gawan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4758', 'Ghatampur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4759', 'Ghaziabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4760', 'Ghazipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4761', 'Ghiror', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4762', 'Ghorawal', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4763', 'Ghosi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4764', 'Ghosia Bazar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4765', 'Ghughuli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4766', 'Gohand', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4767', 'Gokul', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4768', 'Gola Bazar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4769', 'Gola Gokarannath', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4770', 'Gonda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4771', 'Gopamau', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4772', 'Gopiganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4773', 'Gorakhpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4774', 'Gosainganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4775', 'Govardhan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4776', 'Greater Noida', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4777', 'Gulaothi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4778', 'Gulariya', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4779', 'Gulariya Bhindara', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4780', 'Gunnaur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4781', 'Gursahaiganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4782', 'Gursarai', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4783', 'Gyanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4784', 'Hafizpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4785', 'Haidergarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4786', 'Haldaur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4787', 'Hamirpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4788', 'Handia', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4789', 'Hapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4790', 'Hardoi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4791', 'Harduaganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4792', 'Hargaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4793', 'Hariharpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4794', 'Harraiya', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4795', 'Hasanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4796', 'Hasayan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4797', 'Hastinapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4798', 'Hata', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4799', 'Hathras', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4800', 'Hyderabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4801', 'Ibrahimpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4802', 'Iglas', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4803', 'Ikauna', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4804', 'Iltifatganj Bazar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4805', 'Indian Telephone Industry Mank', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4806', 'Islamnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4807', 'Itaunja', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4808', 'Itimadpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4809', 'Jagner', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4810', 'Jahanabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4811', 'Jahangirabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4812', 'Jahangirpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4813', 'Jais', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4814', 'Jaithara', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4815', 'Jalalabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4816', 'Jalali', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4817', 'Jalalpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4818', 'Jalaun', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4819', 'Jalesar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4820', 'Jamshila', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4821', 'Jangipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4822', 'Jansath', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4823', 'Jarwal', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4824', 'Jasrana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4825', 'Jaswantnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4826', 'Jatari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4827', 'Jaunpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4828', 'Jewar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4829', 'Jhalu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4830', 'Jhansi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4831', 'Jhansi Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4832', 'Jhansi Railway Settlement', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4833', 'Jhinjhak', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4834', 'Jhinjhana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4835', 'Jhusi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4836', 'Jhusi Kohna', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4837', 'Jiyanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4838', 'Joya', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4839', 'Jyoti Khuria', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4840', 'Jyotiba Phule Nagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4841', 'Kabrai', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4842', 'Kachhauna Patseni', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4843', 'Kachhla', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4844', 'Kachhwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4845', 'Kadaura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4846', 'Kadipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4847', 'Kailashpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4848', 'Kaimganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4849', 'Kairana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4850', 'Kakgaina', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4851', 'Kakod', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4852', 'Kakori', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4853', 'Kakrala', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4854', 'Kalinagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4855', 'Kalpi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4856', 'Kamalganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4857', 'Kampil', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4858', 'Kandhla', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4859', 'Kandwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4860', 'Kannauj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4861', 'Kanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4862', 'Kant', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4863', 'Kanth', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4864', 'Kaptanganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4865', 'Karaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4866', 'Karari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4867', 'Karhal', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4868', 'Karnawal', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4869', 'Kasganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4870', 'Katariya', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4871', 'Katghar Lalganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4872', 'Kathera', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4873', 'Katra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4874', 'Katra Medniganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4875', 'Kauriaganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4876', 'Kemri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4877', 'Kerakat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4878', 'Khadda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4879', 'Khaga', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4880', 'Khailar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4881', 'Khair', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4882', 'Khairabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4883', 'Khairagarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4884', 'Khalilabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4885', 'Khamaria', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4886', 'Khanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4887', 'Kharela', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4888', 'Khargupur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4889', 'Khariya', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4890', 'Kharkhoda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4891', 'Khatauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4892', 'Khatauli Rural', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4893', 'Khekra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4894', 'Kheri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4895', 'Kheta Sarai', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4896', 'Khudaganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4897', 'Khurja', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4898', 'Khutar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4899', 'Kiraoli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4900', 'Kiratpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4901', 'Kishanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4902', 'Kishni', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4903', 'Kithaur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4904', 'Koiripur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4905', 'Konch', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4906', 'Kopaganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4907', 'Kora Jahanabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4908', 'Korwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4909', 'Kosi Kalan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4910', 'Kota', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4911', 'Kotra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4912', 'Kotwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4913', 'Kulpahar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4914', 'Kunda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4915', 'Kundarki', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4916', 'Kunwargaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4917', 'Kurara', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4918', 'Kurawali', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4919', 'Kursath', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4920', 'Kurthi Jafarpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4921', 'Kushinagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4922', 'Kusmara', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4923', 'Laharpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4924', 'Lakhimpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4925', 'Lakhna', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4926', 'Lalganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4927', 'Lalitpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4928', 'Lar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4929', 'Lawar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4930', 'Ledwa Mahuwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4931', 'Lohta', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4932', 'Loni', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4933', 'Lucknow', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4934', 'Machhlishahr', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4935', 'Madhoganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4936', 'Madhogarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4937', 'Maghar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4938', 'Mahaban', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4939', 'Maharajganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4940', 'Mahmudabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4941', 'Mahoba', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4942', 'Maholi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4943', 'Mahona', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4944', 'Mahroni', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4945', 'Mailani', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4946', 'Mainpuri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4947', 'Majhara Pipar Ehatmali', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4948', 'Majhauli Raj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4949', 'Malihabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4950', 'Mallanwam', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4951', 'Mandawar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4952', 'Manikpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4953', 'Maniyar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4954', 'Manjhanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4955', 'Mankapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4956', 'Marehra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4957', 'Mariahu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4958', 'Maruadih', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4959', 'Maswasi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4960', 'Mataundh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4961', 'Mathu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4962', 'Mathura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4963', 'Mathura Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4964', 'Mau', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4965', 'Mau Aima', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4966', 'Maudaha', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4967', 'Mauranipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4968', 'Maurawan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4969', 'Mawana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4970', 'Meerut', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4971', 'Mehnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4972', 'Mehndawal', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4973', 'Mendu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4974', 'Milak', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4975', 'Miranpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4976', 'Mirat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4977', 'Mirat Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4978', 'Mirganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4979', 'Mirzapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4980', 'Misrikh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4981', 'Modinagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4982', 'Mogra Badshahpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4983', 'Mohan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4984', 'Mohanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4985', 'Mohiuddinpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4986', 'Moradabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4987', 'Moth', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4988', 'Mubarakpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4989', 'Mughal Sarai', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4990', 'Mughal Sarai Railway Settlemen', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4991', 'Muhammadabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4992', 'Muhammadi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4993', 'Mukrampur Khema', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4994', 'Mundia', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4995', 'Mundora', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4996', 'Muradnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4997', 'Mursan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4998', 'Musafirkhana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('4999', 'Muzaffarnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5000', 'Nadigaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5001', 'Nagina', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5002', 'Nagram', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5003', 'Nai Bazar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5004', 'Nainana Jat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5005', 'Najibabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5006', 'Nakur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5007', 'Nanaunta', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5008', 'Nandgaon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5009', 'Nanpara', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5010', 'Naraini', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5011', 'Narauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5012', 'Naraura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5013', 'Naugawan Sadat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5014', 'Nautanwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5015', 'Nawabganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5016', 'Nichlaul', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5017', 'Nidhauli Kalan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5018', 'Nihtaur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5019', 'Nindaura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5020', 'Niwari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5021', 'Nizamabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5022', 'Noida', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5023', 'Northern Railway Colony', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5024', 'Nurpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5025', 'Nyoria Husenpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5026', 'Nyotini', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5027', 'Obra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5028', 'Oel Dhakwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5029', 'Orai', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5030', 'Oran', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5031', 'Ordinance Factory Muradnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5032', 'Pachperwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5033', 'Padrauna', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5034', 'Pahasu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5035', 'Paintepur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5036', 'Pali', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5037', 'Palia Kalan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5038', 'Parasi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5039', 'Parichha', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5040', 'Parichhatgarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5041', 'Parsadepur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5042', 'Patala', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5043', 'Patiyali', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5044', 'Patti', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5045', 'Pawayan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5046', 'Phalauda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5047', 'Phaphund', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5048', 'Phulpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5049', 'Phulwaria', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5050', 'Pihani', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5051', 'Pilibhit', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5052', 'Pilkana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5053', 'Pilkhuwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5054', 'Pinahat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5055', 'Pipalsana Chaudhari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5056', 'Pipiganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5057', 'Pipraich', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5058', 'Pipri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5059', 'Pratapgarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5060', 'Pukhrayan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5061', 'Puranpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5062', 'Purdil Nagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5063', 'Purqazi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5064', 'Purwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5065', 'Qasimpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5066', 'Rabupura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5067', 'Radha Kund', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5068', 'Rae Bareilly', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5069', 'Raja Ka Rampur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5070', 'Rajapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5071', 'Ramkola', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5072', 'Ramnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5073', 'Rampur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5074', 'Rampur Bhawanipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5075', 'Rampur Karkhana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5076', 'Rampur Maniharan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5077', 'Rampura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5078', 'Ranipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5079', 'Rashidpur Garhi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5080', 'Rasra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5081', 'Rasulabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5082', 'Rath', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5083', 'Raya', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5084', 'Renukut', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5085', 'Reoti', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5086', 'Richha', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5087', 'Risia Bazar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5088', 'Rithora', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5089', 'Robertsganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5090', 'Roza', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5091', 'Rudarpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5092', 'Rudauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5093', 'Rudayan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5094', 'Rura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5095', 'Rustamnagar Sahaspur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5096', 'Sabatwar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5097', 'Sadabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5098', 'Sadat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5099', 'Safipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5100', 'Sahanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5101', 'Saharanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5102', 'Sahaspur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5103', 'Sahaswan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5104', 'Sahawar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5105', 'Sahibabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5106', 'Sahjanwa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5107', 'Sahpau', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5108', 'Saidpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5109', 'Sainthal', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5110', 'Saiyadraja', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5111', 'Sakhanu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5112', 'Sakit', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5113', 'Salarpur Khadar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5114', 'Salimpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5115', 'Salon', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5116', 'Sambhal', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5117', 'Sambhawali', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5118', 'Samdhan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5119', 'Samthar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5120', 'Sandi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5121', 'Sandila', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5122', 'Sarai Mir', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5123', 'Sarai akil', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5124', 'Sarauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5125', 'Sardhana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5126', 'Sarila', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5127', 'Sarsawan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5128', 'Sasni', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5129', 'Satrikh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5130', 'Saunkh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5131', 'Saurikh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5132', 'Seohara', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5133', 'Sewal Khas', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5134', 'Sewarhi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5135', 'Shahabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5136', 'Shahganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5137', 'Shahi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5138', 'Shahjahanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5139', 'Shahjahanpur Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5140', 'Shahpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5141', 'Shamli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5142', 'Shamsabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5143', 'Shankargarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5144', 'Shergarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5145', 'Sherkot', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5146', 'Shikarpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5147', 'Shikohabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5148', 'Shisgarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5149', 'Shivdaspur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5150', 'Shivli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5151', 'Shivrajpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5152', 'Shohratgarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5153', 'Siddhanur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5154', 'Siddharthnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5155', 'Sidhauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5156', 'Sidhpura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5157', 'Sikandarabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5158', 'Sikandarpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5159', 'Sikandra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5160', 'Sikandra Rao', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5161', 'Singahi Bhiraura', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5162', 'Sirathu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5163', 'Sirsa', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5164', 'Sirsaganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5165', 'Sirsi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5166', 'Sisauli', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5167', 'Siswa Bazar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5168', 'Sitapur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5169', 'Siyana', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5170', 'Som', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5171', 'Sonbhadra', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5172', 'Soron', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5173', 'Suar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5174', 'Sukhmalpur Nizamabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5175', 'Sultanpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5176', 'Sumerpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5177', 'Suriyawan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5178', 'Swamibagh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5179', 'Tajpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5180', 'Talbahat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5181', 'Talgram', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5182', 'Tambaur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5183', 'Tanda', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5184', 'Tatarpur Lallu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5185', 'Tetribazar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5186', 'Thakurdwara', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5187', 'Thana Bhawan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5188', 'Thiriya Nizamat Khan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5189', 'Tikaitnagar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5190', 'Tikri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5191', 'Tilhar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5192', 'Tindwari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5193', 'Tirwaganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5194', 'Titron', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5195', 'Tori Fatehpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5196', 'Tulsipur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5197', 'Tundla', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5198', 'Tundla Kham', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5199', 'Tundla Railway Colony', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5200', 'Ugu', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5201', 'Ujhani', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5202', 'Ujhari', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5203', 'Umri', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5204', 'Umri Kalan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5205', 'Un', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5206', 'Unchahar', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5207', 'Unnao', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5208', 'Usaihat', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5209', 'Usawan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5210', 'Utraula', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5211', 'Varanasi', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5212', 'Varanasi Cantonment', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5213', 'Vijaigarh', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5214', 'Vrindavan', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5215', 'Wazirganj', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5216', 'Zafarabad', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5217', 'Zaidpur', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5218', 'Zamania', '38', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5219', 'Almora', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5220', 'Almora Cantonment', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5221', 'Badrinathpuri', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5222', 'Bageshwar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5223', 'Bah Bazar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5224', 'Banbasa', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5225', 'Bandia', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5226', 'Barkot', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5227', 'Bazpur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5228', 'Bhim Tal', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5229', 'Bhowali', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5230', 'Chakrata', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5231', 'Chamba', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5232', 'Chamoli and Gopeshwar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5233', 'Champawat', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5234', 'Clement Town', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5235', 'Dehra Dun Cantonment', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5236', 'Dehradun', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5237', 'Dehrakhas', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5238', 'Devaprayag', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5239', 'Dhaluwala', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5240', 'Dhandera', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5241', 'Dharchula', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5242', 'Dharchula Dehat', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5243', 'Didihat', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5244', 'Dineshpur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5245', 'Doiwala', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5246', 'Dugadda', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5247', 'Dwarahat', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5248', 'Gadarpur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5249', 'Gangotri', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5250', 'Gauchar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5251', 'Haldwani', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5252', 'Haridwar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5253', 'Herbertpur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5254', 'Jaspur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5255', 'Jhabrera', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5256', 'Joshimath', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5257', 'Kachnal Gosain', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5258', 'Kaladungi', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5259', 'Kalagarh', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5260', 'Karnaprayang', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5261', 'Kashipur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5262', 'Kashirampur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5263', 'Kausani', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5264', 'Kedarnath', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5265', 'Kelakhera', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5266', 'Khatima', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5267', 'Kichha', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5268', 'Kirtinagar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5269', 'Kotdwara', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5270', 'Laksar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5271', 'Lalkuan', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5272', 'Landaura', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5273', 'Landhaura Cantonment', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5274', 'Lensdaun', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5275', 'Logahat', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5276', 'Mahua Dabra Haripura', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5277', 'Mahua Kheraganj', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5278', 'Manglaur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5279', 'Masuri', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5280', 'Mohanpur Mohammadpur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5281', 'Muni Ki Reti', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5282', 'Nagla', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5283', 'Nainital', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5284', 'Nainital Cantonment', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5285', 'Nandaprayang', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5286', 'Narendranagar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5287', 'Pauri', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5288', 'Pithoragarh', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5289', 'Pratitnagar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5290', 'Raipur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5291', 'Raiwala', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5292', 'Ramnagar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5293', 'Ranikhet', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5294', 'Ranipur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5295', 'Rishikesh', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5296', 'Rishikesh Cantonment', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5297', 'Roorkee', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5298', 'Rudraprayag', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5299', 'Rudrapur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5300', 'Rurki', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5301', 'Rurki Cantonment', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5302', 'Shaktigarh', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5303', 'Sitarganj', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5304', 'Srinagar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5305', 'Sultanpur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5306', 'Tanakpur', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5307', 'Tehri', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5308', 'Udham Singh Nagar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5309', 'Uttarkashi', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5310', 'Vikasnagar', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5311', 'Virbhadra', '39', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5312', '24 Parganas (n)', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5313', '24 Parganas (s)', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5314', 'Adra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5315', 'Ahmadpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5316', 'Aiho', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5317', 'Aistala', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5318', 'Alipur Duar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5319', 'Alipur Duar Railway Junction', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5320', 'Alpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5321', 'Amalhara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5322', 'Amkula', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5323', 'Amlagora', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5324', 'Amodghata', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5325', 'Amtala', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5326', 'Andul', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5327', 'Anksa', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5328', 'Ankurhati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5329', 'Anup Nagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5330', 'Arambagh', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5331', 'Argari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5332', 'Arsha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5333', 'Asansol', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5334', 'Ashoknagar Kalyangarh', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5335', 'Aurangabad', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5336', 'Bablari Dewanganj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5337', 'Badhagachhi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5338', 'Baduria', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5339', 'Baghdogra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5340', 'Bagnan', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5341', 'Bagra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5342', 'Bagula', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5343', 'Baharampur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5344', 'Bahirgram', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5345', 'Bahula', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5346', 'Baidyabati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5347', 'Bairatisal', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5348', 'Baj Baj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5349', 'Bakreswar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5350', 'Balaram Pota', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5351', 'Balarampur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5352', 'Bali Chak', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5353', 'Ballavpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5354', 'Bally', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5355', 'Balurghat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5356', 'Bamunari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5357', 'Banarhat Tea Garden', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5358', 'Bandel', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5359', 'Bangaon', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5360', 'Bankra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5361', 'Bankura', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5362', 'Bansbaria', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5363', 'Banshra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5364', 'Banupur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5365', 'Bara Bamonia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5366', 'Barakpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5367', 'Barakpur Cantonment', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5368', 'Baranagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5369', 'Barasat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5370', 'Barddhaman', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5371', 'Barijhati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5372', 'Barjora', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5373', 'Barrackpore', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5374', 'Baruihuda', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5375', 'Baruipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5376', 'Barunda', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5377', 'Basirhat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5378', 'Baska', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5379', 'Begampur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5380', 'Beldanga', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5381', 'Beldubi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5382', 'Belebathan', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5383', 'Beliator', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5384', 'Bhadreswar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5385', 'Bhandardaha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5386', 'Bhangar Raghunathpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5387', 'Bhangri Pratham Khanda', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5388', 'Bhanowara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5389', 'Bhatpara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5390', 'Bholar Dabri', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5391', 'Bidhannagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5392', 'Bidyadharpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5393', 'Biki Hakola', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5394', 'Bilandapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5395', 'Bilpahari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5396', 'Bipra Noapara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5397', 'Birlapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5398', 'Birnagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5399', 'Bisarpara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5400', 'Bishnupur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5401', 'Bolpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5402', 'Bongaon', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5403', 'Bowali', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5404', 'Burdwan', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5405', 'Canning', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5406', 'Cart Road', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5407', 'Chachanda', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5408', 'Chak Bankola', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5409', 'Chak Enayetnagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5410', 'Chak Kashipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5411', 'Chakalampur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5412', 'Chakbansberia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5413', 'Chakdaha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5414', 'Chakpara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5415', 'Champahati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5416', 'Champdani', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5417', 'Chamrail', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5418', 'Chandannagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5419', 'Chandpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5420', 'Chandrakona', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5421', 'Chapari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5422', 'Chapui', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5423', 'Char Brahmanagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5424', 'Char Maijdia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5425', 'Charka', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5426', 'Chata Kalikapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5427', 'Chauhati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5428', 'Checha Khata', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5429', 'Chelad', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5430', 'Chhora', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5431', 'Chikrand', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5432', 'Chittaranjan', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5433', 'Contai', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5434', 'Cooch Behar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5435', 'Dainhat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5436', 'Dakshin Baguan', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5437', 'Dakshin Jhapardaha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5438', 'Dakshin Rajyadharpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5439', 'Dakshin Raypur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5440', 'Dalkola', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5441', 'Dalurband', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5442', 'Darap Pur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5443', 'Darjiling', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5444', 'Daulatpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5445', 'Debipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5446', 'Defahat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5447', 'Deora', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5448', 'Deulia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5449', 'Dhakuria', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5450', 'Dhandadihi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5451', 'Dhanyakuria', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5452', 'Dharmapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5453', 'Dhatri Gram', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5454', 'Dhuilya', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5455', 'Dhulagari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5456', 'Dhulian', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5457', 'Dhupgari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5458', 'Dhusaripara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5459', 'Diamond Harbour', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5460', 'Digha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5461', 'Dignala', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5462', 'Dinhata', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5463', 'Dubrajpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5464', 'Dumjor', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5465', 'Durgapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5466', 'Durllabhganj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5467', 'Egra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5468', 'Eksara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5469', 'Falakata', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5470', 'Farakka', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5471', 'Fatellapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5472', 'Fort Gloster', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5473', 'Gabberia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5474', 'Gadigachha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5475', 'Gairkata', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5476', 'Gangarampur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5477', 'Garalgachha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5478', 'Garbeta Amlagora', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5479', 'Garhbeta', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5480', 'Garshyamnagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5481', 'Garui', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5482', 'Garulia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5483', 'Gayespur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5484', 'Ghatal', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5485', 'Ghorsala', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5486', 'Goaljan', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5487', 'Goasafat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5488', 'Gobardanga', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5489', 'Gobindapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5490', 'Gopalpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5491', 'Gopinathpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5492', 'Gora Bazar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5493', 'Guma', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5494', 'Gurdaha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5495', 'Guriahati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5496', 'Guskhara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5497', 'Habra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5498', 'Haldia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5499', 'Haldibari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5500', 'Halisahar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5501', 'Haora', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5502', 'Harharia Chak', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5503', 'Harindanga', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5504', 'Haringhata', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5505', 'Haripur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5506', 'Harishpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5507', 'Hatgachha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5508', 'Hatsimla', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5509', 'Hijuli', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5510', 'Hindustan Cables Town', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5511', 'Hooghly', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5512', 'Howrah', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5513', 'Hugli-Chunchura', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5514', 'Humaipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5515', 'Ichha Pur Defence Estate', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5516', 'Ingraj Bazar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5517', 'Islampur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5518', 'Jafarpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5519', 'Jagadanandapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5520', 'Jagdishpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5521', 'Jagtaj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5522', 'Jala Kendua', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5523', 'Jaldhaka', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5524', 'Jalkhura', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5525', 'Jalpaiguri', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5526', 'Jamuria', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5527', 'Jangipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5528', 'Jaygaon', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5529', 'Jaynagar-Majilpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5530', 'Jemari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5531', 'Jemari Township', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5532', 'Jetia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5533', 'Jhalida', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5534', 'Jhargram', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5535', 'Jhorhat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5536', 'Jiaganj-Azimganj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5537', 'Joka', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5538', 'Jot Kamal', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5539', 'Kachu Pukur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5540', 'Kajora', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5541', 'Kakdihi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5542', 'Kakdwip', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5543', 'Kalaikunda', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5544', 'Kalara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5545', 'Kalimpong', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5546', 'Kaliyaganj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5547', 'Kalna', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5548', 'Kalyani', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5549', 'Kamarhati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5550', 'Kanaipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5551', 'Kanchrapara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5552', 'Kandi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5553', 'Kanki', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5554', 'Kankuria', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5555', 'Kantlia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5556', 'Kanyanagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5557', 'Karimpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5558', 'Karsiyang', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5559', 'Kasba', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5560', 'Kasimbazar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5561', 'Katwa', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5562', 'Kaugachhi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5563', 'Kenda', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5564', 'Kendra Khottamdi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5565', 'Kendua', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5566', 'Kesabpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5567', 'Khagrabari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5568', 'Khalia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5569', 'Khalor', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5570', 'Khandra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5571', 'Khantora', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5572', 'Kharagpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5573', 'Kharagpur Railway Settlement', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5574', 'Kharar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5575', 'Khardaha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5576', 'Khari Mala Khagrabari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5577', 'Kharsarai', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5578', 'Khatra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5579', 'Khodarampur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5580', 'Kodalia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5581', 'Kolaghat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5582', 'Kolaghat Thermal Power Project', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5583', 'Kolkata', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5584', 'Konardihi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5585', 'Konnogar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5586', 'Krishnanagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5587', 'Krishnapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5588', 'Kshidirpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5589', 'Kshirpai', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5590', 'Kulihanda', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5591', 'Kulti', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5592', 'Kunustara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5593', 'Kuperskem', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5594', 'Madanpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5595', 'Madhusudanpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5596', 'Madhyamgram', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5597', 'Maheshtala', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5598', 'Mahiari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5599', 'Mahikpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5600', 'Mahira', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5601', 'Mahishadal', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5602', 'Mainaguri', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5603', 'Makardaha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5604', 'Mal', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5605', 'Malda', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5606', 'Mandarbani', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5607', 'Mansinhapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5608', 'Masila', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5609', 'Maslandapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5610', 'Mathabhanga', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5611', 'Mekliganj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5612', 'Memari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5613', 'Midnapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5614', 'Mirik', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5615', 'Monoharpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5616', 'Mrigala', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5617', 'Muragachha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5618', 'Murgathaul', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5619', 'Murshidabad', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5620', 'Nabadhai Dutta Pukur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5621', 'Nabagram', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5622', 'Nabgram', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5623', 'Nachhratpur Katabari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5624', 'Nadia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5625', 'Naihati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5626', 'Nalhati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5627', 'Nasra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5628', 'Natibpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5629', 'Naupala', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5630', 'Navadwip', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5631', 'Nebadhai Duttapukur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5632', 'New Barrackpore', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5633', 'Ni Barakpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5634', 'Nibra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5635', 'Noapara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5636', 'Nokpul', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5637', 'North Barakpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5638', 'Odlabari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5639', 'Old Maldah', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5640', 'Ondal', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5641', 'Pairagachha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5642', 'Palashban', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5643', 'Panchla', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5644', 'Panchpara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5645', 'Pandua', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5646', 'Pangachhiya', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5647', 'Paniara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5648', 'Panihati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5649', 'Panuhat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5650', 'Par Beliya', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5651', 'Parashkol', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5652', 'Parasia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5653', 'Parbbatipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5654', 'Parui', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5655', 'Paschim Jitpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5656', 'Paschim Punro Para', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5657', 'Patrasaer', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5658', 'Pattabong Tea Garden', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5659', 'Patuli', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5660', 'Patulia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5661', 'Phulia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5662', 'Podara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5663', 'Port Blair', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5664', 'Prayagpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5665', 'Pujali', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5666', 'Purba Medinipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5667', 'Purba Tajpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5668', 'Purulia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5669', 'Raghudebbati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5670', 'Raghudebpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5671', 'Raghunathchak', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5672', 'Raghunathpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5673', 'Raghunathpur-Dankuni', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5674', 'Raghunathpur-Magra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5675', 'Raigachhi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5676', 'Raiganj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5677', 'Raipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5678', 'Rajarhat Gopalpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5679', 'Rajpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5680', 'Ramchandrapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5681', 'Ramjibanpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5682', 'Ramnagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5683', 'Rampur Hat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5684', 'Ranaghat', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5685', 'Raniganj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5686', 'Ratibati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5687', 'Raypur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5688', 'Rishra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5689', 'Rishra Cantonment', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5690', 'Ruiya', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5691', 'Sahajadpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5692', 'Sahapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5693', 'Sainthia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5694', 'Salap', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5695', 'Sankarpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5696', 'Sankrail', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5697', 'Santoshpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5698', 'Saontaidih', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5699', 'Sarenga', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5700', 'Sarpi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5701', 'Satigachha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5702', 'Serpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5703', 'Shankhanagar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5704', 'Shantipur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5705', 'Shrirampur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5706', 'Siduli', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5707', 'Siliguri', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5708', 'Simla', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5709', 'Singur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5710', 'Sirsha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5711', 'Siuri', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5712', 'Sobhaganj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5713', 'Sodpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5714', 'Sonamukhi', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5715', 'Sonatikiri', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5716', 'Srikantabati', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5717', 'Srirampur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5718', 'Sukdal', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5719', 'Taherpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5720', 'Taki', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5721', 'Talbandha', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5722', 'Tamluk', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5723', 'Tarakeswar', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5724', 'Tentulberia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5725', 'Tentulkuli', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5726', 'Thermal Power Project', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5727', 'Tinsukia', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5728', 'Titagarh', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5729', 'Tufanganj', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5730', 'Ukhra', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5731', 'Ula', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5732', 'Ulubaria', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5733', 'Uttar Durgapur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5734', 'Uttar Goara', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5735', 'Uttar Kalas', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5736', 'Uttar Kamakhyaguri', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5737', 'Uttar Latabari', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5738', 'Uttar Mahammadpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5739', 'Uttar Pirpur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5740', 'Uttar Raypur', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5741', 'Uttarpara-Kotrung', '41', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5742', 'Abohar', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5743', 'Adampur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5744', 'Ahmedgarh', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5745', 'Ajnala', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5746', 'Akalgarh', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5747', 'Alawalpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5748', 'Amloh', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5749', 'Amritsar', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5750', 'Amritsar Cantonment', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5751', 'Anandpur Sahib', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5752', 'Badhni Kalan', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5753', 'Bagh Purana', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5754', 'Balachaur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5755', 'Banaur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5756', 'Banga', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5757', 'Banur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5758', 'Baretta', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5759', 'Bariwala', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5760', 'Barnala', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5761', 'Bassi Pathana', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5762', 'Batala', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5763', 'Bathinda', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5764', 'Begowal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5765', 'Behrampur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5766', 'Bhabat', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5767', 'Bhadur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5768', 'Bhankharpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5769', 'Bharoli Kalan', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5770', 'Bhawanigarh', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5771', 'Bhikhi', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5772', 'Bhikhiwind', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5773', 'Bhisiana', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5774', 'Bhogpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5775', 'Bhuch', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5776', 'Bhulath', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5777', 'Budha Theh', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5778', 'Budhlada', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5779', 'Chima', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5780', 'Chohal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5781', 'Dasuya', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5782', 'Daulatpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5783', 'Dera Baba Nanak', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5784', 'Dera Bassi', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5785', 'Dhanaula', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5786', 'Dharam Kot', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5787', 'Dhariwal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5788', 'Dhilwan', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5789', 'Dhuri', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5790', 'Dinanagar', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5791', 'Dirba', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5792', 'Doraha', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5793', 'Faridkot', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5794', 'Fateh Nangal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5795', 'Fatehgarh Churian', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5796', 'Fatehgarh Sahib', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5797', 'Fazilka', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5798', 'Firozpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5799', 'Firozpur Cantonment', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5800', 'Gardhiwala', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5801', 'Garhshankar', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5802', 'Ghagga', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5803', 'Ghanaur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5804', 'Giddarbaha', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5805', 'Gobindgarh', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5806', 'Goniana', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5807', 'Goraya', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5808', 'Gurdaspur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5809', 'Guru Har Sahai', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5810', 'Hajipur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5811', 'Handiaya', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5812', 'Hariana', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5813', 'Hoshiarpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5814', 'Hussainpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5815', 'Jagraon', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5816', 'Jaitu', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5817', 'Jalalabad', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5818', 'Jalandhar', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5819', 'Jalandhar Cantonment', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5820', 'Jandiala', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5821', 'Jugial', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5822', 'Kalanaur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5823', 'Kapurthala', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5824', 'Karoran', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5825', 'Kartarpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5826', 'Khamanon', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5827', 'Khanauri', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5828', 'Khanna', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5829', 'Kharar', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5830', 'Khem Karan', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5831', 'Kot Fatta', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5832', 'Kot Isa Khan', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5833', 'Kot Kapura', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5834', 'Kotkapura', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5835', 'Kurali', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5836', 'Lalru', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5837', 'Lehra Gaga', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5838', 'Lodhian Khas', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5839', 'Longowal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5840', 'Ludhiana', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5841', 'Machhiwara', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5842', 'Mahilpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5843', 'Majitha', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5844', 'Makhu', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5845', 'Malaut', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5846', 'Malerkotla', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5847', 'Maloud', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5848', 'Mandi Gobindgarh', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5849', 'Mansa', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5850', 'Maur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5851', 'Moga', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5852', 'Mohali', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5853', 'Moonak', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5854', 'Morinda', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5855', 'Mukerian', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5856', 'Muktsar', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5857', 'Mullanpur Dakha', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5858', 'Mullanpur Garibdas', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5859', 'Munak', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5860', 'Muradpura', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5861', 'Nabha', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5862', 'Nakodar', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5863', 'Nangal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5864', 'Nawashahr', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5865', 'Naya Nangal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5866', 'Nehon', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5867', 'Nurmahal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5868', 'Pathankot', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5869', 'Patiala', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5870', 'Patti', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5871', 'Pattran', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5872', 'Payal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5873', 'Phagwara', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5874', 'Phillaur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5875', 'Qadian', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5876', 'Rahon', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5877', 'Raikot', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5878', 'Raja Sansi', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5879', 'Rajpura', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5880', 'Ram Das', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5881', 'Raman', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5882', 'Rampura', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5883', 'Rayya', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5884', 'Rupnagar', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5885', 'Rurki Kasba', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5886', 'Sahnewal', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5887', 'Samana', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5888', 'Samrala', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5889', 'Sanaur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5890', 'Sangat', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5891', 'Sangrur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5892', 'Sansarpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5893', 'Sardulgarh', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5894', 'Shahkot', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5895', 'Sham Churasi', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5896', 'Shekhpura', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5897', 'Sirhind', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5898', 'Sri Hargobindpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5899', 'Sujanpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5900', 'Sultanpur Lodhi', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5901', 'Sunam', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5902', 'Talwandi Bhai', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5903', 'Talwara', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5904', 'Tappa', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5905', 'Tarn Taran', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5906', 'Urmar Tanda', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5907', 'Zira', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5908', 'Zirakpur', '2728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5909', 'Eshkashem', '42', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5910', 'Fayzabad', '42', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5911', 'Jurm', '42', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5912', 'Khandud', '42', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5913', 'Qal\'eh-ye Panjeh', '42', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5914', 'Bala Morghab', '43', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5915', 'Qal\'eh-ye Naw', '43', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5916', 'Andarab', '44', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5917', 'Baghlan', '44', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5918', 'Dahaneh-ye Ghawri', '44', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5919', 'Nahrin', '44', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5920', 'Pol-e Khumri', '44', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5921', 'Balkh', '45', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5922', 'Dawlatabad', '45', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5923', 'Mazar-e Sharif', '45', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5924', 'Qarchi Gak', '45', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5925', 'Shulgara', '45', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5926', 'Tash Gozar', '45', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5927', 'Bamiyan', '46', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5928', 'Panjab', '46', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5929', 'Qil Qal\'eh', '46', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5930', 'Anar Darreh', '47', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5931', 'Farah', '47', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5932', 'Shindand', '47', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5933', 'Andkhvoy', '48', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5934', 'Darzi Ab', '48', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5935', 'Dawlatabad', '48', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5936', 'Maymanah', '48', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5937', 'Chaghcharan', '49', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5938', 'Shahrak', '49', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5939', 'Taywarah', '49', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5940', 'Ghazni', '50', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5941', 'Awbeh', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5942', 'Eslam Qal\'eh', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5943', 'Ghurian', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5944', 'Herat', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5945', 'Karukh', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5946', 'Kuhestan', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5947', 'Kushk', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5948', 'Qarabagh', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5949', 'Tawraghudi', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5950', 'Tir Pol', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5951', 'Zendejan', '51', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5952', 'Baghran', '52', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5953', 'Darwishan', '52', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5954', 'Deh Shu', '52', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5955', 'Gereshk', '52', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5956', 'Lashkar Gah', '52', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5957', 'Sangin', '52', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5958', 'Aqchah', '53', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5959', 'Qarqin', '53', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5960', 'Sang-e Charak', '53', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5961', 'Shibarghan', '53', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5962', 'Baghrami', '54', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5963', 'Kabul', '54', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5964', 'Mir Bachchekut', '54', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5965', 'Paghman', '54', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5966', 'Qarabagh', '54', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5967', 'Sarawbi', '54', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5968', 'Mahmud-e Raqi', '55', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5969', 'Taghab', '55', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5970', 'Khawst', '56', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5971', 'Asadabad', '57', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5972', 'Asmar', '57', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5973', 'Mehtar Lam', '58', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5974', 'Azraw', '59', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5975', 'Baraki Barak', '59', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5976', 'Pol-e Alam', '59', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5977', 'Achin', '60', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5978', 'Batsawul', '60', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5979', 'Hugyani', '60', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5980', 'Jalalabad', '60', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5981', 'Nader Shah Kawt', '60', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5982', 'Chahar Burjak', '61', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5983', 'Chakhansur', '61', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5984', 'Khash', '61', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5985', 'Mirabad', '61', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5986', 'Rudbar', '61', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5987', 'Zaranj', '61', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5988', 'Nuristan', '62', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5989', 'Orgun', '63', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5990', 'Zareh Sharan', '63', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5991', 'Zarghun Shahr', '63', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5992', '\'Ali Khayl', '64', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5993', 'Ghardez', '64', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5994', 'Charikar', '65', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5995', 'Jabal-os-Saraj', '65', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5996', 'Qandahar', '66', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5997', 'Dasht-e Archa', '67', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5998', 'Emam Saheb', '67', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('5999', 'Hazart Imam', '67', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6000', 'Khanabad', '67', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6001', 'Qal\'eh-ye Zal', '67', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6002', 'Qunduz', '67', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6003', 'Aybak', '68', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6004', 'Kholm', '68', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6005', 'Chah Ab', '70', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6006', 'Eshkamesh', '70', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6007', 'Farkhar', '70', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6008', 'Khwajeh Ghar', '70', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6009', 'Rostaq', '70', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6010', 'Taloqan', '70', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6011', 'Yangi Qal\'eh', '70', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6012', 'Deh Rawud', '71', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6013', 'Gaz Ab', '71', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6014', 'Tarin Kawt', '71', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6015', 'Uruzgan', '71', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6016', 'Gardan Diwal', '72', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6017', 'Maydanshahr', '72', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6018', 'Qalat-e Ghilzay', '73', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6019', 'Berat', '74', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6020', 'Polican', '74', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6021', 'Ure Vajgurore', '74', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6022', 'Bulqize', '75', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6023', 'Delvine', '76', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6024', 'Bilisht', '77', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6025', 'Maqellare', '78', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6026', 'Peshkopi', '78', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6027', 'Durres', '79', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6028', 'Shijak', '79', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6029', 'Cerrik', '80', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6030', 'Elbasan', '80', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6031', 'Kerrabe', '80', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6032', 'Fier', '81', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6033', 'Patos', '81', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6034', 'Roskovec', '81', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6035', 'Gjirokaster', '82', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6036', 'Libohove', '82', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6037', 'Gramsh', '83', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6038', 'Krume', '84', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6039', 'Kavaje', '85', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6040', 'Erseke', '86', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6041', 'Leskovik', '86', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6042', 'Korce', '87', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6043', 'Maliq', '87', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6044', 'Fushe-Kruje', '88', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6045', 'Kruje', '88', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6046', 'Mamurras', '88', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6047', 'Milot', '88', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6048', 'Kucove', '89', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6049', 'Kukes', '90', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6050', 'Lac', '91', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6051', 'Lezhe', '92', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6052', 'Shengjin', '92', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6053', 'Librazhd', '93', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6054', 'Perrenjas', '93', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6055', 'Lushnje', '94', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6056', 'Rrogozhine', '94', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6057', 'Ballsh', '95', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6058', 'Burrel', '97', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6059', 'Klos', '97', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6060', 'Kraste', '97', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6061', 'Ulze', '97', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6062', 'Kurbnesh', '98', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6063', 'Rreshen', '98', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6064', 'Rubik', '98', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6065', 'Peqin', '99', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6066', 'Kelcyre', '100', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6067', 'Permet', '100', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6068', 'Pogradec', '101', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6069', 'Fierze', '102', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6070', 'Fushe-Arrez', '102', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6071', 'Puke', '102', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6072', 'Konispol', '103', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6073', 'Sarande', '103', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6074', 'Shkoder', '104', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6075', 'Corovode', '105', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6076', 'Memaliaj', '106', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6077', 'Tepelene', '106', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6078', 'Kamze', '107', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6079', 'Paskuqan', '107', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6080', 'Tirane', '107', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6081', 'Vore', '107', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6082', 'Bajram Curri', '108', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6083', 'Himare', '109', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6084', 'Orikum', '109', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6085', 'Selenice', '109', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6086', 'Vlore', '109', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6087', 'Adrar', '112', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6088', 'Awlaf', '112', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6089', 'Rijan', '112', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6090', 'Timimun', '112', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6091', 'Hydra', '113', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6092', 'Kouba', '113', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6093', 'Annabah', '114', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6094', 'Birrahhal', '114', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6095', 'Saraydih', '114', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6096', 'Sidi Amar', '114', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6097', 'al-Buni', '114', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6098', 'al-Hajar', '114', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6099', '\'Abadlah', '115', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6100', 'Bani Wanif', '115', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6101', 'Bashshar', '115', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6102', 'Qanadsan', '115', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6103', 'Taghit', '115', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6104', '\'Aris', '116', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6105', '\'Ayn Tutah', '116', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6106', 'Barikah', '116', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6107', 'Batnah', '116', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6108', 'Marwanah', '116', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6109', 'Naghaus', '116', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6110', 'Ra\'s-al-\'Ayun', '116', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6111', 'Tazult', '116', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6112', '\'Ayt Rizin', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6113', 'Akbu', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6114', 'Amizur', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6115', 'Barbasha', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6116', 'Bijayah', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6117', 'Farrawn', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6118', 'Ighram', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6119', 'Sadduk', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6120', 'Shamini', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6121', 'Sidi \'Aysh', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6122', 'Taskaryut', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6123', 'Tazmalt', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6124', 'Timazrit', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6125', 'Uz-al-Laqin', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6126', 'al-Qasr', '117', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6127', 'Awlad Jallal', '118', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6128', 'Biskrah', '118', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6129', 'Sidi Khalid', '118', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6130', 'Sidi Ukbah', '118', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6131', 'Tulja', '118', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6132', 'Um\'ash', '118', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6133', 'Zaribat-al-Wad', '118', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6134', 'Awlad Salam', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6135', 'Awlad Yaysh', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6136', 'Bani Khalil', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6137', 'Bani Marad', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6138', 'Bani Tamu', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6139', 'Blidah', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6140', 'Bu Arfa', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6141', 'Bufarik', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6142', 'Buinan', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6143', 'Buqara', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6144', 'Maftah', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6145', 'Muzayah', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6146', 'Shabli', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6147', 'Shari\'ah', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6148', 'Shiffa', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6149', 'Sidi Mussa', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6150', 'Suma', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6151', 'Wadi al-Allagh', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6152', 'al-\'Afrun', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6153', 'al-Arba\'a', '119', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6154', '\'Ayn Bissim', '120', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6155', 'Aghbalu', '120', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6156', 'Bi\'r Ghabalu', '120', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6157', 'Buirah', '120', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6158', 'Lakhdariyah', '120', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6159', 'Shurfa', '120', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6160', 'Sur-al-Ghuzlan', '120', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6161', '\'Ayn Tayah', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6162', 'Awlad Haddaj', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6163', 'Awlad Mussa', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6164', 'Bani Amran', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6165', 'Budwawu', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6166', 'Budwawu al-Bahri', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6167', 'Bumardas', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6168', 'Burj Minayal', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6169', 'Dalis', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6170', 'Hammadi', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6171', 'Issar', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6172', 'Khamis-al-Khashnah', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6173', 'Nasiriyah', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6174', 'Raghayah', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6175', 'Sa\'abat', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6176', 'Tinyah', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6177', 'al-Arba\'a Tash', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6178', 'ar-Ruwibah', '121', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6179', 'Ammi Mussa', '123', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6180', 'Ghalizan', '123', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6181', 'Jidiwiyah', '123', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6182', 'Mazunah', '123', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6183', 'Sidi Muhammad Ban \'Ali', '123', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6184', 'Wadi Rahiyu', '123', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6185', 'Zammurah', '123', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6186', 'Biryan', '124', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6187', 'Bu Nura', '124', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6188', 'Ghardaia', '124', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6189', 'Ghardayah', '124', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6190', 'Matlili', '124', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6191', 'al-Ghuli\'ah', '124', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6192', 'al-Qararah', '124', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6193', 'Ilizi', '125', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6194', 'Amir \'Abd-al-Qadar', '126', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6195', 'Jijili', '126', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6196', 'Shifka', '126', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6197', 'Tahar', '126', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6198', 'al-Miliyah', '126', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6199', '\'Ayn Wissarah', '127', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6200', '\'Ayn-al-Ibil', '127', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6201', 'Birin', '127', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6202', 'Dar Shiyukh', '127', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6203', 'Hassi Bahbah', '127', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6204', 'Jilfah', '127', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6205', 'Mis\'ad', '127', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6206', 'Sharif', '127', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6207', 'al-Idrisiyah', '127', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6208', 'Khanshalah', '128', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6209', 'Sharshar', '128', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6210', 'Tawziyanat', '128', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6211', 'al-Mahmal', '128', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6212', '\'Ayn-al-Hajal', '129', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6213', '\'Ayn-al-Milh', '129', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6214', 'Bu Sa\'adah', '129', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6215', 'Hammam Dhala\'a', '129', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6216', 'Ma\'adid', '129', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6217', 'Maghra', '129', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6218', 'Masilah', '129', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6219', 'Sidi \'Aysa', '129', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6220', 'Wanugha', '129', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6221', '\'Ayn Bu Sif', '130', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6222', 'Birwaghiyah', '130', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6223', 'Midyah', '130', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6224', 'Qasr-al-Bukhari', '130', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6225', 'Shillalah', '130', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6226', 'Tablat', '130', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6227', 'Farjiwah', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6228', 'Milah', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6229', 'Qararam Quqa', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6230', 'Ruwashad', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6231', 'Salghum-al-\'Ayd', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6232', 'Sidi Maruf', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6233', 'Sidi Marwan', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6234', 'Tajananah', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6235', 'Talighmah', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6236', 'Wadi Athmaniyah', '131', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6237', 'Bu Khanifiyah', '132', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6238', 'Muaskar', '132', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6239', 'Muhammadiyah', '132', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6240', 'Siq', '132', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6241', 'Tighinnif', '132', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6242', 'Wadi al-Abtal', '132', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6243', 'Zahana', '132', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6244', '\'Ayn Tadalas', '133', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6245', 'Hassi Mamash', '133', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6246', 'Mazaghran', '133', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6247', 'Mustaghanam', '133', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6248', 'Sidi Ali', '133', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6249', '\'Ayn Safra', '134', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6250', 'Mishriyah', '134', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6251', 'Naama', '134', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6252', 'Oran', '135', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6253', 'Ouargla', '136', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6254', '\'Ayn Bardah', '137', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6255', 'Bumahra Ahmad', '137', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6256', 'Hamman Awlad \'Ali', '137', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6257', 'Qalmah', '137', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6258', 'Wadi Zinati', '137', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6259', '\'Ayn Abid', '138', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6260', '\'Ayn Samara', '138', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6261', 'Didush Murad', '138', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6262', 'Hamma Bu Ziyan', '138', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6263', 'Qustantinah', '138', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6264', 'Zighut Yusuf', '138', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6265', 'al-Khurub', '138', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6266', '\'Azzabah', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6267', 'Amjaz Adshish', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6268', 'Fil Fila', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6269', 'Karkira', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6270', 'Ramadan Jamal', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6271', 'Sakikdah', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6272', 'Shataybih', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6273', 'Tamalus', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6274', 'al-Harush', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6275', 'al-Qull', '139', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6276', '\'Ayn \'Azl', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6277', '\'Ayn Arnat', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6278', '\'Ayn Taqrut', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6279', '\'Ayn Wilman', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6280', '\'Ayn-al-Khabira', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6281', 'Bouira', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6282', 'Buq\'ah', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6283', 'Salah Bay', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6284', 'Satif', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6285', 'Setif', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6286', 'Ziyama Mansuriyah', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6287', 'al-\'Ulmah', '140', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6288', '\'Ayn-al-Hajar', '141', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6289', 'Sayda\'', '141', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6290', '\'Ayn Qazzan', '144', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6291', '\'Ayn Salah', '144', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6292', 'Tamanghasat', '144', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6293', '\'Ayn Binyan', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6294', 'Bu Isma\'il', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6295', 'Bu Midfar\'ah', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6296', 'Damus', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6297', 'Duwirah', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6298', 'Hajut', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6299', 'Hammam Righa', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6300', 'Sawlah', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6301', 'Shiragha', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6302', 'Shirshall', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6303', 'Sidi Farj', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6304', 'Stawali', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6305', 'Tibazah', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6306', 'Ziralda', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6307', 'al-Qull\'ah', '145', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6308', 'Bi\'r-al-\'Itir', '146', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6309', 'Hammamat', '146', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6310', 'Mursut', '146', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6311', 'Shariyah', '146', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6312', 'Tibissah', '146', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6313', 'Winzah', '146', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6314', 'al-\'Awaynat', '146', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6315', 'Awlad Mimun', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6316', 'Bani Mastar', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6317', 'Bani Sikran', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6318', 'Ghazawat', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6319', 'Hannayah', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6320', 'Maghniyah', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6321', 'Nidruma', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6322', 'Ramsh', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6323', 'Sabra', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6324', 'Shatwan', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6325', 'Sibdu', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6326', 'Sidi \'Abdallah', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6327', 'Tilimsan', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6328', 'al-Mansurah', '147', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6329', 'Tinduf', '148', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6330', 'Thaniyat-al-Had', '149', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6331', 'Tisamsilt', '149', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6332', '\'Ayn Dhahab', '150', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6333', 'Firindah', '150', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6334', 'Mahdiyah', '150', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6335', 'Mashra\'a Asfa', '150', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6336', 'Qasr Shillalah', '150', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6337', 'Rahuyah', '150', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6338', 'Sughar', '150', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6339', 'Takhamarat', '150', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6340', 'Tiyarat', '150', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6341', '\'Ayn Bayda', '152', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6342', '\'Ayn Fakrun', '152', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6343', '\'Ayn Kirshah', '152', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6344', '\'Ayn Malilah', '152', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6345', 'Bi\'r Shuhada', '152', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6346', 'Miskyanah', '152', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6347', 'Shamurah', '152', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6348', 'Umm-al-Bawaghi', '152', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6349', '\'Ayn Biya', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6350', '\'Ayn-at-Turk', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6351', 'Arzu', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6352', 'Bi\'r-al-Jir', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6353', 'Butlilis', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6354', 'Hassi Bu Nif', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6355', 'Mars-al-Kabir', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6356', 'Qadayal', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6357', 'Sidi ash-Shami', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6358', 'Wadi Thalatha', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6359', 'Wahran', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6360', 'al-Ansur', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6361', 'as-Saniyah', '153', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6362', 'Hassi Mas\'ud', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6363', 'Nazla', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6364', 'Ruwisiyat', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6365', 'Tabisbast', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6366', 'Tamalhat', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6367', 'Tamasin', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6368', 'Tayabat-al-Janubiyah', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6369', 'Tughghurt', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6370', 'Warqla', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6371', 'al-Hajirah', '154', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6372', 'Aflu', '158', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6373', 'Hassi al-Raml', '158', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6374', 'al-Aghwat', '158', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6375', 'Brizyanah', '159', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6376', 'al-Abyad Sidi Shaykh', '159', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6377', 'al-Bayadh', '159', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6378', 'Bab Azwar', '160', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6379', 'Baraki', '160', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6380', 'Bir Murad Rais', '160', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6381', 'Birkhadam', '160', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6382', 'Burj-al-Kiffan', '160', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6383', 'Dar-al-Bayda', '160', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6384', 'al-Jaza\'ir', '160', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6385', 'Bayadha', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6386', 'Dabilah', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6387', 'Hassan \'Abd-al-Karim', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6388', 'Hassi Halifa', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6389', 'Jama\'a', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6390', 'Maqran', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6391', 'Qamar', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6392', 'Raqiba', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6393', 'Rubbah', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6394', 'Sidi Amran', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6395', 'al-Mighair', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6396', 'al-Wad', '161', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6397', '\'Ayn Maran', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6398', 'Abu al-Hassan', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6399', 'Bani Hawa', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6400', 'Bu Qadir', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6401', 'Sidi Ukaskah', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6402', 'Tanas', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6403', 'Wadi Sali', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6404', 'Wadi al-Fiddah', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6405', 'ash-Shalif', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6406', 'ash-Shattiyah', '162', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6407', 'Ban Mahdi', '163', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6408', 'Bani Amar', '163', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6409', 'Basbas', '163', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6410', 'Dariyan', '163', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6411', 'Saba\'ita Muk', '163', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6412', 'al-Qal\'ah', '163', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6413', 'at-Tarif', '163', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6414', 'Afono', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6415', 'Alao', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6416', 'Alofau', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6417', 'Amouli', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6418', 'Aoa', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6419', 'Atu\'u', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6420', 'Aua', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6421', 'Aunu\'u', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6422', 'Faga\'alu', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6423', 'Faga\'itua', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6424', 'Fagasa', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6425', 'Fagatogo', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6426', 'Lauli\'i', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6427', 'Leloaloa', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6428', 'Nu\'uuli', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6429', 'Pago Pago', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6430', 'Tula', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6431', 'Utulei', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6432', 'Vatia', '164', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6433', 'Ofu', '165', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6434', 'Aoloau', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6435', 'Faleniu', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6436', 'Futiga', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6437', 'Ili\'ili', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6438', 'Leone', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6439', 'Malaeimi', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6440', 'Malaeloa-Aitulagi', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6441', 'Malaeloa-Ituau', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6442', 'Mapusagafou', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6443', 'Mesepa', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6444', 'Pava\'ia\'i', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6445', 'Tafuna', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6446', 'Taputimu', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6447', 'Vailoatai', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6448', 'Vaitogi', '167', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6449', 'Canillo', '169', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6450', 'Encamp', '170', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6451', 'Ordino', '173', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6452', 'Caxito', '175', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6453', 'Benguela', '176', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6454', 'Lobito', '176', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6455', 'Camacupa', '177', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6456', 'Catabola', '177', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6457', 'Catumbela', '177', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6458', 'Chissamba', '177', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6459', 'Kuito', '177', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6460', 'Cabinda', '178', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6461', 'Ondjiva', '179', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6462', 'Caala', '180', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6463', 'Catchiungo', '180', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6464', 'Huambo', '180', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6465', 'Longonjo', '180', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6466', 'Caconda', '181', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6467', 'Caluquembe', '181', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6468', 'Lubango', '181', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6469', 'Menongue', '182', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6470', 'Luanda', '185', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6471', 'Malanje', '188', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6472', 'Cazaje', '189', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6473', 'Leua', '189', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6474', 'Luau', '189', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6475', 'Luena', '189', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6476', 'Lumeje', '189', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6477', 'Namibe', '190', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6478', 'Camabatela', '191', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6479', 'Uige', '191', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6480', 'M\'banza-Kongo', '192', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6481', 'N\'zeto', '192', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6482', 'Soyo', '192', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6483', 'Codrington', '201', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6484', 'Catamarca', '209', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6485', 'Presidencia Roque Saenz Pena', '210', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6486', 'Resistencia', '210', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6487', 'Comodoro Rivadavia', '211', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6488', 'Puerto Madryn', '211', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6489', 'Rawson', '211', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6490', 'Trelew', '211', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6491', 'Alta Gracia', '212', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6492', 'Bell Ville', '212', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6493', 'Cordoba', '212', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6494', 'Rio Cuarto', '212', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6495', 'Rio Tercero', '212', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6496', 'San Francisco', '212', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6497', 'Villa Carlos Paz', '212', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6498', 'Villa Maria', '212', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6499', 'Corrientes', '213', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6500', 'Goya', '213', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6501', 'Mercedes', '213', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6502', 'San Lorenzo', '213', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6503', 'Formosa', '216', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6504', 'Jujuy', '217', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6505', 'Libertador General San Martin', '217', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6506', 'San Pedro', '217', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6507', 'Godoy Cruz', '220', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6508', 'Lujan', '220', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6509', 'Mendoza', '220', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6510', 'Rivadavia', '220', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6511', 'San Martin', '220', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6512', 'San Rafael', '220', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6513', 'Eldorado', '221', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6514', 'Obera', '221', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6515', 'Posadas', '221', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6516', 'Cutral Co', '222', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6517', 'Neuquen', '222', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6518', 'Salta', '224', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6519', 'San Ramon de la Nueva Oran', '224', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6520', 'Tartagal', '224', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6521', 'Tucuman', '231', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6522', 'Ashtarak', '232', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6523', 'Talin', '232', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6524', 'Ararat', '233', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6525', 'Artashat', '233', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6526', 'Armavir', '234', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6527', 'Vagharshapat', '234', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6528', 'Gavar', '235', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6529', 'Martuni', '235', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6530', 'Sevan', '235', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6531', 'Vardenis', '235', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6532', 'Abovyan', '236', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6533', 'Arzni', '236', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6534', 'Charentsavan', '236', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6535', 'Hrazdan', '236', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6536', 'Akhtala', '237', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6537', 'Alaverdi', '237', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6538', 'Spitak', '237', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6539', 'Stepanavan', '237', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6540', 'Tashir', '237', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6541', 'Vanadzor', '237', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6542', 'Artik', '238', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6543', 'Gyumri', '238', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6544', 'Stepanakert', '239', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6545', 'Angeghakot', '240', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6546', 'Goris', '240', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6547', 'Kajaran', '240', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6548', 'Kapan', '240', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6549', 'Meghri', '240', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6550', 'Sisian', '240', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6551', 'Dilijan', '241', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6552', 'Ijevan', '241', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6553', 'Yerevan', '243', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6554', 'Aruba', '244', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6555', 'Glenfield', '245', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6556', 'Henderson', '245', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6557', 'Milford', '245', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6558', 'Balgowlah', '247', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6559', 'Balmain', '248', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6560', 'Bankstown', '249', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6561', 'Camberwell', '252', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6562', 'Caulfield', '255', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6563', 'Chatswood', '256', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6564', 'Cheltenham', '257', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6565', 'Cherrybrook', '258', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6566', 'Clayton', '259', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6567', 'Collingwood', '260', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6568', 'Hawthorn', '262', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6569', 'Jannnali', '263', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6570', 'Knoxfield', '264', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6571', 'Melbourne', '265', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6572', 'South Oakleigh', '265', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6573', 'Cottesole', '268', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6574', 'Darch', '268', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6575', 'Mullaloo', '268', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6576', 'Noranda', '268', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6577', 'Osborne Park', '268', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6578', 'Willetton', '268', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6579', 'Acacia Ridge', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6580', 'Aitkenvale', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6581', 'Alderley', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6582', 'Alexander Hills', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6583', 'Archerfield', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6584', 'Ashmore', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6585', 'Atherton', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6586', 'Ayr', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6587', 'Beachmere', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6588', 'Beenleigh', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6589', 'Beerwah', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6590', 'Bell', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6591', 'Belmont', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6592', 'Biloela', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6593', 'Birkdale', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6594', 'Blackwater', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6595', 'Bongaree', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6596', 'Bonogin', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6597', 'Boonah', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6598', 'Bowen', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6599', 'Brendale', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6600', 'Brisbane', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6601', 'Buddina', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6602', 'Buderim', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6603', 'Bundaberg', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6604', 'Bundall', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6605', 'Burleigh Heads', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6606', 'Burpengary', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6607', 'Cabaland', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6608', 'Caboolture', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6609', 'Cairns', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6610', 'Cairns Northern Beaches', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6611', 'Caloundra', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6612', 'Capalaba', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6613', 'Charters Towers', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6614', 'Childers', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6615', 'Cleveland', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6616', 'Coolum Beach', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6617', 'Coopers Plain', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6618', 'Dalby', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6619', 'Deception Bay', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6620', 'Eagle Farm', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6621', 'Eagleby', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6622', 'Emerald', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6623', 'Emundi', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6624', 'Forest Lake', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6625', 'Gatton', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6626', 'Gladstone', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6627', 'Gold Coast', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6628', 'Gowrie Junction', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6629', 'Gympie', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6630', 'Helensvale', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6631', 'Hervey Bay', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6632', 'Ingham', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6633', 'Innisfail', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6634', 'Ipswich', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6635', 'Jindalee', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6636', 'Julatten', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6637', 'Kawana Waters', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6638', 'Kingaroy', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6639', 'Lawnton', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6640', 'Loganholme', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6641', 'Mackay', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6642', 'Mareeba', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6643', 'Maroochydore', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6644', 'Maroochydore-Mooloolaba', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6645', 'Maryborough', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6646', 'Miami', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6647', 'Milton', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6648', 'Molendinar', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6649', 'Moranbah', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6650', 'Morayfield', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6651', 'Mossman', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6652', 'Mount Glorious', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6653', 'Mount Isa', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6654', 'Murarrie', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6655', 'Nairand Kay', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6656', 'Nambour', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6657', 'Nerang', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6658', 'Nobby Beach', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6659', 'Noosa Heads', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6660', 'Noosaville', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6661', 'Paddington', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6662', 'Port Douglas', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6663', 'Robina', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6664', 'Rockhampton', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6665', 'Rocklea', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6666', 'Roma', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6667', 'Rubyvale', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6668', 'Sanctuary Cove', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6669', 'Slade Point', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6670', 'Southport', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6671', 'Suburb', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6672', 'Sunshine Coast', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6673', 'Tewantin-Noosa', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6674', 'The Summit', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6675', 'Toowong', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6676', 'Toowoomba', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6677', 'Townsville', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6678', 'Victoria Point', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6679', 'Warwick', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6680', 'Willawong', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6681', 'Yatala', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6682', 'Yeppoon', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6683', 'Zillmere', '269', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6684', 'Bridgewater-Gagebrook', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6685', 'Burnie', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6686', 'Burnie-Devonport', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6687', 'Glenorchy', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6688', 'Hobart', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6689', 'Kingston-Blackmans Bay', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6690', 'Launceston', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6691', 'New Norfolk', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6692', 'Rowella', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6693', 'Sheffield', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6694', 'Ulverstone', '271', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6695', 'Templestowe', '272', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6696', 'Albion', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6697', 'Ararat', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6698', 'Avenel', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6699', 'Avondale Heights', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6700', 'Baccus Marsh', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6701', 'Bairnsdale', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6702', 'Ballarat', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6703', 'Balwyn', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6704', 'Batman', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6705', 'Bayswater', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6706', 'Belmont', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6707', 'Benalla', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6708', 'Bendigo', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6709', 'Bentleigh East', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6710', 'Berwick', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6711', 'Blackburn', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6712', 'Blue Mountains', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6713', 'Boonah', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6714', 'Boronia', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6715', 'Box Hill', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6716', 'Brighton East', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6717', 'Bundoora', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6718', 'Campbellfield', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6719', 'Carlton South', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6720', 'Caroline Springs', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6721', 'Castle Hill', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6722', 'Castlemaine', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6723', 'Caulfield', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6724', 'Cheltenham', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6725', 'Chester', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6726', 'Clayton South', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6727', 'Clifton Springs', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6728', 'Coburg', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6729', 'Colac', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6730', 'Collingwood', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6731', 'Craigieburn', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6732', 'Cranbourne', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6733', 'Crib Point', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6734', 'Dandenong', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6735', 'Devon Meadows', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6736', 'Diamond Creek', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6737', 'Doncaster East', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6738', 'Doncester', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6739', 'Donvale', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6740', 'Echuca-Moama', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6741', 'Elsternwick', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6742', 'Eltham', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6743', 'Fairfield', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6744', 'Fitzroy', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6745', 'Frnakston', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6746', 'Geelong', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6747', 'Glen Waverley', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6748', 'Glenorchy', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6749', 'Hallam', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6750', 'Hamilton', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6751', 'Hastings', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6752', 'Healesville', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6753', 'Horsham', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6754', 'Hughesdale', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6755', 'Ivanhoe', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6756', 'Keilor', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6757', 'Kensington', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6758', 'Kerang', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6759', 'Kilmore', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6760', 'Kilsyth', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6761', 'Kyabram', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6762', 'Lakes Entrance', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6763', 'Lalor', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6764', 'Lara', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6765', 'Laverton North', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6766', 'Leopold', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6767', 'Lower Templestowe', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6768', 'Maidstone', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6769', 'Malvern', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6770', 'Maryborough', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6771', 'Melbourne', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6772', 'Melton', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6773', 'Middle Park', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6774', 'Mildura', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6775', 'Mitcham', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6776', 'Moe-Yallourn', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6777', 'Moorabbin', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6778', 'Mordialloc', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6779', 'Morwell', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6780', 'Mulgrave', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6781', 'Murrumbeena', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6782', 'Neerim South', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6783', 'Noble Park North', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6784', 'Notting Hill', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6785', 'Oak Park', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6786', 'Ocean Grove-Barwon Heads', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6787', 'Olinda', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6788', 'Pakenham', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6789', 'Park Orchards', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6790', 'Port Melbourne', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6791', 'Portland', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6792', 'Prahran', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6793', 'Preston', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6794', 'Pritbourne', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6795', 'Queenscliff', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6796', 'Reservoir', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6797', 'Ringwood', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6798', 'Rowville', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6799', 'Sale', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6800', 'Sandringham', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6801', 'Scoresby', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6802', 'Sebastopol', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6803', 'Seymour', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6804', 'Shepparton-Mooroopna', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6805', 'Somerville', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6806', 'South Yarra', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6807', 'Southbank', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6808', 'St. Albans', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6809', 'St. Kilda East', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6810', 'Stawell', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6811', 'Sunbury', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6812', 'Sunshine West', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6813', 'Swan Hill', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6814', 'Tatura', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6815', 'Thomastown', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6816', 'Thornbury', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6817', 'Tongala', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6818', 'Torquay', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6819', 'Traralgon', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6820', 'Tullamarine', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6821', 'Vermont', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6822', 'Wangaratta', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6823', 'Wantirna', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6824', 'Warragul', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6825', 'Warrnambool', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6826', 'Welshpool', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6827', 'Wendouree', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6828', 'Wonthaggi', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6829', 'Woodend', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6830', 'Yarrawonga-Mulwala', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6831', 'Yea', '273', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6832', 'Wheeler', '276', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6833', 'Eisenstadt', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6834', 'GroBpetersdorf', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6835', 'Jennersdorf', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6836', 'Kemeten', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6837', 'Mattersburg', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6838', 'Neudorfl', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6839', 'Neusiedl am See', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6840', 'Oberwart', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6841', 'Pinkafeld', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6842', 'Rust', '280', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6843', 'Maria Rain', '281', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6844', 'Poggersdorf', '281', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6845', 'Althofen', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6846', 'Arnoldstein', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6847', 'Bad Sankt Leonhard', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6848', 'Bleiburg', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6849', 'Ebenthal', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6850', 'Eberndorf', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6851', 'Feldkirchen', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6852', 'Ferlach', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6853', 'Finkenstein', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6854', 'Friesach', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6855', 'Hermagor', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6856', 'Klagenfurt', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6857', 'Klagenfurt ', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6858', 'Lohnsburg', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6859', 'Moosburg', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6860', 'Paternion', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6861', 'Radentheim', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6862', 'Sankt Andra', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6863', 'Sankt Jakob', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6864', 'Sankt Veit', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6865', 'Seeboden', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6866', 'Spittal', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6867', 'Velden am Worthersee', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6868', 'Villach', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6869', 'Volkermarkt', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6870', 'Wernberg', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6871', 'Wolfsberg', '282', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6872', 'Amstetten', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6873', 'Bad Voslau', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6874', 'Baden', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6875', 'Berndorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6876', 'Boheimkirchen', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6877', 'Bruck an der Leitha', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6878', 'Brunn', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6879', 'Deutsch-Wagram', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6880', 'Ebreichsdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6881', 'Eggendorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6882', 'Fischamend', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6883', 'Gablitz', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6884', 'Ganserndorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6885', 'Gerasdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6886', 'Gloggnitz', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6887', 'Gmund', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6888', 'Greifenstein', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6889', 'GroB-Enzersdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6890', 'GroB-Gerungs', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6891', 'Guntramsdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6892', 'Haag', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6893', 'Hainburg', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6894', 'Heidenreichstein', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6895', 'Herzogenburg', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6896', 'Himberg', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6897', 'Hollabrunn', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6898', 'Horn', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6899', 'Klosterneuburg', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6900', 'Korneuburg', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6901', 'Kottingbrunn', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6902', 'Krems', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6903', 'Laa', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6904', 'Langenlois', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6905', 'Langenzersdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6906', 'Leobendorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6907', 'Leopoldsdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6908', 'Lilienfeld', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6909', 'Loipersdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6910', 'Maria Enzersdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6911', 'Melk', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6912', 'Mistelbach', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6913', 'Modling', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6914', 'Neulengbach', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6915', 'Neunkirchen', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6916', 'Niederleis', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6917', 'Ober-Grabendorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6918', 'Perchtoldsdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6919', 'Pernitz', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6920', 'Pottendorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6921', 'Poysdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6922', 'Pressbaum', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6923', 'Purgstall', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6924', 'Purkersdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6925', 'Reichenau', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6926', 'Retz', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6927', 'Sankt Andra-Wordern', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6928', 'Sankt Peter in der Au', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6929', 'Sankt Polten', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6930', 'Sankt Valentin', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6931', 'Scheibbs', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6932', 'Schrems', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6933', 'Schwechat', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6934', 'Seitenstetten', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6935', 'Sollenau', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6936', 'Stockerau', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6937', 'Strasshof', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6938', 'Ternitz', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6939', 'Traiskirchen', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6940', 'Traismauer', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6941', 'Tulln', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6942', 'Vosendorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6943', 'Waidhofen', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6944', 'Wiener Neudorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6945', 'Wiener Neustadt', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6946', 'Wieselburg', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6947', 'Wilhelmsburg', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6948', 'Wolkersdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6949', 'Ybbs', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6950', 'Ybbsitz', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6951', 'Zistersdorf', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6952', 'Zwettl', '285', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6953', 'Alkoven', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6954', 'Altheim', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6955', 'Altmunster', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6956', 'Andorf', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6957', 'Ansfelden', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6958', 'Asten', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6959', 'Attnang-Puchheim', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6960', 'Aurolzmunster', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6961', 'Bad Goisern', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6962', 'Bad Hall', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6963', 'Bad Ischl', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6964', 'Braunau', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6965', 'Breitenfurt', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6966', 'Ebensee', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6967', 'Eferding', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6968', 'Engerwitzdorf', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6969', 'Enns', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6970', 'Feldkirchen an der Donau', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6971', 'Frankenburg', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6972', 'Freistadt', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6973', 'Gallneukirchen', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6974', 'Garsten', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6975', 'Gmunden', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6976', 'Gramastetten', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6977', 'Grieskirchen', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6978', 'Gunskirchen', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6979', 'Horsching', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6980', 'Kirchdorf an der Krems', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6981', 'Kremsmunster', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6982', 'Krenglbach', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6983', 'Laakirchen', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6984', 'Lenzing', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6985', 'Leonding', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6986', 'Linz', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6987', 'Loibichl', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6988', 'Marchtrenk', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6989', 'Mattighofen', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6990', 'Mauthausen', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6991', 'Micheldorf', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6992', 'Neuhofen an der Krems', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6993', 'Ohlsdorf', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6994', 'Ottensheim', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6995', 'Pasching', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6996', 'Perg', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6997', 'Pettenbach', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6998', 'Pram', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('6999', 'Pregarten', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7000', 'Puchenau', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7001', 'Regau', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7002', 'Ried', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7003', 'Rohrbach in Oberosterreich', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7004', 'Rutzenmoos', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7005', 'Sankt Florian', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7006', 'Sankt Georgen', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7007', 'Sankt Marien', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7008', 'Scharding', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7009', 'Scharnstein', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7010', 'Schwertberg', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7011', 'Seewalchen', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7012', 'Sierning', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7013', 'Stadl-Paura', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7014', 'Steyr', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7015', 'Steyregg', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7016', 'Steyrermuhl', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7017', 'Thalheim', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7018', 'Timelkam', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7019', 'Traun', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7020', 'Vocklabruck', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7021', 'Vocklamarkt', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7022', 'Vorchdorf', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7023', 'Wels', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7024', 'Wilhering', '286', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7025', 'Abtenau', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7026', 'Anif', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7027', 'Bad Gastein', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7028', 'Bad Hofgastein', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7029', 'Bergheim', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7030', 'Bischofshofen', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7031', 'Bruck an der GroBglocknerstraB', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7032', 'Burmoos', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7033', 'Elsbethen', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7034', 'Eugendorf', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7035', 'Forstau', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7036', 'Grodig', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7037', 'Hallein', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7038', 'Hallwang', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7039', 'Henndorf', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7040', 'Kuchl', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7041', 'Mayrhofen', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7042', 'Mittersill', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7043', 'Neumarkt', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7044', 'Oberndorf', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7045', 'Obertrum am See', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7046', 'Piesendorf', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7047', 'Puch', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7048', 'Radstadt', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7049', 'Saalfelden', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7050', 'Salzburg', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7051', 'Sankt Johann im Pongau', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7052', 'Seekirchen', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7053', 'Sieghartskirchen', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7054', 'StraBwalchen', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7055', 'Strobl', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7056', 'Tamsweg', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7057', 'Thalgau', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7058', 'Wals-Siezenheim', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7059', 'Wolfgangsee', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7060', 'Zell am See', '287', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7061', 'Albersdorf', '288', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7062', 'Bad Aussee', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7063', 'Barnbach', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7064', 'Bruck an der Mur', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7065', 'Deutschlandsberg', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7066', 'Eisenerz', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7067', 'Feldbach', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7068', 'Feldkirchen bei Graz', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7069', 'Fohnsdorf', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7070', 'Frohnleiten', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7071', 'Furstenfeld', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7072', 'Gleisdorf', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7073', 'Gratkorn', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7074', 'Graz', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7075', 'Hartberg', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7076', 'Judenburg', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7077', 'Judendorf-StraBengel', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7078', 'Kapfenberg', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7079', 'Karlsdorf', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7080', 'Kindberg', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7081', 'Knittelfeld', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7082', 'Koflach', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7083', 'Krieglach', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7084', 'Lannach', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7085', 'Leibnitz', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7086', 'Leoben', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7087', 'Liezen', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7088', 'Murzzuschlag', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7089', 'Rottenmann', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7090', 'Schladming', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7091', 'Seiersberg', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7092', 'Spielberg', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7093', 'Trofaiach', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7094', 'Voitsberg', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7095', 'Wagna', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7096', 'Weiz', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7097', 'Zeltweg', '289', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7098', 'Deutschfeistritz', '290', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7099', 'Liezen', '290', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7100', 'Sankt Bartholoma', '290', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7101', 'Absam', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7102', 'Axams', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7103', 'Ebbs', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7104', 'Fugen', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7105', 'Hall', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7106', 'Haselgehr', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7107', 'Hopfgarten', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7108', 'Imst', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7109', 'Innsbruck', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7110', 'Jenbach', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7111', 'Kirchberg', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7112', 'Kirchbichl', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7113', 'Kitzbuhel', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7114', 'Kramsach', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7115', 'Kufstein', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7116', 'Landeck', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7117', 'Lienz', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7118', 'Matrei', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7119', 'Neustift im Stubaital', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7120', 'Reutte', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7121', 'Rum', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7122', 'Sankt Johann in Tirol', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7123', 'Scheffau', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7124', 'Schwaz', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7125', 'St. Johann Am Walde', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7126', 'Telfs', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7127', 'Vols', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7128', 'Vomp', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7129', 'Wattens', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7130', 'Worgl', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7131', 'Zirl', '291', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7132', 'Altach', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7133', 'Bludenz', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7134', 'Bregenz', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7135', 'Chassieu', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7136', 'Dietmannsried', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7137', 'Dornbirn', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7138', 'Feldkirch', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7139', 'Frastanz', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7140', 'Gotzis', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7141', 'Hard', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7142', 'Hochst', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7143', 'Hohenems', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7144', 'Horbranz', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7145', 'Hufingen', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7146', 'Lauterach', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7147', 'Lochau', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7148', 'Lustenau', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7149', 'Mittelberg', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7150', 'Nenzing', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7151', 'Nuziders', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7152', 'Rankweil', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7153', 'Schruns', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7154', 'Thuringen', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7155', 'Wolfurt', '293', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7156', 'Vienna', '294', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7157', 'Wien', '294', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7158', 'Alat', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7159', 'Artyom', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7160', 'Baki', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7161', 'Bakixanov', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7162', 'Balaxani', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7163', 'Bilacari', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7164', 'Bilqax', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7165', 'Bina', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7166', 'Buzovna', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7167', 'Haci Zeynalabdin', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7168', 'Hovsan', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7169', 'Lokbatan', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7170', 'Mastaga', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7171', 'Puta', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7172', 'Qarasuxur', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7173', 'Qobustan', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7174', 'Rasulzada', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7175', 'Sabuncu', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7176', 'Sanqacal', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7177', 'Sumqayit', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7178', 'Suraxani', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7179', 'Xirdalan', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7180', 'Zirya', '295', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7181', 'Daskasan', '297', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7182', 'Ganca', '297', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7183', 'Xanlar', '297', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7184', 'Ganja', '298', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7185', 'Cabrayil', '299', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7186', 'Kalbacar', '299', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7187', 'Lacin', '299', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7188', 'Astara', '300', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7189', 'Goytapa', '300', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7190', 'Lankaran', '300', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7191', 'Masalli', '300', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7192', 'Neftcala', '300', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7193', 'Agcabadi', '301', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7194', 'Agdam', '301', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7195', 'Barda', '301', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7196', 'Mingacevir', '301', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7197', 'Tartar', '301', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7198', 'Yevlax', '301', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7199', 'Ali Bayramli', '302', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7200', 'Bilasuvar', '302', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7201', 'Calilabad', '302', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7202', 'Qarasu', '302', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7203', 'Qazimammad', '302', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7204', 'Saatli', '302', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7205', 'Sabirabad', '302', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7206', 'Salyan', '302', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7207', 'Susa', '303', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7208', 'Xankandi', '303', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7209', 'Xocavand', '303', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7210', 'Culfa', '304', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7211', 'Naxcivan', '304', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7212', 'Ordubad', '304', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7213', 'Sadarak', '304', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7214', 'Sarur', '304', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7215', 'Beylaqan', '305', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7216', 'Fuzuli', '305', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7217', 'Imisli', '305', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7218', 'Agstafa', '306', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7219', 'Gadabay', '306', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7220', 'Kovlar', '306', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7221', 'Qaracamirli', '306', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7222', 'Qazax', '306', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7223', 'Samkir', '306', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7224', 'Tovuz', '306', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7225', 'Amircan', '307', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7226', 'Balakan', '307', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7227', 'Katex', '307', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7228', 'Oguz', '307', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7229', 'Qabala', '307', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7230', 'Qax', '307', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7231', 'Saki', '307', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7232', 'Zaqatala', '307', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7233', 'Agdas', '308', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7234', 'Agsu', '308', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7235', 'Goycay', '308', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7236', 'Ismayilli', '308', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7237', 'Kurdamir', '308', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7238', 'Samaxi', '308', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7239', 'Ucar', '308', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7240', 'Zardab', '308', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7241', 'Davaci', '309', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7242', 'Quba', '309', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7243', 'Qusar', '309', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7244', 'Siyazan', '309', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7245', 'Xacmaz', '309', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7246', 'Xudat', '309', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7247', 'Coopers Town', '310', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7248', 'Marsh Harbour', '310', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7249', 'Andros Town', '312', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7250', 'Nicholls Town', '312', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7251', 'Alice Town', '314', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7252', 'Freetown', '317', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7253', 'Rock Sound', '317', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7254', 'Pirates Well', '322', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7255', '\'Isa', '327', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7256', 'Badiyah', '328', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7257', 'Hidd', '329', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7258', 'Mahama', '331', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7259', 'Manama', '332', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7260', 'Sitrah', '333', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7261', 'al-Manamah', '334', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7262', 'al-Muharraq', '335', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7263', 'ar-Rifa\'a', '336', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7264', 'Bandarban', '338', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7265', 'Barguna', '339', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7266', 'Barisal', '340', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7267', 'Gaurnadi', '340', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7268', 'Mehendiganj', '340', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7269', 'Nalchiti', '340', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7270', 'Bhola', '341', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7271', 'Burhanuddin', '341', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7272', 'Char Fasson', '341', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7273', 'Lalmohan', '341', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7274', 'Adamighi', '342', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7275', 'Bogora', '342', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7276', 'Sherpur', '342', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7277', 'Chandpur', '344', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7278', 'Hajiganj', '344', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7279', 'Boalkhali', '345', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7280', 'Chattagam', '345', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7281', 'Fatikchhari', '345', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7282', 'Lohagara', '345', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7283', 'Patiya', '345', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7284', 'Rangunia', '345', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7285', 'Raozan', '345', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7286', 'Sandip', '345', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7287', 'Satkaniya', '345', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7288', 'Alamdanga', '347', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7289', 'Chuadanga', '347', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7290', 'Damurhuda', '347', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7291', 'Dhaka', '348', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7292', 'Dhamrai', '348', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7293', 'Dohar', '348', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7294', 'Bochanganj', '349', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7295', 'Dinajpur', '349', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7296', 'Fulbari', '349', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7297', 'Parbatipur', '349', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7298', 'Bhanga', '350', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7299', 'Char Bhadrasan', '350', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7300', 'Faridpur', '350', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7301', 'Chhagalnaiya', '351', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7302', 'Feni', '351', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7303', 'Gaybanda', '352', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7304', 'Gazipur', '353', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7305', 'Tungi', '353', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7306', 'Gopalganj', '354', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7307', 'Tungi Para', '354', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7308', 'Baniachang', '355', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7309', 'Habiganj', '355', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7310', 'Jamalpur', '357', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7311', 'Sarishabari', '357', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7312', 'Abhaynagar', '358', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7313', 'Jessor', '358', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7314', 'Jhikargachha', '358', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7315', 'Keshabpur', '358', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7316', 'Jhalakati', '359', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7317', 'Jhanaydah', '360', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7318', 'Kaliganj', '360', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7319', 'Kotchandpur', '360', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7320', 'Shailkupa', '360', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7321', 'Khagrachari', '361', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7322', 'Manikchhari', '361', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7323', 'Ramgarh', '361', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7324', 'Khulna', '362', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7325', 'Phultala', '362', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7326', 'Bajitpur', '363', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7327', 'Bhairab Bazar', '363', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7328', 'Itna', '363', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7329', 'Kishorganj', '363', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7330', 'Komilla', '365', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7331', 'Laksham', '365', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7332', 'Chilmari', '366', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7333', 'Kurigram', '366', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7334', 'Nageshwari', '366', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7335', 'Ulipur', '366', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7336', 'Bheramara', '367', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7337', 'Kushtiya', '367', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7338', 'Lakshmipur', '368', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7339', 'Ramganj', '368', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7340', 'Ramgati', '368', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7341', 'Raypur', '368', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7342', 'Madaripur', '370', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7343', 'Magura', '371', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7344', 'Bhaluka', '372', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7345', 'Fulbaria', '372', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7346', 'Gafargaon', '372', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7347', 'Ishwarganj', '372', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7348', 'Maimansingh', '372', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7349', 'Muktagachha', '372', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7350', 'Trishal', '372', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7351', 'Manikganj', '373', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7352', 'Meherpur', '375', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7353', 'Munshiganj', '376', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7354', 'Kalia', '377', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7355', 'Naral', '377', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7356', 'Narayanganj', '378', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7357', 'Rupganj', '378', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7358', 'Narsingdi', '379', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7359', 'Roypura', '379', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7360', 'Gurudaspur', '380', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7361', 'Nator', '380', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7362', 'Naugaon', '381', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7363', 'Gomastapur', '382', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7364', 'Nawabganj', '382', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7365', 'Shibganj', '382', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7366', 'Netrakona', '383', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7367', 'Domar', '384', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7368', 'Nilphamari', '384', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7369', 'Sa\'idpur', '384', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7370', 'Begamganj', '385', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7371', 'Noakhali', '385', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7372', 'Senbagh', '385', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7373', 'Bera', '386', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7374', 'Bhangura', '386', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7375', 'Ishurdi', '386', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7376', 'Pabna', '386', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7377', 'Panchagarh', '387', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7378', 'Patuakhali', '388', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7379', 'Bhandaria', '389', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7380', 'Mathbaria', '389', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7381', 'Nesarabad', '389', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7382', 'Pirojpur', '389', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7383', 'Pangsha', '390', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7384', 'Rajbari', '390', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7385', 'Rajshahi', '391', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7386', 'Kaptai', '392', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7387', 'Rangamati', '392', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7388', 'Badarganj', '393', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7389', 'Kaunia', '393', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7390', 'Rangpur', '393', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7391', 'Satkhira', '394', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7392', 'Palang', '395', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7393', 'Nalitabari', '396', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7394', 'Sherpur', '396', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7395', 'Silhat', '397', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7396', 'Shahjadpur', '398', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7397', 'Sirajganj', '398', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7398', 'Chhatak', '399', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7399', 'Sunamganj', '399', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7400', 'Gopalpur', '400', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7401', 'Mirzapur', '400', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7402', 'Sakhipur', '400', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7403', 'Tangayal', '400', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7404', 'Pirganj', '401', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7405', 'Thakurgaon', '401', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7406', 'Baranavichy', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7407', 'Bjaroza', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7408', 'Bjeloozersk', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7409', 'Brest', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7410', 'David-Haradok', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7411', 'Drahichyn', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7412', 'Hancavichy', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7413', 'Ivacevichy', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7414', 'Ivanava', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7415', 'Kamjenec', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7416', 'Kobryn', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7417', 'Kosava', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7418', 'Ljahavichy', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7419', 'Luninjec', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7420', 'Malaryta', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7421', 'Mikashevichy', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7422', 'Pinsk', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7423', 'Pruzhany', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7424', 'Stolin', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7425', 'Vysokoje', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7426', 'Zhabinka', '413', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7427', 'Buda Kosheljovo', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7428', 'Chechersk', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7429', 'Dobrush', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7430', 'Hojniki', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7431', 'Homjel\'', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7432', 'Jel\'sk', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7433', 'Kalinkavichy', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7434', 'Kascjukovka', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7435', 'Mazyr', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7436', 'Narovlja', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7437', 'Pjetrykav', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7438', 'Rahachow', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7439', 'Rechyca', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7440', 'Svetlahorsk', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7441', 'Vasilevichy', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7442', 'Vjetka', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7443', 'Zhlobin', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7444', 'Zhytkavichy', '414', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7445', 'Ashmjany', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7446', 'Berjozovka', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7447', 'Hrodna', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7448', 'Lida', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7449', 'Masty', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7450', 'Navahrudak', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7451', 'Shchuchyn', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7452', 'Skidel\'', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7453', 'Slonim', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7454', 'Smarhon\'', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7455', 'Vawkavysk', '415', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7456', 'Asipovichy', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7457', 'Babrujsk', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7458', 'Byhau', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7459', 'Chausy', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7460', 'Cherikov', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7461', 'Horki', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7462', 'Kascjukovichy', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7463', 'Klimavichy', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7464', 'Krychaw', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7465', 'Mahiljow', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7466', 'Mstislav', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7467', 'Shklov', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7468', 'Slaeuharad', '416', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7469', 'Minsk', '418', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7470', 'Petrikov', '420', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7471', 'Baran\'', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7472', 'Braslav', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7473', 'Chashniki', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7474', 'Disna', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7475', 'Dokshicy', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7476', 'Dubrovna', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7477', 'Haradok', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7478', 'Hlybokaje', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7479', 'Ljepjel\'', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7480', 'Mjory', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7481', 'Navapolack', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7482', 'Novalukoml\'', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7483', 'Orsha', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7484', 'Pastavy', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7485', 'Polack', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7486', 'Polotsk', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7487', 'Senno', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7488', 'Talachyn', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7489', 'Verhnjadzvimsk', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7490', 'Vicebsk', '421', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7491', 'Aartselaar', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7492', 'Antwerpen', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7493', 'Arendonk', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7494', 'Baarle-Hertog', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7495', 'Balen', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7496', 'Beerse', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7497', 'Berlaar', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7498', 'Boechout', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7499', 'Bonheiden', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7500', 'Boom', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7501', 'Bornem', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7502', 'Borsbeek', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7503', 'Brasschaat', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7504', 'Brecht', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7505', 'Dessel', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7506', 'Deurne', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7507', 'Duffel', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7508', 'Edegem', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7509', 'Ekeren', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7510', 'Essen', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7511', 'Geel', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7512', 'Geluvele', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7513', 'Grobbendonk', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7514', 'Heist-op-den-Berg', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7515', 'Hemiksem', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7516', 'Herentals', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7517', 'Herenthout', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7518', 'Herselt', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7519', 'Hoogstraten', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7520', 'Hove', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7521', 'Hulshout', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7522', 'Kalmpthout', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7523', 'Kalmthout', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7524', 'Kapellen', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7525', 'Kasterlee', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7526', 'Kontich', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7527', 'Laakdal', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7528', 'Lier', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7529', 'Lille', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7530', 'Lint', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7531', 'Malle', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7532', 'Mechelen', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7533', 'Meerhout', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7534', 'Merksplas', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7535', 'Mol', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7536', 'Mortsel', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7537', 'Niel', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7538', 'Nijlen', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7539', 'Olen', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7540', 'Oud-Turnhout', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7541', 'Putte', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7542', 'Puurs', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7543', 'Ranst', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7544', 'Ravels', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7545', 'Retie', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7546', 'Rijkevorsel', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7547', 'Robrechts', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7548', 'Rumst', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7549', 'Schelle', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7550', 'Schilde', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7551', 'Schoten', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7552', 'Sint-Amands', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7553', 'Sint-Katelijne-Waver', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7554', 'Stabroek', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7555', 'Turnhout', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7556', 'Vorselaar', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7557', 'Vosselaar', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7558', 'Westerlo', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7559', 'Wijnegem', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7560', 'Willebroek', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7561', 'Wilrijk', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7562', 'Wommelgem', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7563', 'Wuustwezel', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7564', 'Zandhoven', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7565', 'Zoersel', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7566', 'Zwijndrecht', '422', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7567', 'Berchem', '423', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7568', 'Alsemberg', '424', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7569', 'Asse Zellik', '424', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7570', 'Brussels', '424', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7571', 'Bruxelles', '424', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7572', 'Diegem', '424', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7573', 'Alsemberg', '425', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7574', 'Asse Zellik', '425', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7575', 'Brussels', '425', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7576', 'Bruxelles', '425', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7577', 'Diegem', '425', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7578', 'Brussel', '426', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7579', 'Aiseau-Presles', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7580', 'Anderlues', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7581', 'Antoing', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7582', 'Ath', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7583', 'Beaumont', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7584', 'Beloeil', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7585', 'Bernissart', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7586', 'Binche', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7587', 'Boussu', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7588', 'Braine-le-Comte', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7589', 'Brugelette', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7590', 'Brunehaut', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7591', 'Celles', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7592', 'Chapelle-lez-Herlaimont', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7593', 'Charleroi', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7594', 'Chatelet', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7595', 'Chievres', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7596', 'Chimay', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7597', 'Colfontaine', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7598', 'Comines-Warneton', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7599', 'Courcelles', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7600', 'Dour', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7601', 'Ecaussinnes', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7602', 'Ellezelles', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7603', 'Enghien', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7604', 'Erquelinnes', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7605', 'Estaimpuis', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7606', 'Estinnes', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7607', 'Farciennes', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7608', 'Fleurus', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7609', 'Flobecq', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7610', 'Fontaine-l\'Eveque', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7611', 'Frameries', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7612', 'Frasnes-lez-Anvaing', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7613', 'Froidchapelle', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7614', 'Gerpinnes', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7615', 'Haine-Saint-Pierre', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7616', 'Ham-sur-Heure-Nalinnes', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7617', 'Hensies', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7618', 'Honnelles', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7619', 'Jurbise', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7620', 'La Louviere', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7621', 'Le Roeulx', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7622', 'Lens', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7623', 'Les Bons Villers', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7624', 'Lessines', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7625', 'Leuze-en-Hainaut', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7626', 'Lobbes', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7627', 'Manage', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7628', 'Merbes-le-Chateau', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7629', 'Momignies', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7630', 'Mons', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7631', 'Mont-de-l\'Enclus', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7632', 'Montigny-le-Tilleul', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7633', 'Morlanwelz', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7634', 'Mouscron', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7635', 'Pecq', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7636', 'Peruwelz', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7637', 'Pont-a-Celles', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7638', 'Quaregnon', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7639', 'Quevy', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7640', 'Quievrain', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7641', 'Rumes', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7642', 'Saint-Ghislain', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7643', 'Seneffe', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7644', 'Silly', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7645', 'Sivry-Rance', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7646', 'Soignies', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7647', 'Thuin', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7648', 'Tournai', '428', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7649', 'Amay', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7650', 'Amel', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7651', 'Angleur', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7652', 'Ans', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7653', 'Anthisnes', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7654', 'Aubel', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7655', 'Awans', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7656', 'Aywaille', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7657', 'Baelen', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7658', 'Bassenge', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7659', 'Berloz', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7660', 'Beyne-Heusay', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7661', 'Blegny', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7662', 'Braives', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7663', 'Bullingen', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7664', 'Burdinne', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7665', 'Burg-Reuland', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7666', 'Butgenbach', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7667', 'Chaudfontaine', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7668', 'Clavier', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7669', 'Comblain-au-Pont', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7670', 'Crisnee', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7671', 'Dalhem', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7672', 'Dison', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7673', 'Donceel', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7674', 'Engis', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7675', 'Esneux', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7676', 'Eupen', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7677', 'Faimes', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7678', 'Ferrieres', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7679', 'Fexhe-le-Haut-Clocher', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7680', 'Flemalle', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7681', 'Fleron', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7682', 'Geer', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7683', 'Grace-Hollogne', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7684', 'Hamoir', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7685', 'Hannut', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7686', 'Heron', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7687', 'Herstal', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7688', 'Herve', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7689', 'Huy', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7690', 'Jalhay', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7691', 'Juprelle', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7692', 'Kelmis', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7693', 'Liege', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7694', 'Lierneux', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7695', 'Limbourg', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7696', 'Lincent', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7697', 'Lontzen', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7698', 'Malmedy', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7699', 'Marchin', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7700', 'Modave', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7701', 'Montzen', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7702', 'Nandrin', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7703', 'Neupre', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7704', 'Olne', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7705', 'Oreye', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7706', 'Ouffet', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7707', 'Oupeye', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7708', 'Pepinster', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7709', 'Plombieres', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7710', 'Racour', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7711', 'Raeren', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7712', 'Remicourt', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7713', 'Saint-Georges-sur-Meuse', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7714', 'Saint-Nicolas', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7715', 'Sankt Vith', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7716', 'Seraing', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7717', 'Soumagne', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7718', 'Spa', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7719', 'Sprimont', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7720', 'Stavelot', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7721', 'Stoumont', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7722', 'Theux', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7723', 'Thimister-Clermont', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7724', 'Tinlot', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7725', 'Trois-Ponts', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7726', 'Trooz', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7727', 'Verlaine', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7728', 'Verviers', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7729', 'Villers-le-Bouillet', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7730', 'Vise', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7731', 'Waimes', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7732', 'Wanze', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7733', 'Waremme', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7734', 'Wasseiges', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7735', 'Welkenraedt', '429', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7736', 'Alken', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7737', 'As', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7738', 'Beringen', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7739', 'Bilzen', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7740', 'Bocholt', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7741', 'Borgloon', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7742', 'Bree', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7743', 'Diepenbeek', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7744', 'Dilsen-Stokkem', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7745', 'Genk', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7746', 'Gingelom', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7747', 'Halen', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7748', 'Ham', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7749', 'Hamont-Achel', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7750', 'Hasselt', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7751', 'Hechtel-Eksel', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7752', 'Heers', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7753', 'Herk-de-Stad', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7754', 'Herstappe', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7755', 'Heusden-Zolder', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7756', 'Hoeselt', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7757', 'Houthalen-Helchteren', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7758', 'Kinrooi', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7759', 'Kortessem', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7760', 'Kuringen', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7761', 'Lanaken', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7762', 'Leopoldsburg', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7763', 'Lommel', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7764', 'Lummen', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7765', 'Maaseik', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7766', 'Maasmechelen', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7767', 'Meeuwen-Gruitrode', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7768', 'Neerpelt', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7769', 'Nieuwerkerken', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7770', 'Opglabbeek', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7771', 'Overpelt', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7772', 'Peer', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7773', 'Riemst', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7774', 'Sint-Truiden', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7775', 'Tessenderlo', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7776', 'Tongeren', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7777', 'Voeren', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7778', 'Wellen', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7779', 'Zonhoven', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7780', 'Zutendaal', '430', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7781', 'Arlon', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7782', 'Attert', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7783', 'Aubange', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7784', 'Bastogne', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7785', 'Bertogne', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7786', 'Bertrix', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7787', 'Bouillon', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7788', 'Chiny', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7789', 'Daverdisse', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7790', 'Durbuy', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7791', 'Erezee', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7792', 'Etalle', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7793', 'Fauvillers', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7794', 'Florenville', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7795', 'Gouvy', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7796', 'Grapfontaine', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7797', 'Habay', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7798', 'Herbeumont', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7799', 'Hotton', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7800', 'Houffalize', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7801', 'La Roche-en-Ardenne', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7802', 'Leglise', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7803', 'Libin', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7804', 'Libramont-Chevigny', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7805', 'Manhay', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7806', 'Marche-en-Famenne', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7807', 'Marloie', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7808', 'Martelange', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7809', 'Meix-devant-Virton', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7810', 'Messancy', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7811', 'Musson', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7812', 'Nassogne', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7813', 'Neufchateau', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7814', 'Paliseul', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7815', 'Rendeux', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7816', 'Rouvroy', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7817', 'Saint-Hubert', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7818', 'Saint-Leger', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7819', 'Sainte-Ode', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7820', 'Tellin', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7821', 'Tenneville', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7822', 'Tintigny', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7823', 'Vaux-sur-Sure', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7824', 'Vielsalm', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7825', 'Virton', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7826', 'Wellin', '431', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7827', 'Andenne', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7828', 'Anhee', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7829', 'Assesse', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7830', 'Beauraing', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7831', 'Bievre', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7832', 'Cerfontaine', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7833', 'Ciney', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7834', 'Couvin', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7835', 'Dinant', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7836', 'Doische', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7837', 'Eghezee', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7838', 'Fernelmont', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7839', 'Floreffe', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7840', 'Florennes', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7841', 'Fosses-la-Ville', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7842', 'Gedinne', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7843', 'Gembloux', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7844', 'Gesves', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7845', 'Hamois', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7846', 'Hastiere', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7847', 'Havelange', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7848', 'Houyet', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7849', 'Jambes', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7850', 'Jemeppe-sur-Sambre', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7851', 'La Bruyere', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7852', 'Malonne', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7853', 'Mettet', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7854', 'Namur', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7855', 'Ohey', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7856', 'Onhaye', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7857', 'Philippeville', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7858', 'Profondeville', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7859', 'Rochefort', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7860', 'Sambreville', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7861', 'Sombreffe', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7862', 'Somme-Leuze', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7863', 'Suarlee', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7864', 'Viroinval', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7865', 'Vresse-sur-Semois', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7866', 'Walcourt', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7867', 'Yvoir', '432', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7868', 'Gullegem', '433', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7869', 'Langdorp', '433', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7870', 'Aalst', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7871', 'Aalter', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7872', 'Assenede', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7873', 'Berlare', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7874', 'Beveren', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7875', 'Brakel', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7876', 'Buggenhout', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7877', 'De Pinte', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7878', 'Deinze', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7879', 'Denderleeuw', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7880', 'Dendermonde', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7881', 'Destelbergen', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7882', 'Drongen', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7883', 'Eeklo', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7884', 'Erembodegem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7885', 'Erpe-Mere', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7886', 'Evergem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7887', 'Gavere', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7888', 'Gent', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7889', 'Geraardsbergen', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7890', 'Ghent', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7891', 'Haaltert', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7892', 'Hamme', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7893', 'Herzele', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7894', 'Horebeke', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7895', 'Kaprijke', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7896', 'Kerksken', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7897', 'Kluisbergen', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7898', 'Knesselare', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7899', 'Kruibeke', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7900', 'Kruishoutem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7901', 'Laarne', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7902', 'Lebbeke', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7903', 'Lede', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7904', 'Lierde', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7905', 'Lochristi', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7906', 'Lokeren', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7907', 'Lovendegem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7908', 'Maarkedal', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7909', 'Maldegem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7910', 'Melle', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7911', 'Merelbeke', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7912', 'Moerbeke', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7913', 'Nazareth', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7914', 'Nevele', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7915', 'Ninove', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7916', 'Oosterzele', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7917', 'Oudenaarde', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7918', 'Ronse', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7919', 'Semmerzake', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7920', 'Sint-Gillis-Waas', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7921', 'Sint-Laureins', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7922', 'Sint-Lievens-Houtem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7923', 'Sint-Martens-Latem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7924', 'Sint-Niklaas', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7925', 'Stekene', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7926', 'Temse', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7927', 'Waarschoot', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7928', 'Waasmunster', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7929', 'Wachtebeke', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7930', 'Wetteren', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7931', 'Wichelen', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7932', 'Wortegem-Petegem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7933', 'Zele', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7934', 'Zelzate', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7935', 'Zingem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7936', 'Zomergem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7937', 'Zottegem', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7938', 'Zulte', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7939', 'Zwalm', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7940', 'Zwijnaarde', '434', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7941', 'Aarschot', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7942', 'Affligem', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7943', 'Asse', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7944', 'Beersel', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7945', 'Begijnendijk', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7946', 'Bekkevoort', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7947', 'Bertem', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7948', 'Bever', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7949', 'Bierbeek', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7950', 'Boortmeerbeek', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7951', 'Boutersem', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7952', 'Diest', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7953', 'Dilbeek', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7954', 'Drogenbos', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7955', 'Galmaarden', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7956', 'Geetbets', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7957', 'Glabbeek', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7958', 'Gooik', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7959', 'Grimbergen', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7960', 'Haacht', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7961', 'Halle', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7962', 'Herent', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7963', 'Herne', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7964', 'Hoegaarden', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7965', 'Hoeilaart', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7966', 'Holsbeek', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7967', 'Huldenberg', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7968', 'Kampenhout', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7969', 'Kapelle-op-den-Bos', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7970', 'Keerbergen', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7971', 'Kortenaken', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7972', 'Kortenberg', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7973', 'Kraainem', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7974', 'Landen', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7975', 'Lennik', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7976', 'Leuven', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7977', 'Liedekerke', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7978', 'Linkebeek', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7979', 'Linter', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7980', 'Londerzeel', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7981', 'Lubbeek', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7982', 'Machelen', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7983', 'Meise', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7984', 'Merchtem', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7985', 'Opwijk', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7986', 'Oud-Heverlee', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7987', 'Overijse', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7988', 'Pepingen', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7989', 'Roosdaal', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7990', 'Rotselaar', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7991', 'Scherpenheuvel-Zichem', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7992', 'Sint-Genesius-Rode', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7993', 'Sint-Pieters-Leeuw', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7994', 'Steenokkerzeel', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7995', 'Ternat', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7996', 'Tervuren', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7997', 'Tielt-Winge', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7998', 'Tienen', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('7999', 'Tremelo', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8000', 'Vilvoorde', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8001', 'Wemmel', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8002', 'Wezembeek-Oppem', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8003', 'Zaventem', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8004', 'Zemst', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8005', 'Zoutleeuw', '436', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8006', 'Callenelle', '437', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8007', 'Marcinelle', '437', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8008', 'Strepy-Bracquegnies', '437', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8009', 'Alveringem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8010', 'Anzegem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8011', 'Ardooie', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8012', 'Avelgem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8013', 'Beernem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8014', 'Blankenberge', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8015', 'Bredene', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8016', 'Brugge', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8017', 'Damme', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8018', 'De Haan', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8019', 'De Panne', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8020', 'Deerlijk', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8021', 'Dentergem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8022', 'Diksmuide', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8023', 'Geluveld', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8024', 'Gistel', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8025', 'Harelbeke', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8026', 'Heuvelland', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8027', 'Hooglede', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8028', 'Houthulst', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8029', 'Ichtegem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8030', 'Ieper', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8031', 'Ingelmunster', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8032', 'Ingooigem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8033', 'Izegem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8034', 'Jabbeke', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8035', 'Knokke-Heist', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8036', 'Koekelare', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8037', 'Koksijde', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8038', 'Kortemark', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8039', 'Kortrijk', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8040', 'Kuurne', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8041', 'Langemark-Poelkapelle', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8042', 'Ledegem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8043', 'Lendelede', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8044', 'Lichtervelde', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8045', 'Lo-Reninge', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8046', 'Menen', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8047', 'Mesen', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8048', 'Meulebeke', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8049', 'Middelkerke', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8050', 'Moorslede', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8051', 'Nieuwpoort', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8052', 'Oostende', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8053', 'Oostkamp', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8054', 'Oostrozebeke', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8055', 'Oudenburg', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8056', 'Pittem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8057', 'Poperinge', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8058', 'Roeselare', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8059', 'Ruiselede', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8060', 'Spiere-Helkijn', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8061', 'Staden', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8062', 'Tielt', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8063', 'Torhout', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8064', 'Veurne', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8065', 'Vleteren', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8066', 'Waregem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8067', 'Wervik', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8068', 'Wevelgem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8069', 'Wielsbeke', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8070', 'Wingene', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8071', 'Zedelgem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8072', 'Zeebrugge', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8073', 'Zonnebeke', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8074', 'Zuienkerke', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8075', 'Zwevegem', '438', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8076', 'Belize', '439', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8077', 'San Pedro', '439', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8078', 'Belmopan', '440', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8079', 'Benque Viejo', '440', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8080', 'San Ignacio', '440', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8081', 'Corozal', '441', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8082', 'Punta Gorda', '444', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8083', 'Kandi', '445', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8084', 'Malanville', '445', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8085', 'Batia', '446', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8086', 'Boukombe', '446', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8087', 'Kouande', '446', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8088', 'Natitingou', '446', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8089', 'Allada', '447', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8090', 'Cotonou', '447', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8091', 'Ouidah', '447', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8092', 'Tanguiete', '447', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8093', 'Bembereke', '448', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8094', 'Nikki', '448', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8095', 'Parakou', '448', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8096', 'Tchaourou', '448', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8097', 'Dassa', '449', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8098', 'Savalou', '449', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8099', 'Save', '449', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8100', 'Aplahoue', '450', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8101', 'Dogbo', '450', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8102', 'Djougou', '451', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8103', 'Cotonou', '452', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8104', 'Athieme', '453', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8105', 'Come', '453', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8106', 'Grand Popo', '453', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8107', 'Lokossa', '453', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8108', 'Adjohoun', '454', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8109', 'Porto Novo', '454', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8110', 'Ketou', '455', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8111', 'Pobe', '455', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8112', 'Sakete', '455', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8113', 'Abomey', '456', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8114', 'Bohicon', '456', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8115', 'Cove', '456', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8116', 'Zagnanado', '456', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8117', 'Hamilton', '457', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8118', 'Jakar', '459', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8119', 'Chhukha', '460', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8120', 'Phuentsholing', '460', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8121', 'Damphu', '461', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8122', 'Taga Dzong', '462', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8123', 'Geylegphug', '463', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8124', 'Ha', '464', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8125', 'Lhuntshi', '465', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8126', 'Mongar', '466', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8127', 'Pemagatsel', '467', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8128', 'Gasa', '468', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8129', 'Punakha', '468', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8130', 'Paro', '469', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8131', 'Phuntsholing', '470', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8132', 'Samchi', '470', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8133', 'Shemgang', '472', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8134', 'Tashigang', '473', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8135', 'Thimphu', '474', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8136', 'Timphu', '474', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8137', 'Tongsa', '475', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8138', 'Wangdiphodrang', '476', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8139', 'Guayaramerin', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8140', 'Magdalena', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8141', 'Reyes', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8142', 'Riberalta', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8143', 'Rurrenabaque', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8144', 'San Borja', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8145', 'San Ignacio', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8146', 'San Ramon', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8147', 'Santa Ana', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8148', 'Santa Rosa', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8149', 'Trinidad', '477', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8150', 'Camargo', '478', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8151', 'Monteagudo', '478', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8152', 'Muyupampa', '478', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8153', 'Padilla', '478', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8154', 'Sucre', '478', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8155', 'Tarabuco', '478', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8156', 'Villa Serano', '478', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8157', 'Aiquile', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8158', 'Arani', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8159', 'Capinota', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8160', 'Chimore', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8161', 'Cliza', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8162', 'Cochabamba', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8163', 'Colomi', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8164', 'Entre Rios', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8165', 'Irpa Irpa', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8166', 'Ivirgarzama', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8167', 'Mizque', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8168', 'Punata', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8169', 'Shinahota', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8170', 'Sipe Sipe', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8171', 'Tarata', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8172', 'Ucurena', '479', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8173', 'Caracollo', '481', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8174', 'Challapata', '481', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8175', 'Eucaliptus', '481', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8176', 'Huanuni', '481', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8177', 'Machacamarca', '481', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8178', 'Oruro', '481', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8179', 'Poopo', '481', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8180', 'Santiago de Huari', '481', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8181', 'Totoral', '481', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8182', 'Cobija', '482', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8183', 'Atocha', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8184', 'Betanzos', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8185', 'Colquechaca', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8186', 'Llallagua', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8187', 'Potosi', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8188', 'Santa Barbara', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8189', 'Tupiza', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8190', 'Uncia', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8191', 'Uyuni', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8192', 'Villazon', '483', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8193', 'Bermejo', '485', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8194', 'Entre Rios', '485', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8195', 'San Lorenzo', '485', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8196', 'Tarija', '485', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8197', 'Villamontes', '485', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8198', 'Yacuiba', '485', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8199', 'Kachikau', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8200', 'Kasane', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8201', 'Kavimba', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8202', 'Kazungula', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8203', 'Lesoma', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8204', 'Muchinje-Mabale', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8205', 'Pandamatenga', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8206', 'Pandamatenga Botswana Defence ', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8207', 'Parakarungu', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8208', 'Satau', '493', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8209', 'Francistown', '494', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8210', 'Gaborone', '495', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8211', 'Bere', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8212', 'Charles Hill', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8213', 'Chobokwane', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8214', 'Dekar', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8215', 'East Hanahai', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8216', 'Ghanzi', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8217', 'Groote Laagte', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8218', 'Kacgae', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8219', 'Karakobis', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8220', 'Kuke Quarantine Camp', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8221', 'Kule', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8222', 'Makunda', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8223', 'Ncojane', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8224', 'New Xade', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8225', 'New Xanagas', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8226', 'Qabo', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8227', 'Tsootsha', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8228', 'West Hanahai', '496', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8229', 'Jwaneng', '497', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8230', 'Artisia', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8231', 'Bokaa', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8232', 'Dikgonye', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8233', 'Dikwididi', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8234', 'Kgomodiatshaba', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8235', 'Khurutshe', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8236', 'Leshibitse', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8237', 'Mabalane', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8238', 'Malolwane', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8239', 'Malotwana Siding', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8240', 'Matebeleng', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8241', 'Mmamashia', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8242', 'Mmathubudukwane', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8243', 'Mochudi', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8244', 'Modipane', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8245', 'Morwa', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8246', 'Oliphants Drift', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8247', 'Oodi', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8248', 'Pilane', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8249', 'Ramonaka', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8250', 'Ramotlabaki', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8251', 'Rasesa', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8252', 'Sikwane', '500', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8253', 'Boatlaname', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8254', 'Botlhapatlou', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8255', 'Diagane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8256', 'Diphudugodu', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8257', 'Diremogolo Lands', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8258', 'Ditshegwane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8259', 'Ditshukudu', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8260', 'Dumadumane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8261', 'Dutlwe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8262', 'Gabane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8263', 'Gakgatla', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8264', 'Gakuto', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8265', 'Galekgatshwane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8266', 'Gamodubu', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8267', 'Gaphatshwa', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8268', 'Hatsalatladi', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8269', 'Kamenakwe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8270', 'Kaudwane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8271', 'Kgaphamadi', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8272', 'Kgope', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8273', 'Khekhenya-Chepetese', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8274', 'Khudumelapye', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8275', 'Kopong', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8276', 'Kotolaname', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8277', 'Kubung', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8278', 'Kumakwane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8279', 'Kweneng', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8280', 'Lentsweletau', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8281', 'Lephepe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8282', 'Lesirane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8283', 'Letlhakeng', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8284', 'Losilakgokong', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8285', 'Maboane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8286', 'Mahetlwe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8287', 'Makabanyane-Dikgokong', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8288', 'Malwelwe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8289', 'Mamhiko', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8290', 'Manaledi', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8291', 'Mantshwabisi', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8292', 'Marejwane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8293', 'Masebele', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8294', 'Medie', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8295', 'Metsibotlhoko', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8296', 'Metsimotlhaba', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8297', 'Mmakanke', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8298', 'Mmankgodi', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8299', 'Mmanoko', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8300', 'Mmokolodi', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8301', 'Mmopane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8302', 'Mmopane Lands', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8303', 'Mogoditshane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8304', 'Mogoditshane Botswana Defence ', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8305', 'Mogoditshane Lands', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8306', 'Mogonono', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8307', 'Molepolole', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8308', 'Mononyane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8309', 'Monwane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8310', 'Morabane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8311', 'Morope', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8312', 'Moshaweng', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8313', 'Mosokotswe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8314', 'Motokwe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8315', 'Ngware', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8316', 'Nkoyaphiri', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8317', 'Ramaphatlhe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8318', 'Salajwe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8319', 'Serinane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8320', 'Sesung', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8321', 'Shadishadi', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8322', 'Sojwe', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8323', 'Sorilatholo', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8324', 'Suping', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8325', 'Takatokwane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8326', 'Thamaga', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8327', 'Thebephatshwa', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8328', 'Tlowaneng', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8329', 'Tsetseng', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8330', 'Tswaane', '501', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8331', 'Lobatse', '502', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8332', 'Bodibeng', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8333', 'Boro', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8334', 'Botlhatlogo', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8335', 'Chanoga', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8336', 'Chuchubega', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8337', 'Daonara', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8338', 'Ditshiping', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8339', 'Habu', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8340', 'Jao', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8341', 'Kareng', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8342', 'Katamaga', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8343', 'Kgakge', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8344', 'Khwai Camp', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8345', 'Komana', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8346', 'Legotlhwana', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8347', 'Mababe', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8348', 'Makalamabedi', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8349', 'Matlapana', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8350', 'Matsaudi', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8351', 'Mawana', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8352', 'Mokgalo-Haka', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8353', 'Morutsha', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8354', 'Nxharaga', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8355', 'Phuduhudu', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8356', 'Samodupi', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8357', 'Sankuyo', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8358', 'Sehithwa', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8359', 'Semboyo', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8360', 'Sexaxa', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8361', 'Shakawe', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8362', 'Shorobe', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8363', 'Somela', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8364', 'Toteng', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8365', 'Tsanekona', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8366', 'Tsao', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8367', 'Xaxaba', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8368', 'Xhobe', '503', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8369', 'Bethel', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8370', 'Borobadilepe', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8371', 'Diabo', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8372', 'Digawana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8373', 'Dikhukhung', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8374', 'Dinatshana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8375', 'Dipotsana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8376', 'Ditlharapa', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8377', 'Gamajalela', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8378', 'Gasita', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8379', 'Gathwane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8380', 'Good Hope', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8381', 'Goora-seno', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8382', 'Gopong', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8383', 'Hebron', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8384', 'Itholoke', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8385', 'Kanaku', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8386', 'Kangwe', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8387', 'Kanye', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8388', 'Keng', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8389', 'Kgomokasitwa', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8390', 'Kgoro', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8391', 'Khakhea', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8392', 'Khonkhwa', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8393', 'Kokong', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8394', 'Lehoko', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8395', 'Lejwana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8396', 'Lekgolobotlo', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8397', 'Leporung', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8398', 'Logagane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8399', 'Lorolwana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8400', 'Lorwana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8401', 'Lotlhakane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8402', 'Lotlhakane West', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8403', 'Mabule', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8404', 'Mabutsane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8405', 'Madingwana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8406', 'Magoriapitse', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8407', 'Magotlhawane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8408', 'Mahotshwane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8409', 'Maisane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8410', 'Makokwe', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8411', 'Malokaganyane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8412', 'Manyana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8413', 'Maokane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8414', 'Marojane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8415', 'Maruswa', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8416', 'Metlobo', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8417', 'Metlojane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8418', 'Mmakgori', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8419', 'Mmathethe', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8420', 'Mogojogojo', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8421', 'Mogonye', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8422', 'Mogwalale', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8423', 'Mokatako', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8424', 'Mokgomane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8425', 'Mokhomba', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8426', 'Molapowabojang', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8427', 'Molete', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8428', 'Morwamosu', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8429', 'Moshaneng', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8430', 'Moshupa', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8431', 'Motlhwatse', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8432', 'Motsentshe', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8433', 'Musi', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8434', 'Ngwatsau', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8435', 'Ntlhantlhe', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8436', 'Papatlo', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8437', 'Phihitshwane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8438', 'Pitsana-Potokwe', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8439', 'Pitsane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8440', 'Pitseng-Ralekgetho', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8441', 'Pitshane Molopo', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8442', 'Rakhuna', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8443', 'Ralekgetho', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8444', 'Ramatlabama', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8445', 'Ranaka', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8446', 'Sedibeng', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8447', 'Segakwana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8448', 'Segwagwa', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8449', 'Seherelela', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8450', 'Sekhutlane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8451', 'Sekoma', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8452', 'Selokolela', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8453', 'Semane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8454', 'Sese', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8455', 'Sesung', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8456', 'Sheep Farm', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8457', 'Tlhankane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8458', 'Tlhareseleele', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8459', 'Tshidilamolomo', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8460', 'Tshwaane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8461', 'Tsonyane', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8462', 'Tswaaneng', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8463', 'Tswagare-Lothoje-Lokalana', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8464', 'Tswanyaneng', '504', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8465', 'Beetsha', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8466', 'Eretsha', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8467', 'Etsha 1', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8468', 'Etsha 13', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8469', 'Etsha 6', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8470', 'Etsha 8', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8471', 'Etsha 9', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8472', 'Gane', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8473', 'Gonutsuga', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8474', 'Gowe', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8475', 'Gudingwa', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8476', 'Gumare', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8477', 'Ikoga', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8478', 'Kajaja', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8479', 'Kapotora Lands', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8480', 'Kauxwhi', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8481', 'Matswee', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8482', 'Maun', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8483', 'Moaha', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8484', 'Mohembo East', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8485', 'Mohembo West', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8486', 'Mokgacha', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8487', 'Ngarange', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8488', 'Nokaneng', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8489', 'Nxamasere', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8490', 'Nxaunxau', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8491', 'Nxwee', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8492', 'Qangwa', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8493', 'Roye', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8494', 'Samochema', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8495', 'Sekondomboro', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8496', 'Sepopa', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8497', 'Seronga', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8498', 'Shaowe', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8499', 'Tobere Lands', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8500', 'Tubu', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8501', 'Tubu Lands', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8502', 'Xadau', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8503', 'Xakao', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8504', 'Xaxa', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8505', 'Xhauga', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8506', 'Xurube', '506', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8507', 'Orapa', '507', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8508', 'Sowa', '510', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8509', 'Acrelandia', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8510', 'Brasileia', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8511', 'Cruzeiro do Sul', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8512', 'Epitaciolandia', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8513', 'Feijo', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8514', 'Mancio Lima', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8515', 'Manoel Urbano', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8516', 'Marechal Thaumaturgo', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8517', 'Placido de Castro', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8518', 'Porto Walter', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8519', 'Rio Branco', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8520', 'Rodrigues Alves', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8521', 'Sena Madureira', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8522', 'Senador Guiomard', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8523', 'Tarauaca', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8524', 'Xapuri', '512', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8525', 'Agua Branca', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8526', 'Anadia', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8527', 'Arapiraca', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8528', 'Atalaia', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8529', 'Barra de Santo Antonio', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8530', 'Batalha', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8531', 'Boca da Mata', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8532', 'Cacimbinhas', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8533', 'Cajueiro', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8534', 'Campo Alegre', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8535', 'Campo Grande', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8536', 'Canapi', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8537', 'Capela', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8538', 'Coite do Noia', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8539', 'Colonia Leopoldina', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8540', 'Coruripe', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8541', 'Craibas', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8542', 'Delmiro Gouveia', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8543', 'Dois Riachos', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8544', 'Estrela de Alagoas', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8545', 'Feira Grande', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8546', 'Flexeiras', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8547', 'Girau do Ponciano', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8548', 'Ibateguara', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8549', 'Igaci', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8550', 'Igreja Nova', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8551', 'Inhapi', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8552', 'Joaquim Gomes', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8553', 'Jundia', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8554', 'Junqueiro', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8555', 'Lagoa da Canoa', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8556', 'Limoeiro de Anadia', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8557', 'Maceio', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8558', 'Major Isidoro', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8559', 'Maragogi', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8560', 'Maravilha', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8561', 'Marechal Deodoro', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8562', 'Maribondo', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8563', 'Mata Grande', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8564', 'Matriz de Camaragibe', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8565', 'Messias', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8566', 'Minador do Negrao', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8567', 'Murici', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8568', 'Novo Lino', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8569', 'Olho d\'Agua das Flores', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8570', 'Olivenca', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8571', 'Palmeira dos Indios', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8572', 'Pao de Acucar', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8573', 'Passo de Camaragibe', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8574', 'Penedo', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8575', 'Piacabucu', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8576', 'Pilar', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8577', 'Piranhas', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8578', 'Poco das Trincheiras', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8579', 'Porto Calvo', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8580', 'Porto Real do Colegio', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8581', 'Quebrangulo', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8582', 'Rio Largo', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8583', 'Santana do Ipanema', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8584', 'Santana do Mundau', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8585', 'Sao Jose da Laje', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8586', 'Sao Jose da Tapera', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8587', 'Sao Luis do Quitunde', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8588', 'Sao Miguel dos Campos', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8589', 'Sao Sebastiao', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8590', 'Satuba', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8591', 'Senador Rui Palmeira', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8592', 'Taquarana', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8593', 'Teotonio Vilela', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8594', 'Traipu', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8595', 'Uniao dos Palmares', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8596', 'Vicosa', '513', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8597', 'Amapa', '514', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8598', 'Laranjal do Jari', '514', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8599', 'Macapa', '514', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8600', 'Mazagao', '514', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8601', 'Oiapoque', '514', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8602', 'Santana', '514', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8603', 'Alvaraes', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8604', 'Anori', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8605', 'Apui', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8606', 'Autazes', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8607', 'Barcelos', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8608', 'Barreirinha', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8609', 'Benjamin Constant', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8610', 'Boca do Acre', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8611', 'Borba', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8612', 'Canutama', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8613', 'Carauari', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8614', 'Careiro', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8615', 'Careiro da Varzea', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8616', 'Coari', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8617', 'Codajas', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8618', 'Eirunepe', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8619', 'Envira', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8620', 'Fonte Boa', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8621', 'Guajara', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8622', 'Humaita', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8623', 'Ipixuna', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8624', 'Iranduba', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8625', 'Itacoatiara', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8626', 'Japura', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8627', 'Jutai', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8628', 'Labrea', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8629', 'Manacapuru', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8630', 'Manaquiri', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8631', 'Manaus', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8632', 'Manicore', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8633', 'Maraa', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8634', 'Maues', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8635', 'Nhamunda', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8636', 'Nova Olinda do Norte', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8637', 'Novo Airao', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8638', 'Novo Aripuana', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8639', 'Parintins', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8640', 'Pauini', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8641', 'Rio Preto da Eva', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8642', 'Santa Isabel do Rio Negro', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8643', 'Santo Antonio do Ica', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8644', 'Sao Gabriel da Cachoeira', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8645', 'Sao Paulo de Olivenca', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8646', 'Tabatinga', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8647', 'Tapaua', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8648', 'Tefe', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8649', 'Tonantins', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8650', 'Uarini', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8651', 'Urucara', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8652', 'Urucurituba', '515', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8653', 'Acajutiba', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8654', 'Alagoinhas', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8655', 'Amargosa', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8656', 'Amelia Rodrigues', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8657', 'America Dourada', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8658', 'Anage', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8659', 'Araci', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8660', 'Aurelino Leal', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8661', 'Baixa Grande', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8662', 'Barra', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8663', 'Barra da Estiva', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8664', 'Barra do Choca', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8665', 'Barreiras', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8666', 'Belmonte', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8667', 'Boa Vista do Tupim', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8668', 'Bom Jesus da Lapa', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8669', 'Boquira', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8670', 'Brumado', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8671', 'Buerarema', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8672', 'Cachoeira', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8673', 'Cacule', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8674', 'Caetite', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8675', 'Cafarnaum', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8676', 'Camacan', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8677', 'Camacari', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8678', 'Camamu', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8679', 'Campo Alegre de Lourdes', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8680', 'Campo Formoso', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8681', 'Canarana', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8682', 'Canavieiras', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8683', 'Candeias', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8684', 'Candido Sales', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8685', 'Cansancao', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8686', 'Capim Grosso', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8687', 'Caravelas', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8688', 'Carinhanha', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8689', 'Casa Nova', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8690', 'Castro Alves', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8691', 'Catu', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8692', 'Cicero Dantas', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8693', 'Cipo', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8694', 'Coaraci', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8695', 'Conceicao da Feira', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8696', 'Conceicao do Almeida', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8697', 'Conceicao do Coite', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8698', 'Conceicao do Jacuipe', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8699', 'Conde', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8700', 'Coracao de Maria', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8701', 'Coronel Joao Sa', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8702', 'Correntina', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8703', 'Cruz das Almas', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8704', 'Curaca', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8705', 'Dias d\'Avila', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8706', 'Encruzilhada', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8707', 'Entre Rios', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8708', 'Esplanada', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8709', 'Euclides da Cunha', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8710', 'Eunapolis', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8711', 'Feira de Santana', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8712', 'Filadelfia', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8713', 'Formosa do Rio Preto', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8714', 'Gandu', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8715', 'Guanambi', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8716', 'Guaratinga', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8717', 'Iacu', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8718', 'Ibicarai', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8719', 'Ibicui', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8720', 'Ibipeba', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8721', 'Ibirapitanga', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8722', 'Ibirataia', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8723', 'Ibotirama', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8724', 'Iguai', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8725', 'Ilheus', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8726', 'Inhambupe', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8727', 'Ipiau', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8728', 'Ipira', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8729', 'Iraquara', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8730', 'Irara', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8731', 'Irece', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8732', 'Itabela', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8733', 'Itaberaba', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8734', 'Itabuna', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8735', 'Itacare', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8736', 'Itagi', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8737', 'Itagiba', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8738', 'Itajuipe', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8739', 'Itamaraju', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8740', 'Itambe', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8741', 'Itanhem', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8742', 'Itaparica', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8743', 'Itapetinga', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8744', 'Itapicuru', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8745', 'Itarantim', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8746', 'Itirucu', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8747', 'Itiuba', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8748', 'Itororo', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8749', 'Ituacu', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8750', 'Itubera', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8751', 'Jacobina', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8752', 'Jaguaquara', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8753', 'Jaguarari', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8754', 'Jequie', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8755', 'Jeremoabo', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8756', 'Jitauna', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8757', 'Joao Dourado', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8758', 'Juazeiro', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8759', 'Jussara', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8760', 'Laje', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8761', 'Lapao', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8762', 'Lauro de Freitas', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8763', 'Livramento', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8764', 'Macarani', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8765', 'Macaubas', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8766', 'Madre de Deus', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8767', 'Mairi', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8768', 'Maracas', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8769', 'Maragogipe', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8770', 'Marau', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8771', 'Mascote', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8772', 'Mata de Sao Joao', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8773', 'Medeiros Neto', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8774', 'Miguel Calmon', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8775', 'Milagres', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8776', 'Monte Santo', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8777', 'Morro de Chapeu', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8778', 'Mucuri', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8779', 'Mundo Novo', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8780', 'Muritiba', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8781', 'Mutuipe', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8782', 'Nazare', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8783', 'Nova Soure', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8784', 'Nova Vicosa', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8785', 'Olindina', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8786', 'Oliveira dos Brejinhos', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8787', 'Palmas de Monte Alto', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8788', 'Paramirim', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8789', 'Paratinga', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8790', 'Paripiranga', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8791', 'Pau Brasil', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8792', 'Paulo Afonso', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8793', 'Pilao Arcado', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8794', 'Pindobacu', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8795', 'Piritiba', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8796', 'Planalto', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8797', 'Pocoes', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8798', 'Pojuca', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8799', 'Ponto Novo', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8800', 'Porto Seguro', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8801', 'Prado', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8802', 'Presidente Tancredo Neves', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8803', 'Queimadas', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8804', 'Quijingue', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8805', 'Rafael Jambeiro', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8806', 'Remanso', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8807', 'Riachao das Neves', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8808', 'Riachao do Jacuipe', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8809', 'Riacho de Santana', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8810', 'Ribeira do Pombal', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8811', 'Rio Real', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8812', 'Ruy Barbosa', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8813', 'Salvador', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8814', 'Santa Cruz Cabralia', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8815', 'Santa Ines', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8816', 'Santa Maria da Vitoria', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8817', 'Santa Rita de Cassia', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8818', 'Santaluz', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8819', 'Santana', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8820', 'Santo Amaro', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8821', 'Santo Antonio de Jesus', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8822', 'Santo Estevao', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8823', 'Sao Desiderio', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8824', 'Sao Felipe', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8825', 'Sao Francisco do Conde', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8826', 'Sao Gabriel', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8827', 'Sao Goncalo dos Campos', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8828', 'Sao Sebastiao do Passe', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8829', 'Saubara', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8830', 'Seabra', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8831', 'Senhor do Bonfim', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8832', 'Sento Se', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8833', 'Serra Dourada', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8834', 'Serra do Ramalho', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8835', 'Serrinha', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8836', 'Simoes Filho', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8837', 'Sobradinho', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8838', 'Souto Soares', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8839', 'Tanhacu', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8840', 'Taperoa', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8841', 'Tapiramuta', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8842', 'Teixeira de Freitas', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8843', 'Teofilandia', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8844', 'Terra Nova', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8845', 'Tremedal', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8846', 'Tucano', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8847', 'Uaua', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8848', 'Ubaira', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8849', 'Ubaitaba', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8850', 'Ubata', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8851', 'Una', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8852', 'Urucuca', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8853', 'Utinga', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8854', 'Valenca', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8855', 'Valente', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8856', 'Vera Cruz', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8857', 'Vitoria da Conquista', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8858', 'Wenceslau Guimaraes', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8859', 'Xique-Xique', '516', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8860', 'Acarau', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8861', 'Acopiara', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8862', 'Amontada', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8863', 'Aquiraz', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8864', 'Aracati', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8865', 'Aracoiaba', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8866', 'Araripe', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8867', 'Assare', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8868', 'Aurora', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8869', 'Barbalha', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8870', 'Barro', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8871', 'Barroquinha', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8872', 'Baturite', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8873', 'Beberibe', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8874', 'Bela Cruz', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8875', 'Boa Viagem', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8876', 'Brejo Santo', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8877', 'Camocim', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8878', 'Campos Sales', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8879', 'Caninde', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8880', 'Carire', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8881', 'Caririacu', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8882', 'Cascavel', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8883', 'Caucaia', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8884', 'Cedro', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8885', 'Chorozinho', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8886', 'Coreau', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8887', 'Crateus', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8888', 'Crato', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8889', 'Cruz', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8890', 'Eusebio', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8891', 'Farias Brito', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8892', 'Forquilha', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8893', 'Fortaleza', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8894', 'Granja', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8895', 'Guaiuba', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8896', 'Guaraciaba do Norte', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8897', 'Hidrolandia', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8898', 'Horizonte', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8899', 'Ibiapina', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8900', 'Ico', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8901', 'Iguatu', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8902', 'Independencia', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8903', 'Ipu', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8904', 'Ipueiras', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8905', 'Iraucuba', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8906', 'Itaitinga', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8907', 'Itapage', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8908', 'Itapipoca', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8909', 'Itarema', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8910', 'Jaguaribe', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8911', 'Jaguaruana', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8912', 'Jardim', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8913', 'Juazeiro do Norte', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8914', 'Jucas', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8915', 'Lavras da Mangabeira', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8916', 'Limoeiro do Norte', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8917', 'Maracanau', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8918', 'Maranguape', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8919', 'Marco', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8920', 'Massape', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8921', 'Mauriti', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8922', 'Milagres', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8923', 'Missao Velha', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8924', 'Mombaca', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8925', 'Morada Nova', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8926', 'Nova Russas', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8927', 'Novo Oriente', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8928', 'Ocara', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8929', 'Oros', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8930', 'Pacajus', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8931', 'Pacatuba', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8932', 'Paracuru', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8933', 'Paraipaba', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8934', 'Parambu', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8935', 'Pedra Branca', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8936', 'Pentecoste', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8937', 'Quixada', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8938', 'Quixeramobim', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8939', 'Quixere', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8940', 'Redencao', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8941', 'Reriutaba', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8942', 'Russas', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8943', 'Santa Quiteria', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8944', 'Santana do Acarau', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8945', 'Sao Benedito', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8946', 'Sao Goncalo do Amarante', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8947', 'Senador Pompeu', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8948', 'Sobral', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8949', 'Tabuleiro do Norte', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8950', 'Tamboril', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8951', 'Taua', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8952', 'Tiangua', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8953', 'Trairi', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8954', 'Ubajara', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8955', 'Umirim', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8956', 'Uruburetama', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8957', 'Varjota', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8958', 'Varzea Alegre', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8959', 'Vicosa do Ceara', '517', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8960', 'Abadiania', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8961', 'Acreuna', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8962', 'Aguas Lindas de Goias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8963', 'Alexania', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8964', 'Anapolis', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8965', 'Anicuns', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8966', 'Aparecida de Goiania', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8967', 'Aragarcas', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8968', 'Bela Vista de Goias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8969', 'Bom Jesus de Goias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8970', 'Buriti Alegre', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8971', 'Cacu', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8972', 'Caiaponia', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8973', 'Caldas Novas', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8974', 'Campos Belos', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8975', 'Campos Verdes', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8976', 'Carmo do Rio Verde', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8977', 'Catalao', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8978', 'Cavalcante', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8979', 'Ceres', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8980', 'Cidade Ocidental', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8981', 'Cocalzinho de Coias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8982', 'Cristalina', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8983', 'Crixas', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8984', 'Doverlandia', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8985', 'Edeia', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8986', 'Firminopolis', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8987', 'Formosa', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8988', 'Goianapolis', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8989', 'Goianesia', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8990', 'Goiania', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8991', 'Goianira', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8992', 'Goias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8993', 'Goiatuba', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8994', 'Guapo', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8995', 'Hidrolandia', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8996', 'Iaciara', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8997', 'Indiara', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8998', 'Inhumas', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('8999', 'Ipameri', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9000', 'Ipora', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9001', 'Itaberai', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9002', 'Itapaci', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9003', 'Itapirapua', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9004', 'Itapuranga', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9005', 'Itumbiara', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9006', 'Jaragua', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9007', 'Jatai', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9008', 'Jussara', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9009', 'Luziania', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9010', 'Mara Rosa', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9011', 'Minacu', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9012', 'Mineiros', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9013', 'Morrinhos', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9014', 'Mozarlandia', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9015', 'Neropolis', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9016', 'Niquelandia', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9017', 'Nova Crixas', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9018', 'Novo Gama', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9019', 'Orizona', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9020', 'Padre Bernardo', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9021', 'Palmeiras de Goias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9022', 'Parauna', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9023', 'Petrolina de Goias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9024', 'Piracanjuba', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9025', 'Piranhas', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9026', 'Pirenopolis', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9027', 'Pires do Rio', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9028', 'Planaltina', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9029', 'Pontalina', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9030', 'Porangatu', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9031', 'Posse', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9032', 'Quirinopolis', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9033', 'Rialma', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9034', 'Rio Verde', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9035', 'Rubiataba', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9036', 'Santa Helena de Goias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9037', 'Santa Terezinha de Goias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9038', 'Santo Antonio do Descoberto', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9039', 'Sao Domingos', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9040', 'Sao Luis de Montes Belos', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9041', 'Sao Miguel do Araguaia', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9042', 'Sao Simao', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9043', 'Senador Canedo', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9044', 'Silvania', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9045', 'Trindade', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9046', 'Uruacu', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9047', 'Uruana', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9048', 'Valparaiso de Goias', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9049', 'Vianopolis', '521', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9050', 'Acailandia', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9051', 'Alcantara', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9052', 'Aldeias Altas', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9053', 'Alto Alegre do Pindare', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9054', 'Amarante do Maranhao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9055', 'Anajatuba', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9056', 'Araioses', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9057', 'Arame', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9058', 'Arari', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9059', 'Bacabal', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9060', 'Balsas', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9061', 'Barra do Corda', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9062', 'Barreirinhas', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9063', 'Bequimao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9064', 'Bom Jardim', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9065', 'Brejo', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9066', 'Buriti', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9067', 'Buriti Bravo', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9068', 'Buriticupu', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9069', 'Candido Mendes', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9070', 'Cantanhede', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9071', 'Carolina', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9072', 'Carutapera', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9073', 'Caxias', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9074', 'Chapadinha', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9075', 'Codo', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9076', 'Coelho Neto', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9077', 'Colinas', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9078', 'Coroata', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9079', 'Cururupu', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9080', 'Davinopolis', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9081', 'Dom Pedro', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9082', 'Esperantinopolis', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9083', 'Estreito', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9084', 'Fortuna', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9085', 'Godofredo Viana', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9086', 'Governador Eugenio Barros', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9087', 'Governador Nunes Freire', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9088', 'Grajau', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9089', 'Humberto de Campos', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9090', 'Icatu', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9091', 'Imperatriz', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9092', 'Itapecuru Mirim', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9093', 'Itinga do Maranhao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9094', 'Joao Lisboa', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9095', 'Lago da Pedra', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9096', 'Lago do Junco', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9097', 'Maracacume', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9098', 'Matinha', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9099', 'Matoes', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9100', 'Mirador', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9101', 'Miranda do Norte', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9102', 'Moncao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9103', 'Montes Altos', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9104', 'Morros', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9105', 'Nova Olinda do Maranhao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9106', 'Olho d\'Agua das Cunhas', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9107', 'Paco do Lumiar', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9108', 'Paraibano', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9109', 'Parnarama', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9110', 'Passagem Franca', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9111', 'Pastos Bons', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9112', 'Paulo Ramos', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9113', 'Pedreiras', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9114', 'Penalva', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9115', 'Pindare Mirim', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9116', 'Pinheiro', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9117', 'Pio XII', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9118', 'Pirapemas', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9119', 'Pocao de Pedras', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9120', 'Porto Franco', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9121', 'Presidente Dutra', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9122', 'Raposa', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9123', 'Riachao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9124', 'Rosario', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9125', 'Santa Helena', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9126', 'Santa Ines', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9127', 'Santa Luzia', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9128', 'Santa Luzia do Parua', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9129', 'Santa Quiteria do Maranhao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9130', 'Santa Rita', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9131', 'Sao Benedito do Rio Preto', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9132', 'Sao Bento', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9133', 'Sao Bernardo', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9134', 'Sao Domingos do Maranhao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9135', 'Sao Joao Batista', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9136', 'Sao Joao dos Patos', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9137', 'Sao Jose de Ribamar', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9138', 'Sao Luis', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9139', 'Sao Luis Gonzaga do Maranhao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9140', 'Sao Mateus do Maranhao', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9141', 'Sao Pedro da Agua Branca', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9142', 'Sao Raimundo das Mangabeiras', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9143', 'Timbiras', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9144', 'Timon', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9145', 'Trizidela do Vale', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9146', 'Tuntum', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9147', 'Turiacu', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9148', 'Tutoia', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9149', 'Urbano Santos', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9150', 'Vargem Grande', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9151', 'Viana', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9152', 'Vitoria do Mearim', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9153', 'Vitorino Freire', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9154', 'Ze Doca', '522', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9155', 'Abaetetuba', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9156', 'Acara', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9157', 'Afua', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9158', 'Agua Azul do Norte', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9159', 'Alenquer', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9160', 'Almeirim', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9161', 'Altamira', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9162', 'Ananindeua', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9163', 'Augusto Correa', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9164', 'Baiao', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9165', 'Barcarena', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9166', 'Belem', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9167', 'Benevides', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9168', 'Braganca', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9169', 'Breu Branco', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9170', 'Breves', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9171', 'Bujaru', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9172', 'Cameta', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9173', 'Capanema', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9174', 'Capitao Poco', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9175', 'Castanhal', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9176', 'Conceicao do Araguaia', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9177', 'Concordia do Para', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9178', 'Curionopolis', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9179', 'Curuca', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9180', 'Dom Eliseu', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9181', 'Eldorado dos Carajas', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9182', 'Garrafao do Norte', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9183', 'Goianesia do Para', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9184', 'Gurupa', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9185', 'Igarape-Acu', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9186', 'Igarape-Miri', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9187', 'Irituia', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9188', 'Itaituba', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9189', 'Itupiranga', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9190', 'Jacareacanga', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9191', 'Jacunda', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9192', 'Juruti', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9193', 'Limoeiro do Ajuru', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9194', 'Mae do Rio', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9195', 'Maraba', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9196', 'Maracana', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9197', 'Marapanim', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9198', 'Marituba', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9199', 'Medicilandia', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9200', 'Mocajuba', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9201', 'Moju', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9202', 'Monte Alegre', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9203', 'Muana', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9204', 'Novo Progresso', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9205', 'Novo Repartimento', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9206', 'Obidos', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9207', 'Oeiras do Para', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9208', 'Oriximina', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9209', 'Ourem', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9210', 'Ourilandia', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9211', 'Pacaja', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9212', 'Paragominas', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9213', 'Parauapebas', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9214', 'Portel', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9215', 'Porto de Moz', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9216', 'Prainha', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9217', 'Redencao', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9218', 'Rio Maria', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9219', 'Rondon do Para', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9220', 'Ruropolis', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9221', 'Salinopolis', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9222', 'Santa Isabel do Para', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9223', 'Santa Luzia do Para', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9224', 'Santa Maria do Para', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9225', 'Santana do Araguaia', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9226', 'Santarem', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9227', 'Santo Antonio do Taua', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9228', 'Sao Caetano de Odivelas', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9229', 'Sao Domingos do Araguaia', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9230', 'Sao Domingos do Capim', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9231', 'Sao Felix do Xingu', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9232', 'Sao Geraldo do Araguaia', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9233', 'Sao Joao de Pirabas', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9234', 'Sao Miguel do Guama', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9235', 'Senador Jose Porfirio', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9236', 'Soure', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9237', 'Tailandia', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9238', 'Terra Santa', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9239', 'Tome-Acu', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9240', 'Tucuma', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9241', 'Tucurui', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9242', 'Ulianopolis', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9243', 'Uruara', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9244', 'Vigia', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9245', 'Viseu', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9246', 'Xinguara', '526', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9247', 'Alagoa Grande', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9248', 'Alagoa Nova', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9249', 'Alagoinha', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9250', 'Alhandra', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9251', 'Aracagi', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9252', 'Arara', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9253', 'Araruna', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9254', 'Areia', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9255', 'Aroeiras', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9256', 'Bananeiras', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9257', 'Barra de Santa Rosa', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9258', 'Bayeux', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9259', 'Belem', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9260', 'Boqueirao', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9261', 'Brejo do Cruz', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9262', 'Caapora', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9263', 'Cabedelo', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9264', 'Cacimba de Dentro', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9265', 'Cajazeiras', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9266', 'Campina Grande', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9267', 'Catole do Rocha', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9268', 'Conceicao', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9269', 'Conde', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9270', 'Coremas', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9271', 'Cruz do Espirito Santo', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9272', 'Cuite', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9273', 'Desterro', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9274', 'Dona Ines', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9275', 'Esperanca', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9276', 'Fagundes', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9277', 'Guarabira', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9278', 'Gurinhem', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9279', 'Imaculada', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9280', 'Inga', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9281', 'Itabaiana', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9282', 'Itaporanga', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9283', 'Itapororoca', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9284', 'Itatuba', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9285', 'Jacarau', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9286', 'Joao Pessoa', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9287', 'Juazeirinho', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9288', 'Juripiranga', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9289', 'Juru', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9290', 'Lagoa Seca', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9291', 'Mamanguape', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9292', 'Manaira', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9293', 'Mari', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9294', 'Massaranduba', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9295', 'Mogeiro', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9296', 'Monteiro', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9297', 'Mulungu', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9298', 'Natuba', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9299', 'Nova Floresta', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9300', 'Patos', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9301', 'Paulista', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9302', 'Pedras de Fogo', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9303', 'Pianco', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9304', 'Picui', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9305', 'Pilar', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9306', 'Pirpirituba', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9307', 'Pitimbu', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9308', 'Pocinhos', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9309', 'Pombal', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9310', 'Princesa Isabel', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9311', 'Puxinana', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9312', 'Queimadas', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9313', 'Remigio', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9314', 'Rio Tinto', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9315', 'Salgado de Sao Felix', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9316', 'Santa Luzia', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9317', 'Santa Rita', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9318', 'Sao Bento', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9319', 'Sao Joao do Rio do Peixe', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9320', 'Sao Jose de Piranhas', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9321', 'Sao Sebastiao de Lagoa de Roca', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9322', 'Sape', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9323', 'Serra Branca', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9324', 'Solanea', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9325', 'Soledade', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9326', 'Sousa', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9327', 'Sume', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9328', 'Taperoa', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9329', 'Tavares', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9330', 'Teixeira', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9331', 'Triunfo', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9332', 'Uirauna', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9333', 'Umbuzeiro', '527', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9334', 'Almirante Tamandare', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9335', 'Alto Parana', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9336', 'Alto Piquiri', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9337', 'Altonia', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9338', 'Ampere', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9339', 'Andira', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9340', 'Antonina', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9341', 'Apucarana', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9342', 'Arapongas', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9343', 'Arapoti', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9344', 'Araucaria', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9345', 'Assai', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9346', 'Assis Chateaubriand', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9347', 'Astorga', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9348', 'Bandeirantes', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9349', 'Barbosa Ferraz', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9350', 'Bela Vista do Paraiso', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9351', 'Cambara', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9352', 'Cambe', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9353', 'Campina Grande do Sul', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9354', 'Campina da Lagoa', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9355', 'Campo Largo', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9356', 'Campo Murao', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9357', 'Candido de Abreu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9358', 'Capitao Leonidas Marques', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9359', 'Carambei', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9360', 'Cascavel', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9361', 'Castro', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9362', 'Centenario do Sul', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9363', 'Chopinzinho', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9364', 'Cianorte', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9365', 'Clevelandia', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9366', 'Colombo', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9367', 'Colorado', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9368', 'Contenda', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9369', 'Corbelia', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9370', 'Cornelio Procopio', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9371', 'Coronel Vivida', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9372', 'Cruzeiro do Oeste', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9373', 'Curitiba', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9374', 'Dois Vizinhos', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9375', 'Engenheiro Beltrao', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9376', 'Faxinal', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9377', 'Fazenda Rio Grande', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9378', 'Florestopolis', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9379', 'Foz do Iguacu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9380', 'Francisco Beltrao', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9381', 'Goioere', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9382', 'Guaira', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9383', 'Guaraniacu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9384', 'Guarapuava', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9385', 'Guaratuba', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9386', 'Ibaiti', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9387', 'Ibipora', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9388', 'Imbituva', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9389', 'Ipora', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9390', 'Irati', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9391', 'Itaperucu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9392', 'Ivaipora', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9393', 'Jacarezinho', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9394', 'Jaguariaiva', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9395', 'Jandaia do Sul', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9396', 'Jataizinho', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9397', 'Lapa', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9398', 'Laranjeiras do Sul', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9399', 'Loanda', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9400', 'Londrina', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9401', 'Mandaguacu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9402', 'Mandaguari', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9403', 'Marechal Candido Rondon', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9404', 'Marialva', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9405', 'Maringa', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9406', 'Matelandia', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9407', 'Matinhos', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9408', 'Medianeira', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9409', 'Moreira Sales', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9410', 'Nova Aurora', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9411', 'Nova Esperanca', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9412', 'Nova Londrina', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9413', 'Ortigueira', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9414', 'Paicandu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9415', 'Palmas', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9416', 'Palmeira', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9417', 'Palotina', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9418', 'Paranagua', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9419', 'Paranavai', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9420', 'Pato Branco', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9421', 'Peabiru', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9422', 'Pinhais', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9423', 'Pinhao', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9424', 'Pirai do Sul', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9425', 'Piraquara', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9426', 'Pitanga', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9427', 'Ponta Grossa', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9428', 'Pontal do Parana', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9429', 'Porecatu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9430', 'Primero de Maio', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9431', 'Prudentopolis', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9432', 'Quatro Barras', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9433', 'Quedas do Iguacu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9434', 'Realeza', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9435', 'Reserva', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9436', 'Ribeirao do Pinhal', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9437', 'Rio Branco do Sul', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9438', 'Rio Negro', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9439', 'Rolandia', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9440', 'Santa Helena', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9441', 'Santa Terezinha de Itaipu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9442', 'Santo Antonio da Platina', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9443', 'Santo Antonio do Sudoeste', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9444', 'Sao Joao do Ivai', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9445', 'Sao Jose dos Pinhais', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9446', 'Sao Mateus do Sul', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9447', 'Sao Miguel do Iguacu', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9448', 'Sarandi', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9449', 'Senges', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9450', 'Sertanopolis', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9451', 'Siquera Campos', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9452', 'Tapejara', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9453', 'Telemaco Borba', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9454', 'Terra Boa', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9455', 'Terra Rica', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9456', 'Terra Roxa', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9457', 'Tibagi', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9458', 'Toledo', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9459', 'Ubirata', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9460', 'Umuarama', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9461', 'Uniao da Victoria', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9462', 'Wenceslau Braz', '528', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9463', 'Abreu e Lima', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9464', 'Afogados da Ingazeira', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9465', 'Agrestina', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9466', 'Agua Preta', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9467', 'Aguas Belas', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9468', 'Alianca', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9469', 'Altinho', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9470', 'Amaraji', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9471', 'Aracoiaba', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9472', 'Araripina', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9473', 'Arcoverde', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9474', 'Barra de Guabiraba', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9475', 'Barreiros', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9476', 'Belem de Sao Francisco', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9477', 'Belo Jardim', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9478', 'Bezerros', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9479', 'Bodoco', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9480', 'Bom Conselho', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9481', 'Bom Jardim', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9482', 'Bonito', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9483', 'Brejo da Madre de Deus', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9484', 'Buique', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9485', 'Cabo de Santo Agostinho', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9486', 'Cabrobo', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9487', 'Cachoeirinha', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9488', 'Caetes', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9489', 'Camaragibe', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9490', 'Camocim de Sao Felix', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9491', 'Canhotinho', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9492', 'Capoeiras', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9493', 'Carnaiba', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9494', 'Carpina', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9495', 'Caruaru', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9496', 'Catende', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9497', 'Cha Grande', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9498', 'Condado', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9499', 'Cumaru', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9500', 'Cupira', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9501', 'Custodia', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9502', 'Escada', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9503', 'Exu', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9504', 'Feira Nova', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9505', 'Fernando de Noronha', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9506', 'Flores', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9507', 'Floresta', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9508', 'Gameleira', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9509', 'Garanhuns', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9510', 'Gloria do Goita', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9511', 'Goiana', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9512', 'Gravata', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9513', 'Ibimirim', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9514', 'Igarassu', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9515', 'Inaja', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9516', 'Ipojuca', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9517', 'Ipubi', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9518', 'Itaiba', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9519', 'Itamaraca', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9520', 'Itambe', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9521', 'Itapissuma', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9522', 'Itaquitinga', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9523', 'Jaboatao', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9524', 'Joao Alfredo', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9525', 'Joaquim Nabuco', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9526', 'Lagoa do Itaenga', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9527', 'Lajedo', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9528', 'Limoeiro', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9529', 'Macaparana', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9530', 'Maraial', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9531', 'Moreno', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9532', 'Nazare da Mata', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9533', 'Olinda', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9534', 'Orobo', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9535', 'Ouricuri', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9536', 'Palmares', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9537', 'Panelas', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9538', 'Parnamirim', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9539', 'Passira', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9540', 'Paudalho', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9541', 'Paulista', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9542', 'Pedra', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9543', 'Pesqueira', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9544', 'Petrolandia', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9545', 'Petrolina', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9546', 'Pombos', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9547', 'Quipapa', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9548', 'Recife', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9549', 'Ribeirao', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9550', 'Rio Formoso', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9551', 'Salgueiro', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9552', 'Santa Cruz do Capibaribe', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9553', 'Santa Maria da Boa Vista', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9554', 'Sao Bento do Una', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9555', 'Sao Caitano', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9556', 'Sao Joao', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9557', 'Sao Joaquim do Monte', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9558', 'Sao Jose da Coroa Grande', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9559', 'Sao Jose do Belmonte', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9560', 'Sao Jose do Egito', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9561', 'Sao Lourenco da Mata', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9562', 'Serra Talhada', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9563', 'Sertania', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9564', 'Sirinhaem', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9565', 'Surubim', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9566', 'Tabira', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9567', 'Tamandare', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9568', 'Taquaritinga do Norte', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9569', 'Timbauba', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9570', 'Toritama', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9571', 'Trindade', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9572', 'Triunfo', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9573', 'Tupanatinga', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9574', 'Vicencia', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9575', 'Vitoria de Santo Antao', '529', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9576', 'Agua Branca', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9577', 'Alto Longa', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9578', 'Altos', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9579', 'Amarante', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9580', 'Avelino Lopes', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9581', 'Barras', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9582', 'Batalha', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9583', 'Beneditinos', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9584', 'Bom Jesus', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9585', 'Buriti dos Lopes', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9586', 'Campo Maior', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9587', 'Canto do Buriti', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9588', 'Castelo do Piaui', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9589', 'Cocal', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9590', 'Corrente', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9591', 'Demerval Lobao', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9592', 'Elesbao Veloso', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9593', 'Esperantina', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9594', 'Floriano', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9595', 'Gilbues', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9596', 'Guadalupe', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9597', 'Inhuma', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9598', 'Itainopolis', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9599', 'Itaueira', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9600', 'Jaicos', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9601', 'Joaquim Pires', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9602', 'Jose de Freitas', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9603', 'Luis Correia', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9604', 'Luzilandia', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9605', 'Matias Olimpio', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9606', 'Miguel Alves', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9607', 'Monsenhor Gil', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9608', 'Oeiras', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9609', 'Palmeirais', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9610', 'Parnaiba', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9611', 'Pedro II', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9612', 'Picos', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9613', 'Pimenteiras', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9614', 'Pio IX', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9615', 'Piracuruca', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9616', 'Piripiri', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9617', 'Porto', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9618', 'Regeneracao', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9619', 'Sao Joao do Piaui', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9620', 'Sao Miguel do Tapuio', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9621', 'Sao Pedro do Piaui', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9622', 'Sao Raimundo Nonato', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9623', 'Simoes', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9624', 'Simplicio Mendes', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9625', 'Teresina', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9626', 'Uniao', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9627', 'Urucui', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9628', 'Valenca do Piaui', '530', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9629', 'Alta Floresta d\'Oeste', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9630', 'Alto Alegre do Parecis', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9631', 'Alto Paraiso', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9632', 'Alvorada d\'Oeste', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9633', 'Ariquemes', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9634', 'Buritis', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9635', 'Cacoal', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9636', 'Candeias do Jamari', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9637', 'Cerejeiras', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9638', 'Colorado do Oeste', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9639', 'Corumbiara', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9640', 'Espigao d\'Oeste', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9641', 'Governador Jorge Teixeira', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9642', 'Guajara-Mirim', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9643', 'Jaru', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9644', 'Ji-Parana', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9645', 'Machadinho d\'Oeste', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9646', 'Ministro Andreazza', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9647', 'Mirante da Serra', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9648', 'Nova Brasilandia d\'Oeste', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9649', 'Nova Mamore', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9650', 'Novo Horizonte do Oeste', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9651', 'Ouro Preto do Oeste', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9652', 'Pimenta Bueno', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9653', 'Porto Velho', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9654', 'Presidente Medici', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9655', 'Rolim de Moura', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9656', 'Santa Luzia d\'Oeste', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9657', 'Sao Miguel do Guapore', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9658', 'Urupa', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9659', 'Vale do Paraiso', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9660', 'Vilhena', '534', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9661', 'Alto Alegre', '535', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9662', 'Boa Vista', '535', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9663', 'Bonfim', '535', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9664', 'Caracarai', '535', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9665', 'Mucajai', '535', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9666', 'Normandia', '535', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9667', 'Sao Joao da Baliza', '535', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9668', 'Sao Luiz', '535', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9669', 'Aquidaba', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9670', 'Aracaju', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9671', 'Araua', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9672', 'Areia Branca', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9673', 'Barra dos Coqueiros', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9674', 'Boquim', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9675', 'Campo do Brito', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9676', 'Caninde de Sao Francisco', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9677', 'Capela', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9678', 'Carira', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9679', 'Cristinapolis', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9680', 'Estancia', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9681', 'Frei Paulo', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9682', 'Gararu', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9683', 'Indiaroba', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9684', 'Itabaiana', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9685', 'Itabaianinha', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9686', 'Itaporanga d\'Ajuda', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9687', 'Japaratuba', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9688', 'Japoata', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9689', 'Lagarto', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9690', 'Laranjeiras', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9691', 'Malhador', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9692', 'Maruim', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9693', 'Moita Bonita', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9694', 'Monte Alegre de Sergipe', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9695', 'Neopolis', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9696', 'Nossa Senhora da Gloria', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9697', 'Nossa Senhora das Dores', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9698', 'Nossa Senhora do Socorro', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9699', 'Pacatuba', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9700', 'Poco Verde', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9701', 'Porto da Folha', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9702', 'Propria', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9703', 'Riachao do Dantas', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9704', 'Ribeiropolis', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9705', 'Salgado', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9706', 'Santa Luzia do Itanhy', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9707', 'Santo Amaro das Brotas', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9708', 'Sao Cristovao', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9709', 'Simao Dias', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9710', 'Tobias Barreto', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9711', 'Tomar do Geru', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9712', 'Umbauba', '538', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9713', 'Alvorada', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9714', 'Ananas', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9715', 'Araguacu', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9716', 'Araguaina', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9717', 'Araguatins', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9718', 'Arraias', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9719', 'Augustinopolis', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9720', 'Axixa do Tocantins', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9721', 'Colinas do Tocantins', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9722', 'Dianopolis', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9723', 'Formoso do Araguaia', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9724', 'Goiatins', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9725', 'Guarai', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9726', 'Gurupi', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9727', 'Miracema do Tocantins', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9728', 'Miranorte', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9729', 'Palmas', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9730', 'Paraiso', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9731', 'Parana', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9732', 'Porto Nacional', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9733', 'Sitio Novo do Tocantins', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9734', 'Taguatinga', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9735', 'Tocantinopolis', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9736', 'Wanderlandia', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9737', 'Xambioa', '539', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9738', 'Kuala Belait', '541', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9739', 'Seria', '541', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9740', 'Bandar Seri Begawan', '542', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9741', 'Bangar', '543', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9742', 'Tutong', '544', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9743', 'Bansko', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9744', 'Belica', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9745', 'Blagoevgrad', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9746', 'Goce Delchev', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9747', 'Hadzhidimovo', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9748', 'Jakoruda', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9749', 'Kresna', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9750', 'Melnik', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9751', 'Petrich', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9752', 'Razlog', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9753', 'Sandanski', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9754', 'Simitli', '545', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9755', 'Ahtopol', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9756', 'Ajtos', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9757', 'Balgarovo', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9758', 'Bourgas', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9759', 'Burgas', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9760', 'Carevo', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9761', 'Kableshkovo', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9762', 'Kameno', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9763', 'Karnobat', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9764', 'Malko Tarnovo', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9765', 'Nesebar', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9766', 'Obzor', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9767', 'Pomorie', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9768', 'Primorsko', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9769', 'Sozopol', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9770', 'Sredec', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9771', 'Sungurlare', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9772', 'Tvardica', '546', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9773', 'Balchik', '547', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9774', 'Dobrich', '547', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9775', 'General-Toshevo', '547', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9776', 'Kavarna', '547', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9777', 'Loznica', '547', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9778', 'Shabla', '547', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9779', 'Tervel', '547', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9780', 'Drjanovo', '548', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9781', 'Gabrovo', '548', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9782', 'Plachkovci', '548', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9783', 'Sevlievo', '548', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9784', 'Trjavna', '548', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9785', 'Dimitrovgrad', '549', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9786', 'Harmanli', '549', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9787', 'Haskovo', '549', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9788', 'Ivajlovgrad', '549', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9789', 'Ljubimec', '549', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9790', 'Madzharovo', '549', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9791', 'Merichleri', '549', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9792', 'Simeonovgrad', '549', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9793', 'Svilengrad', '549', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9794', 'Boljarovo', '550', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9795', 'Elhovo', '550', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9796', 'Jambol', '550', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9797', 'Straldzha', '550', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9798', 'Topolovgrad', '550', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9799', 'Ardino', '551', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9800', 'Dzhebel', '551', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9801', 'Kardzhali', '551', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9802', 'Krumovgrad', '551', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9803', 'Momchilgrad', '551', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9804', 'Boboshevo', '552', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9805', 'Bobovdol', '552', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9806', 'Dupnica', '552', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9807', 'Kjustendil', '552', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9808', 'Kocherinovo', '552', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9809', 'Rila', '552', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9810', 'Sapareva Banja', '552', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9811', 'Zemen', '552', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9812', 'Aprilci', '553', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9813', 'Jablanica', '553', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9814', 'Letnica', '553', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9815', 'Lovech', '553', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9816', 'Lukovit', '553', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9817', 'Sopot', '553', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9818', 'Teteven', '553', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9819', 'Trojan', '553', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9820', 'Ugarchin', '553', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9821', 'Berkovica', '554', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9822', 'Bojchinovci', '554', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9823', 'Brusarci', '554', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9824', 'Chiprovci', '554', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9825', 'Lom', '554', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9826', 'Montana', '554', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9827', 'Valchedram', '554', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9828', 'Varshec', '554', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9829', 'Batak', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9830', 'Belovo', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9831', 'Bracigovo', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9832', 'Koprivshtica', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9833', 'Panagjurishte', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9834', 'Pazardzhik', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9835', 'Peshtera', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9836', 'Rakitovo', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9837', 'Septemvri', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9838', 'Strelcha', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9839', 'Velingrad', '556', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9840', 'Bankja', '557', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9841', 'Batanovci', '557', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9842', 'Breznik', '557', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9843', 'Pernik', '557', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9844', 'Radomir', '557', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9845', 'Tran', '557', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9846', 'Belene', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9847', 'Cherven Brjag', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9848', 'Dolna Mitropolija', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9849', 'Dolni Dabnik', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9850', 'Guljanci', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9851', 'Levski', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9852', 'Nikopol', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9853', 'Pleven', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9854', 'Pordim', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9855', 'Slavjanovo', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9856', 'Trashtenik', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9857', 'Varbica', '558', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9858', 'Asenovgrad', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9859', 'Brezovo', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9860', 'Car Kalojan', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9861', 'Hisarja', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9862', 'Kalofer', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9863', 'Karlovo', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9864', 'Klisura', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9865', 'Krichim', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9866', 'Parvomaj', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9867', 'Perushtica', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9868', 'Plovdiv', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9869', 'Rakovski', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9870', 'Sadovo', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9871', 'Saedinenie', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9872', 'Stambolijski', '559', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9873', 'Isperih', '560', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9874', 'Kubrat', '560', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9875', 'Razgrad', '560', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9876', 'Senovo', '560', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9877', 'Zavet', '560', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9878', 'Bjala', '561', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9879', 'Borovo', '561', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9880', 'Dve Mogili', '561', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9881', 'Ruse', '561', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9882', 'Russe', '561', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9883', 'Vetovo', '561', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9884', 'Kaolinovo', '562', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9885', 'Kaspichan', '562', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9886', 'Novi Pazar', '562', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9887', 'Pliska', '562', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9888', 'Shumen', '562', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9889', 'Smjadovo', '562', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9890', 'Veliki Preslav', '562', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9891', 'Alfatar', '563', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9892', 'Dulovo', '563', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9893', 'Glavinica', '563', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9894', 'Silistra', '563', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9895', 'Tutrakan', '563', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9896', 'Kermen', '564', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9897', 'Kotel', '564', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9898', 'Nova Zagora', '564', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9899', 'Shivachevo', '564', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9900', 'Sliven', '564', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9901', 'Chepelare', '565', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9902', 'Devin', '565', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9903', 'Dospat', '565', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9904', 'Laki', '565', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9905', 'Madan', '565', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9906', 'Nedelino', '565', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9907', 'Rudozem', '565', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9908', 'Smoljan', '565', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9909', 'Zlatograd', '565', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9910', 'Antonovo', '569', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9911', 'Omurtag', '569', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9912', 'Opaka', '569', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9913', 'Popovo', '569', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9914', 'Targovishte', '569', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9915', 'Beloslav', '570', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9916', 'Bjala', '570', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9917', 'Dalgopol', '570', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9918', 'Devnja', '570', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9919', 'Iskar', '570', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9920', 'Provadija', '570', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9921', 'Suvorovo', '570', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9922', 'Valchi Dol', '570', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9923', 'Varna', '570', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9924', 'Belogradchik', '572', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9925', 'Bregovo', '572', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9926', 'Dimovo', '572', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9927', 'Dolni Chiflik', '572', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9928', 'Dunavci', '572', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9929', 'Gramada', '572', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9930', 'Kula', '572', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9931', 'Vidin', '572', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9932', 'Bjala Slatina', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9933', 'Knezha', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9934', 'Kojnare', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9935', 'Kozloduj', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9936', 'Krivodol', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9937', 'Mezdra', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9938', 'Mizija', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9939', 'Orjahovo', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9940', 'Roman', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9941', 'Vraca', '573', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9942', 'Yablaniza', '574', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9943', 'Boromo', '575', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9944', 'Kongoussi', '576', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9945', 'Kombissiri', '577', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9946', 'Diebougou', '578', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9947', 'Pa', '578', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9948', 'Garango', '579', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9949', 'Tenkodogo', '579', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9950', 'Koudougou', '580', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9951', 'Banfora', '581', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9952', 'Zorgo', '582', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9953', 'Bogande', '583', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9954', 'Fada N\'gourma', '584', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9955', 'Bekuy', '585', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9956', 'Bobo Dioulasso', '585', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9957', 'Dano', '586', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9958', 'Ouagadougou', '587', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9959', 'Koalla', '588', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9960', 'Koloko', '588', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9961', 'Orodara', '588', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9962', 'Gayeri', '589', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9963', 'Pama', '590', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9964', 'Nouna', '591', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9965', 'Koupela', '592', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9966', 'Bousse', '593', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9967', 'Sindou', '594', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9968', 'Dedougou', '595', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9969', 'Po', '596', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9970', 'Boulsa', '597', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9971', 'Batie', '598', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9972', 'Ziniare', '599', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9973', 'Gorom-Gorom', '600', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9974', 'Yako', '601', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9975', 'Gaoua', '602', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9976', 'Kampti', '602', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9977', 'Loropeni', '602', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9978', 'Reo', '603', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9979', 'Kaya', '604', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9980', 'Dori', '605', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9981', 'Gao', '606', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9982', 'Leo', '606', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9983', 'Aribinda', '607', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9984', 'Djibo', '607', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9985', 'Louta', '608', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9986', 'Tougan', '608', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9987', 'Diapaga', '609', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9988', 'Kantchari', '609', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9989', 'Hounde', '610', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9990', 'Ouahigouya', '611', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9991', 'Gourcy', '612', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9992', 'Manga', '613', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9993', 'Bubanza', '614', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9994', 'Bujumbura', '615', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9995', 'Bururi', '616', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9996', 'Cankuzo', '617', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9997', 'Cibitoke', '618', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9998', 'Gitega', '619', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('9999', 'Karuzi', '620', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10000', 'Kayanza', '621', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10001', 'Kirundo', '622', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10002', 'Makamba', '623', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10003', 'Muramvya', '624', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10004', 'Muyinga', '625', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10005', 'Ngozi', '626', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10006', 'Rutana', '627', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10007', 'Ruyigi', '628', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10008', 'Kampot', '635', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10009', 'Ta Khmau', '636', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10010', 'Kracheh', '638', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10011', 'Pousat', '645', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10012', 'Phumi Takaev', '652', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10013', 'Banyo', '653', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10014', 'Meiganga', '653', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10015', 'Ngaoundere', '653', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10016', 'Tibati', '653', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10017', 'Tignere', '653', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10018', 'Akonolinga', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10019', 'Bafia', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10020', 'Eseka', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10021', 'Mbalmayo', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10022', 'Mfou', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10023', 'Monatele', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10024', 'Nanga Eboko', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10025', 'Obala', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10026', 'Ombesa', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10027', 'Saa', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10028', 'Yaounde', '654', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10029', 'Abong Mbang', '655', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10030', 'Batouri', '655', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10031', 'Bertoua', '655', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10032', 'Betare Oya', '655', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10033', 'Djoum', '655', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10034', 'Doume', '655', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10035', 'Lomie', '655', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10036', 'Yokadouma', '655', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10037', 'Bonaberi', '656', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10038', 'Dibombari', '656', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10039', 'Douala', '656', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10040', 'Edea', '656', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10041', 'Loum', '656', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10042', 'Manjo', '656', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10043', 'Mbanga', '656', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10044', 'Nkongsamba', '656', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10045', 'Yabassi', '656', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10046', 'Figuif', '657', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10047', 'Garoua', '657', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10048', 'Guider', '657', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10049', 'Lagdo', '657', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10050', 'Poli', '657', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10051', 'Rey Bouba', '657', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10052', 'Tchollire', '657', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10053', 'Figuif', '658', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10054', 'Garoua', '658', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10055', 'Guider', '658', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10056', 'Lagdo', '658', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10057', 'Poli', '658', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10058', 'Rey Bouba', '658', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10059', 'Tchollire', '658', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10060', 'Bamenda', '659', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10061', 'Kumbo', '659', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10062', 'Mbengwi', '659', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10063', 'Mme', '659', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10064', 'Njinikom', '659', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10065', 'Nkambe', '659', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10066', 'Wum', '659', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10067', 'Bafang', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10068', 'Bafoussam', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10069', 'Bafut', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10070', 'Bali', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10071', 'Bana', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10072', 'Bangangte', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10073', 'Djang', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10074', 'Fontem', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10075', 'Foumban', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10076', 'Foumbot', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10077', 'Mbouda', '660', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10078', 'Akom', '661', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10079', 'Ambam', '661', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10080', 'Ebolowa', '661', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10081', 'Kribi', '661', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10082', 'Lolodorf', '661', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10083', 'Moloundou', '661', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10084', 'Mvangue', '661', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10085', 'Sangmelima', '661', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10086', 'Buea', '662', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10087', 'Idenao', '662', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10088', 'Kumba', '662', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10089', 'Limbe', '662', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10090', 'Mamfe', '662', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10091', 'Muyuka', '662', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10092', 'Tiko', '662', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10093', 'Airdrie', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10094', 'Athabasca', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10095', 'Banff', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10096', 'Barrhead', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10097', 'Bassano', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10098', 'Beaumont', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10099', 'Beaverlodge', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10100', 'Black Diamond', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10101', 'Blackfalds', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10102', 'Blairmore', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10103', 'Bon Accord', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10104', 'Bonnyville', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10105', 'Bow Island', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10106', 'Brooks', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10107', 'Calgary', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10108', 'Calmar', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10109', 'Camrose', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10110', 'Canmore', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10111', 'Cardston', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10112', 'Carstairs', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10113', 'Chateau Lake Louise', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10114', 'Chestermere', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10115', 'Clairmont', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10116', 'Claresholm', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10117', 'Coaldale', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10118', 'Coalhurst', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10119', 'Cochrane', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10120', 'Crossfield', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10121', 'Devon', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10122', 'Didsbury', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10123', 'Drayton Valley', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10124', 'Drumheller', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10125', 'Edmonton', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10126', 'Edson', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10127', 'Elk Point', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10128', 'Fairview', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10129', 'Falher', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10130', 'Fort MacLeod', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10131', 'Fox Creek', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10132', 'Gibbons', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10133', 'Grand Centre', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10134', 'Grande Cache', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10135', 'Grande Prairie', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10136', 'Grimshaw', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10137', 'Hanna', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10138', 'High Level', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10139', 'High Prairie', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10140', 'High River', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10141', 'Hinton', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10142', 'Irricana', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10143', 'Jasper', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10144', 'Killam', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10145', 'La Crete', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10146', 'Lac la Biche', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10147', 'Lacombe', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10148', 'Lamont', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10149', 'Leduc', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10150', 'Lethbridge', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10151', 'Lloydminster', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10152', 'Magrath', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10153', 'Manning', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10154', 'Mayerthorpe', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10155', 'McMurray', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10156', 'Medicine Hat', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10157', 'Millet', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10158', 'Morinville', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10159', 'Nanton', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10160', 'Okotoks', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10161', 'Olds', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10162', 'Peace River', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10163', 'Penhold', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10164', 'Picture Butte', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10165', 'Pincher Creek', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10166', 'Ponoka', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10167', 'Provost', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10168', 'Raymond', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10169', 'Red Deer', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10170', 'Redwater', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10171', 'Rimbey', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10172', 'Rocky Mountain House', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10173', 'Rocky View', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10174', 'Saint Paul', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10175', 'Sexsmith', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10176', 'Sherwood Park', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10177', 'Slave Lake', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10178', 'Smoky Lake', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10179', 'Spirit River', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10180', 'Spruce Grove', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10181', 'Stettler', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10182', 'Stony Plain', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10183', 'Strathmore', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10184', 'Sundre', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10185', 'Swan Hills', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10186', 'Sylvan Lake', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10187', 'Taber', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10188', 'Three Hills', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10189', 'Tofield', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10190', 'Two Hills', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10191', 'Valleyview', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10192', 'Vegreville', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10193', 'Vermilion', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10194', 'Viking', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10195', 'Vulcan', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10196', 'Wainwright', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10197', 'Wembley', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10198', 'Westlock', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10199', 'Wetaskiwin', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10200', 'Whitecourt', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10201', 'Wood Buffalo', '663', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10202', 'Altona', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10203', 'Beausejour', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10204', 'Boissevain', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10205', 'Brandon', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10206', 'Carberry', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10207', 'Carman', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10208', 'Dauphin', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10209', 'Deloraine', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10210', 'Dugald', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10211', 'Flin Flon', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10212', 'Gimli', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10213', 'Hamiota', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10214', 'Killarney', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10215', 'Lac du Bonnet', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10216', 'Leaf Rapids', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10217', 'Lorette', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10218', 'Melita', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10219', 'Minnedosa', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10220', 'Morden', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10221', 'Morris', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10222', 'Neepawa', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10223', 'Niverville', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10224', 'Pinawa', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10225', 'Portage la Prairie', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10226', 'Ritchot', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10227', 'Rivers', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10228', 'Roblin', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10229', 'Saint Adolphe', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10230', 'Sainte Anne', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10231', 'Sainte Rose du Lac', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10232', 'Selkirk', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10233', 'Shilo', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10234', 'Snow Lake', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10235', 'Souris', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10236', 'Springfield', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10237', 'Steinbach', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10238', 'Stonewall', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10239', 'Stony Mountain', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10240', 'Swan River', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10241', 'The Pas', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10242', 'Thompson', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10243', 'Virden', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10244', 'Winkler', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10245', 'Winnipeg', '665', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10246', 'Clyde River', '670', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10247', 'Iqaluit', '670', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10248', 'Kangerdlinerk', '670', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10249', 'Oqsuqtooq', '670', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10250', 'Pangnirtung', '670', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10251', 'Tununirusiq', '670', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10252', 'Acton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10253', 'Ajax', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10254', 'Alexandria', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10255', 'Alfred', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10256', 'Alliston', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10257', 'Almonte', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10258', 'Amherstburg', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10259', 'Amigo Beach', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10260', 'Angus-Borden', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10261', 'Arnprior', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10262', 'Arthur', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10263', 'Athens', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10264', 'Atikokan', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10265', 'Attawapiskat', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10266', 'Aurora', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10267', 'Aylmer', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10268', 'Ayr', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10269', 'Barrie', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10270', 'Barry\'s Bay', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10271', 'Beamsville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10272', 'Beaverton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10273', 'Beeton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10274', 'Belleville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10275', 'Belmont', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10276', 'Blenheim', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10277', 'Blind River', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10278', 'Bobcaygeon', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10279', 'Bolton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10280', 'Bourget', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10281', 'Bowmanville-Newcastle', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10282', 'Bracebridge', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10283', 'Bradford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10284', 'Brampton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10285', 'Brantford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10286', 'Bridgenorth-Chemong Park Area', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10287', 'Brighton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10288', 'Brockville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10289', 'Brooklin', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10290', 'Brussels', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10291', 'Burford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10292', 'Burlington', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10293', 'Caledon', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10294', 'Caledon East', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10295', 'Caledonia', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10296', 'Cambridge', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10297', 'Campbellford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10298', 'Campbellville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10299', 'Cannington', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10300', 'Capreol', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10301', 'Cardinal', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10302', 'Carleton Place', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10303', 'Carlisle', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10304', 'Casselman', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10305', 'Cayuga', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10306', 'Chalk River', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10307', 'Chapleau', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10308', 'Chatham', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10309', 'Chesley', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10310', 'Chesterville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10311', 'Clinton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10312', 'Cobourg', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10313', 'Cochrane', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10314', 'Colborne', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10315', 'Colchester', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10316', 'Collingwood', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10317', 'Concord', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10318', 'Constance Bay', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10319', 'Cookstown', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10320', 'Cornwall', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10321', 'Creemore', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10322', 'Crystal Beach', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10323', 'Deep River', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10324', 'Delhi', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10325', 'Deseronto', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10326', 'Downsview', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10327', 'Drayton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10328', 'Dresden', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10329', 'Dryden', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10330', 'Dundalk', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10331', 'Dunnville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10332', 'Durham', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10333', 'Dutton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10334', 'Eganville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10335', 'Elliot Lake', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10336', 'Elmira', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10337', 'Elmvale', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10338', 'Embrun', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10339', 'Englehart', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10340', 'Erin', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10341', 'Espanola', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10342', 'Essex', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10343', 'Etobicoke', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10344', 'Everett', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10345', 'Exeter', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10346', 'Fenelon Falls', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10347', 'Fergus', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10348', 'Forest', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10349', 'Fort Erie', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10350', 'Fort Frances', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10351', 'Frankford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10352', 'Gananoque', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10353', 'Georgetown', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10354', 'Georgina', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10355', 'Geraldton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10356', 'Glencoe', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10357', 'Goderich', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10358', 'Golden', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10359', 'Gormley', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10360', 'Grand Bend', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10361', 'Grand Valley', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10362', 'Gravenhurst', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10363', 'Guelph', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10364', 'Hagersville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10365', 'Haileybury', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10366', 'Hamilton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10367', 'Hanover', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10368', 'Harriston', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10369', 'Harrow', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10370', 'Hastings', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10371', 'Havelock', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10372', 'Hawkesbury', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10373', 'Hearst', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10374', 'Hensall', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10375', 'Hillsburgh', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10376', 'Hornepayne', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10377', 'Huntsville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10378', 'Ingersoll', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10379', 'Innisfil', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10380', 'Iroquois', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10381', 'Iroquois Falls', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10382', 'Jarvis', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10383', 'Kanata', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10384', 'Kapuskasing', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10385', 'Kars', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10386', 'Kemptville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10387', 'Kenora', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10388', 'Kincardine', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10389', 'Kingston', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10390', 'Kirkland Lake', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10391', 'Kitchener', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10392', 'L\'Original', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10393', 'Lakefield', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10394', 'Lanark', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10395', 'Leamington', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10396', 'Lindsay', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10397', 'Listowel', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10398', 'Little Current', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10399', 'Lively', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10400', 'London', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10401', 'Longlac', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10402', 'Lucan', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10403', 'Lucknow', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10404', 'Madoc', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10405', 'Manitouwadge', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10406', 'Maple', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10407', 'Marathon', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10408', 'Markdale', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10409', 'Markham', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10410', 'Marmora', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10411', 'Mattawa', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10412', 'Meaford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10413', 'Metcalfe', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10414', 'Midland', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10415', 'Mildmay', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10416', 'Millbrook', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10417', 'Milton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10418', 'Milverton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10419', 'Mississauga', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10420', 'Mississauga Beach', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10421', 'Mitchell', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10422', 'Moose Factory', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10423', 'Morrisburg', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10424', 'Mount Albert', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10425', 'Mount Brydges', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10426', 'Mount Forest', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10427', 'Munster', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10428', 'Nanticoke', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10429', 'Napanee', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10430', 'Nepean', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10431', 'New Hamburg', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10432', 'Newmarket', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10433', 'Newtonville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10434', 'Nobleton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10435', 'North Bay', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10436', 'North Gower', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10437', 'North York', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10438', 'Norwich', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10439', 'Norwood', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10440', 'Oakville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10441', 'Omemee', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10442', 'Onaping-Levack', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10443', 'Ontario', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10444', 'Orangeville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10445', 'Orillia', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10446', 'Orono', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10447', 'Osgoode', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10448', 'Oshawa', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10449', 'Ottawa', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10450', 'Owen Sound', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10451', 'Paisley', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10452', 'Palmerston', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10453', 'Paris', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10454', 'Parkhill', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10455', 'Parry Sound', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10456', 'Pembroke', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10457', 'Perth', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10458', 'Petawawa', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10459', 'Peterborough', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10460', 'Petrolia', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10461', 'Pickering', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10462', 'Picton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10463', 'Porcupine', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10464', 'Port Credit', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10465', 'Port Dover', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10466', 'Port Elgin', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10467', 'Port Hope', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10468', 'Port Perry', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10469', 'Port Stanley', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10470', 'Powassan', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10471', 'Prescott', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10472', 'Queensville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10473', 'Renfrew', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10474', 'Richmond', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10475', 'Richmond Hill', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10476', 'Ridgetown', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10477', 'Rockland', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10478', 'Rockwood', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10479', 'Rodney', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10480', 'Saint Catharines', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10481', 'Saint Catharines-Niagara', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10482', 'Saint George', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10483', 'Saint Jacobs', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10484', 'Saint Marys', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10485', 'Saint Thomas', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10486', 'Sarnia', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10487', 'Sault Sainte Marie', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10488', 'Scarborough', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10489', 'Schomberg', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10490', 'Seaforth', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10491', 'Shelburne', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10492', 'Simcoe', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10493', 'Sioux Lookout', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10494', 'Smiths Falls', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10495', 'Smithville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10496', 'South River', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10497', 'Southampton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10498', 'Stayner', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10499', 'Stirling', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10500', 'Stoney Creek', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10501', 'Stoney Point', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10502', 'Stouffville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10503', 'Stratford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10504', 'Strathroy', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10505', 'Sturgeon Falls', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10506', 'Sudbury', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10507', 'Sutton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10508', 'Tavistock', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10509', 'Teeswater', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10510', 'Terrace Bay', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10511', 'Thamesford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10512', 'Thessalon', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10513', 'Thornbury', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10514', 'Thornhill', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10515', 'Thunder Bay', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10516', 'Tilbury', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10517', 'Tilsonburg', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10518', 'Timmins', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10519', 'Toronto', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10520', 'Tory Hill', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10521', 'Tottenham', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10522', 'Tweed', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10523', 'Uxbridge', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10524', 'Valley East', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10525', 'Vankleek Hill', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10526', 'Vaughan', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10527', 'Vineland', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10528', 'Walkerton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10529', 'Wallaceburg', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10530', 'Wasaga Beach', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10531', 'Waterdown', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10532', 'Waterford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10533', 'Waterloo', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10534', 'Watford', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10535', 'Wawa', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10536', 'Welland', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10537', 'Wellesley', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10538', 'Wellington', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10539', 'West Lorne', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10540', 'Wheatley', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10541', 'Whitby', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10542', 'Whitchurch-Stouffville', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10543', 'Wiarton', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10544', 'Wikwemikong', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10545', 'Willowdale', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10546', 'Winchester', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10547', 'Windsor', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10548', 'Wingham', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10549', 'Woodbridge', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10550', 'Woodstock', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10551', 'Wyoming', '671', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10552', 'Acton Vale', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10553', 'Albanel', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10554', 'Alencon', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10555', 'Alma', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10556', 'Amos', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10557', 'Amqui', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10558', 'Anjou', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10559', 'Asbestos', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10560', 'Bagotville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10561', 'Baie-Comeau', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10562', 'Baie-Saint-Paul', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10563', 'Barraute', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10564', 'Beauceville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10565', 'Beaupre', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10566', 'Bedford', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10567', 'Beloeil', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10568', 'Bernierville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10569', 'Berthierville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10570', 'Betsiamites', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10571', 'Boisbriand', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10572', 'Bonaventure', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10573', 'Boucherville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10574', 'Bromont', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10575', 'Brossard', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10576', 'Brownsburg', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10577', 'Buckingham', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10578', 'Cabano', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10579', 'Candiac', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10580', 'Cap-Chat', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10581', 'Cap-aux-Meules', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10582', 'Carleton', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10583', 'Causapscal', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10584', 'Chandler', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10585', 'Chapais', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10586', 'Charlesbourg', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10587', 'Chateau-Richer', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10588', 'Chibougamou', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10589', 'Chicoutimi-Jonquiere', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10590', 'Chisasibi', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10591', 'Chute-aux-Outardes', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10592', 'Clermont', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10593', 'Coaticook', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10594', 'Coleraine', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10595', 'Contrecoeur', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10596', 'Cookshire', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10597', 'Cowansville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10598', 'Crabtree', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10599', 'Danville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10600', 'Daveluyville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10601', 'Degelis', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10602', 'Desbiens', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10603', 'Disraeli', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10604', 'Dolbeau', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10605', 'Donnacona', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10606', 'Dorval', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10607', 'Drummondville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10608', 'East Angus', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10609', 'East Broughton', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10610', 'Farnham', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10611', 'Ferme-Neuve', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10612', 'Fermont', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10613', 'Filion', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10614', 'Forestville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10615', 'Fort-Coulonge', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10616', 'Gaspe', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10617', 'Gentilly', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10618', 'Granby', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10619', 'Grande-Riviere', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10620', 'Grenville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10621', 'Ham Nord', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10622', 'Hampstead', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10623', 'Hauterive', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10624', 'Havre-Saint-Pierre', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10625', 'Hebertville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10626', 'Huntingdon', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10627', 'Joliette', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10628', 'Kingsey Falls', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10629', 'L\'Annonciation', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10630', 'L\'Ascension-de-Notre-Seigneur', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10631', 'L\'Epiphanie', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10632', 'La Malbaie', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10633', 'La Pocatiere', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10634', 'La Sarre', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10635', 'La Tuque', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10636', 'Labelle', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10637', 'Lac-Etchemin', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10638', 'Lac-Lapierre', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10639', 'Lac-Megantic', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10640', 'Lac-au-Saumon', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10641', 'Lachine', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10642', 'Lachute', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10643', 'Lacolle', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10644', 'Lasalle', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10645', 'Laurentides', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10646', 'Laurier-Station', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10647', 'Laval', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10648', 'Lavaltrie', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10649', 'Le Bic', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10650', 'Lebel-sur-Quevillon', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10651', 'Les Cedres', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10652', 'Les Coteaux', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10653', 'Les Escoumins', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10654', 'Liniere', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10655', 'Longueuil', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10656', 'Louiseville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10657', 'Luceville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10658', 'Macamic', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10659', 'Magog', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10660', 'Malartic', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10661', 'Maniwaki', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10662', 'Marieville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10663', 'Maskinonge', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10664', 'Matagami', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10665', 'Matane', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10666', 'Metabetchouan', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10667', 'Mirabel', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10668', 'Mistissini', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10669', 'Mont-Joli', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10670', 'Mont-Laurier', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10671', 'Montmagny', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10672', 'Montreal', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10673', 'Murdochville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10674', 'Napierville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10675', 'New Richmond', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10676', 'Nicolet', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10677', 'Normandin', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10678', 'Notre-Dame-du-Bon-Conseil', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10679', 'Notre-Dame-du-Lac', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10680', 'Notre-Dame-du-Mont-Carmel', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10681', 'Oka-Kanesatake', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10682', 'Ormstown', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10683', 'Papineauville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10684', 'Pierreville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10685', 'Plessisville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10686', 'Pointe-Claire', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10687', 'Pont-Rouge', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10688', 'Port-Alfred-Bagotville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10689', 'Port-Cartier', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10690', 'Portneuf', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10691', 'Price', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10692', 'Princeville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10693', 'Quebec', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10694', 'Rawdon', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10695', 'Repentigny', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10696', 'Richmond', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10697', 'Rigaud', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10698', 'Rimouski', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10699', 'Riviere-au-Renard', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10700', 'Riviere-du-Loup', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10701', 'Roberval', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10702', 'Rougemont', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10703', 'Rouyn-Noranda', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10704', 'Saint-Agapit', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10705', 'Saint-Alexandre', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10706', 'Saint-Alexis-des-Monts', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10707', 'Saint-Ambroise', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10708', 'Saint-Andre-Avellin', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10709', 'Saint-Anselme', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10710', 'Saint-Apollinaire', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10711', 'Saint-Augustin', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10712', 'Saint-Basile-Sud', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10713', 'Saint-Bruno', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10714', 'Saint-Canut', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10715', 'Saint-Cesaire', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10716', 'Saint-Cyrill-de-Wendover', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10717', 'Saint-Damase', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10718', 'Saint-Damien-de-Buckland', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10719', 'Saint-Denis', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10720', 'Saint-Donat-de-Montcalm', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10721', 'Saint-Ephrem-de-Tring', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10722', 'Saint-Fabien', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10723', 'Saint-Felicien', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10724', 'Saint-Felix-de-Valois', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10725', 'Saint-Gabriel', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10726', 'Saint-Gedeon', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10727', 'Saint-Georges', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10728', 'Saint-Germain-de-Grantham', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10729', 'Saint-Gregoire', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10730', 'Saint-Henri-de-Levis', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10731', 'Saint-Honore', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10732', 'Saint-Hyacinthe', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10733', 'Saint-Jacques', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10734', 'Saint-Jean-Port-Joli', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10735', 'Saint-Jean-de-Dieu', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10736', 'Saint-Jean-sur-Richelieu', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10737', 'Saint-Jerome', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10738', 'Saint-Josephe-de-Beauce', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10739', 'Saint-Josephe-de-Lanoraie', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10740', 'Saint-Josephe-de-la-Riviere-Bl', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10741', 'Saint-Jovite', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10742', 'Saint-Laurent', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10743', 'Saint-Liboire', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10744', 'Saint-Marc-des-Carrieres', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10745', 'Saint-Martin', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10746', 'Saint-Michel-des-Saints', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10747', 'Saint-Pacome', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10748', 'Saint-Pascal', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10749', 'Saint-Pie', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10750', 'Saint-Prosper', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10751', 'Saint-Raphael', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10752', 'Saint-Raymond', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10753', 'Saint-Remi', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10754', 'Saint-Roch-de-l\'Achigan', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10755', 'Saint-Sauveur-des-Monts', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10756', 'Saint-Tite', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10757', 'Sainte-Adele', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10758', 'Sainte-Agathe-des-Monts', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10759', 'Sainte-Anne-des-Monts', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10760', 'Sainte-Anne-des-Plaines', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10761', 'Sainte-Catherine', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10762', 'Sainte-Claire', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10763', 'Sainte-Julienne', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10764', 'Sainte-Justine', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10765', 'Sainte-Madeleine', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10766', 'Sainte-Marie', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10767', 'Sainte-Martine', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10768', 'Sainte-Sophie', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10769', 'Sainte-Thecle', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10770', 'Sainte-Therese', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10771', 'Salaberry-de-Valleyfield', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10772', 'Sayabec', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10773', 'Senneterre', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10774', 'Sept-Iles', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10775', 'Shawinigan', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10776', 'Shawville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10777', 'Sherbrooke', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10778', 'Sorel', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10779', 'St Faustin', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10780', 'St. Hubert', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10781', 'St. Jean Chrysostome', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10782', 'Temiscaming', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10783', 'Terrebonne', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10784', 'Thetford Mines', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10785', 'Thurso', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10786', 'Trois-Pistoles', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10787', 'Trois-Rivieres', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10788', 'Val-David', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10789', 'Val-d\'Or', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10790', 'Valcourt', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10791', 'Vallee-Jonction', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10792', 'Vaudreuil', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10793', 'Vercheres', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10794', 'Victoriaville', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10795', 'Ville-Marie', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10796', 'Warwick', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10797', 'Waterloo', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10798', 'Weedon Centre', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10799', 'Westmount', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10800', 'Wickham', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10801', 'Windsor', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10802', 'Yamachiche', '673', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10803', 'Assiniboia', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10804', 'Biggar', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10805', 'Canora', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10806', 'Carlyle', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10807', 'Carnduff', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10808', 'Caronport', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10809', 'Carrot', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10810', 'Dalmeny', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10811', 'Davidson', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10812', 'Esterhazy', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10813', 'Estevan', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10814', 'Eston', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10815', 'Foam Lake', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10816', 'Fort Qu\'Appelle', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10817', 'Gravelbourg', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10818', 'Grenfell', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10819', 'Gull Lake', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10820', 'Hudson Bay', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10821', 'Humboldt', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10822', 'Indian Head', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10823', 'Kamsack', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10824', 'Kelvington', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10825', 'Kerrobert', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10826', 'Kindersley', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10827', 'Kipling', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10828', 'La Ronge', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10829', 'Langenburg', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10830', 'Langham', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10831', 'Lanigan', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10832', 'Lloydminster', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10833', 'Lumsden', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10834', 'Macklin', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10835', 'Maple Creek', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10836', 'Martensville', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10837', 'Meadow Lake', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10838', 'Melfort', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10839', 'Melville', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10840', 'Moose Jaw', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10841', 'Moosomin', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10842', 'Nipawin', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10843', 'North Battleford', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10844', 'Outlook', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10845', 'Oxbow', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10846', 'Pilot Butte', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10847', 'Preeceville', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10848', 'Prince Albert', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10849', 'Regina', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10850', 'Rosetown', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10851', 'Rosthem', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10852', 'Saskatoon', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10853', 'Shaunavon', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10854', 'Shellbrook', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10855', 'Swift Current', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10856', 'Tisdale', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10857', 'Unity', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10858', 'Wadena', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10859', 'Warman', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10860', 'Watrous', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10861', 'Weyburn', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10862', 'White City', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10863', 'Wilkie', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10864', 'Wynyard', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10865', 'Yorkton', '674', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10866', 'Haines Junction', '675', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10867', 'Mayo', '675', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10868', 'Whitehorse', '675', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10869', 'Sal Rei', '676', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10870', 'Nova Sintra', '677', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10871', 'Mosteiros', '678', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10872', 'Sao Filipe', '678', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10873', 'Vila do Maio', '679', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10874', 'Santa Maria', '680', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10875', 'Ndele', '686', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10876', 'Bangui', '687', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10877', 'Alindao', '688', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10878', 'Kembe', '688', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10879', 'Mobaye', '688', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10880', 'Obo', '689', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10881', 'Zemio', '689', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10882', 'Bria', '690', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10883', 'Ouadda', '690', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10884', 'Dekoa', '691', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10885', 'Sibut', '691', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10886', 'Boda', '692', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10887', 'Mbaiki', '692', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10888', 'Mongoumba', '692', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10889', 'Berberati', '693', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10890', 'Carnot', '693', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10891', 'Gamboula', '693', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10892', 'Bangassou', '694', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10893', 'Gambo', '694', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10894', 'Ouango', '694', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10895', 'Rafai', '694', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10896', 'Kaga-Bandoro', '695', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10897', 'Baboua', '696', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10898', 'Baoro', '696', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10899', 'Bouar', '696', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10900', 'Bambari', '698', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10901', 'Grimari', '698', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10902', 'Ippy', '698', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10903', 'Kouango', '698', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10904', 'Batangafo', '699', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10905', 'Bossangoa', '699', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10906', 'Bouca', '699', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10907', 'Kabo', '699', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10908', 'Bocaranga', '700', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10909', 'Bozoum', '700', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10910', 'Paoua', '700', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10911', 'Nola', '701', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10912', 'Birao', '702', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10913', 'Ati', '703', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10914', 'Oum Hadjer', '703', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10915', 'Biltine', '704', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10916', 'Aouzou', '705', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10917', 'Bardai', '705', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10918', 'Fada', '705', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10919', 'Faya', '705', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10920', 'Bokoro', '706', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10921', 'Bousso', '706', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10922', 'Dourbali', '706', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10923', 'Massaguet', '706', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10924', 'Massakory', '706', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10925', 'Massenya', '706', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10926', 'N\'Djamena', '706', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10927', 'Ngama', '706', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10928', 'Bitkine', '707', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10929', 'Melfi', '707', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10930', 'Mongo', '707', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10931', 'Mao', '708', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10932', 'Moussoro', '708', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10933', 'Rig-Rig', '708', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10934', 'Bol', '709', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10935', 'Bongor', '712', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10936', 'Fianga', '712', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10937', 'Gounou Gaya', '712', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10938', 'Guelengdeng', '712', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10939', 'Lere', '712', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10940', 'Pala', '712', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10941', 'Goundi', '713', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10942', 'Koumra', '713', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10943', 'Kyabe', '713', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10944', 'Moissala', '713', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10945', 'Sarh', '713', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10946', 'Abeche', '714', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10947', 'Adre', '714', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10948', 'Am Dam', '714', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10949', 'Abou Deia', '715', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10950', 'Am Timan', '715', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10951', 'Mangueigne', '715', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10952', 'Benoy', '716', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10953', 'Bere', '716', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10954', 'Kelo', '716', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10955', 'Lai', '716', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10956', 'Aisen', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10957', 'Chile Chico', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10958', 'Cisnes', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10959', 'Cochrane', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10960', 'Coihaique', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10961', 'Guaitecas', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10962', 'Lago Verde', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10963', 'O\'Higgins', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10964', 'Rio Ibanez', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10965', 'Tortel', '717', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10966', 'Antofagasta', '718', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10967', 'Calama', '718', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10968', 'Maria Elena', '718', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10969', 'Mejilones', '718', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10970', 'Ollague', '718', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10971', 'San Pedro de Atacama', '718', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10972', 'Sierra Gorda', '718', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10973', 'Taltal', '718', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10974', 'Tocopilla', '718', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10975', 'Angol', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10976', 'Carahue', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10977', 'Collipulli', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10978', 'Cunco', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10979', 'Curacautin', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10980', 'Curarrehue', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10981', 'Ercilla', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10982', 'Freire', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10983', 'Galvarino', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10984', 'Gorbea', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10985', 'Lautaro', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10986', 'Loncoche', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10987', 'Lonquimay', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10988', 'Los Sauces', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10989', 'Lumaco', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10990', 'Melipeuco', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10991', 'Nueva Imperial', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10992', 'Padre las Casas', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10993', 'Perquenco', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10994', 'Pitrufquen', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10995', 'Pucon', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10996', 'Puren', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10997', 'Renaico', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10998', 'Saavedra', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('10999', 'Temuco', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11000', 'Teodoro Schmidt', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11001', 'Tolten', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11002', 'Traiguen', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11003', 'Victoria', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11004', 'Vilcun', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11005', 'Villarica', '719', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11006', 'Alto del Carmen', '720', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11007', 'Caldera', '720', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11008', 'Chanaral', '720', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11009', 'Copiapo', '720', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11010', 'Diego de Almagro', '720', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11011', 'Freirina', '720', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11012', 'Huasco', '720', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11013', 'Tierra Amarilla', '720', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11014', 'Vallenar', '720', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11015', 'Andacollo', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11016', 'Canela', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11017', 'Combarbala', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11018', 'Coquimbo', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11019', 'Illapel', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11020', 'La Higuera', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11021', 'La Serena', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11022', 'Los Vilos', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11023', 'Monte Patria', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11024', 'Ovalle', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11025', 'Paiguano', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11026', 'Punitaci', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11027', 'Rio Hurtado', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11028', 'Salamanca', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11029', 'Vicuna', '722', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11030', 'Cabo de Horno', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11031', 'Laguna Blanca', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11032', 'Natales', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11033', 'Porvenir', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11034', 'Primavera', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11035', 'Punta Arenas', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11036', 'Rio Verde', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11037', 'San Gregorio', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11038', 'Timaukel', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11039', 'Torres del Paine', '725', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11040', 'Cauquenes', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11041', 'Chanco', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11042', 'Colbun', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11043', 'Constitucion', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11044', 'Curepto', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11045', 'Curico', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11046', 'Empedrado', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11047', 'Hualane', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11048', 'Licanten', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11049', 'Linares', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11050', 'Longavi', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11051', 'Maule', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11052', 'Molina', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11053', 'Parral', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11054', 'Pelarco', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11055', 'Pelluhue', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11056', 'Pencahue', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11057', 'Rauco', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11058', 'Retiro', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11059', 'Rio Claro', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11060', 'Romeral', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11061', 'Sagrada Familia', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11062', 'San Clemente', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11063', 'San Javier', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11064', 'San Rafael', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11065', 'Talca', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11066', 'Teno', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11067', 'Vichuquen', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11068', 'Villa Alegre', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11069', 'Yerbas Buenas', '726', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11070', 'Alhue', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11071', 'Buin', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11072', 'Calera de Tango', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11073', 'Colina', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11074', 'Curacavi', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11075', 'El Monte', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11076', 'Isla de Maipo', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11077', 'Lampa', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11078', 'Maria Pinto', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11079', 'Melipilla', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11080', 'Padre Hurtado', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11081', 'Paine', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11082', 'Penaflor', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11083', 'Pirque', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11084', 'Puente Alto', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11085', 'Quilicura', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11086', 'San Bernardo', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11087', 'San Jose de Maipo', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11088', 'San Pedro', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11089', 'Santiago', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11090', 'Talagante', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11091', 'Tiltil', '727', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11092', 'Alhue', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11093', 'Buin', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11094', 'Calera de Tango', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11095', 'Colina', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11096', 'Curacavi', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11097', 'El Monte', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11098', 'Isla de Maipo', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11099', 'Lampa', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11100', 'Maria Pinto', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11101', 'Melipilla', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11102', 'Padre Hurtado', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11103', 'Paine', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11104', 'Penaflor', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11105', 'Pirque', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11106', 'Puente Alto', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11107', 'Quilicura', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11108', 'San Bernardo', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11109', 'San Jose de Maipo', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11110', 'San Pedro', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11111', 'Santiago', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11112', 'Talagante', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11113', 'Tiltil', '728', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11114', 'Arica', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11115', 'Camarones', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11116', 'Camina', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11117', 'Colchane', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11118', 'General Lagos', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11119', 'Huara', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11120', 'Iquique', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11121', 'Pica', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11122', 'Pozo Almonte', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11123', 'Putre', '729', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11124', 'Algarrobo', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11125', 'Cabildo', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11126', 'Calera', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11127', 'Calle Larga', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11128', 'Cartagena', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11129', 'Casablanca', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11130', 'Catemu', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11131', 'Concon', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11132', 'El Quisco', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11133', 'El Tabo', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11134', 'Hijuelas', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11135', 'La Cruz', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11136', 'La Ligua', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11137', 'Limache', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11138', 'Llaillay', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11139', 'Los Andes', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11140', 'Nogales', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11141', 'Olmue', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11142', 'Panquehue', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11143', 'Papudo', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11144', 'Petorca', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11145', 'Puchuncavi', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11146', 'Putaendeo', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11147', 'Quillota', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11148', 'Quilpue', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11149', 'Quintero', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11150', 'Rinconada', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11151', 'San Antonio', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11152', 'San Esteban', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11153', 'San Felipe', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11154', 'Santa Maria', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11155', 'Santo Domingo', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11156', 'Valparaiso', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11157', 'Villa Alemana', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11158', 'Vina del Mar', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11159', 'Zapallar', '730', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11160', 'Fengyang', '731', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11161', 'Guangde', '731', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11162', 'Liuan', '731', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11163', 'Ningguo', '731', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11164', 'Shucheng', '731', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11165', 'Xinchang', '731', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11166', 'Xuancheng', '731', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11181', 'Aomen', '734', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11182', 'Beijing', '735', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11183', 'Changping', '735', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11184', 'Fangshan', '735', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11185', 'Huangcun', '735', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11186', 'Liangxiang', '735', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11187', 'Mentougou', '735', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11188', 'Shunyi', '735', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11189', 'Tongzhou', '735', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11190', 'Beijing', '736', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11191', 'Changping', '736', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11192', 'Fangshan', '736', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11193', 'Huangcun', '736', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11194', 'Liangxiang', '736', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11195', 'Mentougou', '736', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11196', 'Shunyi', '736', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11197', 'Tongzhou', '736', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11198', 'Beibei', '737', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11199', 'Chongqing', '737', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11200', 'Fuling', '737', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11201', 'Longhua', '737', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11202', 'Nantongkuang', '737', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11203', 'Wanxian', '737', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11204', 'Xiuma', '737', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11205', 'Yubei', '737', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11206', 'Yudong', '737', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11207', 'Bantou', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11208', 'Dongshan', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11209', 'Fuan', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11210', 'Fujian', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11211', 'Fuqing', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11212', 'Fuzhou', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11213', 'Gantou', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11214', 'Hanyang', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11215', 'Jiangkou', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11216', 'Jiaocheng', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11217', 'Jinjiang', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11218', 'Jinshang', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11219', 'Longhai', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11220', 'Longyan', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11221', 'Luoyang', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11222', 'Nanan', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11223', 'Nanping', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11224', 'Nanpu', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11225', 'Putian', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11226', 'Qingyang', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11227', 'Quanzhou', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11228', 'Rongcheng', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11229', 'Sanming', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11230', 'Shaowu', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11231', 'Shima', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11232', 'Shishi', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11233', 'Tantou', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11234', 'Tongshan', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11235', 'Xiamen', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11236', 'Xiapu', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11237', 'Xiapu Ningde', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11238', 'Ximei', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11239', 'Yongan', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11240', 'Zhangzhou', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11241', 'Zhicheng', '738', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11277', 'Baiyin', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11278', 'Baoji', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11279', 'Beidao', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11280', 'Jiayuguan', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11281', 'Jinchang', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11282', 'Jiuquan', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11283', 'Lanzhou', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11284', 'Linxia', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11285', 'Pingliang', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11286', 'Qincheng', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11287', 'Wuwei', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11288', 'Yaojie', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11289', 'Yumen', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11290', 'Zhangye', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11291', 'Zhuanglang', '740', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11292', 'Anbu', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11293', 'Chaozhou', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11294', 'Chenghai', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11295', 'Chuncheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11296', 'Daliang', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11297', 'Danshui', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11298', 'Dongguan', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11299', 'Donghai', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11300', 'Dongli', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11301', 'Dongzhen', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11302', 'Ducheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11303', 'Encheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11304', 'Foahn', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11305', 'Foshan', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11306', 'Gaozhou', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11307', 'Guangdong', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11308', 'Guangzhou', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11309', 'Guanjiao', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11310', 'Haicheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11311', 'Haimen', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11312', 'Hepo', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11313', 'Houpu', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11314', 'Huaicheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11315', 'Huanggang', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11316', 'Huangpu', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11317', 'Huazhou', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11318', 'Huicheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11319', 'Huizhou', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11320', 'Humen', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11321', 'Jiangmen', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11322', 'Jiazi', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11323', 'Jieshi', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11324', 'Jieyang', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11325', 'Lecheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11326', 'Leicheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11327', 'Liancheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11328', 'Lianzhou', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11329', 'Licheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11330', 'Liusha', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11331', 'Longgang', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11332', 'Lubu', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11333', 'Luocheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11334', 'Luohu', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11335', 'Luoyang', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11336', 'Maba', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11337', 'Maoming', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11338', 'Mata', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11339', 'Meilu', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11340', 'Meizhou', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11341', 'Mianchang', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11342', 'Nanfeng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11343', 'Nanhai', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11344', 'Pingshan', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11345', 'Qingtang', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11346', 'Qingyuan', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11347', 'Rongcheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11348', 'Sanbu', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11349', 'Shantou', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11350', 'Shanwei', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11351', 'Shaoguan', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11352', 'Shaping', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11353', 'Shenzhen', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11354', 'Shilong', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11355', 'Shiqiao', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11356', 'Shiwan', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11357', 'Shuizhai', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11358', 'Shunde', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11359', 'Suicheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11360', 'Taicheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11361', 'Tangping', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11362', 'Xiaolan', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11363', 'Xinan', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11364', 'Xingcheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11365', 'Xiongzhou', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11366', 'Xucheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11367', 'Yangjiang', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11368', 'Yingcheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11369', 'Yuancheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11370', 'Yuncheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11371', 'Yunfu', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11372', 'Zengcheng', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11373', 'Zhanjiang', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11374', 'Zhaoqing', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11375', 'Zhilong', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11376', 'Zhongshan', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11377', 'Zhuhai', '741', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11464', 'Babu', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11465', 'Baihe', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11466', 'Baise', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11467', 'Beihai', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11468', 'Binzhou', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11469', 'Bose', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11470', 'Fangchenggang', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11471', 'Guicheng', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11472', 'Guilin', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11473', 'Guiping', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11474', 'Jinchengjiang', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11475', 'Jinji', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11476', 'Laibin', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11477', 'Lianzhou', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11478', 'Liuzhou', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11479', 'Luorong', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11480', 'Matong', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11481', 'Nandu', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11482', 'Nanning', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11483', 'Pingnan', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11484', 'Pumiao', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11485', 'Qinzhou', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11486', 'Songhua', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11487', 'Wuzhou', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11488', 'Yashan', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11489', 'Yulin', '743', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11490', 'Anshun', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11491', 'Bijie', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11492', 'Caohai', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11493', 'Duyun', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11494', 'Guiyang', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11495', 'Kaili', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11496', 'Liupanshui', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11497', 'Luoyang', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11498', 'Pingzhai', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11499', 'Tongren', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11500', 'Tongzi', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11501', 'Xiaoweizhai', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11502', 'Xingyi', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11503', 'Zunyi', '744', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11504', 'Chengmai', '745', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11505', 'Dingan', '745', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11506', 'Haikou', '745', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11507', 'Lingao', '745', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11508', 'Qiongshan', '745', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11509', 'Sansha ', '745', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11510', 'Sanya', '745', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11511', 'Wanning', '745', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11512', 'Anping', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11513', 'Baoding', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11514', 'Botou', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11515', 'Cangzhou', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11516', 'Changli', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11517', 'Chengde', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11518', 'Dingzhou', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11519', 'Fengfeng', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11520', 'Fengrun', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11521', 'Guye', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11522', 'Handan', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11523', 'Hebei', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11524', 'Hecun', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11525', 'Hejian', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11526', 'Hengshui', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11527', 'Huanghua', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11528', 'Jingxingkuang', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11529', 'Jinzhou', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11530', 'Langfang', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11531', 'Lianzhou', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11532', 'Linshui', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11533', 'Linxi', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11534', 'Longyao County', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11535', 'Nangong', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11536', 'Pengcheng', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11537', 'Qinhuangdao', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11538', 'Renqiu', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11539', 'Shahe', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11540', 'Shijiazhuang', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11541', 'Tangjiazhuang', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11542', 'Tangshan', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11543', 'Wuan', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11544', 'Xian County', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11545', 'Xingtai', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11546', 'Xinji', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11547', 'Xinle', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11548', 'Xuanhua', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11549', 'Zhangjiakou', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11550', 'Zhaogezhuang', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11551', 'Zhuozhou', '746', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11552', 'Acheng', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11553', 'Anda', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11554', 'Angangxi', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11555', 'Baiquan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11556', 'Bamiantong', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11557', 'Baoqing', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11558', 'Baoshan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11559', 'Bayan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11560', 'Beian', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11561', 'Binzhou', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11562', 'Boli', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11563', 'Chaihe', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11564', 'Chengzihe', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11565', 'Cuiluan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11566', 'Daqing', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11567', 'Didao', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11568', 'Dongning', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11569', 'Fujin', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11570', 'Fuli', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11571', 'Fulitun', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11572', 'Fuyu', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11573', 'Gannan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11574', 'Hailin', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11575', 'Hailun', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11576', 'Harbin', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11577', 'Hegang', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11578', 'Heihe', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11579', 'Hengshan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11580', 'Honggang', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11581', 'Huanan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11582', 'Hulan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11583', 'Hulan Ergi', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11584', 'Jiamusi', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11585', 'Jidong', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11586', 'Jixi', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11587', 'Keshan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11588', 'Langxiang', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11589', 'Lanxi', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11590', 'Lingdong', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11591', 'Linkou', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11592', 'Lishu', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11593', 'Longfeng', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11594', 'Longjiang', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11595', 'Mingshui', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11596', 'Mishan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11597', 'Mudanjiang', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11598', 'Nancha', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11599', 'Nehe', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11600', 'Nenjiang', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11601', 'Nianzishan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11602', 'Ningan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11603', 'Qingan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11604', 'Qinggang', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11605', 'Qiqihar', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11606', 'Qitaihe', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11607', 'Ranghulu', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11608', 'Saertu', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11609', 'Shangzhi', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11610', 'Shanhetun', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11611', 'Shuangcheng', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11612', 'Shuangyashan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11613', 'Sifantan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11614', 'Suifenhe', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11615', 'Suihua', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11616', 'Suileng', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11617', 'Tahe', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11618', 'Taikang', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11619', 'Tailai', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11620', 'Tieli', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11621', 'Wangkui', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11622', 'Weihe', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11623', 'Wuchang', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11624', 'Xinglongzhen', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11625', 'Xinqing', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11626', 'Yian', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11627', 'Yichun', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11628', 'Yilan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11629', 'Youhao', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11630', 'Zhaodong', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11631', 'Zhaoyuan', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11632', 'Zhaozhou', '747', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11633', 'Anyang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11634', 'Changying', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11635', 'Dancheng', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11636', 'Daokou', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11637', 'Dengzhou', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11638', 'Gongyi', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11639', 'Gushi', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11640', 'Hebi', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11641', 'Huaidian', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11642', 'Huangchuan', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11643', 'Huangzhai', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11644', 'Jiaozuo', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11645', 'Jishui', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11646', 'Kaifeng', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11647', 'Liupen', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11648', 'Luohe', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11649', 'Luoyang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11650', 'Luyang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11651', 'Mengzhou', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11652', 'Minggang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11653', 'Nandun', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11654', 'Nanyang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11655', 'Pingdingshan', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11656', 'Puyang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11657', 'Sanmenxia', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11658', 'Shangqiu', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11659', 'Tanghe', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11660', 'Xiaoyi', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11661', 'Xihua', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11662', 'Xinxiang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11663', 'Xinyang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11664', 'Xinye', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11665', 'Xixiang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11666', 'Xuanwu', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11667', 'Xuchang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11668', 'Yigou', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11669', 'Yima', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11670', 'Yinzhuang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11671', 'Yunyang', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11672', 'Yuzhou', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11673', 'Zhecheng', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11674', 'Zhengzhou', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11675', 'Zhenping', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11676', 'Zhoukou', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11677', 'Zhumadian', '748', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11678', 'Anlu', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11679', 'Baisha', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11680', 'Buhe', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11681', 'Caidian', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11682', 'Caohe', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11683', 'Danjiangkou', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11684', 'Daye', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11685', 'Duobao', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11686', 'Enshi', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11687', 'Ezhou', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11688', 'Fengkou', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11689', 'Guangshui', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11690', 'Gucheng', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11691', 'Hanchuan', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11692', 'Hongan', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11693', 'Honghu', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11694', 'Huangmei', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11695', 'Huangpi', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11696', 'Huangshi', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11697', 'Huangzhou', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11698', 'Jingmen', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11699', 'Jingzhou', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11700', 'Laohekou', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11701', 'Lichuan', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11702', 'Macheng', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11703', 'Nanhai', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11704', 'Nanzhang', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11705', 'Puqi', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11706', 'Qianjiang', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11707', 'Qingquan', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11708', 'Qixingtai', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11709', 'Rongcheng', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11710', 'Shashi', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11711', 'Shishou', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11712', 'Shiyan', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11713', 'Suizhou', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11714', 'Tianmen', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11715', 'Tongcheng', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11716', 'Wuhan', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11717', 'Wuxue', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11718', 'Xiangfan', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11719', 'Xianning', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11720', 'Xiantao', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11721', 'Xiaogan', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11722', 'Xiaoxita', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11723', 'Xiaxindian', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11724', 'Xihe', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11725', 'Xinpu', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11726', 'Xinshi', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11727', 'Xinzhou', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11728', 'Yichang', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11729', 'Yicheng', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11730', 'Yingcheng', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11731', 'Yingzhong', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11732', 'Zaoyang', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11733', 'Zhengchang', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11734', 'Zhicheng', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11735', 'Zhifang', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11736', 'Zhongxiang', '749', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11737', 'Anjiang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11738', 'Anxiang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11739', 'Changde', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11740', 'Changsha', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11741', 'Chenzhou', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11742', 'Dayong', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11743', 'Hengyang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11744', 'Hongjiang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11745', 'Huaihua', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11746', 'Jinshi', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11747', 'Jishou', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11748', 'Leiyang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11749', 'Lengshuijiang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11750', 'Lengshuitan', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11751', 'Lianyuan', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11752', 'Liling', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11753', 'Liuyang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11754', 'Loudi', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11755', 'Matian', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11756', 'Nanzhou', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11757', 'Ningxiang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11758', 'Qidong', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11759', 'Qiyang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11760', 'Shaoyang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11761', 'Xiangtan', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11762', 'Xiangxiang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11763', 'Xiangyin', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11764', 'Xinhua', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11765', 'Yiyang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11766', 'Yongfeng', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11767', 'Yongzhou', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11768', 'Yuanjiang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11769', 'Yueyang', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11770', 'Zhuzhou', '750', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11771', 'Baoying', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11772', 'Changzhou', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11773', 'Dachang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11774', 'Dafeng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11775', 'Danyang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11776', 'Dingshu', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11777', 'Dongkan', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11778', 'Dongtai', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11779', 'Fengxian', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11780', 'Gaogou', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11781', 'Gaoyou', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11782', 'Guiren', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11783', 'Haian', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11784', 'Haizhou', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11785', 'Hede', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11786', 'Huaicheng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11787', 'Huaiyin', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11788', 'Huilong', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11789', 'Hutang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11790', 'Jiangdu', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11791', 'Jiangyan', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11792', 'Jiangyin', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11793', 'Jiangyuan', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11794', 'Jianhu', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11795', 'Jingcheng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11796', 'Jinsha', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11797', 'Jintan', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11798', 'Juegang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11799', 'Jurong', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11800', 'Kunshan', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11801', 'Lianyungang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11802', 'Liucheng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11803', 'Liyang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11804', 'Luodu', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11805', 'Mudu', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11806', 'Nanjing', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11807', 'Nantong', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11808', 'Pecheng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11809', 'Pukou', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11810', 'Qidong', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11811', 'Qinnan', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11812', 'Qixia', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11813', 'Rucheng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11814', 'Songling', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11815', 'Sucheng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11816', 'Suicheng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11817', 'Suqian', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11818', 'Suzhou', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11819', 'Taicang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11820', 'Taixing', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11821', 'Wujiang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11822', 'Wuxi', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11823', 'Xiaolingwei', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11824', 'Xiaoshi', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11825', 'Xinan', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11826', 'Xinpu', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11827', 'Xuzhou', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11828', 'Yancheng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11829', 'Yangshe', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11830', 'Yangzhou', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11831', 'Yizheng', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11832', 'Yunhe', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11833', 'Yunyang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11834', 'Yushan', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11835', 'Zhangjiagang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11836', 'Zhangjiangang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11837', 'Zhaoyang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11838', 'Zhenjiang', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11839', 'Zhongxing', '751', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11909', 'Fengxin', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11910', 'Fenyi', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11911', 'Ganzhou', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11912', 'Jian', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11913', 'Jiangguang', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11914', 'Jingdezhen', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11915', 'Jiujiang', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11916', 'Leping', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11917', 'Linchuan', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11918', 'Nanchang', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11919', 'Pingxiang', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11920', 'Poyang', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11921', 'Shangrao', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11922', 'Xiangdong', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11923', 'Xingan', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11924', 'Xinjian', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11925', 'Xinyu', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11926', 'Xiongshi', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11927', 'Yichun', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11928', 'Yingtai', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11929', 'Yingtan', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11930', 'Zhangshui', '753', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11931', 'Badaojiang', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11932', 'Baicheng', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11933', 'Baishishan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11934', 'Changchun', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11935', 'Changling', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11936', 'Chaoyang', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11937', 'Daan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11938', 'Dashitou', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11939', 'Dehui', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11940', 'Dongchang', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11941', 'Dongfeng', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11942', 'Dunhua', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11943', 'Erdaojiang', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11944', 'Fuyu', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11945', 'Gongzhuling', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11946', 'Helong', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11947', 'Hongmei', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11948', 'Huadian', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11949', 'Huangnihe', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11950', 'Huinan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11951', 'Hunchun', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11952', 'Jiaohe', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11953', 'Jilin', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11954', 'Jishu', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11955', 'Jiutai', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11956', 'Kaitong', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11957', 'Kouqian', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11958', 'Liaoyuan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11959', 'Linjiang', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11960', 'Lishu', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11961', 'Liuhe', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11962', 'Longjing', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11963', 'Meihekou', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11964', 'Mingyue', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11965', 'Nongan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11966', 'Panshi', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11967', 'Pizhou', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11968', 'Qianan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11969', 'Qianguo', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11970', 'Sanchazi', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11971', 'Shuangyang', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11972', 'Shulan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11973', 'Siping', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11974', 'Songjianghe', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11975', 'Taonan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11976', 'Tumen', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11977', 'Wangou', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11978', 'Wangqing', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11979', 'Xinglongshan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11980', 'Yanji', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11981', 'Yantongshan', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11982', 'Yushu', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11983', 'Zhengjiatun', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11984', 'Zhenlai', '754', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11985', 'Anshan', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11986', 'Beipiao', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11987', 'Benxi', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11988', 'Changtu', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11989', 'Chaoyang', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11990', 'Dalian', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11991', 'Dalianwan', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11992', 'Dalinghe', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11993', 'Dandong', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11994', 'Dashiqiao', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11995', 'Dongling', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11996', 'Fengcheng', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11997', 'Fushun', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11998', 'Fuxin', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('11999', 'Haicheng', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12000', 'Heishan', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12001', 'Huanren', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12002', 'Huludao', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12003', 'Hushitai', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12004', 'Jinxi', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12005', 'Jinzhou', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12006', 'Jiupu', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12007', 'Kaiyuan', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12008', 'Kuandian', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12009', 'Langtou', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12010', 'Liaoyang', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12011', 'Liaozhong', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12012', 'Lingyuan', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12013', 'Liuerbao', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12014', 'Lushunkou', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12015', 'Nantai', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12016', 'Panjin', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12017', 'Pulandian', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12018', 'Shenyang', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12019', 'Sujiatun', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12020', 'Tieling', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12021', 'Wafangdian', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12022', 'Xiaoshi', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12023', 'Xifeng', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12024', 'Xinchengxi', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12025', 'Xingcheng', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12026', 'Xinmin', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12027', 'Xiongyue', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12028', 'Xiuyan', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12029', 'Yebaishou', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12030', 'Yingkou', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12031', 'Yuhong', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12032', 'Zhuanghe', '755', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12081', 'Qiatou', '759', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12082', 'Xining', '759', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12083', 'Ankang', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12084', 'Baoji', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12085', 'Guozhen', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12086', 'Hancheng', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12087', 'Hanzhong', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12088', 'Lishan', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12089', 'Qili', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12090', 'Tongchuan', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12091', 'Weinan', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12092', 'Xian', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12093', 'Xianyang', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12094', 'Yanan', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12095', 'Yanliang', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12096', 'Yulin', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12097', 'Yuxia', '760', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12098', 'Anqiu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12099', 'Bianzhuang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12100', 'Binzhou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12101', 'Boshan', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12102', 'Boxing County', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12103', 'Caocheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12104', 'Changqing', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12105', 'Chengyang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12106', 'Dengzhou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12107', 'Dezhou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12108', 'Dingtao', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12109', 'Dongcun', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12110', 'Dongdu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12111', 'Donge County', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12112', 'Dongying', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12113', 'Feicheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12114', 'Fushan', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12115', 'Gaomi', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12116', 'Haiyang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12117', 'Hanting', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12118', 'Hekou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12119', 'Heze', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12120', 'Jiaonan', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12121', 'Jiaozhou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12122', 'Jiehu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12123', 'Jimo', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12124', 'Jinan', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12125', 'Jining', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12126', 'Juxian', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12127', 'Juye', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12128', 'Kunlun', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12129', 'Laiwu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12130', 'Laiyang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12131', 'Laizhou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12132', 'Leling', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12133', 'Liaocheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12134', 'Licung', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12135', 'Linqing', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12136', 'Linqu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12137', 'Linshu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12138', 'Linyi', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12139', 'Longkou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12140', 'Mengyin', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12141', 'Mingshui', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12142', 'Nanchou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12143', 'Nanding', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12144', 'Nanma', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12145', 'Ninghai', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12146', 'Ningyang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12147', 'Pingdu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12148', 'Pingyi', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12149', 'Pingyin', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12150', 'Qingdao', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12151', 'Qingzhou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12152', 'Qixia', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12153', 'Qufu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12154', 'Rizhao', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12155', 'Rongcheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12156', 'Shancheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12157', 'Shanting', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12158', 'Shengzhuang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12159', 'Shenxian', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12160', 'Shizilu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12161', 'Shouguang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12162', 'Shuiji', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12163', 'Sishui', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12164', 'Suozhen', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12165', 'Taian', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12166', 'Tancheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12167', 'Taozhuang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12168', 'Tengzhou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12169', 'Weifang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12170', 'Weihai', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12171', 'Wencheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12172', 'Wendeng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12173', 'Wenshang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12174', 'Wudi', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12175', 'Xiazhen', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12176', 'Xincheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12177', 'Xindian', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12178', 'Xintai', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12179', 'Yanggu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12180', 'Yangshan', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12181', 'Yantai', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12182', 'Yanzhou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12183', 'Yatou', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12184', 'Yidu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12185', 'Yishui', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12186', 'Yucheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12187', 'Yuncheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12188', 'Zaozhuang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12189', 'Zhangdian', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12190', 'Zhangjiawa', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12191', 'Zhangqiu', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12192', 'Zhaocheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12193', 'Zhoucheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12194', 'Zhoucun', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12195', 'Zhucheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12196', 'Zhuwang', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12197', 'Zicheng', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12198', 'Zouping', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12199', 'Zouxian', '761', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12302', 'Jiading', '763', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12303', 'Minhang', '763', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12304', 'Shanghai', '763', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12305', 'Songjiang', '763', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12306', 'Trencin', '763', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12307', 'Changzhi', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12308', 'Datong', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12309', 'Houma', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12310', 'Jiexiu', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12311', 'Jincheng', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12312', 'Linfen', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12313', 'Taiyuan', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12314', 'Xian', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12315', 'Xinzhi', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12316', 'Xinzhou', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12317', 'Yangquan', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12318', 'Yuanping', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12319', 'Yuci', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12320', 'Yuncheng', '764', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12321', 'Anju', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12322', 'Baoning', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12323', 'Chengdu', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12324', 'Daan', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12325', 'Dawan', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12326', 'Daxian', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12327', 'Deyang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12328', 'Dujiangyan City', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12329', 'Guangkou', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12330', 'Guangyuan', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12331', 'Guihu', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12332', 'Heyang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12333', 'Huayang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12334', 'Jiancheng', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12335', 'Jiangyou', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12336', 'Jijiang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12337', 'Leshan', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12338', 'Linqiong', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12339', 'Luocheng', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12340', 'Luzhou', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12341', 'Mianyang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12342', 'Nanchong', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12343', 'Nanlong', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12344', 'Neijiang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12345', 'Panzhihua', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12346', 'Shifang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12347', 'Suining', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12348', 'Taihe', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12349', 'Tianpeng', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12350', 'Tongchuan', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12351', 'Xichang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12352', 'Xunchang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12353', 'Yaan', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12354', 'Yibin', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12355', 'Yongchang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12356', 'Zhonglong', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12357', 'Zigong', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12358', 'Ziyang', '765', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12359', 'Beichen', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12360', 'Gangdong', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12361', 'Hangu', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12362', 'Jinghai', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12363', 'Nankai', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12364', 'Tanggu', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12365', 'Tianjin', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12366', 'Xianshuigu', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12367', 'Yangcun', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12368', 'Yangliuqing', '766', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12369', 'Guiqing', '767', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12370', 'Jiulong', '767', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12371', 'Quanwan', '767', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12372', 'Saigong', '767', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12373', 'Shatin', '767', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12374', 'Taipo', '767', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12375', 'Tuanmun', '767', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12376', 'Xianggang', '767', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12377', 'Yuanlong', '767', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12378', 'Aksu', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12379', 'Baijiantan', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12380', 'Changji', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12381', 'Dongshan', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12382', 'Hami', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12383', 'Hetian', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12384', 'Karamay', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12385', 'Kashi', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12386', 'Korla', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12387', 'Kuche', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12388', 'Kuytun', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12389', 'Shache', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12390', 'Shihezi', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12391', 'Shuimogou', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12392', 'Toutunhe', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12393', 'Urumqi', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12394', 'Yining', '768', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12395', 'Lasa', '769', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12396', 'Dali', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12397', 'Gejiu', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12398', 'Haikou', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12399', 'Heilin', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12400', 'Jinma', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12401', 'Kaihua', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12402', 'Kaiyuan', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12403', 'Kunming', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12404', 'Lianran', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12405', 'Longquan', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12406', 'Lucheng', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12407', 'Mabai', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12408', 'Majie', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12409', 'Miyang', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12410', 'Qujing', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12411', 'Rongcheng', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12412', 'Simao', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12413', 'Wufeng', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12414', 'Yunjinghong', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12415', 'Yuxi Municipal', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12416', 'Zhaotong', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12417', 'Zhenhai', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12418', 'Zhongshu', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12419', 'Zhoucheng', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12420', 'Zhuocheng', '770', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12421', 'Aojiang', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12422', 'Choucheng', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12423', 'Cixi', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12424', 'Daqiao', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12425', 'Deqing', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12426', 'Dinghai', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12427', 'Dongyang', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12428', 'Fuyang', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12429', 'Haining', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12430', 'Haiyan', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12431', 'Hangzhou', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12432', 'Huangyan', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12433', 'Hushan', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12434', 'Huzhou', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12435', 'Jiaojiang', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12436', 'Jiaxing', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12437', 'Jinhua', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12438', 'Jinxiang', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12439', 'Kaihua', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12440', 'Kunyang', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12441', 'Lanxi', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12442', 'Linan City', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12443', 'Linhai', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12444', 'Linping', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12445', 'Lishui', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12446', 'Liushi', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12447', 'Ningbo', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12448', 'Ninghai', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12449', 'Pinghu', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12450', 'Quzhou', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12451', 'Ruian', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12452', 'Shangyu', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12453', 'Shaoxing', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12454', 'Shenjiamen', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12455', 'Taizhou City', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12456', 'Tonglu', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12457', 'Wenling', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12458', 'Wenzhou', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12459', 'Wuning', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12460', 'Wuyi', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12461', 'Xianju', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12462', 'Xiaoshan', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12463', 'Xiashi', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12464', 'Xushan', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12465', 'Yiwu', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12466', 'Yongkang', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12467', 'Yueqing', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12468', 'Yuhuan', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12469', 'Yuyao', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12470', 'Zhejiang', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12471', 'Zhenhai', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12472', 'Zhicheng', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12473', 'Zhuji', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12474', 'fenghua', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12475', 'jiashan', '771', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12531', 'Leticia', '775', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12532', 'Puerto Narino', '775', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12533', 'Abejorral', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12534', 'Abriaqui', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12535', 'Alejandria', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12536', 'Amaga', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12537', 'Amalfi', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12538', 'Andes', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12539', 'Angelopolis', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12540', 'Angostura', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12541', 'Anori', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12542', 'Antioquia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12543', 'Anza', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12544', 'Apartado', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12545', 'Arboletes', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12546', 'Argelia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12547', 'Armenia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12548', 'Barbosa', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12549', 'Bello', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12550', 'Belmira', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12551', 'Betania', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12552', 'Betulia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12553', 'Bolivar', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12554', 'Briceno', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12555', 'Buritica', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12556', 'Caceres', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12557', 'Caicedo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12558', 'Caldas', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12559', 'Campamento', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12560', 'Canasgordas', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12561', 'Caracoli', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12562', 'Caramanta', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12563', 'Carepa', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12564', 'Carmen de Viboral', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12565', 'Carolina', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12566', 'Caucasia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12567', 'Chigorodo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12568', 'Cisneros', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12569', 'Cocorna', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12570', 'Concepcion', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12571', 'Concordia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12572', 'Copacabana', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12573', 'Dabeiba', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12574', 'Don Matias', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12575', 'Ebejico', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12576', 'El Bagre', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12577', 'Entrerrios', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12578', 'Envigado', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12579', 'Fredonia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12580', 'Frontino', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12581', 'Giraldo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12582', 'Girardota', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12583', 'Gomez Plata', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12584', 'Granada', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12585', 'Guadalupe', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12586', 'Guarne', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12587', 'Guatape', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12588', 'Heliconia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12589', 'Hispania', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12590', 'Itagui', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12591', 'Ituango', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12592', 'Jardin', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12593', 'Jerico', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12594', 'La Ceja', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12595', 'La Estrella', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12596', 'La Pintada', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12597', 'La Union', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12598', 'Liborina', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12599', 'Maceo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12600', 'Marinilla', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12601', 'Medellin', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12602', 'Montebello', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12603', 'Murindo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12604', 'Mutata', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12605', 'Narino', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12606', 'Nechi', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12607', 'Necocli', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12608', 'Olaya', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12609', 'Penol', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12610', 'Peque', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12611', 'Pueblorrico', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12612', 'Puerto Berrio', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12613', 'Puerto Nare', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12614', 'Puerto Triunfo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12615', 'Remedios', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12616', 'Retiro', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12617', 'Rionegro', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12618', 'Sabanalarga', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12619', 'Sabaneta', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12620', 'Salgar', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12621', 'San Andres', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12622', 'San Carlos', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12623', 'San Francisco', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12624', 'San Jeronimo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12625', 'San Jose de la Montana', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12626', 'San Juan de Uraba', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12627', 'San Luis', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12628', 'San Pedro', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12629', 'San Pedro de Uraba', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12630', 'San Rafael', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12631', 'San Roque', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12632', 'San Vicente', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12633', 'Santa Barbara', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12634', 'Santa Rosa de Osos', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12635', 'Santo Domingo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12636', 'Santuario', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12637', 'Segovia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12638', 'Sonson', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12639', 'Sopetran', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12640', 'Tamesis', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12641', 'Taraza', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12642', 'Tarso', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12643', 'Titiribi', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12644', 'Toledo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12645', 'Turbo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12646', 'Uramita', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12647', 'Urrao', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12648', 'Valdivia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12649', 'Valparaiso', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12650', 'Vegachi', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12651', 'Venecia', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12652', 'Vigia del Fuerte', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12653', 'Yali', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12654', 'Yarumal', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12655', 'Yolombo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12656', 'Yondo', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12657', 'Zaragoza', '776', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12658', 'Arauca', '777', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12659', 'Arauquita', '777', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12660', 'Cravo Norte', '777', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12661', 'Fortul', '777', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12662', 'Puerto Rondon', '777', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12663', 'Saravena', '777', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12664', 'Tame', '777', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12665', 'Baranoa', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12666', 'Barranquilla', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12667', 'Campo de la Cruz', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12668', 'Candelaria', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12669', 'Galapa', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12670', 'Juan de Acosta', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12671', 'Luruaco', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12672', 'Malambo', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12673', 'Manati', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12674', 'Palmar de Varela', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12675', 'Piojo', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12676', 'Polo Nuevo', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12677', 'Ponedera', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12678', 'Puerto Colombia', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12679', 'Repelon', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12680', 'Sabanagrande', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12681', 'Sabanalarga', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12682', 'Santa Lucia', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12683', 'Santo Tomas', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12684', 'Soledad', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12685', 'Suan', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12686', 'Tubara', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12687', 'Usiacuri', '778', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12688', 'Bogota', '779', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12689', 'Achi', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12690', 'Altos del Rosario', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12691', 'Arenal', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12692', 'Arjona', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12693', 'Arroyohondo', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12694', 'Barranco de Loba', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12695', 'Calamar', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12696', 'Cantagallo', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12697', 'Cartagena', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12698', 'Cicuco', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12699', 'Clemencia', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12700', 'Cordoba', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12701', 'El Carmen de Bolivar', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12702', 'El Guamo', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12703', 'El Penon', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12704', 'Hatillo de Loba', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12705', 'Magangue', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12706', 'Mahates', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12707', 'Margarita', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12708', 'Maria la Baja', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12709', 'Mompos', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12710', 'Montecristo', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12711', 'Morales', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12712', 'Pinillos', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12713', 'Regidor', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12714', 'Rio Viejo', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12715', 'San Cristobal', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12716', 'San Estanislao', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12717', 'San Fernando', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12718', 'San Jacinto', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12719', 'San Jacinto del Cauca', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12720', 'San Juan Nepomuceno', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12721', 'San Martin de Loba', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12722', 'San Pablo', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12723', 'Santa Catalina', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12724', 'Santa Rosa', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12725', 'Santa Rosa del Sur', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12726', 'Simiti', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12727', 'Soplaviento', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12728', 'Talaigua Nuevo', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12729', 'Tiquisio', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12730', 'Turbaco', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12731', 'Turbana', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12732', 'Villanueva', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12733', 'Zambrano', '780', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12734', 'Almeida', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12735', 'Aquitania', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12736', 'Arcabuco', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12737', 'Belen', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12738', 'Berbeo', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12739', 'Beteitiva', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12740', 'Boavita', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12741', 'Boyaca', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12742', 'Briceno', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12743', 'Buenavista', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12744', 'Busbanza', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12745', 'Caldas', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12746', 'Campohermoso', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12747', 'Cerinza', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12748', 'Chinavita', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12749', 'Chiquinquira', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12750', 'Chiquiza', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12751', 'Chiscas', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12752', 'Chita', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12753', 'Chitaraque', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12754', 'Chivata', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12755', 'Chivor', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12756', 'Cienega', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12757', 'Combita', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12758', 'Coper', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12759', 'Corrales', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12760', 'Covarachia', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12761', 'Cubara', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12762', 'Cucaita', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12763', 'Cuitiva', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12764', 'Duitama', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12765', 'El Cocuy', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12766', 'El Espino', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12767', 'Firavitoba', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12768', 'Floresta', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12769', 'Gachantiva', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12770', 'Gameza', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12771', 'Garagoa', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12772', 'Guacamayas', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12773', 'Guateque', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12774', 'Guayata', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12775', 'Guican', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12776', 'Iza', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12777', 'Jenesano', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12778', 'Jerico', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12779', 'La Capilla', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12780', 'La Uvita', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12781', 'La Victoria', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12782', 'Labranzagrande', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12783', 'Leiva', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12784', 'Macanal', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12785', 'Maripi', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12786', 'Miraflores', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12787', 'Mongua', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12788', 'Mongui', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12789', 'Moniquira', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12790', 'Motavita', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12791', 'Muzo', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12792', 'Nobsa', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12793', 'Nuevo Colon', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12794', 'Oicata', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12795', 'Otanche', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12796', 'Pachavita', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12797', 'Paez', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12798', 'Paipa', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12799', 'Pajarito', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12800', 'Panqueba', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12801', 'Pauna', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12802', 'Paya', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12803', 'Paz del Rio', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12804', 'Pesca', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12805', 'Pisba', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12806', 'Puerto Boyaca', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12807', 'Quipama', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12808', 'Ramiriqui', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12809', 'Raquira', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12810', 'Rondon', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12811', 'Saboya', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12812', 'Sachica', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12813', 'Samaca', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12814', 'San Eduardo', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12815', 'San Jose de Pare', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12816', 'San Luis de Gaceno', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12817', 'San Mateo', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12818', 'San Miguel de Sema', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12819', 'San Pablo de Borbur', '781', '0.00', '1', '2021-04-06 06:43:43', '2021-04-06 06:43:43', NULL),
('12820', 'Santa Maria', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12821', 'Santa Rosa de Viterbo', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12822', 'Santa Sofia', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12823', 'Santana', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12824', 'Sativanorte', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12825', 'Sativasur', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12826', 'Siachoque', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12827', 'Soata', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12828', 'Socha', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12829', 'Socota', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12830', 'Sogamoso', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12831', 'Somondoco', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12832', 'Sora', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12833', 'Soraca', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12834', 'Sotaquira', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12835', 'Susacon', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12836', 'Sutamarchan', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12837', 'Sutatenza', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12838', 'Tasco', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12839', 'Tenza', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12840', 'Tibana', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12841', 'Tibasosa', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12842', 'Tinjaca', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12843', 'Tipacoque', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12844', 'Toca', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12845', 'Togui', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12846', 'Topaga', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12847', 'Tota', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12848', 'Tunja', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12849', 'Tunungua', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12850', 'Turmeque', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12851', 'Tuta', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12852', 'Tutasa', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12853', 'Umbita', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12854', 'Ventaquemada', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12855', 'Viracacha', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12856', 'Zetaquira', '781', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12857', 'Aguadas', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12858', 'Anserma', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12859', 'Aranzazu', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12860', 'Belalcazar', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12861', 'Chinchina', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12862', 'Filadelfia', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12863', 'La Dorada', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12864', 'La Merced', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12865', 'Manizales', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12866', 'Manzanares', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12867', 'Marmato', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12868', 'Marquetalia', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12869', 'Marulanda', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12870', 'Neira', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12871', 'Norcasia', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12872', 'Pacora', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12873', 'Palestina', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12874', 'Pensilvania', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12875', 'Riosucio', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12876', 'Risaralda', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12877', 'Salamina', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12878', 'Samana', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12879', 'San Jose', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12880', 'Supia', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12881', 'Victoria', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12882', 'Villamaria', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12883', 'Viterbo', '782', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12884', 'Albania', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12885', 'Belen Andaquies', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12886', 'Cartagena del Chaira', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12887', 'Curillo', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12888', 'El Doncello', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12889', 'El Paujil', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12890', 'Florencia', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12891', 'La Montanita', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12892', 'Milan', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12893', 'Morelia', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12894', 'Puerto Rico', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12895', 'San Jose de Fragua', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12896', 'San Vicente del Caguan', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12897', 'Solano', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12898', 'Solita', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12899', 'Valparaiso', '783', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12900', 'Aguazul', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12901', 'Chameza', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12902', 'Hato Corozal', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12903', 'La Salina', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12904', 'Mani', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12905', 'Monterrey', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12906', 'Nunchia', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12907', 'Orocue', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12908', 'Paz de Ariporo', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12909', 'Pore', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12910', 'Recetor', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12911', 'Sabanalarga', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12912', 'Sacama', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12913', 'San Luis de Palenque', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12914', 'Tamara', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12915', 'Tauramena', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12916', 'Trinidad', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12917', 'Villanueva', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12918', 'Yopal', '784', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12919', 'Almaguer', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12920', 'Argelia', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12921', 'Balboa', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12922', 'Bolivar', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12923', 'Buenos Aires', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12924', 'Cajibio', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12925', 'Caldono', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12926', 'Caloto', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12927', 'Corinto', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12928', 'El Bordo', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12929', 'El Tambo', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12930', 'Florencia', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12931', 'Guapi', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12932', 'Inza', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12933', 'Jambalo', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12934', 'La Sierra', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12935', 'La Vega', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12936', 'Lopez', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12937', 'Mercaderes', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12938', 'Miranda', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12939', 'Morales', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12940', 'Padilla', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12941', 'Paez', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12942', 'Piamonte', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12943', 'Piendamo', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12944', 'Popayan', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12945', 'Puerto Tejada', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12946', 'Purace', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12947', 'Rosas', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12948', 'San Sebastian', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12949', 'Santa Rosa', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12950', 'Santander de Quilichao', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12951', 'Silvia', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12952', 'Sotara', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12953', 'Suarez', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12954', 'Sucre', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12955', 'Timbio', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12956', 'Timbiqui', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12957', 'Toribio', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12958', 'Totoro', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12959', 'Villa Rica', '785', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12960', 'Aguachica', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12961', 'Agustin Codazzi', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12962', 'Astrea', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12963', 'Becerril', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12964', 'Bosconia', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12965', 'Chimichagua', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12966', 'Chiriguana', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12967', 'Curumani', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12968', 'El Copey', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12969', 'El Paso', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12970', 'Gamarra', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12971', 'Gonzalez', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12972', 'La Gloria', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12973', 'La Jagua Ibirico', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12974', 'Manaure', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12975', 'Pailitas', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12976', 'Pelaya', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12977', 'Pueblo Bello', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12978', 'Rio de Oro', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12979', 'Robles la Paz', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12980', 'San Alberto', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12981', 'San Diego', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12982', 'San Martin', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12983', 'Tamalameque', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12984', 'Valledupar', '786', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12985', 'Acandi', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12986', 'Alto Baudo', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12987', 'Atrato', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12988', 'Bagado', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12989', 'Bahia Solano', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12990', 'Bajo Baudo', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12991', 'Bojaya', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12992', 'Canton de San Pablo', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12993', 'Carmen del Darien', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12994', 'Certegui', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12995', 'Condoto', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12996', 'El Carmen', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12997', 'Istmina', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12998', 'Jurado', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('12999', 'Litoral del San Juan', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13000', 'Lloro', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13001', 'Medio Atrato', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13002', 'Medio Baudo', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13003', 'Medio San Juan', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13004', 'Novita', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13005', 'Nuqui', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13006', 'Quibdo', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13007', 'Rio Iro', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13008', 'Rio Quito', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13009', 'Riosucio', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13010', 'San Jose del Palmar', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13011', 'Sipi', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13012', 'Tado', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13013', 'Unguia', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13014', 'Union Panamericana', '787', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13015', 'Ayapel', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13016', 'Buenavista', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13017', 'Canalete', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13018', 'Cerete', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13019', 'Chima', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13020', 'Chinu', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13021', 'Cienaga de Oro', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13022', 'Cotorra', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13023', 'La Apartada', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13024', 'Lorica', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13025', 'Los Cordobas', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13026', 'Momil', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13027', 'Monitos', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13028', 'Montelibano', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13029', 'Monteria', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13030', 'Planeta Rica', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13031', 'Pueblo Nuevo', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13032', 'Puerto Escondido', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13033', 'Puerto Libertador', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13034', 'Purisima', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13035', 'Sahagun', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13036', 'San Andres Sotavento', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13037', 'San Antero', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13038', 'San Bernardo Viento', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13039', 'San Carlos', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13040', 'San Pelayo', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13041', 'Tierralta', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13042', 'Valencia', '788', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13043', 'Agua de Dios', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13044', 'Alban', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13045', 'Anapoima', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13046', 'Anolaima', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13047', 'Arbelaez', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13048', 'Beltran', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13049', 'Bituima', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13050', 'Bojaca', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13051', 'Cabrera', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13052', 'Cachipay', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13053', 'Cajica', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13054', 'Caparrapi', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13055', 'Caqueza', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13056', 'Carmen de Carupa', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13057', 'Chaguani', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13058', 'Chia', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13059', 'Chipaque', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13060', 'Choachi', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13061', 'Choconta', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13062', 'Cogua', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13063', 'Cota', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13064', 'Cucunuba', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13065', 'El Colegio', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13066', 'El Penon', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13067', 'El Rosal', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13068', 'Facatativa', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13069', 'Fomeque', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13070', 'Fosca', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13071', 'Funza', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13072', 'Fuquene', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13073', 'Fusagasuga', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13074', 'Gachala', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13075', 'Gachancipa', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13076', 'Gacheta', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13077', 'Gama', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13078', 'Girardot', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13079', 'Granada', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13080', 'Guacheta', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13081', 'Guaduas', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13082', 'Guasca', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13083', 'Guataqui', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13084', 'Guatavita', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13085', 'Guayabal de Siquima', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13086', 'Guayabetal', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13087', 'Gutierrez', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13088', 'Jerusalen', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13089', 'Junin', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13090', 'La Calera', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13091', 'La Mesa', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13092', 'La Palma', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13093', 'La Pena', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13094', 'La Vega', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13095', 'Lenguazaque', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13096', 'Macheta', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13097', 'Madrid', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13098', 'Manta', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13099', 'Medina', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13100', 'Mosquera', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13101', 'Narino', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13102', 'Nemocon', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13103', 'Nilo', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13104', 'Nimaima', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13105', 'Nocaima', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13106', 'Ospina Perez', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13107', 'Pacho', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13108', 'Paime', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13109', 'Pandi', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13110', 'Paratebueno', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13111', 'Pasca', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13112', 'Puerto Salgar', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13113', 'Puli', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13114', 'Quebradanegra', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13115', 'Quetame', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13116', 'Quipile', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13117', 'Rafael Reyes', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13118', 'Ricaurte', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13119', 'San Antonio del Tequendama', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13120', 'San Bernardo', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13121', 'San Cayetano', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13122', 'San Francisco', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13123', 'San Juan de Rioseco', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13124', 'Sasaima', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13125', 'Sesquile', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13126', 'Sibate', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13127', 'Silvania', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13128', 'Simijaca', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13129', 'Soacha', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13130', 'Sopo', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13131', 'Subachoque', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13132', 'Suesca', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13133', 'Supata', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13134', 'Susa', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13135', 'Sutatausa', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13136', 'Tabio', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13137', 'Tausa', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13138', 'Tena', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13139', 'Tenjo', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13140', 'Tibacuy', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13141', 'Tibirita', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13142', 'Tocaima', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13143', 'Tocancipa', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13144', 'Topaipi', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13145', 'Ubala', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13146', 'Ubaque', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13147', 'Ubate', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13148', 'Une', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13149', 'Utica', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13150', 'Vergara', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13151', 'Viani', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13152', 'Villagomez', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13153', 'Villapinzon', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13154', 'Villeta', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13155', 'Viota', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13156', 'Yacopi', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13157', 'Zipacon', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13158', 'Zipaquira', '789', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13159', 'Inirida', '790', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13160', 'Calamar', '791', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13161', 'El Retorno', '791', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13162', 'Miraflores', '791', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13163', 'San Jose del Guaviare', '791', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13164', 'Acevedo', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13165', 'Agrado', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13166', 'Aipe', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13167', 'Algeciras', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13168', 'Altamira', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13169', 'Baraya', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13170', 'Campoalegre', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13171', 'Colombia', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13172', 'Elias', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13173', 'Garzon', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13174', 'Gigante', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13175', 'Guadalupe', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13176', 'Hobo', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13177', 'Iquira', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13178', 'Isnos', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13179', 'La Argentina', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13180', 'La Plata', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13181', 'Nataga', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13182', 'Neiva', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13183', 'Oporapa', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13184', 'Paicol', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13185', 'Palermo', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13186', 'Palestina', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13187', 'Pital', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13188', 'Pitalito', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13189', 'Rivera', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13190', 'Saladoblanco', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13191', 'San Agustin', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13192', 'Santa Maria', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13193', 'Suaza', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13194', 'Tarqui', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13195', 'Tello', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13196', 'Teruel', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13197', 'Tesalia', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13198', 'Timana', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13199', 'Villavieja', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13200', 'Yaguara', '792', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13201', 'Algarrobo', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13202', 'Aracataca', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13203', 'Ariguani', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13204', 'Cerro San Antonio', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13205', 'Chivolo', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13206', 'Cienaga', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13207', 'Concordia', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13208', 'El Banco', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13209', 'El Pinon', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13210', 'El Reten', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13211', 'Fundacion', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13212', 'Guamal', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13213', 'Nueva Granada', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13214', 'Pedraza', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13215', 'Pijino del Carmen', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13216', 'Pivijay', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13217', 'Plato', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13218', 'Puebloviejo', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13219', 'Remolino', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13220', 'Sabanas de San Angel', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13221', 'Salamina', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13222', 'San Sebastian', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13223', 'San Zenon', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13224', 'Santa Ana', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13225', 'Santa Barbara de Pinto', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13226', 'Santa Marta', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13227', 'Sitionuevo', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13228', 'Tenerife', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13229', 'Zapayan', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13230', 'Zona Bananera', '794', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13231', 'Acacias', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13232', 'Barranca de Upia', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13233', 'Cabuyaro', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13234', 'Castilla la Nueva', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13235', 'Cubarral', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13236', 'Cumaral', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13237', 'El Calvario', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13238', 'El Castillo', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13239', 'El Dorado', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13240', 'Fuente de Oro', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13241', 'Granada', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13242', 'Guamal', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13243', 'La Macarena', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13244', 'La Uribe', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13245', 'Lejanias', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13246', 'Mapiripan', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13247', 'Mesetas', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13248', 'Puerto Concordia', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13249', 'Puerto Gaitan', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13250', 'Puerto Lleras', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13251', 'Puerto Lopez', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13252', 'Puerto Rico', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13253', 'Restrepo', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13254', 'San Carlos Guaroa', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13255', 'San Juan de Arama', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13256', 'San Juanito', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13257', 'San Martin', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13258', 'Villavicencio', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13259', 'Vista Hermosa', '795', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13260', 'Alban', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13261', 'Aldana', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13262', 'Ancuya', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13263', 'Arboleda', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13264', 'Barbacoas', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13265', 'Belen', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13266', 'Buesaco', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13267', 'Chachagui', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13268', 'Colon', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13269', 'Consaca', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13270', 'Contadero', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13271', 'Cordoba', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13272', 'Cuaspud', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13273', 'Cumbal', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13274', 'Cumbitara', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13275', 'El Charco', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13276', 'El Penol', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13277', 'El Rosario', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13278', 'El Tablon', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13279', 'El Tambo', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13280', 'Funes', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13281', 'Guachucal', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13282', 'Guaitarilla', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13283', 'Gualmatan', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13284', 'Iles', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13285', 'Imues', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13286', 'Ipiales', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13287', 'La Cruz', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13288', 'La Florida', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13289', 'La Llanada', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13290', 'La Tola', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13291', 'La Union', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13292', 'Leiva', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13293', 'Linares', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13294', 'Los Andes', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13295', 'Magui', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13296', 'Mallama', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13297', 'Mosquera', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13298', 'Narino', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13299', 'Olaya Herrera', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13300', 'Ospina', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13301', 'Pasto', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13302', 'Pizarro', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13303', 'Policarpa', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13304', 'Potosi', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13305', 'Providencia', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13306', 'Puerres', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13307', 'Pupiales', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13308', 'Ricaurte', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13309', 'Roberto Payan', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13310', 'Samaniego', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13311', 'San Bernardo', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13312', 'San Lorenzo', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13313', 'San Pablo', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13314', 'San Pedro de Cartago', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13315', 'Sandona', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13316', 'Santa Barbara', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13317', 'Santacruz', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13318', 'Sapuyes', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13319', 'Taminango', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13320', 'Tangua', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13321', 'Tumaco', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13322', 'Tuquerres', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13323', 'Yacuanquer', '796', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13324', 'Colon', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13325', 'Mocoa', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13326', 'Orito', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13327', 'Puerto Asis', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13328', 'Puerto Caycedo', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13329', 'Puerto Guzman', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13330', 'Puerto Leguizamo', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13331', 'San Francisco', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13332', 'San Miguel', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13333', 'Santiago', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13334', 'Sibundoy', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13335', 'Valle del Guamuez', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13336', 'Villagarzon', '798', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13337', 'Armenia', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13338', 'Buenavista', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13339', 'Calarca', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13340', 'Circasia', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13341', 'Cordoba', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13342', 'Filandia', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13343', 'Genova', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13344', 'La Tebaida', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13345', 'Montenegro', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13346', 'Pijao', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13347', 'Quimbaya', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13348', 'Salento', '799', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13349', 'Apia', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13350', 'Balboa', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13351', 'Belen de Umbria', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13352', 'Dos Quebradas', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13353', 'Guatica', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13354', 'La Celia', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13355', 'La Virginia', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13356', 'Marsella', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13357', 'Mistrato', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13358', 'Pereira', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13359', 'Pueblo Rico', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13360', 'Quinchia', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13361', 'Santa Rosa de Cabal', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13362', 'Santuario', '800', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13363', 'Aguada', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13364', 'Albania', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13365', 'Aratoca', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13366', 'Barbosa', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13367', 'Barichara', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13368', 'Barrancabermeja', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13369', 'Betulia', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13370', 'Bolivar', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13371', 'Bucaramanga', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13372', 'Cabrera', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13373', 'California', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13374', 'Capitanejo', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13375', 'Carcasi', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13376', 'Cepita', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13377', 'Cerrito', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13378', 'Charala', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13379', 'Charta', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13380', 'Chima', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13381', 'Chipata', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13382', 'Cimitarra', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13383', 'Concepcion', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13384', 'Confines', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13385', 'Contratacion', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13386', 'Coromoro', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13387', 'Curiti', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13388', 'El Carmen', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13389', 'El Guacamayo', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13390', 'El Penon', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13391', 'El Playon', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13392', 'Encino', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13393', 'Enciso', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13394', 'Florian', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13395', 'Floridablanca', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13396', 'Galan', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13397', 'Gambita', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13398', 'Giron', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13399', 'Guaca', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13400', 'Guadalupe', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13401', 'Guapota', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13402', 'Guavata', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13403', 'Guepsa', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13404', 'Hato', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13405', 'Jesus Maria', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13406', 'Jordan', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13407', 'La Belleza', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13408', 'La Paz', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13409', 'Landazuri', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13410', 'Lebrija', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13411', 'Los Santos', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13412', 'Macaravita', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13413', 'Malaga', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13414', 'Matanza', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13415', 'Mogotes', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13416', 'Molagavita', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13417', 'Ocamonte', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13418', 'Oiba', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13419', 'Onzaga', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13420', 'Palmar', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13421', 'Palmas del Socorro', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13422', 'Paramo', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13423', 'Piedecuesta', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13424', 'Pinchote', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13425', 'Puente Nacional', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13426', 'Puerto Parra', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13427', 'Puerto Wilches', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13428', 'Rionegro', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13429', 'Sabana de Torres', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13430', 'San Andres', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13431', 'San Benito', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13432', 'San Gil', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13433', 'San Joaquin', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13434', 'San Jose de Miranda', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13435', 'San Miguel', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13436', 'San Vicente de Chucuri', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13437', 'Santa Barbara', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13438', 'Santa Helena', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13439', 'Simacota', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13440', 'Socorro', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13441', 'Suaita', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13442', 'Sucre', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13443', 'Surata', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13444', 'Tona', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13445', 'Valle San Jose', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13446', 'Velez', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13447', 'Vetas', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13448', 'Villanueva', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13449', 'Zapatoca', '802', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13450', 'Buenavista', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13451', 'Caimito', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13452', 'Chalan', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13453', 'Coloso', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13454', 'Corozal', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13455', 'El Roble', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13456', 'Galeras', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13457', 'Guaranda', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13458', 'La Union', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13459', 'Los Palmitos', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13460', 'Majagual', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13461', 'Morroa', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13462', 'Ovejas', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13463', 'Palmito', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13464', 'Sampues', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13465', 'San Benito Abad', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13466', 'San Juan de Betulia', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13467', 'San Marcos', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13468', 'San Onofre', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13469', 'San Pedro', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13470', 'Since', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13471', 'Sincelejo', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13472', 'Sucre', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13473', 'Tolu', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13474', 'Toluviejo', '803', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13475', 'Alpujarra', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13476', 'Alvarado', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13477', 'Ambalema', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13478', 'Anzoategui', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13479', 'Ataco', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13480', 'Cajamarca', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13481', 'Carmen de Apicala', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13482', 'Casabianca', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13483', 'Chaparral', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13484', 'Coello', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13485', 'Coyaima', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13486', 'Cunday', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13487', 'Dolores', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13488', 'Espinal', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13489', 'Falan', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13490', 'Flandes', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13491', 'Fresno', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13492', 'Guamo', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13493', 'Guayabal', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13494', 'Herveo', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13495', 'Honda', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13496', 'Ibague', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13497', 'Icononzo', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13498', 'Lerida', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13499', 'Libano', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13500', 'Mariquita', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13501', 'Melgar', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13502', 'Murillo', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13503', 'Natagaima', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13504', 'Ortega', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13505', 'Palocabildo', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13506', 'Piedras', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13507', 'Planadas', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13508', 'Prado', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13509', 'Purificacion', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13510', 'Rioblanco', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13511', 'Roncesvalles', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13512', 'Rovira', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13513', 'Saldana', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13514', 'San Antonio', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13515', 'San Luis', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13516', 'Santa Isabel', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13517', 'Suarez', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13518', 'Valle de San Juan', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13519', 'Venadillo', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13520', 'Villahermosa', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13521', 'Villarrica', '804', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13522', 'Acaricuara', '806', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13523', 'Mitu', '806', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13524', 'Papunaua', '806', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13525', 'Taraira', '806', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13526', 'Villa Fatima', '806', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13527', 'Yavarate', '806', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13528', 'Cumaribo', '807', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13529', 'La Primavera', '807', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13530', 'Puerto Carreno', '807', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13531', 'Santa Rosalia', '807', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13532', 'Fomboni', '808', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13533', 'Mitsamiouli', '809', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13534', 'Moroni', '809', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13535', 'Domoni', '810', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13536', 'Mutsamudu', '810', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13537', 'Loudima', '811', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13538', 'Madingou', '811', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13539', 'Nkayi', '811', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13540', 'Brazzaville', '812', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13541', 'Ewo', '813', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13542', 'Kelle', '813', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13543', 'Makoua', '813', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13544', 'Mossaka', '813', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13545', 'Owando', '813', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13546', 'Loandjili', '814', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13547', 'Ngamaba-Mfilou', '814', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13548', 'Pointe Noire', '814', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13549', 'Sibiti', '815', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13550', 'Zanaga', '815', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13551', 'Dongou', '816', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13552', 'Epena', '816', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13553', 'Impfondo', '816', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13554', 'Kibangou', '817', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13555', 'Loubomo', '817', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13556', 'Matsanga', '817', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13557', 'Mossendjo', '817', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13558', 'Djambala', '818', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13559', 'Gamboma', '818', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13560', 'Boko', '819', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13561', 'Kinkala', '819', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13562', 'Mindouli', '819', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13563', 'Ikelemba', '820', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13564', 'Ouesso', '820', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13565', 'Sembe', '820', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13566', 'Souanke', '820', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13567', 'Bandundu', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13568', 'Bolobo', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13569', 'Bulungu', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13570', 'Gungu', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13571', 'Idiofa', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13572', 'Inongo', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13573', 'Kahemba', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13574', 'Kasongo-Lunda', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13575', 'Kenge', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13576', 'Kikwit', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13577', 'Kiri', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13578', 'Kutu', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13579', 'Lusanga', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13580', 'Mangai', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13581', 'Mushie', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13582', 'Nioki', '821', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13583', 'Boma', '822', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13584', 'Kasangulu', '822', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13585', 'Kimpese', '822', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13586', 'Madimba', '822', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13587', 'Matadi', '822', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13588', 'Mbanza-Ngungu', '822', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13589', 'Muanda', '822', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13590', 'Tshela', '822', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13591', 'Basankusu', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13592', 'Binga', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13593', 'Bodalangi', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13594', 'Boende', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13595', 'Bongandanga', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13596', 'Bosobolo', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13597', 'Bumba', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13598', 'Businga', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13599', 'Gbadolite', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13600', 'Gemena', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13601', 'Ikela', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13602', 'Libenge', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13603', 'Lisala', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13604', 'Makanza', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13605', 'Mbandaka', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13606', 'Mobayi-Mbongo', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13607', 'Yakoma', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13608', 'Yandongi', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13609', 'Yumbi', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13610', 'Zongo', '823', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13611', 'Aba', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13612', 'Aketi', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13613', 'Bafwasende', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13614', 'Banalia', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13615', 'Basoko', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13616', 'Bondo', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13617', 'Bunia', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13618', 'Buta', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13619', 'Djugu', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13620', 'Faradje', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13621', 'Gwane', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13622', 'Isiro', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13623', 'Itoko', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13624', 'Kisangani', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13625', 'Mambasa', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13626', 'Mongbwalu', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13627', 'Niangara', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13628', 'Poko', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13629', 'Simba', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13630', 'Titule', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13631', 'Ubundu', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13632', 'Wamba', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13633', 'Watsa', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13634', 'Yangambi', '824', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13635', 'Demba', '825', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13636', 'Dibaya', '825', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13637', 'Ilebo', '825', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13638', 'Kananga', '825', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13639', 'Kazumba', '825', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13640', 'Luebo', '825', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13641', 'Mweka', '825', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13642', 'Tshikapa', '825', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13643', 'Gandajika', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13644', 'Kabinda', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13645', 'Katako-Kombe', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13646', 'Kole', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13647', 'Lodja', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13648', 'Lubao', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13649', 'Lubefu', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13650', 'Lusambo', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13651', 'Mbuji-Mayi', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13652', 'Mwene-Ditu', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13653', 'Tshilenge', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13654', 'Tshofa', '826', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13655', 'Bukama', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13656', 'Dilolo', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13657', 'Kabalo', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13658', 'Kalemie', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13659', 'Kambove', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13660', 'Kamina', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13661', 'Kaniama', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13662', 'Kikondjo', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13663', 'Kipushi', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13664', 'Kolwezi', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13665', 'Kongolo', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13666', 'Le Marinel', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13667', 'Likasi', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13668', 'Lubudi', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13669', 'Lubumbashi', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13670', 'Malemba-Nkulu', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13671', 'Manono', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13672', 'Moba', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13673', 'Mulongo', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13674', 'Mwanza', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13675', 'Nyunzu', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13676', 'Sakania', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13677', 'Shinkolobwe', '827', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13678', 'Kinshasa', '828', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13679', 'Kalima', '829', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13680', 'Kasongo', '829', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13681', 'Kindu', '829', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13682', 'Beni', '830', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13683', 'Butembo', '830', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13684', 'Goma', '830', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13685', 'Bukavu', '831', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13686', 'Kabare', '831', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13687', 'Kama', '831', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13688', 'Kampene', '831', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13689', 'Kibombo', '831', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13690', 'Uvira', '831', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13691', 'Amuri', '832', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13692', 'Atiu', '833', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13693', 'Mangaia', '834', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13694', 'Tauhunu', '835', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13695', 'Mauke', '836', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13696', 'Mitiaro', '837', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13697', 'Nassau', '838', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13698', 'Roto', '839', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13699', 'Rakahanga', '840', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13700', 'Avarua', '841', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13701', 'Omoka', '842', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13702', 'Alajuela', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13703', 'Atenas', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13704', 'Bijagua', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13705', 'Buenos Aires', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13706', 'Carrillos', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13707', 'Desemparados', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13708', 'Dos Rios', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13709', 'Esquipulas', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13710', 'Florencia', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13711', 'Fortuna', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13712', 'Grecia', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13713', 'Guacimo', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13714', 'Laguna', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13715', 'Los Chiles', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13716', 'Mastate', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13717', 'Naranjo', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13718', 'Orotina', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13719', 'Palmares', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13720', 'Piedades Norte', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13721', 'Pital', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13722', 'Pocosol', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13723', 'Quesada', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13724', 'Rio Segundo', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13725', 'Sabanilla', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13726', 'San Antonio', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13727', 'San Jose', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13728', 'San Juan', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13729', 'San Mateo', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13730', 'San Pedro', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13731', 'San Rafael', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13732', 'San Ramon', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13733', 'San Roque', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13734', 'Santiago', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13735', 'Sarchi Norte', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13736', 'Sarchi Sur', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13737', 'Tigra', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13738', 'Turricares', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13739', 'Upala', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13740', 'Venado', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13741', 'Zarcero', '843', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13742', 'Aguacaliente', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13743', 'Capellades', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13744', 'Carmen', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13745', 'Cartago', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13746', 'Concepcion', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13747', 'Cot', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13748', 'Dulce Nombre', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13749', 'El Tejar', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13750', 'Guadalupe', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13751', 'Juan Vinas', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13752', 'La Suiza', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13753', 'Orosi', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13754', 'Pacayas', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13755', 'Paraiso', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13756', 'Pejibaye', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13757', 'San Diego', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13758', 'San Isidro', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13759', 'San Juan', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13760', 'San Nicolas', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13761', 'San Rafael', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13762', 'San Ramon', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13763', 'Tierra Blanca', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13764', 'Tobosi', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13765', 'Tres Rios', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13766', 'Tucurrique', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13767', 'Turrialba', '844', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13768', 'Bagaces', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13769', 'Belen', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13770', 'Canas', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13771', 'Filadeldia', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13772', 'Fortuna', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13773', 'Hojancha', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13774', 'Juntas', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13775', 'La Cruz', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13776', 'Liberia', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13777', 'Mogote', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13778', 'Nandayure', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13779', 'Nicoya', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13780', 'Samara', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13781', 'Santa Cruz', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13782', 'Sardinal', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13783', 'Tilaran', '845', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13784', 'Angeles', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13785', 'Asuncion', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13786', 'Barrantes', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13787', 'Barva', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13788', 'Heredia', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13789', 'Horquetas', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13790', 'Llorente', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13791', 'Mercedes', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13792', 'Puerto Viejo', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13793', 'Rivera', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13794', 'San Antonio', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13795', 'San Francisco', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13796', 'San Isidro', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13797', 'San Joaquin', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13798', 'San Jose', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13799', 'San Josecito', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13800', 'San Juan', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13801', 'San Miguel', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13802', 'San Pablo', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13803', 'San Pedro', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13804', 'San Rafael', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13805', 'San Roque', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13806', 'San Vicente', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13807', 'Santa Barbara', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13808', 'Santa Lucia', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13809', 'Santa Rosa', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13810', 'Santiago', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13811', 'Santo Domingo', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13812', 'Santo Tomas', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13813', 'Ulloa', '846', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13814', 'Batan', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13815', 'Cahuita', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13816', 'Cariari', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13817', 'Guacimo', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13818', 'Guapiles', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13819', 'Jimenez', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13820', 'Limon', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13821', 'Matina', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13822', 'Pocora', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13823', 'Rita', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13824', 'Roxana', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13825', 'Siquirres', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13826', 'Sixaola', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13827', 'Valle la Estrella', '847', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13828', 'Buenos Aires', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13829', 'Canoas', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13830', 'Chacarita', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13831', 'Corredor', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13832', 'Esparta', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13833', 'Espiritu Santo', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13834', 'Golfito', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13835', 'Guaycara', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13836', 'Jaco', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13837', 'La Cuesta', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13838', 'Macacona', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13839', 'Manzanillo', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13840', 'Miramar', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13841', 'Palmar', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13842', 'Paquera', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13843', 'Parrita', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13844', 'Puerto Cortes', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13845', 'Puerto Jimenez', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13846', 'Puntarenas', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13847', 'Quepos', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13848', 'San Vito', '848', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13849', 'Marcory', '850', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13850', 'Adzope', '851', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13851', 'Affery', '851', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13852', 'Agboville', '851', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13853', 'Akoupe', '851', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13854', 'Rubino', '851', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13855', 'Touba', '852', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13856', 'Bako', '853', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13857', 'Odienne', '853', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13858', 'Gagnoa', '855', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13859', 'Guiberoua', '855', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13860', 'Hire', '855', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13861', 'Ndouci', '855', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13862', 'Oume', '855', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13863', 'Ouragahio', '855', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13864', 'Daloa', '856', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13865', 'Issia', '856', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13866', 'Vavoua', '856', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13867', 'Ndiekro', '857', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13868', 'Tiebissou', '857', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13869', 'Toumodi', '857', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13870', 'Yamoussoukro', '857', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13871', 'Abidjan', '858', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13872', 'Alepe', '858', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13873', 'Anyama', '858', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13874', 'Bingerville', '858', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13875', 'Dabou', '858', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13876', 'Grand-Lahou', '858', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13877', 'Jacqueville', '858', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13878', 'Tiassale', '858', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13879', 'Bouafle', '859', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13880', 'Sinfra', '859', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13881', 'Zuenoula', '859', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13882', 'Duekoue', '860', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13883', 'Guiglo', '860', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13884', 'Toulepleu', '860', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13885', 'Abengourou', '861', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13886', 'Agnibilekrou', '861', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13887', 'Arrah', '862', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13888', 'Bocanda', '862', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13889', 'Bongouanou', '862', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13890', 'Daoukro', '862', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13891', 'Dimbokro', '862', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13892', 'M\'bahiakro', '862', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13893', 'Mbatto', '862', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13894', 'N\'zi-Comoe', '862', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13895', 'San-Pedro', '863', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13896', 'Sassandra', '863', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13897', 'Soubre', '863', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13898', 'Tabou', '863', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13899', 'Boundiali', '864', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13900', 'Dikodougou', '864', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13901', 'Ferkessedougou', '864', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13902', 'Korhogo', '864', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13903', 'Tingrela', '864', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13904', 'Divo', '865', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13905', 'Fresco', '865', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13906', 'Lakota', '865', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13907', 'Aboisso', '866', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13908', 'Adiake', '866', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13909', 'Ayame', '866', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13910', 'Bonoua', '866', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13911', 'Grand Bassam', '866', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13912', 'Kani', '868', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13913', 'Mankono', '868', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13914', 'Seguela', '868', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13915', 'Bondoukou', '869', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13916', 'Bouna', '869', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13917', 'Tanda', '869', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13918', 'Bjelovar', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13919', 'Brezovac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13920', 'Chazma', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13921', 'Daruvar', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13922', 'Daruvarski Brestovac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13923', 'Dezhanovac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13924', 'Dhulovac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13925', 'Gareshnica', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13926', 'Gareshnichki Brestovac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13927', 'Grubishno Polje', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13928', 'Gudovac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13929', 'Hercegovac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13930', 'Ivanska', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13931', 'Klokochevac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13932', 'Konchanica', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13933', 'Predavac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13934', 'Rovishce', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13935', 'Shandrovac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13936', 'Sirach', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13937', 'Trojstveni Markovac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13938', 'Velika Pisanica', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13939', 'Veliki Grdhevac', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13940', 'Veliki Zdenci', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13941', 'Veliko Trojstvo', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13942', 'Zhdralovi', '870', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13943', 'Blato', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13944', 'Cavtat', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13945', 'Chibacha', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13946', 'Chilipi', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13947', 'Dubrovnik', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13948', 'Komin', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13949', 'Korchula', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13950', 'Lumbarda', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13951', 'Metkovic', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13952', 'Mlini', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13953', 'Mokoshica', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13954', 'Nova Mokoshica', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13955', 'Opuzen', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13956', 'Orebic', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13957', 'Otrich-Seoci', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13958', 'Ploche', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13959', 'Smokvica', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13960', 'Stashevica', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13961', 'Vela Luka', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13962', 'Zaton', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13963', 'Zhrnovo', '871', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13964', 'Bale', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13965', 'Banjole', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13966', 'Brtonigla', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13967', 'Buje', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13968', 'Buzet', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13969', 'Fazhana', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13970', 'Funtana', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13971', 'Galizhana', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13972', 'Labin', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13973', 'Lizhnjan', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13974', 'Marchana', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13975', 'Medulin', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13976', 'Novigrad', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13977', 'Pazin', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13978', 'Porech', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13979', 'Premantura', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13980', 'Pula', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13981', 'Rabac', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13982', 'Rasha', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13983', 'Rovinj', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13984', 'Sveti Petar u Shumi', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13985', 'Tar', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13986', 'Umag', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13987', 'Vinezh', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13988', 'Vodnjan', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13989', 'Vrsar', '873', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13990', 'Cerovac Vukmansichki', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13991', 'Draganic', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13992', 'Duga Resa', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13993', 'Josipdol', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13994', 'Karlovac', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13995', 'Mrezhnichki Varosh', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13996', 'Ogulin', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13997', 'Oshtarije', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13998', 'Ozalj', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('13999', 'Plashki', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14000', 'Slunj', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14001', 'Vojnic', '874', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14002', 'Dhelekovec', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14003', 'Dhurdhevac', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14004', 'Drnje', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14005', 'Ferdinandovac', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14006', 'Glogovac', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14007', 'Gola', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14008', 'Hlebine', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14009', 'Kalinovac', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14010', 'Kloshtar Podravski', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14011', 'Koprivnica', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14012', 'Koprivnichki Bregi', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14013', 'Koprivnichki Ivanec', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14014', 'Krizhevci', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14015', 'Legrad', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14016', 'Molve', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14017', 'Novigrad Podravski', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14018', 'Novo Virje', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14019', 'Peteranec', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14020', 'Podravske Sesvete', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14021', 'Rasinja', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14022', 'Reka', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14023', 'Sigetec', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14024', 'Starigrad', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14025', 'Sveti Ivan Zhabno', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14026', 'Trema', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14027', 'Virje', '875', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14028', 'Andrashevec', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14029', 'Bedekovchina', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14030', 'Dhurmanec', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14031', 'Donja Pachetina', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14032', 'Donja Shemnica', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14033', 'Donja Stubica', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14034', 'Dubrovchan', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14035', 'Gornja Stubica', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14036', 'Hum na Sutli', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14037', 'Klanjec', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14038', 'Konjishchina', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14039', 'Krapina', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14040', 'Krapinske Toplice', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14041', 'Laz Bistrichki', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14042', 'Marija Bistrica', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14043', 'Mihovljan', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14044', 'Oroslavje', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14045', 'Podgorje Bistrichko', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14046', 'Poznanovec', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14047', 'Pregrada', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14048', 'Radoboj', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14049', 'Shkaricevo', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14050', 'Shpichkovina', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14051', 'Stubichke Toplice', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14052', 'Sveti Krizh Zachretje', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14053', 'Veliko Trgovishce', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14054', 'Zabok', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14055', 'Zlatar', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14056', 'Zlatar-Bistrica', '876', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14057', 'Brinje', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14058', 'Donji Lapac', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14059', 'Gospic', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14060', 'Korenica', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14061', 'Lichki Osik', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14062', 'Lichko Leshce', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14063', 'Novalja', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14064', 'Otochac', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14065', 'Perushic', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14066', 'Prozor', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14067', 'Senj', '877', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14068', 'Belica', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14069', 'Chakovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14070', 'Cirkovljan', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14071', 'Dekanovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14072', 'Domashinec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14073', 'Donja Dubrava', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14074', 'Donji Kraljevec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14075', 'Donji Vidovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14076', 'Drzhimurec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14077', 'Dunjkovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14078', 'Gardinovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14079', 'Gorichan', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14080', 'Gornji Hrashcan', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14081', 'Hodoshan', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14082', 'Ivanovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14083', 'Kotoriba', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14084', 'Kurshanec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14085', 'Lopatinec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14086', 'Machkovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14087', 'Mala Subotica', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14088', 'Mihovljan', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14089', 'Mursko Sredishce', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14090', 'Nedelishce', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14091', 'Novakovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14092', 'Novo Selo Rok', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14093', 'Orehovica', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14094', 'Palovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14095', 'Peklenica', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14096', 'Podturen', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14097', 'Prelog', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14098', 'Pribislavec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14099', 'Pushcine', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14100', 'Savska Ves', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14101', 'Selnica', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14102', 'Shenkovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14103', 'Strahoninec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14104', 'Sveta Marija', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14105', 'Trnovec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14106', 'Vratishinec', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14107', 'Zasadbreg', '878', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14108', 'Antunovac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14109', 'Batina', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14110', 'Beli Manastir', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14111', 'Belishce', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14112', 'Beljevina', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14113', 'Bijelo Brdo', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14114', 'Bilje', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14115', 'Bistrinci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14116', 'Bizovac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14117', 'Branjin Vrh', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14118', 'Brijeshce', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14119', 'Brijest', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14120', 'Ceminac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14121', 'Chepin', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14122', 'Crnkovci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14123', 'Dalj', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14124', 'Darda', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14125', 'Dhakovo', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14126', 'Dhurdhenovac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14127', 'Donja Motichina', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14128', 'Donji Miholac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14129', 'Erdut', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14130', 'Ernestinovo', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14131', 'Ferichanci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14132', 'Gashinci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14133', 'Gorjani', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14134', 'Grabovac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14135', 'Ivanovac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14136', 'Ivanovci Gorjanski', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14137', 'Jagodnjak', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14138', 'Jelisavac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14139', 'Josipovac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14140', 'Josipovac Punitovachki', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14141', 'Karanac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14142', 'Keshinci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14143', 'Knezhevi Vinogradi', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14144', 'Knezhevo', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14145', 'Koritna', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14146', 'Koshka', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14147', 'Kushevac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14148', 'Ladimirevci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14149', 'Laslovo', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14150', 'Lug', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14151', 'Marijanci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14152', 'Markovac Nashichki', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14153', 'Martin', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14154', 'Mece', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14155', 'Moslavina Podravska', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14156', 'Nashice', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14157', 'Osijek', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14158', 'Ovchara', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14159', 'Petlovac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14160', 'Petrijevci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14161', 'Pishkorevci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14162', 'Podgorach', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14163', 'Popvac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14164', 'Rakitovica', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14165', 'Sarvash', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14166', 'Satnica Dhakovachka', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14167', 'Selci Dhakovacki', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14168', 'Semeljci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14169', 'Shiroko Polje', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14170', 'Strizivojna', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14171', 'Sveti Dhuradh', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14172', 'Tenja', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14173', 'Valpovo', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14174', 'Velimirovac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14175', 'Viljevo', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14176', 'Vishkovci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14177', 'Vishnjevac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14178', 'Vladislavci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14179', 'Vuka', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14180', 'Vukojevci', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14181', 'Zmajevac', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14182', 'Zoljan', '880', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14183', 'Badljevina', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14184', 'Brodski Drenovac', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14185', 'Dervishaga', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14186', 'Gradac', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14187', 'Jakshic', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14188', 'Kaptol', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14189', 'Kutjevo', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14190', 'Lipik', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14191', 'Pakrac', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14192', 'Pleternica', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14193', 'Pozhega', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14194', 'Prekopkra', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14195', 'Trenkovo', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14196', 'Velika', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14197', 'Vetovo', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14198', 'Vidovci', '882', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14199', 'Bilice', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14200', 'Brodarica', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14201', 'Drnish', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14202', 'Dubrava kod Shibenika', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14203', 'Grebashtica', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14204', 'Jezera', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14205', 'Kistanje', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14206', 'Knin', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14207', 'Kovachic', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14208', 'Murter', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14209', 'Pirovac', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14210', 'Primoshten', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14211', 'Rogoznica', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14212', 'Shibenik', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14213', 'Skradin', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14214', 'Tisno', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14215', 'Tribunj', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14216', 'Vodice', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14217', 'Vrpolje', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14218', 'Zaton', '884', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14219', 'Brestacha', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14220', 'Brochice', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14221', 'Budashevo', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14222', 'Donja Grachenica', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14223', 'Dvor', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14224', 'Glina', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14225', 'Gornja Grachenica', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14226', 'Gornja Jelenska', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14227', 'Greda', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14228', 'Gvozd', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14229', 'Hrastelnica', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14230', 'Hrvatska Dubica', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14231', 'Hrvatska Kostajnica', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14232', 'Husain', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14233', 'Ilova', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14234', 'Kutina', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14235', 'Lekenik', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14236', 'Lipovljani', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14237', 'Moshchenica', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14238', 'Novska', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14239', 'Odra Sisachka', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14240', 'Osekovo', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14241', 'Peshcenica', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14242', 'Petrinja', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14243', 'Popovacha', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14244', 'Potok', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14245', 'Rajic', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14246', 'Repushnica', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14247', 'Sisak', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14248', 'Staro Prachno', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14249', 'Sunja', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14250', 'Topolovac', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14251', 'Voloder', '885', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14252', 'Bashka Voda', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14253', 'Bol', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14254', 'Brela', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14255', 'Brnaze', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14256', 'Cista Velika', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14257', 'Donji Prolozhac', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14258', 'Donji Vinjani', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14259', 'Duce', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14260', 'Dugi Rat', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14261', 'Dugopolje', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14262', 'Gala', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14263', 'Glavice', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14264', 'Glavina Donja', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14265', 'Gornji Vincjani', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14266', 'Gradac', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14267', 'Grubine', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14268', 'Hrvace', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14269', 'Hvar', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14270', 'Imotski', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14271', 'Jelsa', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14272', 'Jesenice', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14273', 'Kamen', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14274', 'Kashtel Gambelovac', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14275', 'Kashtel Gomilica', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14276', 'Kashtel Lukshic', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14277', 'Kashtel Novi', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14278', 'Kashtel Shtafilic', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14279', 'Kashtel Stari', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14280', 'Kashtel Sucurac', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14281', 'Katuni', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14282', 'Klis', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14283', 'Komizha', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14284', 'Koshute', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14285', 'Lovrec', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14286', 'Makarska', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14287', 'Marina', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14288', 'Mastrinka', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14289', 'Milna', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14290', 'Mravince', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14291', 'Neoric', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14292', 'Obrovac Sinjski', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14293', 'Okrug Gornji', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14294', 'Omish', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14295', 'Otok', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14296', 'Podgora', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14297', 'Podstrana', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14298', 'Poljica', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14299', 'Postira', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14300', 'Postranje', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14301', 'Potravlje', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14302', 'Primorski Dolac', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14303', 'Puchishca', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14304', 'Ruda', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14305', 'Runovic', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14306', 'Seget Donji', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14307', 'Seget Vranjica', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14308', 'Selca', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14309', 'Sinj', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14310', 'Slatine', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14311', 'Solin', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14312', 'Split', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14313', 'Srinjine', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14314', 'Stari Grad', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14315', 'Stobrech', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14316', 'Supetar', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14317', 'Trilj', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14318', 'Trogir', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14319', 'Tuchepi', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14320', 'Turjaci', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14321', 'Vinishce', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14322', 'Vis', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14323', 'Vranjic', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14324', 'Vrgorac', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14325', 'Vrlika', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14326', 'Zagvozd', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14327', 'Zhrnovnica', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14328', 'Zmijavci', '887', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14329', 'Bedenec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14330', 'Beletinec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14331', 'Beretinec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14332', 'Breznica', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14333', 'Chreshnjevo', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14334', 'Donja Voca', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14335', 'Donje Ladanje', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14336', 'Gornje Ladanje', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14337', 'Gornje Vratno', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14338', 'Gornji Kneginec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14339', 'Gornji Kucan', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14340', 'Hrashcica', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14341', 'Hrastovsko', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14342', 'Hrzhenica', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14343', 'Ivanec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14344', 'Jalkovec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14345', 'Jalzhabet', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14346', 'Jerovec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14347', 'Klenovnik', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14348', 'Kljuch', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14349', 'Kucan Marof', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14350', 'Lepoglava', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14351', 'Ljubeshcica', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14352', 'Ludbreg', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14353', 'Madzharevo', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14354', 'Mali Bukovec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14355', 'Nedeljanec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14356', 'Nova Ves Petrijanec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14357', 'Novi Marof', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14358', 'Petrijanec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14359', 'Podevchevo', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14360', 'Presechno', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14361', 'Remetinec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14362', 'Selnik', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14363', 'Shemovec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14364', 'Srachinec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14365', 'Sveti Petar', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14366', 'Svibovec Podravski', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14367', 'Trnovec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14368', 'Turchin', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14369', 'Tuzhno', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14370', 'Varazhdin', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14371', 'Varazhdin Breg', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14372', 'Varazhdinske Toplice', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14373', 'Vidovec', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14374', 'Vinica', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14375', 'Zavrshje Podbelsko', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14376', 'Zharovnica', '888', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14377', 'Borova', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14378', 'Busetina', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14379', 'Cabuna', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14380', 'Chachinci', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14381', 'Gradina', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14382', 'Korija', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14383', 'Mikleush', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14384', 'Milanovac', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14385', 'Nova Bukovica', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14386', 'Orahovica', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14387', 'Pitomacha', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14388', 'Podgorje', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14389', 'Rezovac', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14390', 'Shpishic Bukovica', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14391', 'Slatina', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14392', 'Suhopolje', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14393', 'Turanovac', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14394', 'Virovitica', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14395', 'Vocin', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14396', 'Zdenci', '889', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14397', 'Andrijashevci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14398', 'Antin', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14399', 'Babina Greda', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14400', 'Bapska', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14401', 'Bobota', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14402', 'Bogdanovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14403', 'Borovo', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14404', 'Boshnjaci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14405', 'Brshadin', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14406', 'Ceric', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14407', 'Cerna', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14408', 'Drenovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14409', 'Gradishte', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14410', 'Gunja', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14411', 'Ilacha', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14412', 'Ilok', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14413', 'Ivankovo', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14414', 'Jarmina', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14415', 'Komletinci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14416', 'Lipovac', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14417', 'Lovas', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14418', 'Markushica', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14419', 'Mirkovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14420', 'Negoslavci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14421', 'Nijemci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14422', 'Novi Jankovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14423', 'Nushtar', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14424', 'Otok', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14425', 'Petrovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14426', 'Posavski Podgajci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14427', 'Privlaka', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14428', 'Rachinovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14429', 'Rajevo Selo', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14430', 'Retkovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14431', 'Rokovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14432', 'Sharengrad', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14433', 'Shishkovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14434', 'Shtitar', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14435', 'Slakovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14436', 'Soljani', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14437', 'Sotin', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14438', 'Stari Jankovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14439', 'Stari Mikanovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14440', 'Tordinci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14441', 'Tovarnik', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14442', 'Trpinja', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14443', 'Vinkovci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14444', 'Vodhinci', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14445', 'Vrbanja', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14446', 'Vukovar', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14447', 'Zhupanja', '890', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14448', 'Benkovac', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14449', 'Bibinje', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14450', 'Biograd na Moru', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14451', 'Debeljak', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14452', 'Galovac', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14453', 'Gorica', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14454', 'Gornji Karin', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14455', 'Grachac', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14456', 'Jasenice', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14457', 'Kali', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14458', 'Krushevo', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14459', 'Nin', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14460', 'Obrovac', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14461', 'Pag', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14462', 'Pakoshtane', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14463', 'Polacha', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14464', 'Polichnik', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14465', 'Poljica', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14466', 'Posedarje', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14467', 'Preko', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14468', 'Pridraga', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14469', 'Privlaka', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14470', 'Razhanac', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14471', 'Shkabrnja', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14472', 'Slivnica', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14473', 'Starigrad', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14474', 'Sukoshan', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14475', 'Sveti Filip i Jakov', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14476', 'Turanj', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14477', 'Ugljan', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14478', 'Vir', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14479', 'Vrsi', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14480', 'Zadar', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14481', 'Zemunik Donji', '891', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14482', 'Bestovje', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14483', 'Bishkupec Zelinski', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14484', 'Brckovljani', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14485', 'Brdovec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14486', 'Bregana', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14487', 'Brezje', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14488', 'Bushevec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14489', 'Celine', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14490', 'Domaslovec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14491', 'Donja Bistra', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14492', 'Donja Kupchina', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14493', 'Donja Lomnica', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14494', 'Donja Zdenchina', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14495', 'Donji Desinec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14496', 'Donji Stupnik', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14497', 'Dubrava', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14498', 'Dugo Selo', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14499', 'Gornja Bistra', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14500', 'Gornji Laduch', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14501', 'Gornji Stupnik', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14502', 'Grachec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14503', 'Gradici', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14504', 'Ivan Bistranski', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14505', 'Ivanic-Grad', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14506', 'Jablanovec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14507', 'Jakovlje', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14508', 'Jastrebarsko', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14509', 'Kerestinec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14510', 'Klincha Sela', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14511', 'Kloshtar Ivanic', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14512', 'Kozinshchak', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14513', 'Krizh', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14514', 'Kuche', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14515', 'Kupinec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14516', 'Lonjica', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14517', 'Luka', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14518', 'Lukarishce', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14519', 'Lukavec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14520', 'Lupoglav', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14521', 'Michevec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14522', 'Mraclin', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14523', 'Novaki', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14524', 'Novo Chiche', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14525', 'Novoselec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14526', 'Oborovo Bistranski', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14527', 'Oreshje', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14528', 'Pojatno', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14529', 'Poljanica Bistranska', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14530', 'Prigorje Brdovechko', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14531', 'Rakitje', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14532', 'Rakov Potok', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14533', 'Rude', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14534', 'Samobor', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14535', 'Strmec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14536', 'Sveta Nedelja', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14537', 'Sveti Ivan Zelina', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14538', 'Turopolje', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14539', 'Velika Gorica', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14540', 'Velika Mlaka', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14541', 'Velika Ostrna', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14542', 'Vrbovec', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14543', 'Vukovina', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14544', 'Zapreshic', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14545', 'Zdenci Brdovechki', '892', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14546', 'Camaguey', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14547', 'Caney', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14548', 'Carlos Manuel de Cespedes', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14549', 'Esmeralda', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14550', 'Florida', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14551', 'Guaimaro', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14552', 'Minas', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14553', 'Nuevitas', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14554', 'Santa Cruz del Sur', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14555', 'Sibanicu', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14556', 'Vertientes', '893', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14557', 'Cienfuegos', '895', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14558', 'Cruces', '895', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14559', 'Cumanayagua', '895', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14560', 'Palmira', '895', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14561', 'Rodas', '895', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14562', 'Bayamo', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14563', 'Campechuela', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14564', 'Guisa', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14565', 'Jiguani', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14566', 'Manzanillo', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14567', 'Media Luna', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14568', 'Niquero', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14569', 'Pilon', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14570', 'Rio Cauto', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14571', 'Yara', '897', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14572', 'Baracoa', '898', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14573', 'Guantanamo', '898', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14574', 'Yateras', '898', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14575', 'Havana', '899', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14576', 'Antilla', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14577', 'Baguanos', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14578', 'Banes', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14579', 'Cacocum', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14580', 'Cauto Cristo', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14581', 'Cueto', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14582', 'Gibara', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14583', 'Holguin', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14584', 'Jobabo', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14585', 'Moa', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14586', 'Sagua de Tanamo', '900', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14587', 'Abreus', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14588', 'Agramonte', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14589', 'Aguacate', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14590', 'Aguada de Pasajeros', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14591', 'Alacranes', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14592', 'Bolondron', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14593', 'Calimete', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14594', 'Cardenas', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14595', 'Carlos Rojas', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14596', 'Colon', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14597', 'Corralillo', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14598', 'Jaguey Grande', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14599', 'Jovellanos', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14600', 'Juan Gualberto Gomez', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14601', 'Los Arabos', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14602', 'Manguito', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14603', 'Marti', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14604', 'Matanzas', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14605', 'Maximo Gomez', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14606', 'Pedro Betancourt', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14607', 'Perico', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14608', 'Union de Reyes', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14609', 'Varadero', '904', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14610', 'Limassol', '910', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14611', 'Paphos', '912', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14612', 'Frycovice', '915', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14613', 'Bechyne', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14614', 'Blatna', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14615', 'Cheske Budejovice', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14616', 'Chesky Krumlov', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14617', 'Dachice', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14618', 'Jindrichuv Hradec', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14619', 'Kaplice', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14620', 'Milevsko', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14621', 'Pisek', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14622', 'Prachatice', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14623', 'Protivin', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14624', 'Sezimovo Usti', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14625', 'Sobeslav', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14626', 'Strakonice', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14627', 'Tabor', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14628', 'Trebon', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14629', 'Tyn nad Vltavou', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14630', 'Veseli nad Luzhnici', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14631', 'Vimperk', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14632', 'Vodnany', '917', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14633', 'Adamov', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14634', 'Blansko', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14635', 'Boskovice', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14636', 'Breclav', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14637', 'Brno', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14638', 'Buchovice', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14639', 'Dubnany', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14640', 'Hodonin', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14641', 'Hrusky', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14642', 'Hustopeche', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14643', 'Ivanchice', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14644', 'Kurim', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14645', 'Kyjov', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14646', 'Letovice', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14647', 'Mikulov', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14648', 'Moravsky Krumlov', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14649', 'Namesht\' nad Oslavou', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14650', 'Rosice', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14651', 'Shlapanice', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14652', 'Slavkov u Brna', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14653', 'Tishnov', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14654', 'Vyshkov', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14655', 'Znojmo', '918', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14656', 'Ash', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14657', 'Bozicany', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14658', 'Cheb', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14659', 'Chodov', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14660', 'Frantishkovy Lazne', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14661', 'Horni Slavkov', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14662', 'Karlovy Vary', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14663', 'Kraslice', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14664', 'Kynshperk nad Ohri', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14665', 'Marianske Lazne', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14666', 'Nejdek', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14667', 'Ostrov', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14668', 'Sokolov', '919', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14669', 'Klecany', '920', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14670', 'Broumov', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14671', 'Cherveny Kostelec', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14672', 'Cheska Skalice', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14673', 'Chlumec nad Cidlinou', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14674', 'Dobrushka', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14675', 'Dvur Kralove', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14676', 'Habartov', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14677', 'Holice', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14678', 'Horice', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14679', 'Hostinne', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14680', 'Hradec Kralove', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14681', 'Hronov', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14682', 'Jaromer', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14683', 'Jichin', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14684', 'Kostelec nad Orlici', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14685', 'Nachod', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14686', 'Nova Paka', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14687', 'Nove Mesto nad Metuji', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14688', 'Novy Bydzhov', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14689', 'Rychnov nad Knezhnou', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14690', 'Trebechovice pod Orebem', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14691', 'Trutnov', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14692', 'Tynishte nad Orlici', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14693', 'Upice', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14694', 'Vrchlabi', '921', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14695', 'Ceska Lipa', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14696', 'Cheska Kamenice', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14697', 'Cheska Lipa', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14698', 'Chrastava', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14699', 'Doksy', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14700', 'Frydlant', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14701', 'Hradek', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14702', 'Jablonec', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14703', 'Jilemnice', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14704', 'Liberec', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14705', 'Lomnice nad Popelkou', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14706', 'Mimon', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14707', 'Novy Bor', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14708', 'Semily', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14709', 'Tanvald', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14710', 'Turnov', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14711', 'Zhelezny Brod', '922', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14712', 'Lipov', '923', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14713', 'Bilovec', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14714', 'Bohumin', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14715', 'Bruntal', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14716', 'Chesky Teshin', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14717', 'Frenshtat', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14718', 'Frydek-Mistek', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14719', 'Frydlant nad Ostravici', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14720', 'Fulnek', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14721', 'Havirov', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14722', 'Hluchin', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14723', 'Hradec nad Moravice', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14724', 'Jablunkov', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14725', 'Karvina', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14726', 'Koprivnice', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14727', 'Kravare', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14728', 'Krnov', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14729', 'Novy Jichin', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14730', 'Odry', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14731', 'Opava', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14732', 'Orlova', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14733', 'Ostrava', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14734', 'Petrvald', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14735', 'Pribor', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14736', 'Rychvald', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14737', 'Rymarov', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14738', 'Shenov', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14739', 'Studenka', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14740', 'Trinec', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14741', 'Vitkov', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14742', 'Vratimov', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14743', 'Vrbno pod Pradedem', '924', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14744', 'Hranice', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14745', 'Jesenik', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14746', 'Kojetin', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14747', 'Lipnik nad Becvou', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14748', 'Litovel', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14749', 'Mohelnice', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14750', 'Olomouc', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14751', 'Prerov', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14752', 'Prostejov', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14753', 'Shternberk', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14754', 'Shumperk', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14755', 'Unichov', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14756', 'Zabreh', '925', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14757', 'Hranice', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14758', 'Jesenik', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14759', 'Kojetin', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14760', 'Lipnik nad Becvou', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14761', 'Litovel', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14762', 'Mohelnice', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14763', 'Olomouc', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14764', 'Prerov', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14765', 'Prostejov', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14766', 'Shternberk', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14767', 'Shumperk', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14768', 'Unichov', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14769', 'Zabreh', '926', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14770', 'Cheska Trebova', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14771', 'Chocen', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14772', 'Chrudim', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14773', 'Chvaletice', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14774', 'Hermanuv Mestec', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14775', 'Hlinsko', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14776', 'Lanshkroun', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14777', 'Letohrad', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14778', 'Litomyshl', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14779', 'Moravska Trebova', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14780', 'Pardubice', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14781', 'Polichka', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14782', 'Policka', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14783', 'Prelouch', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14784', 'Skutech', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14785', 'Svitavy', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14786', 'Usti nad Orlici', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14787', 'Vysoke Myto', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14788', 'Zhamberk', '927', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14789', 'Dobrany', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14790', 'Domazhlice', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14791', 'Horazhd\'ovice', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14792', 'Horshovky Tyn', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14793', 'Kdyne', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14794', 'Klatovy', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14795', 'Nyrany', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14796', 'Nyrsko', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14797', 'Plana', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14798', 'Plzen', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14799', 'Preshtice', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14800', 'Radnice', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14801', 'Rokycany', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14802', 'Stribro', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14803', 'Sushice', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14804', 'Tachov', '928', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14805', 'Prague', '929', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14806', 'Praha', '929', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14807', 'Rajhrad', '930', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14808', 'Smirice', '931', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14809', 'Benatky nad Jizerou', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14810', 'Beneshov', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14811', 'Beroun', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14812', 'Brandys nad Labem-Stara Bolesl', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14813', 'Chaslav', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14814', 'Chavaletice', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14815', 'Chelakovice', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14816', 'Chesky Brod', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14817', 'Dobrish', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14818', 'Horovice', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14819', 'Kladno', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14820', 'Kolin', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14821', 'Kralupy nad Vltavou', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14822', 'Kutna Hora', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14823', 'Lysa nad Labem', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14824', 'Melnik', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14825', 'Mlada Boleslav', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14826', 'Mnichovo Hradishte', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14827', 'Neratovice', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14828', 'Nove Strasheci', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14829', 'Nymburk', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14830', 'Podebrady', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14831', 'Pribram', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14832', 'Rakovnik', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14833', 'Richany', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14834', 'Rousinov', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14835', 'Roztoky', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14836', 'Sedlcany', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14837', 'Slany', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14838', 'Stochov', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14839', 'Vlashim', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14840', 'Zruch nad Sazavou', '934', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14841', 'Unicov', '935', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14842', 'Bilina', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14843', 'Chomutov', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14844', 'Dechin', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14845', 'Dubi', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14846', 'Duchcov', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14847', 'Jilove', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14848', 'Jirkov', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14849', 'Kadan', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14850', 'Klasterec nad Ohri', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14851', 'Krupka', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14852', 'Litomerice', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14853', 'Litvinov', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14854', 'Louny', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14855', 'Lovosice', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14856', 'Mezibori', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14857', 'Most', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14858', 'Osek', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14859', 'Podborany', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14860', 'Roudnice', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14861', 'Rumburk', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14862', 'Shluknov', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14863', 'Shteti', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14864', 'Teplice', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14865', 'Usti', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14866', 'Varnsdorf', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14867', 'Zatec', '936', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14868', 'Valletta', '937', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14869', 'Velesin', '938', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14870', 'Bystrice nad Pernshtejnem', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14871', 'Chotebor', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14872', 'Havlichkuv Brod', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14873', 'Humpolec', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14874', 'Jihlava', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14875', 'Ledech', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14876', 'Moravske Budejovice', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14877', 'Nove Mesto na Morave', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14878', 'Okrisky', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14879', 'Pacov', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14880', 'Pelhrimov', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14881', 'Polna', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14882', 'Svetla nad Sazavou', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14883', 'Telch', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14884', 'Trebich', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14885', 'Tresht\'', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14886', 'Velke Mezirichi', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14887', 'Zhd\'ar', '939', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14888', 'Brumov', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14889', 'Bystrice pod Hostynem', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14890', 'Chropyne', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14891', 'Holeshov', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14892', 'Hulin', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14893', 'Kromerizh', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14894', 'Kunovice', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14895', 'Napajedla', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14896', 'Otrokovice', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14897', 'Rozhnov', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14898', 'Roznov pod Radhostem', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14899', 'Slavicin', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14900', 'Slusovice', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14901', 'Stare Mesto', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14902', 'Strazhnice', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14903', 'Uherske Hradishte', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14904', 'Uhersky Brod', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14905', 'Valashske Klobouky', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14906', 'Valashske Mezirichi', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14907', 'Veseli nad Moravou', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14908', 'Vsetin', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14909', 'Zborovice', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14910', 'Zlin', '940', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14911', 'Aarhus', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14912', 'Allingabro', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14913', 'Arhus', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14914', 'Assentoft', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14915', 'Auning', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14916', 'Beder', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14917', 'Brabrand', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14918', 'Ebeltoft', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14919', 'Framlev', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14920', 'Galten', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14921', 'Grenaa', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14922', 'Hadsten', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14923', 'Hammel', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14924', 'Hinnerup', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14925', 'Hjortshoj', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14926', 'Horning', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14927', 'Hornslet', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14928', 'Kolt', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14929', 'Langa', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14930', 'Logten', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14931', 'Lystrup', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14932', 'Malling', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14933', 'Mariager', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14934', 'Marslet', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14935', 'Odder', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14936', 'Randers', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14937', 'Risskov', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14938', 'Ronde', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14939', 'Ry', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14940', 'Ryomgard', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14941', 'Sabro', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14942', 'Silkeborg', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14943', 'Skanderborg', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14944', 'Skovby', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14945', 'Soften', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14946', 'Solbjerg', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14947', 'Spentrup', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14948', 'Stavtrup', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14949', 'Stilling', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14950', 'Svejbak', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14951', 'Tranbjerg', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14952', 'Trige', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14953', 'Virklund', '941', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14954', 'Aakirkeby', '942', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14955', 'Allinge-Sandvig', '942', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14956', 'Nexo', '942', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14957', 'Ronne', '942', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14958', 'Allerod', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14959', 'Birkerod', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14960', 'Blovstrod', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14961', 'Espergarde', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14962', 'Farum', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14963', 'Fredensborg', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14964', 'Frederikssund', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14965', 'Frederiksvark', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14966', 'Ganlose', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14967', 'Gilleleje', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14968', 'Grasted', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14969', 'Hellebak', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14970', 'Helsinge', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14971', 'Helsingor', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14972', 'Hillerod', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14973', 'Hornbak', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14974', 'Horsholm', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14975', 'Humlebak', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14976', 'Hundested', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14977', 'Jagerspris', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14978', 'Kvistgaard', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14979', 'Lillerod', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14980', 'Liseleje', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14981', 'Lynge', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14982', 'Niva', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14983', 'Nodebo', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14984', 'Olstykke', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14985', 'Skibby', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14986', 'Slangerup', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14987', 'Stavnsholt', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14988', 'Stenlose', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14989', 'Valby', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14990', 'Vekso', '943', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14991', 'Aarup', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14992', 'Arslev', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14993', 'Assens', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14994', 'Bellinge', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14995', 'Blommenslyst', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14996', 'Bogense', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14997', 'Brenderup', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14998', 'Broby', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('14999', 'Bullerup', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15000', 'Ejby', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15001', 'Faaborg', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15002', 'Glamsbjerg', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15003', 'Haarby', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15004', 'Hojby', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15005', 'Kerteminde', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15006', 'Langeskov', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15007', 'Marstal', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15008', 'Middelfart', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15009', 'Munkebo', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15010', 'Neder Holluf', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15011', 'Norre Aaby', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15012', 'Nyborg', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15013', 'Odense', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15014', 'Otterup', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15015', 'Ringe', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15016', 'Rudkobing', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15017', 'Sankt Klemens', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15018', 'Seden', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15019', 'Sonderso', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15020', 'Stige', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15021', 'Strib', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15022', 'Svendborg', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15023', 'Thuro', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15024', 'Tommerup', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15025', 'Ullerslev', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15026', 'Vindeby', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15027', 'Vissenbjerg', '944', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15028', 'Ballerup', '945', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15029', 'Brondby', '945', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15030', 'Stenlose', '945', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15031', 'Vallensbaek', '945', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15032', 'Dragor', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15033', 'Flong', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15034', 'Gentofte', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15035', 'Glostrup', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15036', 'Herlev', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15037', 'Hvidovre', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15038', 'Ishoj', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15039', 'Kastrup', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15040', 'Lyngby', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15041', 'Malov', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15042', 'Smorumnedre', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15043', 'Taastrup', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15044', 'Trorod', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15045', 'Vanlose', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15046', 'Varlose', '946', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15047', 'Aabybro', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15048', 'Aalborg', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15049', 'Aars', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15050', 'Arden', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15051', 'Bindslev', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15052', 'Bronderslev', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15053', 'Brovst', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15054', 'Dronninglund', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15055', 'Farso', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15056', 'Fjerritslev', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15057', 'Frederikshavn', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15058', 'Frejlev', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15059', 'Gistrup', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15060', 'Gorlose', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15061', 'Hadsund', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15062', 'Hals', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15063', 'Hirtshals', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15064', 'Hjallerup', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15065', 'Hjorring', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15066', 'Hobro', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15067', 'Kas', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15068', 'Klarup', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15069', 'Logstor', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15070', 'Nibe', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15071', 'Norresundby', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15072', 'NÃƒÂƒÃ‚Â¸rresundby', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15073', 'Pandrup', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15074', 'Saby', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15075', 'Sindal', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15076', 'Skagen', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15077', 'Skorping', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15078', 'Storvorde', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15079', 'Stovring', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15080', 'Strandby', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15081', 'Sulsted', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15082', 'Svenstrup', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15083', 'Tars', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15084', 'Tranekaer', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15085', 'Vadum', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15086', 'Vestbjerg', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15087', 'Vester Hassing', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15088', 'Vodskov', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15089', 'Vra', '949', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15090', 'Ansager', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15091', 'Billund', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15092', 'Bramming', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15093', 'Brorup', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15094', 'Esbjerg', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15095', 'Grindsted', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15096', 'Holsted', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15097', 'Nordby', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15098', 'Oksbol', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15099', 'Olgod', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15100', 'Ribe', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15101', 'Tjareborg', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15102', 'Varde', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15103', 'Vejen', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15104', 'Vorbasse', '950', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15105', 'Aulum', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15106', 'Bording', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15107', 'Brande', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15108', 'Gjellerup Kirkeby', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15109', 'Hammerum', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15110', 'Harboore', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15111', 'Herning', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15112', 'Holstebro', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15113', 'Hvide Sande', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15114', 'Ikast', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15115', 'Kibak', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15116', 'Lemvig', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15117', 'Lind', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15118', 'Ringkobing', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15119', 'Skaerbaek', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15120', 'Skjern', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15121', 'Snejbjerg', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15122', 'Struer', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15123', 'Sunds', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15124', 'Tarm', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15125', 'Thyboron', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15126', 'Ulfborg', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15127', 'Videbak', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15128', 'Vildbjerg', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15129', 'Vinderup', '951', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15130', 'Roervig', '952', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15131', 'Bjaverskov', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15132', 'Borup', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15133', 'Ejby', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15134', 'Greve Strand', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15135', 'Gundsomagle', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15136', 'Harlev', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15137', 'Havdrup', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15138', 'Hvalso', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15139', 'Jyllinge', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15140', 'Koge', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15141', 'Lejre', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15142', 'Osted', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15143', 'Roskilde', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15144', 'Solrod', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15145', 'Stroby Egede', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15146', 'Svogerslev', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15147', 'Tune', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15148', 'Viby', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15149', 'Vindinge', '953', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15150', 'Glyngore', '954', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15151', 'Karise', '955', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15152', 'Naestved', '955', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15153', 'Soeborg', '956', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15154', 'Aabenraa', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15155', 'Aarsleve', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15156', 'Augustenborg', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15157', 'Broager', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15158', 'Christiansfeld', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15159', 'Dybbol', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15160', 'Gram', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15161', 'Grasten', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15162', 'Guderup', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15163', 'Haderslev', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15164', 'Horuphav', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15165', 'Krusa', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15166', 'Logumkloster', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15167', 'Lojt Kirkeby', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15168', 'Nordborg', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15169', 'Padborg', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15170', 'Rodding', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15171', 'Rodekro', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15172', 'Skarbak', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15173', 'Sonderborg', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15174', 'Starup', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15175', 'Tinglev', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15176', 'Toftlund', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15177', 'Tonder', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15178', 'Vojens', '957', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15179', 'Fakse', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15180', 'Fakse Ladeplads', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15181', 'Fensmark', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15182', 'Holeby', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15183', 'Maribo', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15184', 'Nakskov', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15185', 'Nastved', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15186', 'Neder Vindinge', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15187', 'Norre Alslev', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15188', 'Nykobing', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15189', 'Nyrad', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15190', 'Orslev', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15191', 'Prasto', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15192', 'Rodby', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15193', 'Rodbyhavn', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15194', 'Ronnede', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15195', 'Sakskobing', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15196', 'Stege', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15197', 'Store Heddinge', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15198', 'Stubbekobing', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15199', 'Sundby', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15200', 'Vordingborg', '958', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15201', 'Bylderup-Bov', '959', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15202', 'Fovling', '959', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15203', 'Toelloese', '960', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15204', 'Borkop', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15205', 'Bradstrup', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15206', 'Brejning', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15207', 'Egtved', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15208', 'Fredericia', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15209', 'Give', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15210', 'Hedensted', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15211', 'Horsens', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15212', 'Jelling', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15213', 'Juelsminde', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15214', 'Kolding', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15215', 'Lunderskov', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15216', 'Snoghoj', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15217', 'Sonder Bjert', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15218', 'Taulov', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15219', 'Torring', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15220', 'Vamdrup', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15221', 'Vejle', '961', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15222', 'Asnas', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15223', 'Dianalund', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15224', 'Forlev', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15225', 'Frederiksberg', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15226', 'Fuglebjerg', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15227', 'Gorlev', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15228', 'Haslev', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15229', 'Holbaek', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15230', 'Hong', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15231', 'Horve', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15232', 'Jyderup', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15233', 'Kalundborg', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15234', 'Korsor', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15235', 'Nykobing', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15236', 'Ringsted', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15237', 'Skalskor', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15238', 'Slagelse', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15239', 'Soro', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15240', 'Svebolle', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15241', 'Svinninge', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15242', 'Tollose', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15243', 'Vipperod', '962', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15244', 'Aalestrup', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15245', 'Bjerringbro', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15246', 'Hanstholm', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15247', 'Hojslev', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15248', 'Hurup', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15249', 'Karup', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15250', 'Kjellerup', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15251', 'Nykobing', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15252', 'Skive', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15253', 'Stoholm', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15254', 'Thisted', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15255', 'Ulstrup', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15256', 'Viborg', '963', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15257', 'Dikhil', '965', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15258', 'Jibuti', '966', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15259', 'Tajurah', '967', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15260', 'Ubuk', '968', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15261', 'Azua', '979', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15262', 'Sabana Yegua', '979', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15263', 'Neyba', '980', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15264', 'Tamayo', '980', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15265', 'Barahona', '981', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15266', 'Cabral', '981', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15267', 'El Penon', '981', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15268', 'Dajabon', '982', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15269', 'Las Guaranas', '984', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15270', 'Pimentel', '984', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15271', 'San Francisco de Macoris', '984', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15272', 'Moca', '987', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15273', 'Duverge', '989', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15274', 'Jimani', '989', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15275', 'Pedernales', '997', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15276', 'Bani', '998', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15277', 'Ocoa', '998', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15278', 'Salcedo', '1000', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15279', 'Samana', '1001', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15280', 'Sanchez', '1001', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15281', 'Santiago', '1006', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15282', 'Tamboril', '1006', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15283', 'Villa Bisono', '1006', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15284', 'Santiago', '1007', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15285', 'Tamboril', '1007', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15286', 'Villa Bisono', '1007', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15287', 'Esperanza', '1008', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15288', 'Mao', '1008', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15289', 'Aileu', '1009', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15290', 'Ainaro', '1010', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15291', 'Pante Macassar', '1011', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15292', 'Baucau', '1012', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15293', 'Auba', '1013', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15294', 'Lolotoi', '1013', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15295', 'Maliana', '1013', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15296', 'Dare', '1015', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15297', 'Dili', '1015', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15298', 'Metinaro', '1015', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15299', 'Ermera', '1016', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15300', 'Lautem', '1017', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15301', 'Los Palos', '1017', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15302', 'Bazartete', '1018', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15303', 'Liquica', '1018', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15304', 'Manatuto', '1019', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15305', 'Same', '1020', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15306', 'Viqueque', '1021', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15307', 'Cuenca', '1022', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15308', 'Gualaceo', '1022', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15309', 'Guaranda', '1023', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15310', 'San Miguel', '1023', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15311', 'Azogues', '1024', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15312', 'Canar', '1024', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15313', 'La Troncal', '1024', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15314', 'El Angel', '1025', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15315', 'San Gabriel', '1025', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15316', 'Tulcan', '1025', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15317', 'Alausi', '1026', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15318', 'Guano', '1026', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15319', 'Riobamba', '1026', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15320', 'La Mana', '1027', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15321', 'Latacunga', '1027', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15322', 'Pujili', '1027', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15323', 'San Miguel', '1027', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15324', 'Saquisili', '1027', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15325', 'Esmeraldas', '1029', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15326', 'Muisne', '1029', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15327', 'Rosa Zarate', '1029', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15328', 'San Lorenzo', '1029', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15329', 'Valdez', '1029', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15330', 'Puerto Ayora', '1030', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15331', 'Puerto Baquerizo Moreno', '1030', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15332', 'San Cristobal', '1030', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15333', 'Alfredo Baquerizo Moreno', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15334', 'Balao', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15335', 'Balzar', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15336', 'Colimes', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15337', 'Coronel Mariduena', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15338', 'Daule', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15339', 'El Salitre', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15340', 'El Triunfo', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15341', 'Eloy Alfaro', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15342', 'Guayaquil', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15343', 'La Libertad', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15344', 'Lomas de Sargentillo', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15345', 'Mapasingue', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15346', 'Milagro', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15347', 'Naranjal', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15348', 'Naranjito', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15349', 'Palestina', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15350', 'Pedro Carbo', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15351', 'Playas', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15352', 'Salinas', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15353', 'Samborondon', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15354', 'Santa Elena', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15355', 'Santa Lucia', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15356', 'Velasco Ibarra', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15357', 'Yaguachi', '1031', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15358', 'Atuntaqui', '1032', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15359', 'Cotacachi', '1032', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15360', 'Ibarra', '1032', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15361', 'Otavalo', '1032', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15362', 'Pimampiro', '1032', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15363', 'Alamor', '1033', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15364', 'Cariamanga', '1033', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15365', 'Catacocha', '1033', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15366', 'Catamayo', '1033', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15367', 'Celica', '1033', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15368', 'Loja', '1033', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15369', 'Macara', '1033', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15370', 'Bahia de Caraquez', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15371', 'Calceta', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15372', 'Chone', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15373', 'El Carmen', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15374', 'Jipijapa', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15375', 'Junin', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15376', 'Manta', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15377', 'Montecristi', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15378', 'Pajan', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15379', 'Pedernales', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15380', 'Portoviejo', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15381', 'Rocafuerte', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15382', 'Santa Ana', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15383', 'Sucre', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15384', 'Tosagua', '1035', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15385', 'Archidona', '1037', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15386', 'Tena', '1037', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15387', 'Orellana', '1038', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15388', 'Puyo', '1039', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15389', 'Cayambe', '1040', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15390', 'Machachi', '1040', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15391', 'Quito', '1040', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15392', 'Sangolqui', '1040', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15393', 'Santo Domingo', '1040', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15394', 'Nueva Loja', '1041', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15395', 'Shushufindi', '1041', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15396', 'Ambato', '1042', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15397', 'Banos', '1042', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15398', 'Pelileo', '1042', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15399', 'Pillaro', '1042', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15400', 'Aswan', '1044', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15401', 'Daraw', '1044', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15402', 'Kawm Umbu', '1044', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15403', 'an-Nasir', '1044', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15404', 'Abnub', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15405', 'Abu Tij', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15406', 'Asyut', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15407', 'Bani Muhammadiyat', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15408', 'Dayrut', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15409', 'Dayrut-ash-Sharif', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15410', 'Manfalut', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15411', 'Musha', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15412', 'Sahil Salim', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15413', 'Sanabu', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15414', 'Umm-al-Qusur', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15415', 'al-Badari', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15416', 'al-Qusiyah', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15417', 'an-Nukhaylah', '1045', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15418', '6th of October City', '1048', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15419', 'Ataba', '1048', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15420', 'Cairo', '1048', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15421', 'Nasr', '1048', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15422', 'Nasr City', '1048', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15423', 'Obour City', '1048', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15424', '\'Izbat-al-Burj', '1049', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15425', 'Damietta', '1049', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15426', 'Dumyat', '1049', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15427', 'El-Zarka', '1049', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15428', 'Faraskur', '1049', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15429', 'Kafr Sa\'d', '1049', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15430', 'Kafr-al-Battikh', '1049', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15431', 'az-Zarqa', '1049', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15432', 'Biyala', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15433', 'Disuq', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15434', 'Fuwah', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15435', 'Kafr-al-Jara\'idah', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15436', 'Kafr-ash-Shaykh', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15437', 'Mutubis', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15438', 'Qallin', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15439', 'Sidi Salim', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15440', 'al-Burj', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15441', 'al-Burullus', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15442', 'al-Haddadi', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15443', 'al-Hamul', '1050', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15444', 'Marsa Matruh', '1051', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15445', 'Nasr', '1051', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15446', 'Sidi Barrani', '1051', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15447', 'Zawiyat Shammas', '1051', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15448', 'ad-Da\'ba', '1051', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15449', 'Armant', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15450', 'Asfun-al-Mata\'inah', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15451', 'Dandarah', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15452', 'Dishna', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15453', 'Farshut', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15454', 'Hijazah', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15455', 'Hiw', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15456', 'Idfu', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15457', 'Isna', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15458', 'Kiman-al-Mata\'inah', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15459', 'Naj\' Hammadi', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15460', 'Naqadah', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15461', 'Qift', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15462', 'Qina', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15463', 'Qus', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15464', 'ad-Dabbiyah', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15465', 'ad-Dayr', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15466', 'al-Ballas', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15467', 'al-Karnak', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15468', 'al-Waqf', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15469', 'ar-Radisiyat-al-Bahriyah', '1057', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15470', 'Akhmim', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15471', 'Awlad Tawq Sharq', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15472', 'Dar-as-Salam', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15473', 'Jirja', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15474', 'Juhaynah', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15475', 'Sawhaj', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15476', 'Tahta', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15477', 'Tima', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15478', 'al-Balyana', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15479', 'al-Manshah', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15480', 'al-Maragah', '1058', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15481', 'Aja', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15482', 'Bahut', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15483', 'Bilqas', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15484', 'Dikirnis', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15485', 'Minyat-an-Nasr', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15486', 'Mit Gamr', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15487', 'Shirbin', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15488', 'Talkha', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15489', 'al-Jamaliyah', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15490', 'al-Ma\'sarah', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15491', 'al-Mansurah', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15492', 'al-Manzilah', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15493', 'al-Matariyah', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15494', 'as-Sinbillawayn', '1061', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15495', 'Ras Gharib', '1062', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15496', 'Safaja', '1062', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15497', 'al-Ghardaqah', '1062', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15498', 'al-Qusayr', '1062', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15499', 'Abu Hummus', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15500', 'Abu al-Matamir', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15501', 'Buturis', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15502', 'Damanhur', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15503', 'Edfina', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15504', 'Hawsh \'Isa', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15505', 'Idku', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15506', 'Ityay-al-Barud', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15507', 'Kafr Salim', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15508', 'Kafr-ad-Dawwar', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15509', 'Kawm Hamada', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15510', 'Nubaria', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15511', 'Rashid', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15512', 'Shubra Khit', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15513', 'Zawiyat Sidi Gazi', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15514', 'ad-Dilinjat', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15515', 'al-Kawm-al-Akhdar', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15516', 'al-Mahmudiyah', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15517', 'ar-Rahmaniyah', '1063', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15518', 'Fidimin', '1064', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15519', 'Ibshaway', '1064', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15520', 'Itsa', '1064', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15521', 'Qasr Qarun', '1064', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15522', 'Sanhur', '1064', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15523', 'Sinnuris', '1064', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15524', 'Tamiyah', '1064', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15525', 'al-Fayyum', '1064', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15526', 'Abyar', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15527', 'Basyun', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15528', 'Kafr-az-Zayyat', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15529', 'Mahallat Marhum', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15530', 'Nisf Thani Bashbish', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15531', 'Qutur', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15532', 'Samannud', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15533', 'Tanta', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15534', 'Zifta', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15535', 'ad-Daljamun', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15536', 'al-Mahallah al-Kubra', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15537', 'as-Santah', '1065', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15538', 'Agamy', '1066', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15539', 'al-Iskandariyah', '1066', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15540', 'al-Maks', '1066', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15541', 'Fa\'id', '1067', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15542', 'Sarabiyum', '1067', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15543', 'al-Ismailiyah', '1067', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15544', 'Atfih', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15545', 'Awsim', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15546', 'Giza', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15547', 'Madinat Sittah Uktubar', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15548', 'Nahya', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15549', 'Saqqarah', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15550', 'al-\'Ayyat', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15551', 'al-Badrashayn', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15552', 'al-Hawamidiyah', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15553', 'al-Jizah', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15554', 'al-Mansuriyah', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15555', 'al-Wahat-al-Bahriyah', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15556', 'as-Saff', '1068', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15557', 'Ashmun', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15558', 'Birkat-as-Sab\'', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15559', 'Milij', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15560', 'Minuf', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15561', 'Quwaysina', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15562', 'Shibin-al-Kawm', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15563', 'Sirs-al-Layyanah', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15564', 'Tala', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15565', 'al-Bajur', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15566', 'al-Batanun', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15567', 'ash-Shuhada', '1069', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15568', 'Abu Qurqas', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15569', 'Bani Mazar', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15570', 'Dayr Mawas', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15571', 'Magagah', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15572', 'Mallawi', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15573', 'Matay', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15574', 'Samalut', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15575', 'Tallah', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15576', 'Tandah', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15577', 'al-Anayim', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15578', 'al-Fikriyah', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15579', 'al-Minya', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15580', 'ar-Rawdah', '1070', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15581', 'Badr City', '1071', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15582', 'Heliopolis', '1071', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15583', 'al-Qahira', '1071', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15584', 'Abu Za\'bal', '1072', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15585', 'Banha', '1072', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15586', 'Qalyub', '1072', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15587', 'Shubra al-Khaymah', '1072', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15588', 'Sibin-al-Qanatir', '1072', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15589', 'Tukh', '1072', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15590', 'al-Khankah', '1072', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15591', 'al-Qanatir-al-Khayriyah', '1072', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15592', 'al-Uqsur', '1073', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15593', 'as-Suways', '1075', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15594', 'Abu Hammad', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15595', 'Abu Kabir', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15596', 'Bilbays', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15597', 'Diyarb Najm', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15598', 'Faqus', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15599', 'Hihya', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15600', 'Kafr Saqr', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15601', 'Mashtul-as-Suq', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15602', 'Minyat-al-Qamh', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15603', 'al-Ashir mir-Ramadan', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15604', 'al-Husayniyah', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15605', 'al-Ibrahimiyah', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15606', 'al-Qanayat', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15607', 'al-Qassasin', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15608', 'al-Qurayn', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15609', 'as-Salihiyah', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15610', 'at-Tall-al-Kabir', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15611', 'az-Zaqaziq', '1076', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15612', 'Ahuachapan', '1077', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15613', 'Atiquizaya', '1077', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15614', 'Concepcion de Ataco', '1077', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15615', 'Guaymango', '1077', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15616', 'Jujutla', '1077', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15617', 'San Francisco Menendez', '1077', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15618', 'Tacuba', '1077', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15619', 'Ilobasco', '1078', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15620', 'Sensuntepeque', '1078', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15621', 'Victoria', '1078', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15622', 'Chalatenango', '1079', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15623', 'La Palma', '1079', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15624', 'Nueva Concepcion', '1079', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15625', 'San Francisco Morazan', '1079', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15626', 'Cojutepeque', '1080', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15627', 'San Pedro Perulapan', '1080', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15628', 'Suchitoto', '1080', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15629', 'Tecoluca', '1080', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15630', 'Tenancingo', '1080', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15631', 'Cacaopera', '1084', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15632', 'Corinto', '1084', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15633', 'Gotera', '1084', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15634', 'Guatajiagua', '1084', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15635', 'Jocoro', '1084', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15636', 'Sociedad', '1084', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15637', 'Acajutla', '1089', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15638', 'Armenia', '1089', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15639', 'Izalco', '1089', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15640', 'Juayua', '1089', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15641', 'Nahuizalco', '1089', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15642', 'San Antonio del Monte', '1089', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15643', 'San Julian', '1089', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15644', 'Sonsonate', '1089', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15645', 'Sonzacate', '1089', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15646', 'Berlin', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15647', 'Concepcion Batres', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15648', 'Estanzuelas', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15649', 'Jiquilisco', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15650', 'Jucuapa', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15651', 'Jucuaran', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15652', 'Ozatlan', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15653', 'Puerto El Triunfo', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15654', 'San Agustin', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15655', 'Santa Elena', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15656', 'Santiago de Maria', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15657', 'Usulutan', '1090', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15658', 'Pale', '1091', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15659', 'Ebebiyin', '1095', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15660', 'Mikomeseng', '1095', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15661', 'Bata', '1096', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15662', 'Mbini', '1096', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15663', 'Aconibe', '1097', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15664', 'Anisoc', '1097', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15665', 'Mongomo', '1097', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15666', 'Nsok', '1097', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15667', 'Keren', '1098', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15668', 'Addi Kwala', '1099', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15669', 'Addi Ugri', '1099', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15670', 'Asseb', '1100', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15671', 'Beylul', '1100', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15672', 'Edd', '1100', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15673', 'Mersa Fatma', '1100', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15674', 'Ak\'ordat', '1101', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15675', 'Barentu', '1101', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15676', 'Teseney', '1101', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15677', 'Asmara', '1102', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15678', 'Ginda', '1102', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15679', 'Himbirti', '1102', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15680', 'Nefasit', '1102', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15681', 'Addi K\'eyih', '1103', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15682', 'Dek\'emhare', '1103', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15683', 'Mitsiwa', '1103', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15684', 'Sen\'afe', '1103', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15685', 'Aasmae', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15686', 'Aaviku', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15687', 'Aegviidu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15688', 'Aigrumae', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15689', 'Aila', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15690', 'Alavere', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15691', 'Alliku', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15692', 'Amari', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15693', 'Anija', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15694', 'Ardu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15695', 'Arukula', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15696', 'Aruvalla', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15697', 'Assaku', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15698', 'Ellamaa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15699', 'Haabneeme', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15700', 'Habaja', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15701', 'Haiba', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15702', 'Haljava', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15703', 'Hara', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15704', 'Harju-Risti', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15705', 'Harku', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15706', 'Harkujarve', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15707', 'Harma', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15708', 'Huuru', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15709', 'Ilmandu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15710', 'Iru', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15711', 'Jagala', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15712', 'Jalgimae', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15713', 'Jarsi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15714', 'Jarvekula', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15715', 'Jogisoo', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15716', 'Juri', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15717', 'Kaasiku', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15718', 'Kaberneeme', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15719', 'Kahala', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15720', 'Kalesi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15721', 'Kallavere', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15722', 'Karjakula', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15723', 'Karla', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15724', 'Kasepere', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15725', 'Kasispea', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15726', 'Kehra', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15727', 'Keila', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15728', 'Keila-Joa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15729', 'Kelvingi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15730', 'Kiia', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15731', 'Kiili', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15732', 'Kiisa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15733', 'Kiiu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15734', 'Klooga', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15735', 'Kloogaranna', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15736', 'Kohatu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15737', 'Kolga', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15738', 'Kolga-Aabla', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15739', 'Kolgakula', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15740', 'Konnu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15741', 'Kose', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15742', 'Kose-Uuemoisa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15743', 'Kostivere', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15744', 'Krei', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15745', 'Kuivajoe', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15746', 'Kumna', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15747', 'Kurtna', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15748', 'Kuusalu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15749', 'Laabi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15750', 'Laagri', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15751', 'Lagedi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15752', 'Laitse', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15753', 'Laulasmaa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15754', 'Lehetu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15755', 'Lehola', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15756', 'Lehtmetsa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15757', 'Leppneeme', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15758', 'Liikva', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15759', 'Lilli', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15760', 'Lohusalu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15761', 'Loksa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15762', 'Lokuti', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15763', 'Loo', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15764', 'Lubja', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15765', 'Luige', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15766', 'Maardu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15767', 'Maidla', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15768', 'Manniku', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15769', 'Metsakasti', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15770', 'Metsanurme', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15771', 'Miiduranna', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15772', 'Munalaskme', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15773', 'Muraste', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15774', 'Muuga', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15775', 'Nabala', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15776', 'Neeme', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15777', 'Ohtu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15778', 'Ojasoo', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15779', 'Oru', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15780', 'Padise', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15781', 'Pae', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15782', 'Paekna', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15783', 'Pajupea', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15784', 'Paldiski', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15785', 'Palvere', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15786', 'Parispea', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15787', 'Patika', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15788', 'Paunkula', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15789', 'Peetri', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15790', 'Peningi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15791', 'Perila', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15792', 'Pikva', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15793', 'Pillapalu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15794', 'Pringi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15795', 'Puunsi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15796', 'Raasiku', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15797', 'Rae', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15798', 'Randvere', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15799', 'Rannamoisa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15800', 'Ravila', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15801', 'Riisipere', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15802', 'Rohuneeme', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15803', 'Roobuka', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15804', 'Ruila', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15805', 'Rummu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15806', 'Saha', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15807', 'Saku', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15808', 'Saue', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15809', 'Saula', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15810', 'Saunja', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15811', 'Suurpea', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15812', 'Suurupi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15813', 'Tabasalu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15814', 'Tagadi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15815', 'Tagametsa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15816', 'Tallinn', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15817', 'Tammneeme', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15818', 'Tiskre', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15819', 'Todva', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15820', 'Turba', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15821', 'Turisalu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15822', 'Tutermaa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15823', 'Tuula', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15824', 'Tuulna', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15825', 'Uksnurme', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15826', 'Ulejoe', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15827', 'Uuri', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15828', 'Uuskula', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15829', 'Vaana', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15830', 'Vaana-Joesuu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15831', 'Vaida', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15832', 'Vaidasoo', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15833', 'Valingu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15834', 'Valkla', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15835', 'Vanamoisa', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15836', 'Vardja', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15837', 'Vasalemma', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15838', 'Vaskjala', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15839', 'Vatsla', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15840', 'Veskikula', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15841', 'Vihasoo', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15842', 'Viimsi', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15843', 'Viinistu', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15844', 'Viti', '1104', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15845', 'Emmaste', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15846', 'Jausa', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15847', 'Kaina', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15848', 'Kardla', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15849', 'Korgessaare', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15850', 'Lauka', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15851', 'Lope', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15852', 'Mannamaa', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15853', 'Putkaste', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15854', 'Suuremoisa', '1105', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15855', 'Aa', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15856', 'Alajoe', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15857', 'Aseri', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15858', 'Avinurme', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15859', 'Edise', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15860', 'Erra', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15861', 'Iisaku', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15862', 'Jarve', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15863', 'Johvi', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15864', 'Kahula', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15865', 'Kiikla', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15866', 'Kivioli', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15867', 'Kohtla-Jarve', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15868', 'Kohtla-Nomme', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15869', 'Konju', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15870', 'Kose', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15871', 'Kuremae', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15872', 'Kurtna', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15873', 'Lohusuu', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15874', 'Luganuse', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15875', 'Maetaguse', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15876', 'Maidla', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15877', 'Narva', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15878', 'Narva-Joesuu', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15879', 'Olgina', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15880', 'Pagari', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15881', 'Puhajoe', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15882', 'Purtse', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15883', 'Pussi', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15884', 'Rannu', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15885', 'Saka', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15886', 'Savala', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15887', 'Sillamae', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15888', 'Sinimae', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15889', 'Soldina', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15890', 'Sompa', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15891', 'Sonda', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15892', 'Tammiku', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15893', 'Toila', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15894', 'Tudulinna', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15895', 'Ulvi', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15896', 'Vaivara', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15897', 'Varja', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15898', 'Vasavere', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15899', 'Voka', '1106', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15900', 'Ahula', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15901', 'Aiamaa', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15902', 'Albu', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15903', 'Ambla', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15904', 'Anari', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15905', 'Anna', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15906', 'Aravete', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15907', 'Ervita', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15908', 'Imavere', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15909', 'Janeda', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15910', 'Jarva-Jaani', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15911', 'Jogisoo', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15912', 'Jootme', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15913', 'Kaalepi', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15914', 'Kabala', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15915', 'Kahala', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15916', 'Karavete', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15917', 'Karevere', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15918', 'Karinu', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15919', 'Kasukonna', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15920', 'Kirna', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15921', 'Koeru', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15922', 'Koigi', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15923', 'Kolu', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15924', 'Kuksema', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15925', 'Laupa', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15926', 'Lehtse', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15927', 'Lokuta', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15928', 'Loola', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15929', 'Muusleri', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15930', 'Oisu', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15931', 'Paide', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15932', 'Painurme', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15933', 'Peetri', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15934', 'Poikva', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15935', 'Reopalu', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15936', 'Retla', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15937', 'Roa', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15938', 'Roosna', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15939', 'Roosna-Alliku', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15940', 'Sarevere', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15941', 'Sargvere', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15942', 'Taikse', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15943', 'Tarbja', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15944', 'Turi', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15945', 'Turi-Alliku', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15946', 'Vaatsa', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15947', 'Vahukula', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15948', 'Vao', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15949', 'Viisu', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15950', 'Villevere', '1107', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15951', 'Adavere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15952', 'Esku', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15953', 'Harjanurme', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15954', 'Jogeva', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15955', 'Kaarepere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15956', 'Kalana', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15957', 'Kalme', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15958', 'Kamari', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15959', 'Karde', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15960', 'Kasepaa', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15961', 'Kassinurme', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15962', 'Konnu', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15963', 'Kudina', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15964', 'Kukita', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15965', 'Kuremaa', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15966', 'Kurista', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15967', 'Lahavere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15968', 'Laiuse', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15969', 'Laiusevalja', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15970', 'Leedi', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15971', 'Lustivere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15972', 'Luua', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15973', 'Maarja', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15974', 'Mallikvere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15975', 'Metsakula', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15976', 'Mohkula', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15977', 'Mustvee', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15978', 'Neanurme', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15979', 'Nova', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15980', 'Omedu', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15981', 'Ouna', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15982', 'Painkula', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15983', 'Pajusi', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15984', 'Pala', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15985', 'Palamuse', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15986', 'Pataste', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15987', 'Pauastvere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15988', 'Pikkjarve', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15989', 'Pikknurme', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15990', 'Pisisaare', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15991', 'Poltsamaa', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15992', 'Poora', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15993', 'Puurmani', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15994', 'Raabise', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15995', 'Raja', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15996', 'Saare', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15997', 'Sadala', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15998', 'Sadukula', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('15999', 'Siimusti', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16000', 'Tabivere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16001', 'Tahkvere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16002', 'Tiheda', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16003', 'Toikvere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16004', 'Torma', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16005', 'Umbusi', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16006', 'Vagari', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16007', 'Vaiatu', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16008', 'Vaike-Kamari', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16009', 'Vaimastvere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16010', 'Valgma', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16011', 'Visusti', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16012', 'Voduvere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16013', 'Vohmanomme', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16014', 'Voisiku', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16015', 'Voldi', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16016', 'Voore', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16017', 'Votikvere', '1108', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16018', 'Haapsalu', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16019', 'Hullo', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16020', 'Joodre', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16021', 'Kirbla', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16022', 'Kirimae', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16023', 'Koluvere', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16024', 'Komsi', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16025', 'Kullamaa', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16026', 'Lihula', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16027', 'Liivi', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16028', 'Linnamae', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16029', 'Martna', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16030', 'Nigula', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16031', 'Nova', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16032', 'Palivere', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16033', 'Palli', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16034', 'Panga', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16035', 'Paralepa', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16036', 'Piirsalu', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16037', 'Purksi', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16038', 'Rannakula', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16039', 'Risti', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16040', 'Roude', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16041', 'Sutlepa', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16042', 'Taebla', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16043', 'Tuudi', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16044', 'Uuemoisa', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16045', 'Variku', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16046', 'Vatla', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16047', 'Virtsu', '1109', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16048', 'Aaspere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16049', 'Ama', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16050', 'Arkna', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16051', 'Assamalla', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16052', 'Avanduse', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16053', 'Avispea', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16054', 'Ebavere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16055', 'Eipri', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16056', 'Essu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16057', 'Haljala', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16058', 'Hulja', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16059', 'Imastu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16060', 'Inju', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16061', 'Kadapiku', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16062', 'Kadila', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16063', 'Kadrina', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16064', 'Kakumae', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16065', 'Karitsa', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16066', 'Karu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16067', 'Kasmu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16068', 'Kihlevere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16069', 'Kiku', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16070', 'Kiltsi', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16071', 'Kohala', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16072', 'Kunda', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16073', 'Kuti', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16074', 'Laekvere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16075', 'Lasila', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16076', 'Lepna', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16077', 'Levala', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16078', 'Liigvalla', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16079', 'Modriku', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16080', 'Moe', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16081', 'Moora', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16082', 'Muuga', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16083', 'Napi', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16084', 'Paasvere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16085', 'Pajusti', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16086', 'Pandivere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16087', 'Piira', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16088', 'Pikevere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16089', 'Podrangu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16090', 'Podruse', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16091', 'Porkuni', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16092', 'Rahkla', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16093', 'Rakke', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16094', 'Rakvere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16095', 'Ridakula', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16096', 'Roela', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16097', 'Roodevalja', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16098', 'Saase', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16099', 'Salda', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16100', 'Salla', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16101', 'Simuna', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16102', 'Someru', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16103', 'Taaravainu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16104', 'Tamsalu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16105', 'Tapa', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16106', 'Torma', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16107', 'Torremae', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16108', 'Triigi', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16109', 'Tudu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16110', 'Ubja', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16111', 'Udriku', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16112', 'Uhtna', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16113', 'Ulvi', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16114', 'Undla', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16115', 'Ussimae', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16116', 'Uudekula', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16117', 'Vaekula', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16118', 'Vahakulmu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16119', 'Vaiatu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16120', 'Vaike-Maarja', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16121', 'Vajangu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16122', 'Vao', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16123', 'Veltsi', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16124', 'Venevere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16125', 'Vergi', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16126', 'Vetiku', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16127', 'Vihula', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16128', 'Viitna', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16129', 'Vinni', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16130', 'Viru-Jaagupi', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16131', 'Viru-Kabala', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16132', 'Viru-Nigula', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16133', 'Vohnja', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16134', 'Vosu', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16135', 'Vosupere', '1110', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16136', 'Ahaste', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16137', 'Aluste', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16138', 'Are', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16139', 'Arumetsa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16140', 'Audru', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16141', 'Eametsa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16142', 'Haademeeste', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16143', 'Halinga', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16144', 'Ikla', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16145', 'Ilvese', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16146', 'Jaamakula', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16147', 'Jaarja', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16148', 'Joesuu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16149', 'Joopre', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16150', 'Kaansoo', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16151', 'Kabli', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16152', 'Kadjaste', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16153', 'Kaisma', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16154', 'Kalita', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16155', 'Kanakula', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16156', 'Kergu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16157', 'Kihlepa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16158', 'Kilingi-Nomme', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16159', 'Kilksama', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16160', 'Koima', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16161', 'Koonga', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16162', 'Krundikula', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16163', 'Laadi', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16164', 'Langerma', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16165', 'Lavassaare', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16166', 'Leipste', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16167', 'Lemmetsa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16168', 'Lemsi', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16169', 'Libatse', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16170', 'Linakula', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16171', 'Lindi', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16172', 'Liu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16173', 'Lodja', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16174', 'Lope', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16175', 'Malda', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16176', 'Mannikuste', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16177', 'Massiaru', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16178', 'Metsaaare', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16179', 'Metsapoole', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16180', 'Moisakula', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16181', 'Muraka', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16182', 'Niidu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16183', 'Nurme', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16184', 'Oara', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16185', 'Oidrema', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16186', 'Paikuse', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16187', 'Papsaare', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16188', 'Parnjoe', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16189', 'Parnu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16190', 'Parnu-Jaagupi', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16191', 'Penu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16192', 'Piistaoja', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16193', 'Pohara', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16194', 'Poldeotsa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16195', 'Pootsi', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16196', 'Pulli', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16197', 'Rannametsa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16198', 'Ratsepa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16199', 'Reiu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16200', 'Ridalepa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16201', 'Rootsikula', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16202', 'Saarde', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16203', 'Saare', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16204', 'Sauga', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16205', 'Seliste', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16206', 'Selja', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16207', 'Seljametsa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16208', 'Silla', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16209', 'Sindi', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16210', 'Soeva', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16211', 'Soometsa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16212', 'Suigu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16213', 'Surju', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16214', 'Suurejoe', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16215', 'Taali', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16216', 'Tahkuranna', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16217', 'Tali', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16218', 'Tammiste', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16219', 'Tammuru', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16220', 'Tihemetsa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16221', 'Tolla', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16222', 'Tootsi', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16223', 'Tori', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16224', 'Tostamaa', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16225', 'Tousi', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16226', 'Treimani', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16227', 'Urge', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16228', 'Uulu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16229', 'Vahenurme', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16230', 'Vaki', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16231', 'Vandra', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16232', 'Varbla', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16233', 'Veelikse', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16234', 'Vihtra', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16235', 'Voidu', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16236', 'Voiste', '1111', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16237', 'Aarna', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16238', 'Ahja', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16239', 'Erastvere', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16240', 'Himma', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16241', 'Himmaste', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16242', 'Holvandi', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16243', 'Ihamaru', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16244', 'Jaanimoisa', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16245', 'Kanepi', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16246', 'Karilatsi', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16247', 'Karsa', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16248', 'Karste', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16249', 'Kauksi', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16250', 'Kiidjarve', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16251', 'Kostrimae', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16252', 'Krootuse', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16253', 'Leevaku', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16254', 'Leevi', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16255', 'Leevijoe', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16256', 'Linte', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16257', 'Lootvina', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16258', 'Maaritsa', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16259', 'Mammaste', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16260', 'Metste', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16261', 'Mikitamae', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16262', 'Mooste', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16263', 'Naha', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16264', 'Orava', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16265', 'Pahtpaa', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16266', 'Partsi', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16267', 'Peri', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16268', 'Piigandi', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16269', 'Polgaste', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16270', 'Polva', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16271', 'Prangli', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16272', 'Puuri', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16273', 'Raadama', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16274', 'Rahumae', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16275', 'Raigla', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16276', 'Rapina', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16277', 'Rasina', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16278', 'Ristipalo', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16279', 'Rosma', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16280', 'Ruusa', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16281', 'Saverna', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16282', 'Sillapaa', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16283', 'Soodoma', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16284', 'Suurkula', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16285', 'Taevaskoja', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16286', 'Tannassilma', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16287', 'Tilsi', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16288', 'Treski', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16289', 'Vaike-Rosna', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16290', 'Valgjarve', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16291', 'Vana-Koiola', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16292', 'Vardja', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16293', 'Varska', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16294', 'Vastse-Kuuste', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16295', 'Veriora', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16296', 'Viluste', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16297', 'Voopsu', '1112', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16298', 'Aespa', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16299', 'Alu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16300', 'Eidapere', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16301', 'Hageri', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16302', 'Hagudi', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16303', 'Haimre', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16304', 'Hertu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16305', 'Iira', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16306', 'Ingliste', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16307', 'Jarlepa', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16308', 'Jarvakandi', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16309', 'Juuru', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16310', 'Kaerepere', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16311', 'Kaiu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16312', 'Kalbu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16313', 'Karu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16314', 'Kasti', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16315', 'Keava', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16316', 'Kehtna', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16317', 'Kivi-Vigala', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16318', 'Kodila', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16319', 'Kohila', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16320', 'Kuimetsa', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16321', 'Kuusiku', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16322', 'Laukna', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16323', 'Lelle', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16324', 'Lipa', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16325', 'Lohu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16326', 'Lokuta', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16327', 'Maidla', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16328', 'Marjamaa', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16329', 'Masti', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16330', 'Moisamaa', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16331', 'Naravere', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16332', 'Orgita', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16333', 'Paardu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16334', 'Pae', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16335', 'Pahkla', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16336', 'Pihali', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16337', 'Pirgu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16338', 'Prillimae', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16339', 'Purila', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16340', 'Purku', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16341', 'Rabivere', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16342', 'Raikkula', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16343', 'Rangu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16344', 'Rapla', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16345', 'Salutaguse', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16346', 'Sipa', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16347', 'Sotke', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16348', 'Sutlema', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16349', 'Tamme', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16350', 'Teenuse', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16351', 'Uuskula', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16352', 'Vahastu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16353', 'Valgu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16354', 'Valtu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16355', 'Vana-Kaiu', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16356', 'Vana-Vigala', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16357', 'Varbola', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16358', 'Vilivere', '1113', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16359', 'Arandi', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16360', 'Aste', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16361', 'Eikla', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16362', 'Hellamaa', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16363', 'Kao', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16364', 'Karja', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16365', 'Karla', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16366', 'Kihelkonna', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16367', 'Koimla', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16368', 'Koljala', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16369', 'Korkkula', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16370', 'Korkvere', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16371', 'Kudjape', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16372', 'Kuressaare', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16373', 'Laatsa', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16374', 'Lahekula', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16375', 'Laimjala', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16376', 'Leisi', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16377', 'Liiva', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16378', 'Lumanda', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16379', 'Metskula', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16380', 'Mustjala', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16381', 'Nasva', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16382', 'Nommkula', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16383', 'Orissaare', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16384', 'Pahkla', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16385', 'Parsama', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16386', 'Pihtla', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16387', 'Sakla', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16388', 'Salme', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16389', 'Sandla', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16390', 'Tagavere', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16391', 'Tornimae', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16392', 'Valjala', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16393', 'Vohma', '1114', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16394', 'Aardla', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16395', 'Aksi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16396', 'Alasoo', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16397', 'Alatskivi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16398', 'Annikoru', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16399', 'Aravu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16400', 'Elva', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16401', 'Erala', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16402', 'Ervu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16403', 'Haage', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16404', 'Haaslava', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16405', 'Ignase', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16406', 'Illi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16407', 'Ilmatsalu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16408', 'Kaagvere', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16409', 'Kaardi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16410', 'Kaarlijarve', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16411', 'Kallaste', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16412', 'Kalme', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16413', 'Kambja', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16414', 'Kandikula', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16415', 'Karevere', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16416', 'Karkna', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16417', 'Kasepaa', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16418', 'Kavastu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16419', 'Kirepi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16420', 'Kodukula', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16421', 'Kokora', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16422', 'Kolkja', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16423', 'Konguta', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16424', 'Koosa', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16425', 'Koruste', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16426', 'Korvekula', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16427', 'Kulitse', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16428', 'Kurekula', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16429', 'Kurista', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16430', 'Laaniste', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16431', 'Laeva', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16432', 'Lahte', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16433', 'Lalli', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16434', 'Lapetukme', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16435', 'Lemmatsi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16436', 'Lohkva', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16437', 'Lossimae', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16438', 'Luke', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16439', 'Luunja', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16440', 'Maksa', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16441', 'Maramaa', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16442', 'Marja', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16443', 'Meeksi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16444', 'Meeri', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16445', 'Mehikoorma', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16446', 'Melliste', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16447', 'Metsakivi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16448', 'Metsalaane', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16449', 'Moisanurme', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16450', 'Nina', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16451', 'Nogiaru', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16452', 'Noo', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16453', 'Pilka', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16454', 'Poka', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16455', 'Pooritsa', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16456', 'Puhja', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16457', 'Rahinge', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16458', 'Raigaste', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16459', 'Ramsi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16460', 'Rani', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16461', 'Rannu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16462', 'Rebase', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16463', 'Reola', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16464', 'Rohu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16465', 'Roiu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16466', 'Rongu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16467', 'Saadjarve', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16468', 'Sinikula', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16469', 'Sirgu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16470', 'Soinaste', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16471', 'Sojamaa', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16472', 'Tahtvere', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16473', 'Tammiste', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16474', 'Tammistu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16475', 'Tartu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16476', 'Teedla', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16477', 'Tilga', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16478', 'Toravere', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16479', 'Torvandi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16480', 'Tuki', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16481', 'Uderna', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16482', 'Uhti', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16483', 'Ulenurme', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16484', 'Ulila', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16485', 'Unikula', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16486', 'Vahi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16487', 'Vaike-Rakke', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16488', 'Valguta', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16489', 'Vana-Kuuste', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16490', 'Vara', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16491', 'Varnja', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16492', 'Vasula', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16493', 'Vedu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16494', 'Vesneri', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16495', 'Vissi', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16496', 'Voibla', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16497', 'Voika', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16498', 'Vonnu', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16499', 'Voopste', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16500', 'Vorbuse', '1115', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16501', 'Aakre', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16502', 'Ala', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16503', 'Hargla', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16504', 'Hellenurme', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16505', 'Helme', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16506', 'Hummuli', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16507', 'Jeti', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16508', 'Jogeveste', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16509', 'Kaagjarve', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16510', 'Kalme', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16511', 'Karjatnurme', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16512', 'Karula', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16513', 'Keeni', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16514', 'Koikkula', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16515', 'Laanemetsa', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16516', 'Laatre', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16517', 'Laukula', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16518', 'Leebiku', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16519', 'Linna', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16520', 'Lossikula', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16521', 'Lullemae', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16522', 'Moldre', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16523', 'Nouni', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16524', 'Nupli', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16525', 'Oru', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16526', 'Oruste', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16527', 'Otepaa', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16528', 'Paidla', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16529', 'Paju', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16530', 'Palupera', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16531', 'Patkula', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16532', 'Piiri', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16533', 'Pikasilla', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16534', 'Pilkuse', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16535', 'Puhajarve', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16536', 'Puka', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16537', 'Restu', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16538', 'Riidaja', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16539', 'Sangaste', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16540', 'Sihva', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16541', 'Sooru', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16542', 'Taagepera', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16543', 'Tagula', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16544', 'Taheva', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16545', 'Tiidu', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16546', 'Tolliste', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16547', 'Torva', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16548', 'Tsirguliina', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16549', 'Valga', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16550', 'Vana-Otepaa', '1116', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16551', 'Abja-Paluoja', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16552', 'Abja-Vanamoisa', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16553', 'Aidu', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16554', 'Angi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16555', 'Anikatsi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16556', 'Arikula', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16557', 'Halliste', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16558', 'Heimtali', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16559', 'Holstre', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16560', 'Intsu', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16561', 'Jamejala', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16562', 'Jaska', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16563', 'Kaavere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16564', 'Kamara', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16565', 'Karksi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16566', 'Karksi-Nuia', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16567', 'Karstna', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16568', 'Karula', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16569', 'Kobruvere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16570', 'Koidama', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16571', 'Koksvere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16572', 'Kolga-Jaani', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16573', 'Koo', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16574', 'Kopu', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16575', 'Kulla', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16576', 'Lalsi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16577', 'Leie', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16578', 'Lilli', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16579', 'Lohavere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16580', 'Loodi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16581', 'Maeltkula', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16582', 'Matapera', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16583', 'Meleski', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16584', 'Metskula', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16585', 'Moisakula', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16586', 'Monnaste', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16587', 'Mustivere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16588', 'Mustla', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16589', 'Navesti', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16590', 'Odiste', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16591', 'Oisu', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16592', 'Olustvere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16593', 'Pahuvere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16594', 'Paistu', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16595', 'Parakula', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16596', 'Pari', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16597', 'Parsti', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16598', 'Peetrimoisa', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16599', 'Pilistvere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16600', 'Pinska', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16601', 'Polde', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16602', 'Polli', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16603', 'Puiatu', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16604', 'Ramsi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16605', 'Reegoldi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16606', 'Saarepeedi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16607', 'Savikoti', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16608', 'Sinialliku', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16609', 'Soe', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16610', 'Soomevere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16611', 'Sudiste', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16612', 'Suislepa', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16613', 'Sultsi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16614', 'Supsi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16615', 'Surgavere', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16616', 'Suure-Jaani', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16617', 'Taaksi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16618', 'Tanassilma', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16619', 'Tinnikuru', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16620', 'Tohvri', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16621', 'Tuhalaane', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16622', 'Tusti', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16623', 'Ulde', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16624', 'Ulensi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16625', 'Uusna', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16626', 'Valgita', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16627', 'Valma', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16628', 'Valuste', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16629', 'Vana-Kariste', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16630', 'Vana-Voidu', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16631', 'Vardi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16632', 'Vardja', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16633', 'Vastemoisa', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16634', 'Veelikse', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16635', 'Verilaske', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16636', 'Veskimae', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16637', 'Viiratsi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16638', 'Viljandi', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16639', 'Villa', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16640', 'Vohma', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16641', 'Voivaku', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16642', 'Vooru', '1117', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16643', 'Antsla', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16644', 'Haanja', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16645', 'Jarvere', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16646', 'Kaapa', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16647', 'Kirumpaa', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16648', 'Kobela', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16649', 'Kollino', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16650', 'Kose', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16651', 'Kraavi', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16652', 'Krabi', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16653', 'Kulaoru', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16654', 'Kuldre', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16655', 'Kuutsi', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16656', 'Lasva', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16657', 'Loosu', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16658', 'Lusti', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16659', 'Meegomae', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16660', 'Meremae', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16661', 'Misso', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16662', 'Moniste', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16663', 'Navi', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16664', 'Nursi', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16665', 'Obinitsa', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16666', 'Osula', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16667', 'Otsa', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16668', 'Parksepa', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16669', 'Puiga', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16670', 'Raiste', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16671', 'Rimmi', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16672', 'Rouge', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16673', 'Ruusmae', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16674', 'Saru', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16675', 'Somerpalu', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16676', 'Sulbi', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16677', 'Taberlaane', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16678', 'Tagakula', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16679', 'Tsolgo', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16680', 'Tsooru', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16681', 'Urvaste', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16682', 'Uue-Antsla', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16683', 'Vaabina', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16684', 'Vagula', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16685', 'Vaimela', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16686', 'Vana-Antsla', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16687', 'Vana-Roosa', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16688', 'Vana-Vastseliina', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16689', 'Varstu', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16690', 'Vastseliina', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16691', 'Verijarve', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16692', 'Viitina', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16693', 'Viitka', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16694', 'Visela', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16695', 'Voru', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16696', 'Vorumoisa', '1118', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16697', 'Asayita', '1120', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16698', 'Awash', '1120', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16699', 'Dubti', '1120', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16700', 'Gewane', '1120', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16701', 'Addi Ark\'ay', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16702', 'Addis \'Alem', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16703', 'Addis Zemen', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16704', 'Adet', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16705', 'Bahir Dar', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16706', 'Bati', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16707', 'Bichena', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16708', 'Bure', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16709', 'Chagni', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16710', 'Dabat', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16711', 'Dangla', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16712', 'Debark', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16713', 'Debre Birhan', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16714', 'Debre Mark\'os', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16715', 'Debre Sina', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16716', 'Debre Tabor', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16717', 'Debre Werk', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16718', 'Dejen', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16719', 'Dese', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16720', 'Finote Selam', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16721', 'Gondar', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16722', 'K\'obo', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16723', 'Kembolcha', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16724', 'Kemise', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16725', 'Lalibela', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16726', 'Mott\'a', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16727', 'Nefas Mewcha', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16728', 'Sek\'ot\'a', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16729', 'Shewa Robit', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16730', 'Weldiya', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16731', 'Were Ilu', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16732', 'Werota', '1121', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16733', 'Asosa', '1122', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16734', 'Dire Dawa', '1123', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16735', 'Gambela', '1124', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16736', 'Harer', '1125', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16737', 'Jigjiga', '1126', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16738', '\'Alem Maya', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16739', 'Abomsa', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16740', 'Agaro', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16741', 'Asasa', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16742', 'Asbe Teferi', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16743', 'Assela', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16744', 'Bako', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16745', 'Bedele', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16746', 'Bedesa', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16747', 'Burayu', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16748', 'Debre Zeyit', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16749', 'Deder', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16750', 'Dembi Dolo', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16751', 'Dodola', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16752', 'Fiche', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16753', 'Gebre Guracha', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16754', 'Gedo', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16755', 'Gelemso', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16756', 'Gimbi', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16757', 'Ginch\'i', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16758', 'Ginir', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16759', 'Giyon', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16760', 'Goba', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16761', 'Gore', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16762', 'Guder', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16763', 'Hagere Hiywet', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16764', 'Hagere Maryam', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16765', 'Hirna', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16766', 'Holeta Genet', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16767', 'Huruta', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16768', 'Jimma', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16769', 'Kibre Mengist', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16770', 'Kofele', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16771', 'Mega', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16772', 'Mek\'i', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16773', 'Mendi', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16774', 'Metehara', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16775', 'Metu', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16776', 'Mojo', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16777', 'Moyale', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16778', 'Nazret', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16779', 'Nedjo', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16780', 'Negele', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16781', 'Nek\'emte', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16782', 'Robe', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16783', 'Sebeta', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16784', 'Sendafa', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16785', 'Shakiso', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16786', 'Shambu', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16787', 'Shashemenne', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16788', 'Sheh Hussen', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16789', 'Sire', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16790', 'Tulu Bolo', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16791', 'Welench\'iti', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16792', 'Welk\'it\'e', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16793', 'Wonji', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16794', 'Yabelo', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16795', 'Ziway', '1128', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16796', 'Bircot', '1129', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16797', 'Degeh Bur', '1129', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16798', 'Dollo Odo', '1129', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16799', 'Imi', '1129', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16800', 'Jijiga', '1129', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16801', 'Werder', '1129', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16802', 'Alaba Kulito', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16803', 'Arba Minch', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16804', 'Areka', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16805', 'Awassa', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16806', 'Bako', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16807', 'Boditi', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16808', 'Bonga', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16809', 'Butajira', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16810', 'Ch\'ench\'a', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16811', 'Dilla', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16812', 'Gidole', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16813', 'Hossa\'ina', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16814', 'Jinka', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16815', 'Leku', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16816', 'Mizan Teferi', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16817', 'Sawla', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16818', 'Soddo', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16819', 'Teppi', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16820', 'Wendo', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16821', 'Yirga Alem', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16822', 'Yirga Ch\'efe', '1130', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16823', 'Abiy Adi', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16824', 'Addigrat', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16825', 'Adwa', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16826', 'Aksum', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16827', 'Alamat\'a', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16828', 'Endasilasie', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16829', 'Hagere Selam', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16830', 'Himora', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16831', 'Korem', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16832', 'Maych\'ew', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16833', 'Mek\'ele', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16834', 'Mekele', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16835', 'Wik\'ro', '1131', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16836', 'Hvannasund', '1137', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16837', 'Klaksvik', '1137', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16838', 'Husavik', '1140', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16839', 'Sands', '1140', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16840', 'Skalavik', '1140', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16841', 'Skopun', '1140', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16842', 'Skuvoy', '1140', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16843', 'Haldarsvik', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16844', 'Hests', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16845', 'Hosvik', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16846', 'Hvalvik', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16847', 'Kirkjubo', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16848', 'Kollafjar ', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16849', 'Kvivik', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16850', 'Nolsoy', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16851', 'Saksun', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16852', 'Torshavn', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16853', 'Vestmanna', '1141', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16854', 'Torshavn', '1144', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16855', 'Biggjar', '1145', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16856', 'Midvags', '1145', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16857', 'Mykines', '1145', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16858', 'Sandavags', '1145', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16859', 'Sorvags', '1145', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16860', 'Deuba', '1146', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16861', 'Korovou', '1146', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16862', 'Lami', '1146', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16863', 'Namosi', '1146', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16864', 'Nausori', '1146', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16865', 'Navua', '1146', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16866', 'Suva', '1146', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16867', 'Levuka', '1147', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16868', 'Malhaha', '1147', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16869', 'Tubou', '1147', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16870', 'Vunisea', '1147', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16871', 'Korokade', '1148', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16872', 'Labasa', '1148', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16873', 'Savusavu', '1148', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16874', 'Ba', '1150', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16875', 'Lautoka', '1150', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16876', 'Nadi', '1150', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16877', 'Rakiraki', '1150', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16878', 'Sigatoka', '1150', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16879', 'Tavua', '1150', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16880', 'Vatukoula', '1150', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16881', 'Maarianhamina', '1151', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16882', 'Imatra', '1152', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16883', 'Joutseno', '1152', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16884', 'Lappeenranta', '1152', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16885', 'Hyllykallio', '1153', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16886', 'Ilmajoki', '1153', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16887', 'Kauhajoki', '1153', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16888', 'Kurikka', '1153', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16889', 'Lapua', '1153', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16890', 'Seinajoki', '1153', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16891', 'Mikkeli', '1154', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16892', 'Savonlinna', '1154', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16893', 'Loviisa', '1157', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16894', 'Orimattila', '1157', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16895', 'Porvoo', '1157', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16896', 'Kajaani', '1158', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16897', 'Forssa', '1159', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16898', 'Hameenlinna', '1159', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16899', 'Janakkala', '1159', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16900', 'Riihimaki', '1159', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16901', 'Kokkola', '1160', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16902', 'Aanekoski', '1161', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16903', 'Jamsa', '1161', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16904', 'Jyvaskyla', '1161', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16905', 'Keuruu', '1161', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16906', 'Laukaa', '1161', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16907', 'Lieto', '1161', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16908', 'Anjalankoski', '1162', '0.00', '1', '2021-04-06 06:43:44', '2021-04-06 06:43:44', NULL),
('16909', 'Hamina', '1162', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16910', 'Kotka', '1162', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16911', 'Kouvola', '1162', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16912', 'Kuusankoski', '1162', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16913', 'Valkeala', '1162', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16914', 'Vehkalahti', '1162', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16915', 'Kemi', '1164', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16916', 'Kemijarvi', '1164', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16917', 'Rovaniemi', '1164', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16918', 'Sonka', '1164', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16919', 'Tornio', '1164', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16920', 'Jakobstad', '1166', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16921', 'Oulunsalo', '1166', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16922', 'Heinola', '1168', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16923', 'Hollola', '1168', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16924', 'Lahti', '1168', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16925', 'Nastola', '1168', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16926', 'Kangasala', '1169', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16927', 'Lempaala', '1169', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16928', 'Nokia', '1169', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16929', 'Pirkkala', '1169', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16930', 'Sastamala', '1169', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16931', 'Tampere', '1169', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16932', 'Valkeakoski', '1169', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16933', 'Ylojarvi', '1169', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16934', 'Kristiinankaupunki', '1170', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16935', 'Mustasaari', '1170', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16936', 'Pietarsaari', '1170', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16937', 'Uusikarlepyy', '1170', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16938', 'Vaasa', '1170', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16939', 'Joensuu', '1171', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16940', 'Lieksa', '1171', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16941', 'Haukipudas', '1172', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16942', 'Kempele', '1172', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16943', 'Kuusamo', '1172', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16944', 'Muhos', '1172', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16945', 'Nivala', '1172', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16946', 'Oulainen', '1172', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16947', 'Oulu', '1172', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16948', 'Raahe', '1172', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16949', 'Ylivieska', '1172', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16950', 'Iisalmi', '1173', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16951', 'Kuopio', '1173', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16952', 'Sillinjarvi', '1173', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16953', 'Varkaus', '1173', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16954', 'Saarijarvi', '1174', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16955', 'Eura', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16956', 'Eurajoki', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16957', 'Harjavalta', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16958', 'Huittinen', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16959', 'Kankaanpaa', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16960', 'Kokemaki', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16961', 'Lappi', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16962', 'Nakkila', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16963', 'Noormarkku', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16964', 'Pori', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16965', 'Rauma', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16966', 'Sakyla', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16967', 'Ulvila', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16968', 'Vammala', '1175', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16969', 'Espoo', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16970', 'Hanko', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16971', 'Helsinki', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16972', 'Hyvinkaa', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16973', 'Jarvenpaa', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16974', 'Kauniainen', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16975', 'Kerava', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16976', 'Kirkkonummi', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16977', 'Lohja', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16978', 'Mantsala', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16979', 'Nurmijarvi', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16980', 'Sipoo', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16981', 'Tammisaari', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16982', 'Tuusula', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16983', 'Vantaa', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16984', 'Vihti', '1179', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16985', 'Kaarina', '1180', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16986', 'Naantali', '1180', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16987', 'Parainen', '1180', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16988', 'Raisio', '1180', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16989', 'Salo', '1180', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16990', 'Turku', '1180', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16991', 'Uusikaupunki', '1180', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16992', 'Amberieu-en-Bugey', '1181', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16993', 'Bellegarde-sur-Valserine', '1181', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16994', 'Bourg-en-Bresse', '1181', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16995', 'Oyonnax', '1181', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16996', 'Chateau-Thierry', '1182', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16997', 'Chauny', '1182', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16998', 'Hirson', '1182', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('16999', 'Laon', '1182', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17000', 'Saint-Quentin', '1182', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17001', 'Soissons', '1182', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17002', 'Strassbourg', '1182', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17003', 'Tergnier', '1182', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17004', 'Cusset', '1184', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17005', 'Montlucon', '1184', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17006', 'Moulins', '1184', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17007', 'Vichy', '1184', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17008', 'Yzeure', '1184', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17009', 'Antibes', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17010', 'Beausoleil', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17011', 'Cagnes-sur-Mer', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17012', 'Cannes', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17013', 'Carros', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17014', 'Grasse', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17015', 'La Trinite', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17016', 'Le Cannet', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17017', 'Mandelieu-la-Napoule', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17018', 'Menton', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17019', 'Mougins', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17020', 'Nice', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17021', 'Roquebrune-Cap-Martin', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17022', 'Saint-Laurent-du-Var', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17023', 'Valbonne', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17024', 'Vallauris', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17025', 'Vence', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17026', 'Villeneuve-Loubet', '1186', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17027', 'Digne-les-Bains', '1187', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17028', 'Manosque', '1187', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17029', 'Adainville', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17030', 'Alby-sur-Cheran', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17031', 'Aubervilliers', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17032', 'Auterive', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17033', 'Baillet', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17034', 'Beaune', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17035', 'Beauzelle', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17036', 'Bonnet De Mure', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17037', 'Bormes-les-Mimosas', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17038', 'Brindas', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17039', 'Burlats', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17040', 'Buzancais', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17041', 'Candillargues', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17042', 'Carry-le-Rouet', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17043', 'Cassis', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17044', 'Cessenon-Sur-Orb', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17045', 'Chanac', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17046', 'Chevigny', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17047', 'Cogolin', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17048', 'Collioure', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17049', 'Cremieu', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17050', 'Drulingen', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17051', 'Ecouen', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17052', 'Eschau', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17053', 'Feignies', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17054', 'Ferus', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17055', 'Fourqueux', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17056', 'Franqueville', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17057', 'Gignac', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17058', 'Gravigny', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17059', 'Hangenbieten', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17060', 'Hunspach', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17061', 'Kilstett', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17062', 'La Chevroliere', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17063', 'La-Fare-Les-Oliviers', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17064', 'Lanvellec', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17065', 'Le Faget', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17066', 'Lesigny', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17067', 'Lesquin', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17068', 'Limonest', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17069', 'Messein', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17070', 'Morgat', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17071', 'Mundolsheim', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17072', 'Nantiat', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17073', 'Niederbronn-les-Bain', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17074', 'Nimes', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17075', 'Opoul', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17076', 'Pance', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17077', 'Peronne', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17078', 'Ploneour Lanvern', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17079', 'Realmont', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17080', 'Reichstett', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17081', 'Saint Aubin', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17082', 'Saint Christophe', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17083', 'Saint Martin dÃƒÂ¢Ã‚Â€Ã‚Â™Here', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17084', 'Saint-Berthevin', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17085', 'Saint-Cergues', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17086', 'Sancerre', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17087', 'Sarzeau', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17088', 'Seltz', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17089', 'Seyssins', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17090', 'Souffelweyersheim', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17091', 'Vireux-Molhain', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17092', 'Voves', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17093', 'Wambrechies', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17094', 'Wervocq Sud', '1188', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17095', 'Abzac', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17096', 'Bidart', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17097', 'Biganos', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17098', 'Buzet-sur-Baise', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17099', 'Coursac', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17100', 'Hasparren', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17101', 'Landiras', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17102', 'Le Haillan', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17103', 'Ledat', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17104', 'Martillac', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17105', 'Puyoo', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17106', 'Saint-Jean-dIllac', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17107', 'Seignosse', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17108', 'Tresses', '1189', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17109', 'Annonay', '1190', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17110', 'Aubenas', '1190', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17111', 'Guilherand-Granges', '1190', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17112', 'Privas', '1190', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17113', 'Tournon-sur-Rhone', '1190', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17114', 'Charleville-Mezieres', '1191', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17115', 'Les Hautes-Rivieres', '1191', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17116', 'Revin', '1191', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17117', 'Sedan', '1191', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17118', 'Foix', '1192', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17119', 'Pamier', '1192', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17120', 'Bar-sur-Seine', '1193', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17121', 'Romilly-sur-Seine', '1193', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17122', 'Saint-Andre-les-Vergers', '1193', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17123', 'Sainte-Savine', '1193', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17124', 'Troyes', '1193', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17125', 'Carcassonne', '1194', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17126', 'Castelnaudary', '1194', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17127', 'Limoux', '1194', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17128', 'Narbonne', '1194', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17129', 'Ambert', '1195', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17130', 'Creuzier-le-Vieux', '1195', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17131', 'Ferrieres', '1195', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17132', 'Peschadoires', '1195', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17133', 'Riotord', '1195', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17134', 'Saint-Pal-de-Chalencon', '1195', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17135', 'Saint-Romain-Lachalm', '1195', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17136', 'Saint-Vidal', '1195', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17137', 'Sainte-Sigolene', '1195', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17138', 'Millau', '1196', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17139', 'Onet-le-Chataeu', '1196', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17140', 'Rodez', '1196', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17141', 'Villefranche-de-Rouergue', '1196', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17142', 'Bischheim', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17143', 'Bischwiller', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17144', 'Haguenau', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17145', 'Hoenheim', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17146', 'Illkirch-Graffenstaden', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17147', 'Lingolsheim', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17148', 'Obernai', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17149', 'Ostwald', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17150', 'Saverne', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17151', 'Schiltigheim', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17152', 'Selestat', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17153', 'Strasbourg', '1197', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17154', 'Deauville', '1198', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17155', 'Aix-en-Provence', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17156', 'Allauch', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17157', 'Arles', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17158', 'Aubagne', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17159', 'Berre-l\'Etang', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17160', 'Bouc-Bel-Air', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17161', 'Chateauneuf-les-Martigues', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17162', 'Chateaurenard', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17163', 'Fos-sur-Mer', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17164', 'Gardanne', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17165', 'Istres', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17166', 'La Ciotat', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17167', 'Les Pennes-Mirabeau', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17168', 'Maillane', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17169', 'Marignane', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17170', 'Marseille', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17171', 'Martigues', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17172', 'Miramas', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17173', 'Plan-de-Cuques', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17174', 'Port-de-Bouc', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17175', 'Rognac', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17176', 'Saint-Martin-de-Crau', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17177', 'Saint-Remy-de-Provence', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17178', 'Salon-de-Provence', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17179', 'Septemes-les-Vallons', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17180', 'Tarascon', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17181', 'Vitrolles', '1199', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17182', 'Migennes', '1200', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17183', 'Javene', '1201', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17184', 'Plouha', '1201', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17185', 'Brehan', '1202', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17186', 'Broons', '1202', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17187', 'Guipry', '1202', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17188', 'Miniac-Morvan', '1202', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17189', 'Ploudaniel', '1202', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17190', 'Vern-sur-Seiche', '1202', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17191', 'Aillant-sur-Tholon', '1203', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17192', 'Bayeux', '1204', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17193', 'Caen', '1204', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17194', 'Herouville-Saint-Clair', '1204', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17195', 'Lisieux', '1204', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17196', 'Mondeville', '1204', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17197', 'Vire', '1204', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17198', 'Aurillac', '1205', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17199', 'Brumath', '1206', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17200', 'Courtaboeuf', '1206', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17201', 'Iregny', '1206', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17202', 'cedex', '1206', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17203', 'Azay-le-Rideau', '1207', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17204', 'Chevillon-sur-Huillard', '1207', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17205', 'Cloyes-sur-le-Loir', '1207', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17206', 'Gellainville', '1207', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17207', 'La Chaussse-Saint-Victor', '1207', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17208', 'La Ville-aux-Clercs', '1207', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17209', 'Ladon', '1207', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17210', 'Le Chatelet', '1207', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17211', 'Angouleme', '1208', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17212', 'Cognac', '1208', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17213', 'Lencloitre', '1208', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17214', 'Soyaux', '1208', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17215', 'La Rochelle', '1209', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17216', 'Rochefort', '1209', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17217', 'Royan', '1209', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17218', 'Saintes', '1209', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17219', 'Bourges', '1210', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17220', 'Saint-Amand-Montrond', '1210', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17221', 'Saint-Doulchard', '1210', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17222', 'Vierzon', '1210', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17223', 'Brive-la-Gaillarde', '1211', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17224', 'Tulle', '1211', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17225', 'Ussel', '1211', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17226', 'Ajaccio', '1212', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17227', 'Porto-Vecchio', '1212', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17228', 'Beaune', '1213', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17229', 'Chenove', '1213', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17230', 'Dijon', '1213', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17231', 'Quetigny', '1213', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17232', 'Talant', '1213', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17233', 'Dinan', '1214', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17234', 'Lamballe', '1214', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17235', 'Lannion', '1214', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17236', 'Loudeac', '1214', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17237', 'Plerin', '1214', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17238', 'Ploufragan', '1214', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17239', 'Saint-Brieuc', '1214', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17240', 'Gueret', '1215', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17241', 'Crolles', '1216', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17242', 'Bressuire', '1217', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17243', 'Niort', '1217', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17244', 'Parthenay', '1217', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17245', 'Thouars', '1217', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17246', 'Bergerac', '1218', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17247', 'Perigueux', '1218', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17248', 'Sarlat-la-Caneda', '1218', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17249', 'Audincourt', '1219', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17250', 'Besancon', '1219', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17251', 'Beure', '1219', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17252', 'Montbeliard', '1219', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17253', 'Pontarlier', '1219', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17254', 'Valentigney', '1219', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17255', 'Bourg-les-Valence', '1220', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17256', 'Montelimar', '1220', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17257', 'Pierrelatte', '1220', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17258', 'Romans-sur-Isere', '1220', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17259', 'Valence', '1220', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17260', 'Athis-Mons', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17261', 'Bretigny-sur-Orge', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17262', 'Brunoy', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17263', 'Bures-sur-Yvette', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17264', 'Chilly-Mazarin', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17265', 'Corbeil-Essonnes', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17266', 'Courcouronnes', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17267', 'Dourdan', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17268', 'Draveil', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17269', 'Epinay-sous-Senart', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17270', 'Epinay-sur-Orge', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17271', 'Etampes', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17272', 'Evry', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17273', 'Fleury-Merogis', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17274', 'Gif-sur-Yvette', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17275', 'Grigny', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17276', 'Igny', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17277', 'Juvisy-sur-Orge', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17278', 'Les Ulis', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17279', 'Longjumeau', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17280', 'Massy', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17281', 'Mennecy', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17282', 'Montgeron', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17283', 'Morangis', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17284', 'Morsang-sur-Orge', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17285', 'Orsay', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17286', 'Palaiseau', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17287', 'Ris-Orangis', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17288', 'Saint-Michel-sur-Orge', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17289', 'Sainte-Genevieve-des-Bois', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17290', 'Savigny-sur-Orge', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17291', 'Verrieres-le-Buisson', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17292', 'Vigneux-sur-Seine', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17293', 'Villebon-sur-Yvette', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17294', 'Viry-Chatillon', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17295', 'Yerres', '1221', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17296', 'Bernay', '1222', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17297', 'Evreux', '1222', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17298', 'Gisors', '1222', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17299', 'Louviers', '1222', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17300', 'Pont-Audemer', '1222', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17301', 'Val-de-Reuil', '1222', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17302', 'Vernon', '1222', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17303', 'Chartres', '1223', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17304', 'Chateaudun', '1223', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17305', 'Dreux', '1223', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17306', 'Luce', '1223', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17307', 'Mainvillier', '1223', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17308', 'Nogent-le-Rotrou', '1223', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17309', 'Vernouillet', '1223', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17310', 'Feucherolles', '1224', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17311', 'Brest', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17312', 'Concarneau', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17313', 'Douarnenez', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17314', 'Guipavas', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17315', 'Landerneau', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17316', 'Le Relecq-Kerhoun', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17317', 'Morlaix', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17318', 'Plougastel-Daoulas', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17319', 'Plouzane', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17320', 'Quimper', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17321', 'Quimperle', '1225', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17322', 'Charquemont', '1226', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17323', 'Chemaudin', '1226', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17324', 'Pelousey', '1226', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17325', 'Perrigny', '1226', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17326', 'Pirey', '1226', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17327', 'Villers-le-Lac', '1226', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17328', 'Ales', '1227', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17329', 'Bagnols-sur-Ceze', '1227', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17330', 'Beaucaire', '1227', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17331', 'Nimes', '1227', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17332', 'Pont-Saint-Esprit', '1227', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17333', 'Saint-Gilles', '1227', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17334', 'Vauvert', '1227', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17335', 'Villeneuve-les-Avignon', '1227', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17336', 'Auch', '1228', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17337', 'Beraut', '1228', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17338', 'Ambares-et-Lagrave', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17339', 'Arcachon', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17340', 'Begles', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17341', 'Blanquefort', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17342', 'Bordeaux', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17343', 'Bruges', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17344', 'Cenon', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17345', 'Cestas', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17346', 'Eysines', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17347', 'Floirac', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17348', 'Gradignan', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17349', 'Gujan-Mestras', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17350', 'La Teste-de-Buch', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17351', 'Le Bouscat', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17352', 'Libourne', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17353', 'Lormont', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17354', 'Merignac', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17355', 'Pessac', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17356', 'Saint-Medard-en-Jalles', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17357', 'Talence', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17358', 'Villenave-d\'Ornon', '1229', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17359', 'Cernay', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17360', 'Colmar', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17361', 'Guebwiller', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17362', 'Illzach', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17363', 'Kingersheim', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17364', 'Mulhouse', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17365', 'Riediesheim', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17366', 'Rixheim', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17367', 'Saint-Louis', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17368', 'Wittelsheim', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17369', 'Wittenheim', '1230', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17370', 'Bastia', '1231', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17371', 'Balma', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17372', 'Blagnac', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17373', 'Colomiers', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17374', 'Cugnaux', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17375', 'L\'Union', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17376', 'Muret', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17377', 'Plaisance-du-Touch', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17378', 'Ramonville-Saint-Agne', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17379', 'Saint-Gaudens', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17380', 'Saint-Orens-de-Gameville', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17381', 'Toulouse', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17382', 'Tournefeuille', '1232', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17383', 'Blanzac', '1233', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17384', 'Le Puy-en-Velay', '1233', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17385', 'Chaumont', '1234', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17386', 'Langres', '1234', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17387', 'Saint-Dizier', '1234', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17388', 'Hericourt', '1235', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17389', 'Lure', '1235', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17390', 'Luxeuil-les-Bains', '1235', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17391', 'Vesoul', '1235', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17392', 'Annecy', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17393', 'Annecy-le-Vieux', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17394', 'Annemasse', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17395', 'Archamps', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17396', 'Bonneville', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17397', 'Chamonix-Mont-Blanc', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17398', 'Cluses', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17399', 'Contamine sur Arve', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17400', 'Cran-Gevrier', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17401', 'Passy', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17402', 'Rumilly', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17403', 'Sallanches', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17404', 'Seynod', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17405', 'Thonon-les-Bains', '1236', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17406', 'Gaillard', '1237', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17407', 'Limoges', '1237', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17408', 'Saint-Junien', '1237', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17409', 'Briancon', '1238', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17410', 'Gap', '1238', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17411', 'Lourdes', '1239', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17412', 'Tarbes', '1239', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17413', 'Antony', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17414', 'Asnieres-sur-Seine', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17415', 'Bagneux', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17416', 'Bois-Colombes', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17417', 'Boulogne-Billancourt', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17418', 'Bourg-la-Reine', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17419', 'Chatenay-Malabry', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17420', 'Chatillon', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17421', 'Chaville', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17422', 'Clamart', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17423', 'Clichy', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17424', 'Colombes', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17425', 'Courbevoie', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17426', 'Fontenay-aux-Roses', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17427', 'Garches', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17428', 'Gennevillers', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17429', 'Issy-les-Moulineaux', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17430', 'La Garenne-Colombes', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17431', 'Le Plessis-Robinson', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17432', 'Levallois-Perret', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17433', 'Malakoff', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17434', 'Meudon', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17435', 'Montrouge', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17436', 'Nanterre', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17437', 'Neuilly-sur-Seine', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17438', 'Puteaux', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17439', 'Rueil-Malmaison', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17440', 'Saint-Cloud', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17441', 'Sceaux', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17442', 'Sevres', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17443', 'Suresnes', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17444', 'Vanves', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17445', 'Ville-d\'Avray', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17446', 'Villeneuve-la-Garenne', '1240', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17447', 'Agde', '1241', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17448', 'Beziers', '1241', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17449', 'Castelnau-le-Lez', '1241', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17450', 'Frontignan', '1241', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17451', 'Lattes', '1241', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17452', 'Lunel', '1241', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17453', 'Mauguio', '1241', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17454', 'Montpellier', '1241', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17455', 'Sete', '1241', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17456', 'Champagne-sur-Oise', '1242', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17457', 'Croissy-Beaubourg', '1242', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17458', 'Gennevilliers', '1242', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17459', 'Le Mesnil-le-Roi', '1242', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17460', 'Le Plessis-Bouchard', '1242', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17461', 'Rebais', '1242', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17462', 'Saint-Thibault-des-Vignes', '1242', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17463', 'Cesson-Sevigne', '1243', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17464', 'Dinard', '1243', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17465', 'Fougeres', '1243', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17466', 'Rennes', '1243', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17467', 'Saint-Malo', '1243', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17468', 'Vitre', '1243', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17469', 'Chateauroux', '1244', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17470', 'Issoudun', '1244', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17471', 'Amboise', '1245', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17472', 'Joue-les-Tours', '1245', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17473', 'Saint-Avertin', '1245', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17474', 'Saint-Cyr-sur-Loire', '1245', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17475', 'Saint-Pierre-des-Corps', '1245', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17476', 'Tours', '1245', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17477', 'Bourgoin-Jallieu', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17478', 'Crolles', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17479', 'Echirolles', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17480', 'Fontaine', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17481', 'Grenoble', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17482', 'Le Pont-de-Claix', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17483', 'Meylan', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17484', 'Saint-Egreve', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17485', 'Saint-Martin-d\'Heres', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17486', 'Seyssinet-Pariset', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17487', 'Vienne', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17488', 'Villefontaine', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17489', 'Voiron', '1246', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17490', 'Champagnole', '1247', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17491', 'Dole', '1247', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17492', 'Lons-le-Saunier', '1247', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17493', 'Saint-Claude', '1247', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17494', 'Sebastiangasse', '1248', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17495', 'Biscarrosse', '1249', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17496', 'Dax', '1249', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17497', 'Hagetmau', '1249', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17498', 'Landes', '1249', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17499', 'Mont-de-Marsan', '1249', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17500', 'Saint-Paul-les-Dax', '1249', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17501', 'Tarnos', '1249', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17502', 'Codolet', '1250', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17503', 'Cuxac-d\'Aude', '1250', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17504', 'Gigean', '1250', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17505', 'Grabels', '1250', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17506', 'Lamalou-les-Bains', '1250', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17507', 'Perols', '1250', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17508', 'Peyrens', '1250', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17509', 'Tuchan', '1250', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17510', 'Larcay', '1251', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17511', 'Voutezac', '1254', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17512', 'Blois', '1255', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17513', 'Romorantin-Lanthenay', '1255', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17514', 'Vendome', '1255', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17515', 'Andrezieux-Boutheon', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17516', 'Firminy', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17517', 'La Ricamarie', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17518', 'Le Chambon-Feugerolles', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17519', 'Montbrison', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17520', 'Riorges', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17521', 'Rive-de-Gier', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17522', 'Roanne', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17523', 'Roche-la-Moliere', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17524', 'Saint-Chamond', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17525', 'Saint-Etienne', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17526', 'Saint-Just-Saint-Rambert', '1256', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17527', 'Bouguenais', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17528', 'Carquefou', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17529', 'Chateaubriant', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17530', 'Coueron', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17531', 'Guerande', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17532', 'La Baule-Escoublac', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17533', 'La Chapelle-sur-Erdre', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17534', 'Nantes', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17535', 'Orvault', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17536', 'Reze', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17537', 'Saint Etienne de Mer Morte', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17538', 'Saint-Herblain', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17539', 'Saint-Nazaire', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17540', 'Saint-Sebastien-sur-Loire', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17541', 'Sainte-Luce-sur-Loire', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17542', 'Vertou', '1257', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17543', 'Amilly', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17544', 'Chalette-sur-Loing', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17545', 'Fleury-les-Aubrais', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17546', 'Gien', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17547', 'Montargis', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17548', 'Olivet', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17549', 'Orleans', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17550', 'Pithiviers', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17551', 'Saint-Jean-de-Braye', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17552', 'Saint-Jean-de-la-Ruelle', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17553', 'Saran', '1258', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17554', 'Montbronn', '1259', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17555', 'Cahors', '1260', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17556', 'Figeac', '1260', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17557', 'Agen', '1261', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17558', 'Le Passage', '1261', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17559', 'Marmande', '1261', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17560', 'Tonneins', '1261', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17561', 'Villeneuve-sur-Lot', '1261', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17562', 'Mende', '1263', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17563', 'Angers', '1264', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17564', 'Avrille', '1264', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17565', 'Cholet', '1264', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17566', 'Les Ponts-de-Ce', '1264', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17567', 'Saint-Barthelemy-d\'Anjou', '1264', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17568', 'Saumur', '1264', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17569', 'Torfou', '1264', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17570', 'Trelaze', '1264', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17571', 'Cherbourg', '1265', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17572', 'Coutances', '1265', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17573', 'Equeurdreville-Hainneville', '1265', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17574', 'Granville', '1265', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17575', 'Octeville', '1265', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17576', 'Saint-Lo', '1265', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17577', 'Tourlaville', '1265', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17578', 'Chalons-en-Champagne', '1266', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17579', 'Epernay', '1266', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17580', 'Reims', '1266', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17581', 'Tinqueux', '1266', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17582', 'Vitry-le-Francois', '1266', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17583', 'Chateau-Gontier', '1267', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17584', 'Laval', '1267', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17585', 'Mayenne', '1267', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17586', 'Montsurs', '1267', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17587', 'Dombasle-sur-Meurthe', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17588', 'Jarville-la-Malgrange', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17589', 'Laxou', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17590', 'Longwy', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17591', 'Luneville', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17592', 'Nancy', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17593', 'Pont-a-Mousson', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17594', 'Saint-Max', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17595', 'Toul', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17596', 'Vandoeuvre-les-Nancy', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17597', 'Villers-les-Nancy', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17598', 'Villerupt', '1268', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17599', 'Bar-le-Duc', '1269', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17600', 'Verdun', '1269', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17601', 'Boissezon', '1270', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17602', 'Hauterive', '1270', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17603', 'Launaguet', '1270', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17604', 'Mauleon', '1270', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17605', 'Maurens-Scopont', '1270', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17606', 'Auray', '1271', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17607', 'Guidel', '1271', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17608', 'Hennebont', '1271', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17609', 'Lanester', '1271', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17610', 'Lorient', '1271', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17611', 'Ploemeur', '1271', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17612', 'Pontivy', '1271', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17613', 'Vannes', '1271', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17614', 'Amneville', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17615', 'Behren-les-Forbach', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17616', 'Creutzwald', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17617', 'Fameck', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17618', 'Florange', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17619', 'Forbach', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17620', 'Freyming-Merlebach', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17621', 'Hagondange', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17622', 'Hayange', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17623', 'Hombourg-Haut', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17624', 'Maizieres-les-Metz', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17625', 'Marly', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17626', 'Metz', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17627', 'Montigny-les-Metz', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17628', 'Moyeuvre-Grande', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17629', 'Rombas', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17630', 'Saint-Avold', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17631', 'Sarrebourg', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17632', 'Sarreguemines', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17633', 'Stiring-Wendel', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17634', 'Thionville', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17635', 'Uckange', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17636', 'Woippy', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17637', 'Yutz', '1272', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17638', 'Cosne-Cours-sur-Loire', '1273', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17639', 'Nevers', '1273', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17640', 'Varennes-Vauzelles', '1273', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17641', 'Aniche', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17642', 'Annoeullin', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17643', 'Anzin', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17644', 'Armentieres', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17645', 'Aulnoye-Aymeries', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17646', 'Bailleul', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17647', 'Bondues', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17648', 'Bruay-sur-l\'Escaut', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17649', 'Cambrai', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17650', 'Cappelle-la-Grande', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17651', 'Caudry', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17652', 'Comines', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17653', 'Conde-sur-l\'Escaut', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17654', 'Coudekerque-Branche', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17655', 'Croix', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17656', 'Denain', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17657', 'Douai', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17658', 'Douchy-les-Mines', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17659', 'Dunkerque', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17660', 'Escaudain', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17661', 'Fache-Thumesnil', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17662', 'Fourmies', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17663', 'Grande-Synthe', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17664', 'Graveline', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17665', 'Halluin', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17666', 'Haubourdin', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17667', 'Hautmont', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17668', 'Hazebrouck', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17669', 'Hem', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17670', 'Hulluch', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17671', 'Jeumont', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17672', 'La Madeleine', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17673', 'Lambersart', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17674', 'Leers', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17675', 'Lille', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17676', 'Lomme', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17677', 'Loos', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17678', 'Lys-lez-Lannoy', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17679', 'Marcq-en-Baroeul', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17680', 'Marennes', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17681', 'Marly', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17682', 'Marquette-lez-Lille', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17683', 'Maubeuge', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17684', 'Merville', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17685', 'Mons-en-Baroeul', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17686', 'Mouvaux', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17687', 'Neuville-en-Ferrain', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17688', 'Onnaing', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17689', 'Raismes', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17690', 'Ronchin', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17691', 'Roncq', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17692', 'Roubaix', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17693', 'Saint-Amand-les-Eaux', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17694', 'Saint-Andre-lez-Lille', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17695', 'Saint-Pol-sur-Mer', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17696', 'Saint-Saulve', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17697', 'Seclin', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17698', 'Sin-le-Noble', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17699', 'Somain', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17700', 'Tourcoing', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17701', 'Valenciennes', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17702', 'Vieux-Conde', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17703', 'Villeneuve-d\'Ascq', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17704', 'Wasquehal', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17705', 'Wattignies', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17706', 'Wattrelos', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17707', 'Waziers', '1274', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17708', 'Esquelbecq', '1275', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17709', 'Beauvais', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17710', 'Chantilly', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17711', 'Clermont', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17712', 'Compiegne', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17713', 'Creil', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17714', 'Crepy-en-Valois', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17715', 'Gouvieux', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17716', 'Meru', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17717', 'Montataire', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17718', 'Nogent-sur-Oise', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17719', 'Noyon', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17720', 'Pont-Sainte-Maxence', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17721', 'Senlis', '1276', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17722', 'Alencon', '1277', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17723', 'Argentan', '1277', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17724', 'Flers', '1277', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17725', 'L\'Aigle', '1277', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17726', 'Paris', '1278', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17727', 'Aire-sur-la-Lys', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17728', 'Arras', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17729', 'Auchel', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17730', 'Avion', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17731', 'Berck', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17732', 'Bethune', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17733', 'Boulogne-sur-Mer', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17734', 'Bruay-la-Brussiere', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17735', 'Bully-les-Mines', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17736', 'Calais', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17737', 'Carvin', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17738', 'Courrieres', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17739', 'Etaples', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17740', 'Harnes', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17741', 'Henin-Beaumont', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17742', 'Le Portel', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17743', 'Lens', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17744', 'Libercourt', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17745', 'Lievin', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17746', 'Lillers', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17747', 'Longuenesse', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17748', 'Marck', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17749', 'Mericourt', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17750', 'Montigny-en-Gohelle', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17751', 'Noeux-les-Mines', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17752', 'Oignies', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17753', 'Outreau', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17754', 'Rouvroy', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17755', 'Saint-Martin-Boulogne', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17756', 'Saint-Omer', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17757', 'Sallaumines', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17758', 'Vendin-le-Vieil', '1279', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17759', 'Loiron', '1281', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17760', 'Marolles-les-Braults', '1281', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17761', 'Mortagne-sur-Sevre', '1281', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17762', 'Mouzillon', '1281', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17763', 'Noirmoutier-en-l\'ÃƒÂŽle', '1281', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17764', 'Friville', '1282', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17765', 'Liancourt', '1282', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17766', 'Maizy', '1282', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17767', 'Oust-Marest', '1282', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17768', 'Puiseux-le-Hauberger', '1282', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17769', 'Saint-Crepin-Ibouvillers', '1282', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17770', 'Aubiere', '1283', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17771', 'Beaumont', '1283', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17772', 'Chamalieres', '1283', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17773', 'Clermont-Ferrand', '1283', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17774', 'Cournon-d\'Auvergne', '1283', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17775', 'Gerzat', '1283', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17776', 'Issoire', '1283', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17777', 'Riom', '1283', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17778', 'Thiers', '1283', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17779', 'Anglet', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17780', 'Bayonne', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17781', 'Biarritz', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17782', 'Billere', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17783', 'Hendaye', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17784', 'Lons', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17785', 'Oloron-Sainte-Marie', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17786', 'Orthez', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17787', 'Pau', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17788', 'Saint-Jean-de-Luz', '1284', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17789', 'Perpignan', '1285', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17790', 'Saint-Esteve', '1285', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17791', 'Quelmes', '1286', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17792', 'Brignais', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17793', 'Bron', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17794', 'Caluire-et-Cuire', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17795', 'Decines-Charpieu', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17796', 'Ecully', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17797', 'Francheville', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17798', 'Genas', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17799', 'Genay', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17800', 'Givors', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17801', 'Lyon', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17802', 'Meyzieu', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17803', 'Mions', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17804', 'Oullins', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17805', 'Pierre-Benite', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17806', 'Rillieux-la-Pape', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17807', 'Saint-Fons', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17808', 'Saint-Genis-Laval', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17809', 'Saint-Priest', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17810', 'Sainte-Foy-les-Lyon', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17811', 'Tarare', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17812', 'Tassin-la-Demi-Lune', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17813', 'Vaulx-en-Velin', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17814', 'Venissieux', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17815', 'Villefranche-sur-Saone', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17816', 'Villeurbanne', '1287', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17817', 'Beauvoir-en-Royans', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17818', 'Belley', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17819', 'Bons-en-Chablais', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17820', 'Chalain-d\'Uzore', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17821', 'Chassieu', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17822', 'Chavanod', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17823', 'Chazay-d-Azergues', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17824', 'Chimilin', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17825', 'Civrieux-d Azergues', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17826', 'Corbas', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17827', 'Courzieu', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17828', 'Dardilly', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17829', 'Guereins', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17830', 'Izernore', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17831', 'La Talaudiere', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17832', 'La Tronche', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17833', 'La Verpilliere', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17834', 'Le Cheylard', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17835', 'Le Cheylas', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17836', 'Mery', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17837', 'Moirans', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17838', 'Montalieu-Vercieu', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17839', 'Montmiral', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17840', 'Peronnas', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17841', 'Poncin', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17842', 'Quincie-en-Beaujolais', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17843', 'Saint-Quentin-sur-Isere', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17844', 'Sainte Agathe la Bouteresse', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17845', 'Sainte-Consorce', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17846', 'Sisteron', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17847', 'Trevoux', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17848', 'Villard-Bonnot', '1288', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17849', 'Autun', '1291', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17850', 'Chalon-sur-Saone', '1291', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17851', 'Digoin', '1291', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17852', 'Gueugnon', '1291', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17853', 'Le Creusot', '1291', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17854', 'Macon', '1291', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17855', 'Montceau-les-Mines', '1291', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17856', 'Paray-le-Monial', '1291', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17857', 'Saint-Vallier', '1291', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17858', 'Allonnes', '1292', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17859', 'La Ferte-Bernard', '1292', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17860', 'La Fleche', '1292', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17861', 'Le Mans', '1292', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17862', 'Sable-sur-Sarthe', '1292', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17863', 'Aix-les-Bains', '1293', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17864', 'Albertville', '1293', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17865', 'Chambery', '1293', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17866', 'La Motte-Servolex', '1293', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17867', 'Saint-Jean-de-Maurienne', '1293', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17868', 'Barentin', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17869', 'Bihorel', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17870', 'Bois-Guillaume', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17871', 'Bolbec', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17872', 'Canteleu', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17873', 'Caudebec-les-Elbeuf', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17874', 'Darnetal', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17875', 'Deville-les-Rouen', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17876', 'Dieppe', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17877', 'Elbeuf', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17878', 'Fecamp', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17879', 'Gonfreville-l\'Orcher', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17880', 'Grand-Couronne', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17881', 'Harfleur', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17882', 'Le Grand-Quevilly', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17883', 'Le Havre', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17884', 'Le Petit-Quevilly', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17885', 'Lillebonne', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17886', 'Maromme', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17887', 'Mont-Saint-Aignan', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17888', 'Montivilliers', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17889', 'Notre-Dame-de-Gravenchon', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17890', 'Oissel', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17891', 'Rouen', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17892', 'Saint-Etienne-du-Rouvray', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17893', 'Sotteville-les-Rouen', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17894', 'Yvetot', '1294', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17895', 'Aubervillers', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17896', 'Aulnay-sous-Bois', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17897', 'Bagnolet', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17898', 'Bobigny', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17899', 'Bondy', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17900', 'Clichy-sous-Bois', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17901', 'Drancy', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17902', 'Epinay-sur-Seine', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17903', 'Gagny', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17904', 'La Courneuve', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17905', 'Le Blanc-Mesnil', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17906', 'Le Bourget', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17907', 'Le Pre-Saint-Gervais', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17908', 'Le Raincy', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17909', 'Les Lilas', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17910', 'Les Pavillons-sous-Bois', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17911', 'Livry-Gargan', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17912', 'Montfermeil', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17913', 'Montreuil', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17914', 'Neuilly-Plaisance', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17915', 'Neuilly-sur-Marne', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17916', 'Noisy-le-Grand', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17917', 'Noisy-le-Sec', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17918', 'Pantin', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17919', 'Pierrefitte-sur-Seine', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17920', 'Romainville', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17921', 'Rosny-sous-Bois', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17922', 'Saint-Denis', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17923', 'Saint-Ouen', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17924', 'Sevran', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17925', 'Stains', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17926', 'Tremblay-en-France', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17927', 'Villemomble', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17928', 'Villepinte', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17929', 'Villetaneuse', '1295', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17930', 'Avon', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17931', 'Brie-Comte-Robert', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17932', 'Champs-sur-Marne', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17933', 'Chelles', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17934', 'Claye-Souilly', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17935', 'Combs-la-Ville', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17936', 'Coulommiers', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17937', 'Dammarie-les-Lys', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17938', 'Fontainebleau', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17939', 'Lagny-sur-Marne', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17940', 'Le Mee-sur-Seine', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17941', 'Lognes', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17942', 'Meaux', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17943', 'Melun', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17944', 'Mitry-Mory', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17945', 'Moissy-Cramayel', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17946', 'Montereau-Fault-Yonne', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17947', 'Nemours', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17948', 'Noisiel', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17949', 'Ozoir-la-Ferriere', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17950', 'Pontault-Combault', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17951', 'Provins', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17952', 'Roissy-en-Brie', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17953', 'Saint-Fargeau-Ponthierry', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17954', 'Savigny-le-Temple', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17955', 'Torcy', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17956', 'Vaires-sur-Marne', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17957', 'Veneux', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17958', 'Villeparisis', '1296', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17959', 'Abbeville', '1297', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17960', 'Albert', '1297', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17961', 'Amiens', '1297', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17962', 'Souvans', '1299', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17963', 'Albi', '1300', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17964', 'Carmaux', '1300', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17965', 'Castres', '1300', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17966', 'Gaillac', '1300', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17967', 'Graulhet', '1300', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17968', 'Mazamet', '1300', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17969', 'Castelsarassin', '1301', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17970', 'Moissac', '1301', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17971', 'Montauban', '1301', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17972', 'Chamberet', '1303', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17973', 'Argenteuil', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17974', 'Arnouville-les-Gonesse', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17975', 'Beauchamps', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17976', 'Bezons', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17977', 'Cergy', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17978', 'Cormeilles-en-Parisis', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17979', 'Deuil-la-Barre', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17980', 'Domont', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17981', 'Eaubonne', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17982', 'Enghien-les-Bains', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17983', 'Eragny', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17984', 'Ermont', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17985', 'Ezanville', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17986', 'Fosses', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17987', 'Franconville', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17988', 'Garges-les-Gonesse', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17989', 'Gonesse', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17990', 'Goussainville', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17991', 'Herblay', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17992', 'Jouy-le-Moutier', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17993', 'L\'Isle-Adam', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17994', 'Montigny-les-Cormeilles', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17995', 'Montmagny', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17996', 'Montmorency', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17997', 'Osny', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17998', 'Persan', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('17999', 'Pontoise', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18000', 'Saint-Brice-sous-Foret', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18001', 'Saint-Gratien', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18002', 'Saint-Leu-la-Foret', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18003', 'Saint-Ouen-l\'Aumone', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18004', 'Sannois', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18005', 'Sarcelles', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18006', 'Soisy-sous-Montmorency', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18007', 'Taverny', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18008', 'Vaureal', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18009', 'Villiers-le-Bel', '1305', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18010', 'Alfortville', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18011', 'Arcueil', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18012', 'Boissy-Saint-Leger', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18013', 'Bonneuil', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18014', 'Bry-sur-Marne', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18015', 'Cachan', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18016', 'Champigny-sur-Marne', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18017', 'Charenton-le-Pont', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18018', 'Chennevieres-sur-Marne', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18019', 'Chevilly-Larue', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18020', 'Choisy-le-Roi', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18021', 'Creteil', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18022', 'Fontenay-sous-Bois', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18023', 'Fresnes', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18024', 'Gentilly', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18025', 'Ivry-sur-Seine', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18026', 'Joinville-le-Pont', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18027', 'L\'Hay-les-Roses', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18028', 'La Queue-en-Brie', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18029', 'Le Kremlin-Bicetre', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18030', 'Le Perreux-sur-Marne', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18031', 'Le Plessis-Trevise', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18032', 'Limeil-Brevannes', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18033', 'Maisons-Alfort', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18034', 'Nogent-sur-Marne', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18035', 'Orly', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18036', 'Ormesson-sur-Marne', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18037', 'Saint-Mande', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18038', 'Saint-Maur-des-Fosses', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18039', 'Saint-Maurice', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18040', 'Sucy-en-Brie', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18041', 'Thiais', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18042', 'Valenton', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18043', 'Villejuif', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18044', 'Villeneuve-Saint-Georges', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18045', 'Villeneuve-le-Roi', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18046', 'Villiers-sur-Marne', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18047', 'Vincennes', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18048', 'Vitry-sur-Seine', '1306', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18049', 'Brignoles', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18050', 'Draguignan', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18051', 'Frejus', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18052', 'Hyeres', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18053', 'La Crau', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18054', 'La Garde', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18055', 'La Seyne-sur-Mer', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18056', 'La Valette-du-Var', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18057', 'Le Pradet', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18058', 'Ollioules', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18059', 'Roquebrune-sur-Argens', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18060', 'Saint-Maximin-la-Sainte-Baume', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18061', 'Saint-Raphael', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18062', 'Sainte-Maxime', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18063', 'Sanary-sur-Mer', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18064', 'Six-Fours-les-Plages', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18065', 'Sollies-Pont', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18066', 'Toulon', '1307', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18067', 'Apt', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18068', 'Avignon', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18069', 'Bollene', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18070', 'Carpentras', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18071', 'Cavaillon', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18072', 'L\'Isle-sur-la-Sorgue', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18073', 'Le Pontet', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18074', 'Orange', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18075', 'Pertuis', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18076', 'Sorgues', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18077', 'Valreas', '1308', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18078', 'Vellise', '1309', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18079', 'Challans', '1310', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18080', 'Chateau-d\'Olonne', '1310', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18081', 'Fontenay-le-Comte', '1310', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18082', 'La Chasnis', '1310', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18083', 'La Roche-sur-Yon', '1310', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18084', 'Les Herbiers', '1310', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18085', 'Les Sables-d\'Olonne', '1310', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18086', 'Longeville-sur-Mer', '1310', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18087', 'Chatellerault', '1311', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18088', 'Poitiers', '1311', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18089', 'Epinal', '1312', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18090', 'Gerardmer', '1312', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18091', 'Remiremont', '1312', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18092', 'Saint-Die', '1312', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18093', 'Auxerre', '1313', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18094', 'Avallon', '1313', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18095', 'Joigny', '1313', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18096', 'Sens', '1313', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18097', 'Acheres', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18098', 'Andresy', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18099', 'Aubergenville', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18100', 'Bois-d\'Arcy', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18101', 'Carrieres-sous-Poissy', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18102', 'Carrieres-sur-Seine', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18103', 'Chanteloup-les-Vignes', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18104', 'Chatou', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18105', 'Conflans-Sainte-Honorine', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18106', 'Croissy-sur-Seine', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18107', 'Elancourt', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18108', 'Fontenay-le-Fleury', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18109', 'Guyancourt', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18110', 'Houilles', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18111', 'La Celle-Saint-Cloud', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18112', 'Le Chesnay', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18113', 'Le Pecq', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18114', 'Le Vesinet', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18115', 'Les Clayes-sous-Bois', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18116', 'Les Mureaux', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18117', 'Limay', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18118', 'Maisons-Laffitte', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18119', 'Mantes-la-Jolie', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18120', 'Mantes-la-Ville', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18121', 'Marly-le-Roi', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18122', 'Maurepas', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18123', 'Montesson', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18124', 'Montigny-le-Bretonneux', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18125', 'Plaisir', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18126', 'Poissy', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18127', 'Rambouillet', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18128', 'Saint-Cyr-l\'Ecole', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18129', 'Saint-Germain-en-Laye', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18130', 'Sartrouville', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18131', 'Trappes', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18132', 'Triel-sur-Seine', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18133', 'Velizy-Villacoublay', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18134', 'Verneuil-sur-Seine', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18135', 'Versailles', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18136', 'Viroflay', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18137', 'Voisins-le-Bretonneux', '1314', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18138', 'Camopi', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18139', 'Cayenne', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18140', 'Iracoubo', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18141', 'Kourou', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18142', 'Macouria', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18143', 'Matoury', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18144', 'Remire-Montjoly', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18145', 'Roura', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18146', 'Saint-Georges', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18147', 'Sinnamary', '1315', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18148', 'Apatou', '1316', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18149', 'Grand-Santi', '1316', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18150', 'Mana', '1316', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18151', 'Maripasoula', '1316', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18152', 'Saint-Laurent-du-Maroni', '1316', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18153', 'Atuona', '1319', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18154', 'Fatu-Hiva', '1319', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18155', 'Hakahao', '1319', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18156', 'Hakamaii', '1319', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18157', 'Hatiheu', '1319', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18158', 'Tahuata', '1319', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18159', 'Taiohae', '1319', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18160', 'Taipivai', '1319', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18161', 'Ua-Huka', '1319', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18162', 'Ahe', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18163', 'Amanu', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18164', 'Anaa', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18165', 'Apataki', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18166', 'Arutua', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18167', 'Faaite', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18168', 'Fakahima', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18169', 'Fakarava', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18170', 'Fangatau', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18171', 'Hao', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18172', 'Hereheretue', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18173', 'Hikueru', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18174', 'Katiu', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18175', 'Kauehi', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18176', 'Kaukura', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18177', 'Makatea', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18178', 'Makemo', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18179', 'Manihi', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18180', 'Marokau', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18181', 'Napuka', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18182', 'Niau', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18183', 'Nukutavake', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18184', 'Puamau', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18185', 'Pukapuka', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18186', 'Pukarua', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18187', 'Rangiroa', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18188', 'Raroia', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18189', 'Reao', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18190', 'Rikitea', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18191', 'Taenga', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18192', 'Takapoto', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18193', 'Takaroa', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18194', 'Tatakoto', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18195', 'Tepoto', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18196', 'Tikehau', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18197', 'Tureia', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18198', 'Vahitahi', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18199', 'Vairaatea', '1320', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18200', 'Amaru', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18201', 'Anapoto', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18202', 'Anatonu', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18203', 'Auti', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18204', 'Avera', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18205', 'Mahu', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18206', 'Mataura', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18207', 'Moerai', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18208', 'Mutuaura', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18209', 'Rairua', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18210', 'Rapa', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18211', 'Taahuaia', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18212', 'Vaiuru', '1321', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18213', 'Martin-de-Vivies', '1322', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18214', 'Port-aux-Francais', '1324', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18215', 'Cocobeach', '1325', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18216', 'Kango', '1325', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18217', 'Libreville', '1325', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18218', 'Nkan', '1325', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18219', 'Ntoum', '1325', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18220', 'Lekoni', '1326', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18221', 'Masuku', '1326', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18222', 'Moanda', '1326', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18223', 'Mounana', '1326', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18224', 'Okandja', '1326', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18225', 'Lambarene', '1327', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18226', 'Ndjole', '1327', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18227', 'Fougamou', '1328', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18228', 'Mbigou', '1328', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18229', 'Mimongo', '1328', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18230', 'Mouila', '1328', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18231', 'Ndende', '1328', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18232', 'Mayumba', '1329', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18233', 'Tchibanga', '1329', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18234', 'Tsogni', '1329', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18235', 'Booue', '1330', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18236', 'Makokou', '1330', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18237', 'Mekambo', '1330', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18238', 'Koulamoutou', '1331', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18239', 'Lastoursville', '1331', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18240', 'Gamba', '1332', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18241', 'Omboue', '1332', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18242', 'Port-Gentil', '1332', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18243', 'Sette Cama', '1332', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18244', 'Bitam', '1333', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18245', 'Lalara', '1333', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18246', 'Medouneu', '1333', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18247', 'Minvoul', '1333', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18248', 'Mitzic', '1333', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18249', 'Oyem', '1333', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18250', 'Banjul', '1334', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18251', 'Basse', '1335', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18252', 'Gambissara', '1335', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18253', 'Sabi', '1335', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18254', 'Salikeni', '1335', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18255', 'Brikama', '1336', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18256', 'Brufut', '1336', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18257', 'Gunjur', '1336', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18258', 'Sukuta', '1336', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18259', 'Bansang', '1337', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18260', 'Janjanbureh', '1337', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18261', 'Bakau', '1338', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18262', 'Serekunda', '1338', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18263', 'Barra', '1339', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18264', 'Essau', '1339', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18265', 'Farafenni', '1339', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18266', 'Kerewan', '1339', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18267', 'Lamin', '1339', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18268', 'Kuntaur', '1340', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18269', 'Mansakonko', '1341', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18270', 'Ahali Atoni', '1342', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18271', 'Bihvinta', '1342', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18272', 'Gagra', '1342', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18273', 'Gali', '1342', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18274', 'Gudauta', '1342', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18275', 'Gulripshi', '1342', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18276', 'Ochamchira', '1342', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18277', 'Suhumi', '1342', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18278', 'Tkvarcheli', '1342', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18279', 'Batumi', '1343', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18280', 'Dioknisi', '1343', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18281', 'Kobuleti', '1343', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18282', 'Mahindzhauri', '1343', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18283', 'Lanchhuti', '1344', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18284', 'Ozurgeti', '1344', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18285', 'Bagdadi', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18286', 'Chaltubo', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18287', 'Chiatura', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18288', 'Honi', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18289', 'Kutaisi', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18290', 'Sachhere', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18291', 'Samtredia', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18292', 'Terzhola', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18293', 'Tkibuli', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18294', 'Vani', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18295', 'Zestaponi', '1345', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18296', 'Ahmeta', '1346', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18297', 'Cnori', '1346', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18298', 'Dedoplisckaro', '1346', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18299', 'Gurdzhaani', '1346', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18300', 'Kvareli', '1346', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18301', 'Lagodehi', '1346', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18302', 'Sagaredzho', '1346', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18303', 'Signahi', '1346', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18304', 'Telavi', '1346', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18305', 'Dusheti', '1348', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18306', 'Mcheta', '1348', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18307', 'Ambrolauri', '1349', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18308', 'Cageri', '1349', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18309', 'Oni', '1349', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18310', 'Ahalcihe', '1351', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18311', 'Ahalkalaki', '1351', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18312', 'Borzhomi', '1351', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18313', 'Ninocminda', '1351', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18314', 'Vale', '1351', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18315', 'Tbilisi', '1353', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18316', 'Aalen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18317', 'Achern', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18318', 'Aichtal', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18319', 'Albstadt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18320', 'Aldingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18321', 'Allmersbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18322', 'Alpirsbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18323', 'Altensteig', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18324', 'Altlussheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18325', 'Ammerbuch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18326', 'Appenweier', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18327', 'Asperg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18328', 'Backnang', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18329', 'Bad Durrheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18330', 'Bad Friedrichshall', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18331', 'Bad Krozingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18332', 'Bad Liebenzell', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18333', 'Bad Mergentheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18334', 'Bad Rappenau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18335', 'Bad Sackingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18336', 'Bad Schonborn', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18337', 'Bad Urach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18338', 'Bad Waldsee', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18339', 'Bad Wurzach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18340', 'Baden-Baden', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18341', 'Bahlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18342', 'Baiersbronn', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18343', 'Balgheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18344', 'Balingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18345', 'Ballrechten-Dottingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18346', 'Besigheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18347', 'Biberach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18348', 'Bietigheim-Bissingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18349', 'Binzen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18350', 'Birkenfeld', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18351', 'Bisingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18352', 'Bitz', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18353', 'Blaubeuren', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18354', 'Blaustein', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18355', 'Blumberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18356', 'Boblingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18357', 'Bodelshausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18358', 'Bonndorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18359', 'Bonnigheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18360', 'Bopfingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18361', 'Bottingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18362', 'Brackenheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18363', 'Breisach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18364', 'Bretten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18365', 'Bretzfeld', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18366', 'Bruchsal', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18367', 'Bruhl', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18368', 'Buchen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18369', 'Buchenbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18370', 'Buhl', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18371', 'Burgstetten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18372', 'Burladingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18373', 'Calw', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18374', 'Crailsheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18375', 'Denkendorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18376', 'Denzlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18377', 'Dettingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18378', 'Dietenheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18379', 'Ditzingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18380', 'Donaueschingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18381', 'Donzdorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18382', 'Dornhan', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18383', 'Dornstadt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18384', 'Dornstetten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18385', 'Dossenheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18386', 'Durbheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18387', 'Durmersheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18388', 'Eberbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18389', 'Ebersbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18390', 'Edingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18391', 'Edingen-Neckarhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18392', 'Eggenstein-Leopoldshafen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18393', 'Ehingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18394', 'Eislingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18395', 'Ellhofen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18396', 'Ellwangen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18397', 'Emmendingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18398', 'Emmingen-Liptingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18399', 'Engen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18400', 'Eningen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18401', 'Eppelheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18402', 'Eppingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18403', 'Erbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18404', 'Eriskirch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18405', 'Eschach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18406', 'Esslingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18407', 'Ettenheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18408', 'Ettlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18409', 'Fellbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18410', 'Filderstadt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18411', 'Freiberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18412', 'Freiburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18413', 'Freudenstadt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18414', 'Frickenhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18415', 'Fridingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18416', 'Friedrichshafen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18417', 'Friesenheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18418', 'Frittlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18419', 'Furtwangen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18420', 'Gaggenau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18421', 'Gaildorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18422', 'Gartringen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18423', 'Gaufelden', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18424', 'Geislingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18425', 'Gengenbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18426', 'Gerlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18427', 'Gernsbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18428', 'Gerstetten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18429', 'Giengen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18430', 'Goppingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18431', 'Gottmadingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18432', 'Graben-Neudorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18433', 'Grafenberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18434', 'Grafenhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18435', 'Grenzach-Wyhlen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18436', 'GroBbettlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18437', 'Grunkraut', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18438', 'Gschwend', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18439', 'Guglingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18440', 'Gundelfingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18441', 'Gutach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18442', 'Haigerloch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18443', 'Haiterbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18444', 'Harmersabch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18445', 'Hausach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18446', 'Hechingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18447', 'Heddesheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18448', 'Heidelberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18449', 'Heidenheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18450', 'Heilbronn', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18451', 'Hemsbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18452', 'Herbrechtingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18453', 'Herrenberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18454', 'Heubach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18455', 'Hirschberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18456', 'Hockenheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18457', 'Holzgerlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18458', 'Horb', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18459', 'Hufingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18460', 'Huttlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18461', 'Isny', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18462', 'Ispringen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18463', 'Jungingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18464', 'Karlsbad', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18465', 'Karlsruhe', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18466', 'Kehl', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18467', 'Kernen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18468', 'Ketsch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18469', 'Kieselbronn', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18470', 'Kirchberg an der Jagst', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18471', 'Kirchheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18472', 'Kirchzarten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18473', 'Kisslegg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18474', 'Klettgau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18475', 'Kongen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18476', 'Konigsbach-Stein', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18477', 'Konigsbronn', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18478', 'Konstanz', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18479', 'Korb', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18480', 'Korntal-Munchingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18481', 'Kornwestheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18482', 'Kraichtal', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18483', 'Kressbronn an Bodensee', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18484', 'Kronau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18485', 'Kuessaberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18486', 'Kunzelsau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18487', 'Ladenburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18488', 'Lahr', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18489', 'Laichingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18490', 'Langenau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18491', 'Lauda-Konigshofen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18492', 'Lauffen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18493', 'Laupheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18494', 'Leimen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18495', 'Leinfelden-Echterdingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18496', 'Leingarten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18497', 'Lenningen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18498', 'Lenzkirch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18499', 'Leonberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18500', 'Leutenbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18501', 'Leutkirch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18502', 'Lichtenstein', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18503', 'Linkenheim-Hochstetten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18504', 'Lorch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18505', 'Lorrach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18506', 'Ludwigsburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18507', 'Malsch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18508', 'Mannheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18509', 'Marbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18510', 'Markdorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18511', 'Markgroningen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18512', 'Maulburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18513', 'MeBstetten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18514', 'Meckenbeuren', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18515', 'Meckesheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18516', 'Meersburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18517', 'Mengen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18518', 'Metzingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18519', 'Mockmuhl', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18520', 'Moglingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18521', 'Monsheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18522', 'Mosbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18523', 'Mossingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18524', 'Muhlacker', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18525', 'Mullheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18526', 'Munsingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18527', 'Murrhardt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18528', 'Nagold', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18529', 'Neckargemund', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18530', 'Neckarsulm', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18531', 'Neresheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18532', 'Neuenburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18533', 'Neuhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18534', 'Niederstetten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18535', 'Niefern-Oschelbronn', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18536', 'NuBloch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18537', 'Nurtingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18538', 'Oberhausen-Rheinhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18539', 'Oberkirch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18540', 'Oberndorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18541', 'Oberstenfeld', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18542', 'Obersulm', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18543', 'Ochsenhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18544', 'Offenburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18545', 'Ofterdingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18546', 'Oftersheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18547', 'Oggelshausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18548', 'Ohringen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18549', 'Olbronn-Durrn', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18550', 'Oppenweiler', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18551', 'Ostfildern', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18552', 'Ostringen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18553', 'Otisheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18554', 'Pfalzgrafenweiler', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18555', 'Pfinztal', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18556', 'Pforzheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18557', 'Pfullendorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18558', 'Pfullingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18559', 'Philippsburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18560', 'Plankstadt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18561', 'Pleidelsheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18562', 'Pliezhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18563', 'Plochingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18564', 'Pluderhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18565', 'Radolfzell', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18566', 'Rastatt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18567', 'Ravensburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18568', 'Reilingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18569', 'Remchingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18570', 'Remseck', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18571', 'Remshalden', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18572', 'Renchen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18573', 'Renningen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18574', 'Reutlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18575', 'Rheinau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18576', 'Rheinfelden', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18577', 'Rheinmunster', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18578', 'Rheinstetten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18579', 'Riederich', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18580', 'Riedlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18581', 'Rielasingen-Worblingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18582', 'Rosenfeld', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18583', 'Rottenburg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18584', 'Rottweil', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18585', 'Rudersberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18586', 'Rutesheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18587', 'Sachsenheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18588', 'Salem', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18589', 'Sandhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18590', 'Sankt Georgen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18591', 'Sankt Leon-Rot', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18592', 'Saulgau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18593', 'Scheer', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18594', 'Schlierbach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18595', 'Schonaich', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18596', 'Schopfheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18597', 'Schorndorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18598', 'Schramberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18599', 'Schriesheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18600', 'Schwabisch Gmund', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18601', 'Schwabisch Hall', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18602', 'Schwaigern', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18603', 'Schwetzingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18604', 'Schwieberdingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18605', 'Seitingen-Oberflacht', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18606', 'Sexau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18607', 'Sigmaringen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18608', 'Sindelfingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18609', 'Singen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18610', 'Sinsheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18611', 'Sinzheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18612', 'Sonnenbuhl', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18613', 'Sontheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18614', 'Spaichingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18615', 'Stegen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18616', 'Steinen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18617', 'Steinheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18618', 'Steinmauern', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18619', 'Stockach', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18620', 'Straubenhardt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18621', 'Stutensee', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18622', 'Stuttgart', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18623', 'SuBen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18624', 'Sulz', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18625', 'Sulzfeld', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18626', 'Tamm', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18627', 'Tauberbischofsheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18628', 'Teningen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18629', 'Tettnang', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18630', 'Titisee-Neustadt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18631', 'Trossingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18632', 'Tubingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18633', 'Tuningen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18634', 'Tuttlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18635', 'Uberlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18636', 'Ubstadt-Weiher', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18637', 'Uhingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18638', 'Ulm', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18639', 'Umkirch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18640', 'Vaihingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18641', 'Villingen-Schwenningen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18642', 'Villingendorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18643', 'Waghausel', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18644', 'Waiblingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18645', 'Waldbronn', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18646', 'Waldkirch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18647', 'Waldlaubersheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18648', 'Waldshut-Tiengen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18649', 'Walldorf', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18650', 'Walldurn', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18651', 'Walzbachtal', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18652', 'Wangen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18653', 'Wehr', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18654', 'Weikersheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18655', 'Weil', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18656', 'Weil am Rhein', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18657', 'Weil der Stadt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18658', 'Weil im Schonbuch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18659', 'Weilheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18660', 'Weingarten', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18661', 'Weinheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18662', 'Weinsberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18663', 'Weinstadt', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18664', 'Wellendingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18665', 'Welzheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18666', 'Wendlingen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18667', 'Wernau', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18668', 'Wertheim', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18669', 'Wiesloch', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18670', 'Wildbad', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18671', 'Wildberg', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18672', 'Winnenden', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18673', 'Wolpertshausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18674', 'Zuzenhausen', '1355', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18675', 'Ahorn', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18676', 'Allershausen', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18677', 'Attenhofen', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18678', 'Bad Birnbach', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18679', 'Bad Endorf', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18680', 'Bad Gronenbach', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18681', 'Barbing', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18682', 'Benediktbeuern', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18683', 'Breitenberg', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18684', 'Bruckberg', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18685', 'Brunnthal', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18686', 'Burgheim', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18687', 'Chiemsee', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18688', 'Emersacker', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18689', 'Eresing', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18690', 'Fahrenzhausen', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18691', 'Faulbach', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18692', 'Finning', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18693', 'Forstinning', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18694', 'Georgensgmund', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18695', 'Haldenwang', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18696', 'Heideck', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18697', 'Heimenkirch', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18698', 'Hergensweiler', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18699', 'Hirschau', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18700', 'Iffeldorf', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18701', 'Karlstein', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18702', 'Kleinheubach', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18703', 'Kleinwallstadt', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18704', 'Kotz', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18705', 'Krailling', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18706', 'Langenbach', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18707', 'Laudenbach', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18708', 'Leutershausen', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18709', 'Mammendorf', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18710', 'Mombris', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18711', 'Munnerstadt', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18712', 'Neu-Ulm', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18713', 'Niederlauer', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18714', 'Obernburg', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18715', 'Oberpfaffenhofen', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18716', 'Ostallgau', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18717', 'Prittriching', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18718', 'Prutting', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18719', 'Pullach', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18720', 'Putzbrunn', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18721', 'Randersacker', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18722', 'Rednitzhembach', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18723', 'Ronsberg', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18724', 'Ruckersdorf', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18725', 'Schaufling', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18726', 'Schonberg', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18727', 'Seefeld', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18728', 'Sengenthal', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18729', 'Sondheim v.d.Rhon', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18730', 'Steinwiesen', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18731', 'Stockheim', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18732', 'Tagmersheim', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18733', 'Uettingen', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18734', 'Unterfohring', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18735', 'Weibensberg', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18736', 'Wiesthal', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18737', 'Wildflecken', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18738', 'Wolfertschwenden', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18739', 'Zorneding', '1356', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18740', 'Abensberg', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18741', 'Aichach', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18742', 'Ainring', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18743', 'Altdorf', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18744', 'Altotting', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18745', 'Altusried', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18746', 'Alzenau', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18747', 'Amberg', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18748', 'Amerang', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18749', 'Ansbach', '1357', '0.00', '1', '2021-04-06 06:43:45', '2021-04-06 06:43:45', NULL),
('18750', 'Aschaffenburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18751', 'Augsburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18752', 'Bad Aibling', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18753', 'Bad Kissingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18754', 'Bad Neustadt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18755', 'Bad Reichenhall', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18756', 'Bad Tolz', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18757', 'Bad Windsheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18758', 'Bad Worishofen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18759', 'Bamberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18760', 'Bayreuth', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18761', 'Bobingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18762', 'Bogen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18763', 'Bruckmuhl', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18764', 'Buchloe', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18765', 'Burghausen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18766', 'Burgkirchen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18767', 'Burglengenfeld', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18768', 'Burgthann', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18769', 'Buttenheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18770', 'Cadolzburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18771', 'Castell', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18772', 'Cham', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18773', 'Coburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18774', 'Dachau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18775', 'Deggendorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18776', 'DieBen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18777', 'Diedorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18778', 'Dietmannsried', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18779', 'Dietramszell', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18780', 'Dillingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18781', 'Dingolfing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18782', 'Dinkelsbuhl', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18783', 'Dombuhl', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18784', 'Donauworth', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18785', 'Dorfen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18786', 'Ebersberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18787', 'Eching', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18788', 'Eckental', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18789', 'Eggenfelden', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18790', 'Eichenau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18791', 'Eichstatt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18792', 'Elchingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18793', 'Erding', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18794', 'Ergolding', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18795', 'Erlangen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18796', 'Erlenbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18797', 'Essenbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18798', 'Feldafing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18799', 'Feldkirchen-Westerham', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18800', 'Feucht', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18801', 'Feuchtwangen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18802', 'Forchheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18803', 'Freilassing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18804', 'Freising', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18805', 'Fridolfing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18806', 'Friedberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18807', 'Furstenfeldbruck', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18808', 'Furth', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18809', 'Furth im Wald', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18810', 'Fussen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18811', 'Gachenbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18812', 'Gaimersheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18813', 'Garching', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18814', 'Garmisch-Partenkirchen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18815', 'Gauting', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18816', 'Gemunden', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18817', 'Geretsried', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18818', 'Germering', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18819', 'Gersthofen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18820', 'Gilching', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18821', 'Goldbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18822', 'Grafelfing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18823', 'Grafenau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18824', 'Grafing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18825', 'GroBostheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18826', 'Grobenstadt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18827', 'Grobenzell', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18828', 'Grunwald', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18829', 'Gunzburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18830', 'Gunzenhausen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18831', 'HaBfurt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18832', 'Haar', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18833', 'Hammelburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18834', 'Hasloch', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18835', 'Hauzenberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18836', 'Helmbrechts', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18837', 'Henfenfeld', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18838', 'Hersbruck', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18839', 'Herzogenaurach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18840', 'Hilpoltstein', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18841', 'Hirschaid', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18842', 'Hochstadt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18843', 'Hof', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18844', 'Holzkirchen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18845', 'Hosbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18846', 'Illertissen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18847', 'Immenstadt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18848', 'Ingolstadt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18849', 'Inning', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18850', 'Ismaning', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18851', 'Karlsfeld', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18852', 'Karlstadt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18853', 'Kaufbeuren', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18854', 'Kelheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18855', 'Kempten', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18856', 'Kiefersfelden', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18857', 'Kirchheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18858', 'Kissing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18859', 'Kitzingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18860', 'Kleinostheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18861', 'Klingenberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18862', 'Kolbermoor', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18863', 'Konigsbrunn', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18864', 'Kreuzwertheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18865', 'Kronach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18866', 'Krumbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18867', 'Kulmbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18868', 'Kummersbruck', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18869', 'Landau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18870', 'Landsberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18871', 'Landshut', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18872', 'Langenzenn', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18873', 'Lappersdorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18874', 'Lauf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18875', 'Lauingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18876', 'Leinburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18877', 'Lenggries', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18878', 'Lichtenfels', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18879', 'Lindach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18880', 'Lindau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18881', 'Lindenberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18882', 'Lohr', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18883', 'Mainburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18884', 'Maisach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18885', 'Manching', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18886', 'Markt Schwaben', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18887', 'Marktheidenfeld', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18888', 'Marktoberdorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18889', 'Marktredwitz', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18890', 'Maxhutte-Haidhof', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18891', 'Meitingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18892', 'Memmingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18893', 'Mering', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18894', 'Miesbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18895', 'Miltenberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18896', 'Mindelheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18897', 'Moosburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18898', 'Muhldorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18899', 'Munchberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18900', 'Munchen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18901', 'Munningen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18902', 'Murnau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18903', 'Naila', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18904', 'Neubiberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18905', 'Neuburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18906', 'Neufahrn', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18907', 'Neumarkt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18908', 'Neuried', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18909', 'NeusaB', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18910', 'Neustadt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18911', 'Neutraubling', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18912', 'Nordlingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18913', 'Nuremberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18914', 'Nurnberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18915', 'Oberasbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18916', 'Oberhaching', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18917', 'OberschleiBheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18918', 'Oberstdorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18919', 'Ochsenfurt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18920', 'Olching', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18921', 'Osterhofen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18922', 'Ostheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18923', 'Ottobrunn', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18924', 'Parsberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18925', 'Passau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18926', 'Pegnitz', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18927', 'PeiBenberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18928', 'Peiting', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18929', 'Pentling', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18930', 'Penzberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18931', 'Pfaffenhofen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18932', 'Pfarrkirchen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18933', 'Planegg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18934', 'Plattling', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18935', 'Pocking', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18936', 'Poing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18937', 'Polling', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18938', 'Pommelsbrunn', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18939', 'Prien', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18940', 'Puchheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18941', 'Rannersdorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18942', 'Raubling', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18943', 'Regen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18944', 'Regensburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18945', 'Regenstauf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18946', 'Rehau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18947', 'Rodental', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18948', 'Roding', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18949', 'Rosenheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18950', 'Roth', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18951', 'Rothenbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18952', 'Rothenburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18953', 'Ruhstorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18954', 'Schnelldorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18955', 'Schongau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18956', 'Schrobenhausen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18957', 'Schwabach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18958', 'Schwabmunchen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18959', 'Schwandorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18960', 'Schwarzenbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18961', 'Schweinfurt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18962', 'Selb', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18963', 'Selbitz', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18964', 'Senden', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18965', 'Simbach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18966', 'Sonthofen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18967', 'Spalt', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18968', 'Stadtbergen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18969', 'Staffelstein', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18970', 'Starnberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18971', 'Stein', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18972', 'Stephanskirchen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18973', 'Straubing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18974', 'Sulzbach-Rosenberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18975', 'Taufkirchen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18976', 'Thansau', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18977', 'Tirschenreuth', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18978', 'Toging', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18979', 'Traunreut', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18980', 'Traunstein', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18981', 'Treuchtlingen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18982', 'Trostberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18983', 'Tutzing', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18984', 'Unterbergen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18985', 'Unterhaching', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18986', 'UnterschleiBheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18987', 'Valley', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18988', 'Vaterstetten', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18989', 'Veitshochheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18990', 'Viechtach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18991', 'Vilgertshofen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18992', 'Vilsbiburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18993', 'Vilshofen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18994', 'Vohringen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18995', 'Volkach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18996', 'Waldkirchen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18997', 'Waldkraiburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18998', 'Walkertshofen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('18999', 'Wasserburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19000', 'WeiBenburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19001', 'WeiBenhorn', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19002', 'Weiden', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19003', 'Weidenberg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19004', 'Weilheim', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19005', 'Wendelstein', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19006', 'Werneck', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19007', 'Wessling', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19008', 'Wolfratshausen', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19009', 'Wolnzach', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19010', 'Wunsiedel', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19011', 'Wurzburg', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19012', 'Zirndorf', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19013', 'Zwiesel', '1357', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19014', 'Berlin', '1359', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19015', 'Panketal', '1359', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19016', 'Steinfeld', '1359', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19017', 'Angermunde', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19018', 'Bad Freienwalde', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19019', 'Bad Liebenwerda', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19020', 'Barnim', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19021', 'Beeskow', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19022', 'Bernau', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19023', 'Blankenfelde', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19024', 'Brandenburg', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19025', 'Brieselang', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19026', 'Cottbus', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19027', 'Dahlewitz', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19028', 'Dahme', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19029', 'Eberswalde', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19030', 'Eisenhuttenstadt', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19031', 'Elsterwerda', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19032', 'Erkner', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19033', 'Falkensee', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19034', 'Finsterwalde', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19035', 'Forst', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19036', 'Frankfurt', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19037', 'Fredersdorf-Vogelsdorf', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19038', 'Furstenwalde', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19039', 'Glienicke', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19040', 'Gransee', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19041', 'GroBraschen', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19042', 'Guben', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19043', 'Heidesee', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19044', 'Hennigsdorf', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19045', 'Herzberg', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19046', 'Hohen Neuendorf', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19047', 'Jacobsdorf', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19048', 'Juterbog', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19049', 'Kleinmachnow', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19050', 'Kolkwitz', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19051', 'Konigs Wusterhausen', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19052', 'Kyritz', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19053', 'Lauchhammer', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19054', 'Lubben', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19055', 'Lubbenau', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19056', 'Luckenwalde', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19057', 'Ludwigsfelde', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19058', 'Nauen', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19059', 'Neuenhagen', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19060', 'Neuruppin', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19061', 'Oranienburg', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19062', 'Perleberg', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19063', 'Petershagen-Eggersdorf', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19064', 'Potsdam', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19065', 'Premnitz', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19066', 'Prenzlau', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19067', 'Pritzwalk', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19068', 'Rathenow', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19069', 'Rudersdorf', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19070', 'Schonefeld', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19071', 'Schoneiche', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19072', 'Schwedt', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19073', 'Schwielowsee', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19074', 'Senftenberg', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19075', 'Spremberg', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19076', 'Strausberg', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19077', 'Teltow', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19078', 'Templin', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19079', 'Velten', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19080', 'Werder', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19081', 'Wildau', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19082', 'Wittenberge', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19083', 'Wittstock', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19084', 'Zehdenick', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19085', 'Zepernick', '1360', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19086', 'Bremen', '1361', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19087', 'Bremerhaven', '1361', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19088', 'Berne', '1364', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19089', 'Hamburg', '1364', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19090', 'Diekholzen', '1365', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19091', 'Heroldstatt', '1366', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19092', 'ABlar', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19093', 'Alsbach-HÃƒÂ¤hnlein', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19094', 'Alsfeld', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19095', 'Altenstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19096', 'Angelburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19097', 'Arolsen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19098', 'Asslar', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19099', 'Babenhausen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19100', 'Bad Camberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19101', 'Bad Hersfeld', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19102', 'Bad Homburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19103', 'Bad Nauheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19104', 'Bad Orb', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19105', 'Bad Schwalbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19106', 'Bad Soden', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19107', 'Bad Soden-Salmunster', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19108', 'Bad Sooden-Allendorf', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19109', 'Bad Vilbel', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19110', 'Bad Wildungen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19111', 'Baunatal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19112', 'Bebra', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19113', 'Beerfelden', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19114', 'Bensheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19115', 'Berkatal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19116', 'Biblis', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19117', 'Bickenbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19118', 'Biebertal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19119', 'Biedenkopf', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19120', 'Birkenau', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19121', 'Bischofsheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19122', 'Borken', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19123', 'Braunfels', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19124', 'Breidenbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19125', 'Bruchkobel', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19126', 'Budingen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19127', 'Burstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19128', 'Buseck', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19129', 'Buttelborn', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19130', 'Butzbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19131', 'Darmstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19132', 'Dautphetal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19133', 'Dieburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19134', 'Dietzenbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19135', 'Dillenburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19136', 'Dreieich', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19137', 'Egelsbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19138', 'Eichenzell', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19139', 'Eltville', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19140', 'Eppstein', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19141', 'Erbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19142', 'Erlensee', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19143', 'Erzhausen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19144', 'Eschborn', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19145', 'Eschenburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19146', 'Eschwege', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19147', 'Felsberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19148', 'Fernwald', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19149', 'Florsheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19150', 'Frankenberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19151', 'Frankfurt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19152', 'Freigericht', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19153', 'Friedberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19154', 'Friedrichsdorf', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19155', 'Fritzlar', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19156', 'Fulda', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19157', 'Fuldabruck', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19158', 'Fuldatal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19159', 'Geisenheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19160', 'Gelnhausen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19161', 'Gernsheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19162', 'GieBen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19163', 'Giessen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19164', 'Ginsheim-Gustavsburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19165', 'Gladenbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19166', 'Griesheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19167', 'GroB-Gerau', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19168', 'GroB-Umstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19169', 'GroB-Zimmern', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19170', 'Grossenluder', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19171', 'Gruenberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19172', 'Grunberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19173', 'Grundau', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19174', 'Hadamar', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19175', 'Haiger', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19176', 'Hainburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19177', 'Hanau', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19178', 'Hattersheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19179', 'Heppenheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19180', 'Herborn', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19181', 'Hessisch Lichtenau', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19182', 'Heuchelheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19183', 'Heusenstamm', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19184', 'Hochheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19185', 'Hochst', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19186', 'Hofbieber', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19187', 'Hofgeismar', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19188', 'Hofheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19189', 'Homberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19190', 'Hunfeld', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19191', 'Hunfelden', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19192', 'Hungen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19193', 'Huttenberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19194', 'Idstein', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19195', 'Karben', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19196', 'Kassel', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19197', 'Kaufungen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19198', 'Kelkheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19199', 'Kelsterbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19200', 'Kirchhain', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19201', 'Konigstein', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19202', 'Korbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19203', 'Kriftel', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19204', 'Kronberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19205', 'Kunzell', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19206', 'Lahnau', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19207', 'Lahntal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19208', 'Lampertheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19209', 'Langen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19210', 'Langenselbold', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19211', 'Langgons', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19212', 'Laubach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19213', 'Lauterbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19214', 'Lich', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19215', 'Limburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19216', 'Linden', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19217', 'Lindenholzhausen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19218', 'Linsengericht', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19219', 'Lohfelden', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19220', 'Lollar', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19221', 'Lorsch', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19222', 'Maintal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19223', 'Marburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19224', 'Melsungen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19225', 'Mengerskirchen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19226', 'Michelstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19227', 'Morfelden-Walldorf', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19228', 'Morlenbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19229', 'Mucke', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19230', 'Muhlheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19231', 'Muhltal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19232', 'Munster', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19233', 'Nauheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19234', 'Neu-Anspach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19235', 'Neu-Isenburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19236', 'Neuhof', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19237', 'Neustadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19238', 'Nidda', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19239', 'Niddatal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19240', 'Nidderau', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19241', 'Niederdorfelden', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19242', 'Niedernhausen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19243', 'Niestetal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19244', 'Ober-Ramstedt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19245', 'Obertshausen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19246', 'Oberursel', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19247', 'Oestrich-Winkel', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19248', 'Offenbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19249', 'Petersberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19250', 'Pfungstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19251', 'Pohlheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19252', 'Raunheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19253', 'Reichelsheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19254', 'Reinheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19255', 'Reiskirchen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19256', 'Riedstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19257', 'Rimbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19258', 'RoBdorf', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19259', 'Rodenbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19260', 'Rodermark', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19261', 'Rodgau', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19262', 'Rosbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19263', 'Rotenburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19264', 'Rudesheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19265', 'Runkel', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19266', 'Russelsheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19267', 'Schauenburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19268', 'Schlangenbad', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19269', 'Schlitz', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19270', 'Schluchtern', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19271', 'Schoneck', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19272', 'Schotten', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19273', 'Schwalbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19274', 'Schwalbach am Taunus', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19275', 'Schwalmstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19276', 'Seeheim-Jugenheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19277', 'Seligenstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19278', 'Selters', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19279', 'Sinntal', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19280', 'Solms', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19281', 'Sontra', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19282', 'Spangenberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19283', 'Stadtallendorf', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19284', 'Steinau', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19285', 'Steinbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19286', 'Taunusstein', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19287', 'Trebur', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19288', 'Ulrichstein', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19289', 'Usingen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19290', 'Vellmar', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19291', 'Viernheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19292', 'Volkmarsen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19293', 'Wachtersbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19294', 'Wald-Michelbach', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19295', 'Waldbrunn', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19296', 'Waldems', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19297', 'Wehrheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19298', 'Weilburg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19299', 'Weilmunster', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19300', 'Weiterstadt', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19301', 'Wettenberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19302', 'Wetter', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19303', 'Wetzlar', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19304', 'Wiesbaden', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19305', 'Witzenhausen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19306', 'Wolfersheim', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19307', 'Wolfhagen', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19308', 'Zwingenberg', '1367', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19309', 'Kortenberg', '1368', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19310', 'Laasdorf', '1369', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19311', 'Anklam', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19312', 'Bad Doberan', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19313', 'Barth', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19314', 'Bergen', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19315', 'Boizenburg', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19316', 'Butzow', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19317', 'Demmin', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19318', 'Gagelow', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19319', 'Gallin', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19320', 'Grabow', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19321', 'Greifswald', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19322', 'Grevesmuhlen', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19323', 'Grimmen', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19324', 'Gustrow', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19325', 'Hagenow', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19326', 'Konigsee', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19327', 'Lubtheen', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19328', 'Ludersdorf', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19329', 'Ludwigslust', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19330', 'Malchin', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19331', 'Neubrandenburg', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19332', 'Neustrelitz', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19333', 'Parchim', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19334', 'Pasewalk', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19335', 'Ribnitz-Damgarten', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19336', 'Rostock', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19337', 'SaBnitz', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19338', 'Schweina', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19339', 'Schwerin', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19340', 'Selmsdorf', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19341', 'Stralsund', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19342', 'Teterow', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19343', 'Torgelow', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19344', 'Ueckermunde', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19345', 'Waren', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19346', 'Wismar', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19347', 'Wolgast', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19348', 'Zarrentin', '1381', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19349', 'Mulfingen', '1382', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19350', 'Grafing bei Munchen', '1383', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19351', 'Neubeuern', '1384', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19352', 'Achim', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19353', 'Adendorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19354', 'Aerzen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19355', 'Alfeld', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19356', 'Ankum', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19357', 'Apen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19358', 'Aurich', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19359', 'Bad Bentheim', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19360', 'Bad Bevensen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19361', 'Bad Essen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19362', 'Bad Gandersheim', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19363', 'Bad Harzburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19364', 'Bad Iburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19365', 'Bad Laer', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19366', 'Bad Lauterberg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19367', 'Bad Munder', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19368', 'Bad Nenndorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19369', 'Bad Pyrmont', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19370', 'Bad Sachsa', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19371', 'Bad Salzdetfurth', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19372', 'Bad Zwischenahn', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19373', 'BarBel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19374', 'Barsinghausen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19375', 'Bassum', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19376', 'Beesten', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19377', 'Belm', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19378', 'Bergen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19379', 'Bissendorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19380', 'Bleckede', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19381', 'Bockenem', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19382', 'Bohmte', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19383', 'Bovenden', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19384', 'Brake', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19385', 'Bramsche', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19386', 'Braunschweig', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19387', 'Bremervorde', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19388', 'Brockel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19389', 'Brunswick', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19390', 'Buchholz', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19391', 'Buckeburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19392', 'Burgdorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19393', 'Burgwedel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19394', 'Buxtehude', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19395', 'Celle', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19396', 'Clausthal-Zellerfeld', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19397', 'Clenze', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19398', 'Cloppenburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19399', 'Cremlingen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19400', 'Cuxhaven', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19401', 'Dahlenburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19402', 'Damme', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19403', 'Dannenberg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19404', 'Dassel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19405', 'Deinste', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19406', 'Delmenhorst', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19407', 'Diepholz', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19408', 'Dinklage', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19409', 'Dorverden', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19410', 'Dransfeld', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19411', 'Drochtersen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19412', 'Duderstadt', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19413', 'Edemissen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19414', 'Edewecht', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19415', 'Einbeck', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19416', 'Elsfleth', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19417', 'Elze', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19418', 'Emden', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19419', 'Emlichheim', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19420', 'Emmerthal', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19421', 'Emsburen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19422', 'Eppendorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19423', 'Fallingbostel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19424', 'Frellstedt', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19425', 'Friedeburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19426', 'Friedland', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19427', 'Friesoythe', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19428', 'Ganderkesee', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19429', 'Garbsen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19430', 'Garrel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19431', 'Geeste', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19432', 'Gehrden', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19433', 'Georgsmarienhutte', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19434', 'Gifhorn', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19435', 'Gleichen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19436', 'Goslar', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19437', 'Gottingen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19438', 'GroBefehn', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19439', 'GroBenkneten', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19440', 'Hagen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19441', 'Hambergen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19442', 'Hameln', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19443', 'Hannover', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19444', 'Hannoversch Munden', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19445', 'Haren', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19446', 'Harsum', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19447', 'Hasbergen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19448', 'Haselunne', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19449', 'Hatten', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19450', 'Hauslingen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19451', 'Helmstedt', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19452', 'Hemmingen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19453', 'Herzberg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19454', 'Hessisch Oldendorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19455', 'Hildesheim', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19456', 'Hilter', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19457', 'Hittfeld', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19458', 'Holzminden', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19459', 'Hoya', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19460', 'Hude', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19461', 'Ihlow', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19462', 'Ilsede', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19463', 'Isernhagen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19464', 'Jade', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19465', 'Jever', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19466', 'Jork', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19467', 'Kalefeld', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19468', 'Kirchlinteln', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19469', 'Knesebeck', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19470', 'Konigslutter', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19471', 'Krummhorn', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19472', 'Laatzen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19473', 'Lahstedt', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19474', 'Langelsheim', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19475', 'Langen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19476', 'Langenhagen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19477', 'Langwedel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19478', 'Lastrup', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19479', 'Leer', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19480', 'Lehre', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19481', 'Lehrte', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19482', 'Lemforde', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19483', 'Lengede', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19484', 'Liebenburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19485', 'Lilienthal', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19486', 'Lingen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19487', 'Lohne', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19488', 'Loningen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19489', 'Lorup', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19490', 'Loxstedt', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19491', 'Luchow', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19492', 'Luneburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19493', 'Melle', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19494', 'Meppen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19495', 'Moormerland', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19496', 'Munster', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19497', 'Neu Wulmstorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19498', 'Neustadt', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19499', 'Nienburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19500', 'Norden', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19501', 'Nordenham', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19502', 'Nordhorn', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19503', 'Nordstemmen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19504', 'Norten-Hardenberg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19505', 'Northeim', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19506', 'Obernkirchen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19507', 'Oldenburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19508', 'Osnabruck', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19509', 'Ostercappeln', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19510', 'Osterholz-Scharmbeck', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19511', 'Osterode', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19512', 'Ostrhauderfehn', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19513', 'Ottersberg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19514', 'Oyten', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19515', 'Papenburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19516', 'Pattensen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19517', 'Peine', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19518', 'Quakenbruck', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19519', 'Rastede', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19520', 'Rehburg-Loccum', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19521', 'Rhauderfehn', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19522', 'Rinteln', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19523', 'Ritterhude', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19524', 'Ronnenberg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19525', 'Rosdorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19526', 'Rosengarten', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19527', 'Rotenburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19528', 'Salzgitter', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19529', 'Salzhemmendorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19530', 'Sarstedt', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19531', 'Saterland', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19532', 'ScheeBel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19533', 'Schiffdorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19534', 'Schneverdingen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19535', 'Schoningen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19536', 'Schortens', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19537', 'Schuttorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19538', 'Schwanewede', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19539', 'Seelze', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19540', 'Seesen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19541', 'Seevetal', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19542', 'Sehnde', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19543', 'Soltau', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19544', 'Springe', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19545', 'Stade', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19546', 'Stadthagen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19547', 'Stadtoldendorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19548', 'Stelle', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19549', 'Stuhr', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19550', 'Sudbrookmerland', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19551', 'Sulingen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19552', 'Syke', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19553', 'Tarmstedt', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19554', 'Tostedt', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19555', 'Twistringen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19556', 'Uchte', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19557', 'Uelzen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19558', 'Uetze', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19559', 'Uplengen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19560', 'Uslar', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19561', 'Varel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19562', 'Vechelde', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19563', 'Vechta', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19564', 'Verden', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19565', 'Vienenburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19566', 'Visselhovede', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19567', 'Walkenried', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19568', 'Wallenhorst', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19569', 'Walsrode', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19570', 'Wangerland', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19571', 'Wardenburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19572', 'Wedemark', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19573', 'Weener', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19574', 'Wendeburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19575', 'Wennigsen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19576', 'Westerstede', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19577', 'Westoverledingen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19578', 'Weyhe', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19579', 'Wiefelstede', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19580', 'Wiesmoor', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19581', 'Wildeshausen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19582', 'Wilhelmshaven', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19583', 'Winsen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19584', 'Wittingen', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19585', 'Wittmund', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19586', 'Wolfenbuttel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19587', 'Wolfsburg', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19588', 'Worpswede', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19589', 'Wunstorf', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19590', 'Zetel', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19591', 'Zeven', '1385', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19592', 'Middenbeemster', '1386', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19593', 'Aachen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19594', 'Ahaus', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19595', 'Ahlen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19596', 'Aldenhoven', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19597', 'Alfter', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19598', 'Alpen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19599', 'Alsdorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19600', 'Altena', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19601', 'Altendorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19602', 'Anrochte', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19603', 'Arnsberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19604', 'Ascheberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19605', 'Attendorn', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19606', 'Augustdorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19607', 'Bad Berleburg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19608', 'Bad Driburg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19609', 'Bad Honnef', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19610', 'Bad Laasphe', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19611', 'Bad Lippspringe', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19612', 'Bad Munstereifel', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19613', 'Bad Oeynhausen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19614', 'Bad Salzuflen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19615', 'Bad Sassendorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19616', 'Baesweiler', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19617', 'Balve', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19618', 'Barntrup', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19619', 'Beckum', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19620', 'Bedburg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19621', 'Bedburg-Hau', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19622', 'Bergheim', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19623', 'Bergisch Gladbach', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19624', 'Bergkamen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19625', 'Bergneustadt', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19626', 'Bestwig', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19627', 'Beverungen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19628', 'Bielefeld', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19629', 'Billerbeck', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19630', 'Blomberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19631', 'Bocholt', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19632', 'Bochum', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19633', 'Bocket', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19634', 'Bonen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19635', 'Bonn', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19636', 'Borchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19637', 'Borgentreich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19638', 'Borgholzhausen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19639', 'Borken', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19640', 'Bornheim', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19641', 'Bottrop', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19642', 'Brakel', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19643', 'Brilon', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19644', 'Bruggen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19645', 'Bruhl', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19646', 'Bunde', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19647', 'Burbach', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19648', 'Buren', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19649', 'Burscheid', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19650', 'Castrop-Rauxel', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19651', 'Coesfeld', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19652', 'Cologne', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19653', 'Datteln', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19654', 'Delbruck', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19655', 'Denklingen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19656', 'Detmold', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19657', 'Dingden', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19658', 'Dinslaken', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19659', 'Dormagen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19660', 'Dorsten', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19661', 'Dortmund', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19662', 'Drensteinfurt', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19663', 'Drolshagen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19664', 'Duisburg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19665', 'Dulmen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19666', 'Duren', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19667', 'Dusseldorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19668', 'Eitorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19669', 'Elsdorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19670', 'Emmerich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19671', 'Emsdetten', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19672', 'Engelskirchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19673', 'Enger', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19674', 'Ennepetal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19675', 'Ennigerloh', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19676', 'Ense', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19677', 'Erftstadt', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19678', 'Erkelenz', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19679', 'Erkrath', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19680', 'Erwitte', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19681', 'Espelkamp', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19682', 'Essen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19683', 'Euskirchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19684', 'Extertal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19685', 'Finnentrop', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19686', 'Frechen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19687', 'Freudenberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19688', 'Frondenberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19689', 'Gangelt', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19690', 'Geilenkirchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19691', 'Geldern', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19692', 'Gelsenkirchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19693', 'Gescher', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19694', 'Geseke', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19695', 'Gevelsberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19696', 'Gladbeck', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19697', 'Goch', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19698', 'Grefrath', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19699', 'Greven', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19700', 'Grevenbroich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19701', 'Gronau', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19702', 'Gummersbach', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19703', 'Gutersloh', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19704', 'Haan', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19705', 'Hagen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19706', 'Halle', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19707', 'Haltern', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19708', 'Halver', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19709', 'Hamm', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19710', 'Hamminkeln', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19711', 'Harsewinkel', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19712', 'Hattingen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19713', 'Havixbeck', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19714', 'Heiligenhaus', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19715', 'Heinsberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19716', 'Hemer', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19717', 'Hennef', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19718', 'Herdecke', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19719', 'Herford', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19720', 'Herne', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19721', 'Herten', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19722', 'Herzebrock-Clarholz', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19723', 'Herzogenrath', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19724', 'Hiddenhausen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19725', 'Hilchenbach', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19726', 'Hilden', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19727', 'Hille', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19728', 'Holzwickede', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19729', 'Horn-Bad Meinberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19730', 'Horstel', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19731', 'Hovelhof', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19732', 'Hoxter', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19733', 'Huckelhoven', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19734', 'Huckeswagen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19735', 'Hullhorst', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19736', 'Hunxe', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19737', 'Hurth', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19738', 'Ibbenburen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19739', 'Iserlohn', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19740', 'Isselburg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19741', 'Issum', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19742', 'Juchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19743', 'Julich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19744', 'Kaarst', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19745', 'Kalkar', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19746', 'Kall', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19747', 'Kalletal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19748', 'Kamen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19749', 'Kamp-Lintfort', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19750', 'Kempen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19751', 'Kerken', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19752', 'Kerpen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19753', 'Kevelaer', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19754', 'Kierspe', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19755', 'Kirchhundem', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19756', 'Kirchlengern', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19757', 'Kleve', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19758', 'Koln', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19759', 'Konigswinter', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19760', 'Korschenbroich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19761', 'Krefeld', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19762', 'Kreuzau', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19763', 'Kreuztal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19764', 'Kurten', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19765', 'Lage', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19766', 'Langenfeld', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19767', 'Langerwehe', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19768', 'Leichlingen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19769', 'Lemgo', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19770', 'Lengerich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19771', 'Lennestadt', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19772', 'Leopoldshohe', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19773', 'Leverkusen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19774', 'Lichtenau', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19775', 'Lindlar', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19776', 'Linnich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19777', 'Lippetal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19778', 'Lippstadt', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19779', 'Lohmar', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19780', 'Lohne', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19781', 'Lotte', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19782', 'Lubbecke', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19783', 'Ludenscheid', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19784', 'Ludinghausen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19785', 'Lugde', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19786', 'Lunen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19787', 'Marienheide', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19788', 'Marl', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19789', 'Marsberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19790', 'Mechernich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19791', 'Meckenheim', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19792', 'Meerbusch', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19793', 'Meinerzhagen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19794', 'Menden', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19795', 'Meschede', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19796', 'Mettingen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19797', 'Mettmann', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19798', 'Minden', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19799', 'Moers', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19800', 'Mohnesee', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19801', 'Monchengladbach', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19802', 'Monheim', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19803', 'Monschau', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19804', 'Morsbach', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19805', 'Much', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19806', 'Mulheim', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19807', 'Munster', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19808', 'Netphen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19809', 'Nettetal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19810', 'Neuenkirchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19811', 'Neuenrade', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19812', 'Neukirchen-Vluyn', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19813', 'Neunkirchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19814', 'Neunkirchen-Seelscheid', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19815', 'Neuss', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19816', 'Nideggen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19817', 'Niederkassel', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19818', 'Niederkruchten', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19819', 'Niederzier', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19820', 'Nordkirchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19821', 'Norvenich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19822', 'Nottuln', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19823', 'Numbrecht', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19824', 'Oberhausen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19825', 'Ochtrup', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19826', 'Odenthal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19827', 'Oelde', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19828', 'Oer-Erkenschwick', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19829', 'Oerlinghausen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19830', 'Olfen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19831', 'Olpe', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19832', 'Olsberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19833', 'Overath', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19834', 'Paderborn', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19835', 'Petershagen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19836', 'Plettenberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19837', 'Porta Westfalica', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19838', 'PreuBisch Oldendorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19839', 'Pulheim', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19840', 'Radevormwald', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19841', 'Raesfeld', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19842', 'Rahden', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19843', 'Ratingen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19844', 'Recke', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19845', 'Recklinghausen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19846', 'Rees', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19847', 'Reichshof', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19848', 'Reken', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19849', 'Remscheid', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19850', 'Rheda-Wiedenbruck', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19851', 'Rhede', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19852', 'Rheinbach', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19853', 'Rheinberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19854', 'Rheine', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19855', 'Rietberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19856', 'Rommerskirchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19857', 'Rosendahl', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19858', 'Rosrath', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19859', 'Ruthen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19860', 'Salzkotten', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19861', 'Sassenberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19862', 'Schalksmuhle', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19863', 'Schermbeck', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19864', 'Schieder-Schwalenberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19865', 'Schleiden', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19866', 'SchloB Holte-Stukenbrock', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19867', 'Schmallenberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19868', 'Schwalmtal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19869', 'Schwelm', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19870', 'Schwerte', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19871', 'Selm', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19872', 'Senden', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19873', 'Sendenhorst', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19874', 'Siegburg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19875', 'Siegen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19876', 'Simmerath', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19877', 'Soest', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19878', 'Solingen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19879', 'Sonsbeck', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19880', 'Spenge', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19881', 'Sprockhovel', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19882', 'Stadtlohn', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19883', 'Steinfurt', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19884', 'Steinhagen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19885', 'Steinheim', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19886', 'Stemwede', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19887', 'Stolberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19888', 'Straelen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19889', 'Sundern', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19890', 'Swisttal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19891', 'Tecklenburg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19892', 'Telgte', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19893', 'Tonisvorst', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19894', 'Troisdorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19895', 'Ubach-Palenberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19896', 'Unna', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19897', 'Velbert', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19898', 'Velen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19899', 'Verl', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19900', 'Versmold', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19901', 'Viersen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19902', 'Vlotho', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19903', 'Voerde', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19904', 'Vreden', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19905', 'Wachtberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19906', 'Wachtendonk', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19907', 'Wadersloh', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19908', 'Waldbrol', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19909', 'Waltrop', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19910', 'Warburg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19911', 'Warendorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19912', 'Warstein', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19913', 'Wassenberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19914', 'Weeze', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19915', 'Wegberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19916', 'Weilerswist', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19917', 'Welver', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19918', 'Wenden', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19919', 'Werdohl', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19920', 'Werl', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19921', 'Wermelskirchen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19922', 'Werne', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19923', 'Werther', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19924', 'Wesel', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19925', 'Wesseling', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19926', 'Westerkappeln', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19927', 'Wetter', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19928', 'Wickede', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19929', 'Wiehl', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19930', 'Willich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19931', 'Wilnsdorf', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19932', 'Windeck', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19933', 'Winterberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19934', 'Wipperfurth', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19935', 'Witten', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19936', 'Wulfrath', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19937', 'Wunnenberg', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19938', 'Wuppertal', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19939', 'Wurselen', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19940', 'Xanten', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19941', 'Zulpich', '1387', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19942', 'Herzberg am Harz', '1389', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19943', 'Alzey', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19944', 'Andernach', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19945', 'Bad Durkheim', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19946', 'Bad Ems', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19947', 'Bad Kreuznach', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19948', 'Bad Neuenahr-Ahrweiler', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19949', 'Bendorf', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19950', 'Betzdorf', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19951', 'Bingen', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19952', 'Bitburg', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19953', 'Bobenheim-Roxheim', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19954', 'Bohl-Iggelheim', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19955', 'Boppard', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19956', 'Daun', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19957', 'Diez', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19958', 'Eisenberg', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19959', 'Essingen', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19960', 'Frankenthal', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19961', 'Gau-Odernheim', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19962', 'Germersheim', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19963', 'Grunstadt', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19964', 'HaBloch', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19965', 'Hahnstatten', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19966', 'Hallschlag', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19967', 'Herschbach', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19968', 'Herxheim', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19969', 'Hirschhorn', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19970', 'Hohr-Grenzhausen', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19971', 'Holzheim', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19972', 'Idar-Oberstein', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19973', 'Ingelheim', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19974', 'Kaisersesch', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19975', 'Kaiserslautern', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19976', 'Kastellaun', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19977', 'Kindsbach', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19978', 'Kirchen', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19979', 'Kirn', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19980', 'Koblenz', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19981', 'Lahnstein', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19982', 'Landau', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19983', 'Limburgerhof', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19984', 'Luckenburg', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19985', 'Ludwigshafen', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19986', 'Mainz', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19987', 'Mayen', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19988', 'Montabaur', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19989', 'Morbach', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19990', 'Mulheim-Karlich', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19991', 'Mundersbach', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19992', 'Mutterstadt', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19993', 'Nassau', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19994', 'Neitersen', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19995', 'Neustadt', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19996', 'Neuwied', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19997', 'Niederzissen', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19998', 'Pirmasens', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('19999', 'Plaidt', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20000', 'Remagen', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20001', 'Schifferstadt', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20002', 'Schoenenberg Kuebelberg', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20003', 'Sinzig', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20004', 'Speyer', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20005', 'St. Goar', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20006', 'Trier', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20007', 'Vallendar', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20008', 'Winterbach', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20009', 'Wittlich', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20010', 'Worms', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20011', 'Worth', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20012', 'Zweibrucken', '1390', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20013', 'Adenau', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20014', 'Anhausen', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20015', 'Barbelroth', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20016', 'Berndroth', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20017', 'Bernkastel-Kues', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20018', 'Burgbrohl', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20019', 'Dieblich', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20020', 'Dierdorf', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20021', 'Dreisbach', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20022', 'Elsoff', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20023', 'Enkenbach-Alsenborn', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20024', 'Etzbach', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20025', 'Flonheim', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20026', 'Fohren', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20027', 'Grafschaft', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20028', 'Hochspeyer', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20029', 'Leiningen', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20030', 'Moschheim', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20031', 'Murlenbach', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20032', 'Neuhofen', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20033', 'Nievern', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20034', 'Norken', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20035', 'Oberlahr', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20036', 'Otterstadt', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20037', 'Rennerod', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20038', 'Rheinbreitbach', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20039', 'Rieschweiler-Muhlbach', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20040', 'Saarburg', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20041', 'Stahlhofen', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20042', 'Steinebach', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20043', 'Weinsheim', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20044', 'Winnweiler', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20045', 'Wissen', '1391', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20046', 'Beckingen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20047', 'Bexbach', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20048', 'Blieskastel', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20049', 'Dillingen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20050', 'Duppenweiler', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20051', 'Eppelborn', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20052', 'Friedrichsthal', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20053', 'GroBrosseln', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20054', 'Heusweiler', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20055', 'Homburg', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20056', 'Illingen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20057', 'Kirkel', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20058', 'Kleinblittersdorf', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20059', 'Lebach', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20060', 'Losheim', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20061', 'Mandelbachtal', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20062', 'Marpingen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20063', 'Merchweiler', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20064', 'Merzig', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20065', 'Mettlach', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20066', 'Nalbach', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20067', 'Neunkirchen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20068', 'Nohfelden', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20069', 'Nonnweiler', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20070', 'Oberthal', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20071', 'Ottweiler', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20072', 'Puttlingen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20073', 'Quierschied', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20074', 'Rehlingen-Siersburg', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20075', 'Riegelsberg', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20076', 'Saarbrucken', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20077', 'Saarlouis', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20078', 'Saarwellingen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20079', 'Sankt Ingbert', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20080', 'Sankt Wendel', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20081', 'Schiffweiler', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20082', 'Schmelz', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20083', 'Schwalbach', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20084', 'Spiesen-Elversberg', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20085', 'Sulzbach', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20086', 'Tholey', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20087', 'Uberherrn', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20088', 'Volklingen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20089', 'Wadern', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20090', 'Wadgassen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20091', 'Wallerfangen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20092', 'Weiskirchen', '1392', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20093', 'Annaberg-Buchholz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20094', 'Aue', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20095', 'Auerbach', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20096', 'Bautzen', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20097', 'Bischofswerda', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20098', 'Borna', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20099', 'Brand-Erbisdorf', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20100', 'Burgstadt', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20101', 'Chemnitz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20102', 'Coswig', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20103', 'Crimmitschau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20104', 'Delitzsch', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20105', 'Dobeln', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20106', 'Dresden', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20107', 'Ebersbach', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20108', 'Eilenburg', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20109', 'Falkenstein', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20110', 'Floha', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20111', 'Frankenberg', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20112', 'Freiberg', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20113', 'Freital', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20114', 'Friedewald', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20115', 'Glauchau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20116', 'Gorlitz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20117', 'Grimma', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20118', 'GroBenhain', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20119', 'Groditz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20120', 'Hainichen', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20121', 'Heidenau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20122', 'Hirschstein', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20123', 'Hohenstein-Ernstthal', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20124', 'Hoyerswerda', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20125', 'Kamenz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20126', 'Klingenthal', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20127', 'Leipzig', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20128', 'Lichtenstein', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20129', 'Limbach-Oberfrohna', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20130', 'LoBnitz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20131', 'Lobau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20132', 'Lugau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20133', 'Marienberg', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20134', 'Markkleeberg', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20135', 'Meerane', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20136', 'MeiBen', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20137', 'Mittweida', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20138', 'Muldenhammer', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20139', 'Neustadt', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20140', 'Niesky', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20141', 'Oelsnitz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20142', 'Olbernhau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20143', 'Olbersdorf', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20144', 'Oschatz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20145', 'Pirna', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20146', 'Plauen', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20147', 'Radeberg', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20148', 'Radebeul', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20149', 'Reichenbach', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20150', 'Riesa', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20151', 'Rietschen', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20152', 'Schkeuditz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20153', 'Schneeberg', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20154', 'Schwarzenberg', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20155', 'Sebnitz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20156', 'Stollberg', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20157', 'Taubenheim', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20158', 'Taucha', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20159', 'Thalheim', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20160', 'Torgau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20161', 'Waldheim', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20162', 'WeiBwasser', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20163', 'Werdau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20164', 'Wilkau-HaBlau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20165', 'Wurzen', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20166', 'Zittau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20167', 'Zschopau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20168', 'Zwickau', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20169', 'Zwonitz', '1393', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20170', 'Aken', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20171', 'Aschersleben', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20172', 'Bad Durrenberg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20173', 'Bebitz', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20174', 'Bernburg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20175', 'Bitterfeld', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20176', 'Blankenburg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20177', 'Braunsbedra', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20178', 'Burg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20179', 'Calbe', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20180', 'Coswig', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20181', 'Dessau', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20182', 'Eisleben', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20183', 'Gardelegen', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20184', 'Genthin', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20185', 'Gommern', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20186', 'Grafenhainichen', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20187', 'Halberstadt', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20188', 'Haldensleben', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20189', 'Halle', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20190', 'Hettstedt', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20191', 'Heyrothsberge', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20192', 'Hotensleben', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20193', 'Kothen', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20194', 'Leuna', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20195', 'Magdeburg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20196', 'Merseburg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20197', 'Naumburg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20198', 'Oschersleben', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20199', 'Osterburg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20200', 'Osterwieck', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20201', 'Quedlinburg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20202', 'Querfurt', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20203', 'Raguhn', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20204', 'RoBlau', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20205', 'Salzwedel', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20206', 'Sangerhausen', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20207', 'Schonebeck', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20208', 'StaBfurt', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20209', 'Stendal', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20210', 'Tangermunde', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20211', 'Thale', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20212', 'WeiBenfels', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20213', 'Wittenberg', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20214', 'Wolfen', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20215', 'Wolmirstedt', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20216', 'Zeitz', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20217', 'Zerbst', '1394', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20218', 'Bad Lausick', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20219', 'Bernsdorf', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20220', 'Borde-Hakel', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20221', 'Gelenau', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20222', 'Groberkmannsdorf ', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20223', 'Hartha', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20224', 'Kreischa', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20225', 'Malschwitz', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20226', 'Naunhof', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20227', 'Pausa', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20228', 'Seiffen', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20229', 'Stutzengrun', '1395', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20230', 'Ahrensbok', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20231', 'Ahrensburg', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20232', 'Altenholz', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20233', 'Alveslohe', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20234', 'Ammersbek', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20235', 'Bad Bramstedt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20236', 'Bad Oldesloe', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20237', 'Bad Schwartau', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20238', 'Bad Segeberg', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20239', 'Bargteheide', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20240', 'Barmstedt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20241', 'Barsbuttel', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20242', 'Bredstedt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20243', 'Brunsbuttel', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20244', 'Budelsdorf', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20245', 'Eckernforde', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20246', 'Eddelak', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20247', 'Elmshorn', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20248', 'Eutin', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20249', 'Flensburg', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20250', 'Friedrichstadt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20251', 'Geesthacht', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20252', 'Glinde', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20253', 'Gluckstadt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20254', 'Grob Pampau', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20255', 'Halstenbek', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20256', 'Hamfelde', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20257', 'Harrislee', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20258', 'Hartenholm', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20259', 'Heide', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20260', 'Heiligenhafen', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20261', 'Henstedt-Ulzburg', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20262', 'Honenwestedt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20263', 'Husum', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20264', 'Itzehoe', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20265', 'Kaltenkirchen', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20266', 'Kappeln', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20267', 'Kiel', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20268', 'Kronshagen', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20269', 'Lauenburg', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20270', 'Lensahn', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20271', 'Lubeck', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20272', 'Malente', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20273', 'Mielkendorf', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20274', 'Molfsee', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20275', 'Molln', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20276', 'Neuenbrook', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20277', 'Neumunster', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20278', 'Neustadt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20279', 'Norderstedt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20280', 'Oldenburg', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20281', 'Oststeinbek', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20282', 'Pinneberg', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20283', 'Plon', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20284', 'Preetz', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20285', 'Quickborn', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20286', 'Ratekau', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20287', 'Ratzeburg', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20288', 'Reinbek', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20289', 'Reinfeld', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20290', 'Rellingen', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20291', 'Rendsburg', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20292', 'Rethwisch', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20293', 'Satrup', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20294', 'Scharbeutz', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20295', 'Schenefeld', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20296', 'Schleswig', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20297', 'Schmalfeld', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20298', 'Schoenkirchen', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20299', 'Schwarzenbek', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20300', 'Seefeld', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20301', 'Sievershutten', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20302', 'Stockelsdorf', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20303', 'Tangstedt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20304', 'Timmendorfer Strand', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20305', 'Tornesch', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20306', 'Travemunde', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20307', 'Uetersen', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20308', 'Wahlstedt', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20309', 'Wedel', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20310', 'Wentorf', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20311', 'Westerland', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20312', 'Westerronfeld', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20313', 'Wohltorf', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20314', 'Wotersen', '1396', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20315', 'Altenburg', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20316', 'Apolda', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20317', 'Arnstadt', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20318', 'Bad Frankenhausen', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20319', 'Bad Langensalza', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20320', 'Bad Salzungen', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20321', 'Cursdorf', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20322', 'Dornburg', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20323', 'Eisenach', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20324', 'Eisenberg', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20325', 'Erfurt', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20326', 'Gera', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20327', 'Geschwenda', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20328', 'Gotha', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20329', 'Greiz', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20330', 'Heiligenstadt', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20331', 'Hermsdorf', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20332', 'Hildburghausen', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20333', 'Ilmenau', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20334', 'Immelborn', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20335', 'Jena', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20336', 'Leinefelde', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20337', 'Leutenberg', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20338', 'Meiningen', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20339', 'Meuselwitz', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20340', 'Muhlhausen', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20341', 'Neustadt', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20342', 'Nordhausen', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20343', 'PoBneck', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20344', 'Rosenthal', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20345', 'Rositz', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20346', 'Rudolstadt', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20347', 'Ruhla', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20348', 'Saalfeld', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20349', 'Schmalkalden', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20350', 'Schmolln', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20351', 'Sommerda', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20352', 'Sondershausen', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20353', 'Sonneberg', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20354', 'Suhl', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20355', 'Triptis', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20356', 'Uhlstadt', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20357', 'Waltershausen', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20358', 'Weida', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20359', 'Weimar', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20360', 'Wernigerode', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20361', 'Wormstedt', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20362', 'Zella-Mehlis', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20363', 'Zeulenroda', '1397', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20364', 'Webling', '1398', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20365', 'Neustadt', '1399', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20366', 'Schlobborn', '1400', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20367', 'Agogo', '1401', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20368', 'Bekwai', '1401', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20369', 'Konongo', '1401', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20370', 'Kumasi', '1401', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20371', 'Mampong', '1401', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20372', 'Mankranso', '1401', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20373', 'Obuasi', '1401', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20374', 'Ofinso', '1401', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20375', 'Tafo', '1401', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20376', 'Bechem', '1402', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20377', 'Berekum', '1402', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20378', 'Duayaw Nkwanta', '1402', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20379', 'Kintampo', '1402', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20380', 'Sunyani', '1402', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20381', 'Techiman', '1402', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20382', 'Wenchi', '1402', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20383', 'Apam', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20384', 'Cape Coast', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20385', 'Dunkwa', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20386', 'Elmina', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20387', 'Foso', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20388', 'Komenda', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20389', 'Mauri', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20390', 'Mumford', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20391', 'Nyakrom', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20392', 'Okitsiu', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20393', 'Saltpond', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20394', 'Swedru', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20395', 'Winneba', '1403', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20396', 'Aburi', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20397', 'Ada', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20398', 'Akim Swedru', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20399', 'Akropong', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20400', 'Asamankese', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20401', 'Begoro', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20402', 'Kade', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20403', 'Kibi', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20404', 'Koforidua', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20405', 'Mpraeso', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20406', 'Nkawkaw', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20407', 'Nsawam', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20408', 'Oda', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20409', 'Somanya', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20410', 'Suhum', '1404', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20411', 'Kpandae', '1406', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20412', 'Salaga', '1406', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20413', 'Savelugu', '1406', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20414', 'Tamale', '1406', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20415', 'Yendi', '1406', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20416', 'Aflao', '1409', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20417', 'Anloga', '1409', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20418', 'Ho', '1409', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20419', 'Hohoe', '1409', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20420', 'Keta', '1409', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20421', 'Kete-Krachi', '1409', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20422', 'Kpandu', '1409', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20423', 'Aboso', '1410', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20424', 'Anomabu', '1410', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20425', 'Axim', '1410', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20426', 'Bibiani', '1410', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20427', 'Prestea', '1410', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20428', 'Sekondi', '1410', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20429', 'Shama', '1410', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20430', 'Takoradi', '1410', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20431', 'Tarkwa', '1410', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20432', 'Gibraltar', '1411', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20433', 'Elassonos', '1412', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20434', 'Aiyion', '1413', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20435', 'Patra', '1413', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20436', 'Argos', '1415', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20437', 'Navplion', '1415', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20438', 'Tripoli', '1416', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20439', 'Arta', '1417', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20440', 'Acharnes', '1418', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20441', 'Agios Ioannis Rentis', '1418', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20442', 'Drapetsona', '1418', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20443', 'Koropi', '1418', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20444', 'Lavrion', '1418', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20445', 'Mandra', '1418', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20446', 'Spata', '1418', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20447', 'Aharna', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20448', 'Aiyaleo', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20449', 'Alimos', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20450', 'Amarousion', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20451', 'Ano Liosia', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20452', 'Aryiroupoli', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20453', 'Aspropirgos', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20454', 'Athina', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20455', 'Athinai', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20456', 'Ayia Barbara', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20457', 'Ayia Paraskevi', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20458', 'Ayios Anaryiros', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20459', 'Ayios Dimitrios', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20460', 'Dafne', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20461', 'Elevsis', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20462', 'Ellenikon', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20463', 'Galatsion', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20464', 'Glifada', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20465', 'Haidarion', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20466', 'Halandrion', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20467', 'Holargos', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20468', 'Ilioupoli', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20469', 'Iraklion', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20470', 'Kaisariani', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20471', 'Kallithea', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20472', 'Kamateron', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20473', 'Keratea', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20474', 'Keratsinion', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20475', 'Kifisia', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20476', 'Koridallos', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20477', 'Kropion', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20478', 'Markopoulos Mesogaia', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20479', 'Maroussi', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20480', 'Megara', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20481', 'Melission', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20482', 'Metamorfosios', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20483', 'Moshatos', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20484', 'Nea Filedelfia', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20485', 'Nea Ionia', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20486', 'Nea Liosia', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20487', 'Nea Smirni', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20488', 'Nikaia', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20489', 'Palaion Faliron', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20490', 'Perama', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20491', 'Peristerion', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20492', 'Petroupoli', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20493', 'Pevka', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20494', 'Piraeus', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20495', 'Salamis', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20496', 'Tavros', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20497', 'Viron', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20498', 'Voula', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20499', 'Vrilission', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20500', 'Zografos', '1419', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20501', 'Heraklion', '1421', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20502', 'Arhangelos', '1422', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20503', 'Ialysos', '1422', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20504', 'Kos', '1422', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20505', 'Rodos', '1422', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20506', 'Drama', '1423', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20507', 'Chalkis', '1424', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20508', 'Karpenisi', '1425', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20509', 'Alexandroupoli', '1426', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20510', 'Orestias', '1426', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20511', 'Halkida', '1427', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20512', 'Florina', '1428', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20513', 'Amfissa', '1429', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20514', 'Lamia', '1430', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20515', 'Grevena', '1431', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20516', 'Halandri', '1432', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20517', 'Lakkoma', '1433', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20518', 'N. Kallikrateia', '1433', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20519', 'Poliyiros', '1433', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20520', 'Hania', '1434', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20521', 'Crete', '1435', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20522', 'Hios', '1436', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20523', 'Pirgos', '1437', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20524', 'Veroia', '1438', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20525', 'Ioannina', '1439', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20526', 'Karditsa', '1441', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20527', 'Kastoria', '1442', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20528', 'Kavala', '1443', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20529', 'Agioi Theodoroi', '1444', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20530', 'Argostolion', '1444', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20531', 'Kerkira', '1445', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20532', 'Ermoupoli', '1446', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20533', 'Fira', '1446', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20534', 'Mikonos', '1446', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20535', 'Kilkis', '1447', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20536', 'Korinthos', '1448', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20537', 'Kozani', '1449', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20538', 'Ptolemais', '1449', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20539', 'Sparti', '1450', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20540', 'Larisa', '1451', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20541', 'Larissa', '1451', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20542', 'Ayios Nikolaos', '1452', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20543', 'Ierapetra', '1452', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20544', 'Sitia', '1452', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20545', 'Mitilini', '1453', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20546', 'Levkas', '1454', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20547', 'Volos', '1455', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20548', 'Kalamata', '1456', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20549', 'Edessa', '1459', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20550', 'Yiannitsa', '1459', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20551', 'Katerini', '1460', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20552', 'Acharne', '1461', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20553', 'Pallini', '1461', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20554', 'Preveza', '1462', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20555', 'Rethimnon', '1463', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20556', 'Komotini', '1464', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20557', 'Samos', '1465', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20558', 'Serrai', '1466', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20559', 'Igoumenitsa', '1467', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20560', 'Ampelokipa', '1468', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20561', 'Kalamaria', '1468', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20562', 'Neapoli', '1468', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20563', 'Oristiada', '1468', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20564', 'Thessaloniki', '1468', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20565', 'Trikala', '1469', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20566', 'Levadia', '1470', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20567', 'Thivai', '1470', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20568', 'Xanthi', '1472', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20569', 'Zakinthos', '1473', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20570', 'Aasiaat', '1474', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20571', 'Akunnaaq', '1474', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20572', 'Kitsissuarsuit', '1474', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20573', 'Ikkatteq', '1475', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20574', 'Isortoq', '1475', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20575', 'Kulusuk', '1475', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20576', 'Kuumiut', '1475', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20577', 'Qernertuarssuit', '1475', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20578', 'Sermiligaaq', '1475', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20579', 'Tasiilaq', '1475', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20580', 'Tiniteqilaaq', '1475', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20581', 'Illoqqortoormiut', '1476', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20582', 'Itterajivit', '1476', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20583', 'Uunarteq', '1476', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20584', 'Ilimanaq', '1477', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20585', 'Ilulissat', '1477', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20586', 'Oqaatsut', '1477', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20587', 'Qeqertaq', '1477', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20588', 'Saqqaq', '1477', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20589', 'Ivittuut', '1478', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20590', 'Kangilinnguit', '1478', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20591', 'Attu', '1479', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20592', 'Iginniarfik', '1479', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20593', 'Ikerasaarsuk', '1479', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20594', 'Kangaatsiaq', '1479', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20595', 'Niaqornaarsuk', '1479', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20596', 'Atammik', '1480', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20597', 'Kangaamiut', '1480', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20598', 'Maniitsoq', '1480', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20599', 'Napasoq', '1480', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20600', 'Aappilattoq', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20601', 'Akuliaruseq', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20602', 'Alluitsoq', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20603', 'Alluitsup Paa', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20604', 'Ammassivik', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20605', 'Ikerasassuaq', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20606', 'Nanortalik', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20607', 'Narsarmijit', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20608', 'Nuugaarsuk', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20609', 'Qallimiut', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20610', 'Qortortorsuaq', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20611', 'Tasiusaq', '1481', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20612', 'Amannguit', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20613', 'Atarnaatsoq', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20614', 'Eqaluit Ilua', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20615', 'Igaliku', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20616', 'Igaliku Kujalleq', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20617', 'Inneruulalik', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20618', 'Issormiut', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20619', 'Iterlak', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20620', 'Kangerlua', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20621', 'Narsaq', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20622', 'Narsarsuaq', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20623', 'Nunataaq', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20624', 'Qassiarsuk', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20625', 'Qinngua', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20626', 'Qinngua Kangilleq', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20627', 'Qolortup Itinnera', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20628', 'Sillisit', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20629', 'Tasiusaq', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20630', 'Timerliit', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20631', 'Uummannartuuaraq', '1482', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20632', 'Kangerluarsoruseq', '1483', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20633', 'Kapisillit', '1483', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20634', 'Neriunaq', '1483', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20635', 'Nuuk', '1483', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20636', 'Qeqertarsuatsiaat', '1483', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20637', 'Qooqqut', '1483', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20638', 'Qoornoq', '1483', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20639', 'Arsuk', '1484', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20640', 'Paamiut', '1484', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20641', 'Moriusaq', '1485', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20642', 'Qaanaaq', '1485', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20643', 'Qeqertarsuaq', '1485', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20644', 'Qeqertat', '1485', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20645', 'Savissivik', '1485', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20646', 'Siorapaluk', '1485', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20647', 'Eqalugaarsuit', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20648', 'Illorsuit', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20649', 'Kangerluarsorujuk', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20650', 'Kangerluarsorujuup Qinngua', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20651', 'Qanisartuut', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20652', 'Qaqortokolook', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20653', 'Qaqortoq', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20654', 'Qassimiut', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20655', 'Saarloq', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20656', 'Saqqamiut', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20657', 'Tasiluk', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20658', 'Upernaviarsuk', '1486', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20659', 'Ikamiut', '1487', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20660', 'Qasigiannguit', '1487', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20661', 'Kangerluk', '1488', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20662', 'Qeqertarsuaq', '1488', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20663', 'Itilleq', '1489', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20664', 'Kangerlussuaq', '1489', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20665', 'Sarfannguit', '1489', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20666', 'Sisimiut', '1489', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20667', 'Aappilattoq', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20668', 'Ikerakuuk', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20669', 'Innarsuit', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20670', 'Kangersuatsiaq', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20671', 'Kullorsuaq', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20672', 'Naajaat', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20673', 'Nutaarmiut', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20674', 'Nuusuaq', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20675', 'Tasiusaq', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20676', 'Upernavik', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20677', 'Upernavik Kujalleq', '1491', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20678', 'Ikerasak', '1492', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20679', 'Illorsuit', '1492', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20680', 'Niaqornat', '1492', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20681', 'Nuugaatsiaq', '1492', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20682', 'Qaarsut', '1492', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20683', 'Saattut', '1492', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20684', 'Ukkusissat', '1492', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20685', 'Uummannaq', '1492', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20686', 'Baie-Mahault', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20687', 'Baillif', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20688', 'Basse-Terre', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20689', 'Bouillante', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20690', 'Capesterre-Belle-Eau', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20691', 'Gourbeyre', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20692', 'Lamentin', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20693', 'Petit-Bourg', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20694', 'Pointe-Noire', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20695', 'Saint-Claude', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20696', 'Sainte-Rose', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20697', 'Trois-Rivieres', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20698', 'Vieux-Habitants', '1500', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20699', 'Anse-Bertrand', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20700', 'Le Gosier', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20701', 'Le Moule', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20702', 'Les Abymes', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20703', 'Morne-a-l\'Eau', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20704', 'Petit-Canal', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20705', 'Point-a-Pitre', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20706', 'Port-Louis', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20707', 'Saint-Francois', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20708', 'Sainte-Anne', '1501', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20709', 'Grand-Bourg', '1504', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20710', 'Agat', '1508', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20711', 'Barrigada', '1509', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20712', 'Barrigada Heights', '1509', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20713', 'Chalan Pago', '1510', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20714', 'Ordot', '1510', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20715', 'Astumbo', '1511', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20716', 'Dededo', '1511', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20717', 'Finegayan Station', '1511', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20718', 'Agana', '1512', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20719', 'Agana Station', '1512', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20720', 'Inarajan', '1513', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20721', 'Mangilao', '1514', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20722', 'Merizo', '1515', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20723', 'Mongmong', '1516', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20724', 'Toto', '1516', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20725', 'Sinajana', '1518', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20726', 'Talofofo', '1519', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20727', 'Tamuning', '1520', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20728', 'Anderson Air Force Base', '1521', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20729', 'Yigo', '1521', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20730', 'Yona', '1522', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20731', 'Chimaltenango', '1525', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20732', 'Comalapa', '1525', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20733', 'Itzapa', '1525', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20734', 'Patzun', '1525', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20735', 'Chiquimula', '1526', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20736', 'Esquipulas', '1526', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20737', 'Cotzumalguapa', '1528', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20738', 'Escuintla', '1528', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20739', 'Palin', '1528', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20740', 'San Jose', '1528', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20741', 'Tiquisate', '1528', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20742', 'Amatitlan', '1529', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20743', 'Chinautla', '1529', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20744', 'Guatemala', '1529', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20745', 'Mixco', '1529', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20746', 'Petapa', '1529', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20747', 'Villa Nueva', '1529', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20748', 'Huehuetenango', '1530', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20749', 'Puerto Barrios', '1531', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20750', 'Jalapa', '1532', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20751', 'Asuncion Mita', '1533', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20752', 'Jutiapa', '1533', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20753', 'Flores', '1534', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20754', 'San Benito', '1534', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20755', 'Quezaltenango', '1535', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20756', 'Quiche', '1536', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20757', 'Retalhuleu', '1537', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20758', 'Antigua', '1538', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20759', 'Ciudad Vieja', '1538', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20760', 'Jocotenango', '1538', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20761', 'Santa Maria de Jesus', '1538', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20762', 'Sumpango', '1538', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20763', 'Atitlan', '1541', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20764', 'Solola', '1541', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20765', 'Mazatenango', '1542', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20766', 'Totonicapan', '1543', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20767', 'Zacapa', '1544', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20768', 'Saint Anne\'s', '1545', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20769', 'Castle', '1546', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20770', 'Forest', '1547', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20771', 'Sark', '1554', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20772', 'Torteval', '1555', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20773', 'Vale', '1556', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20774', 'Beyla', '1557', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20775', 'Boffa', '1558', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20776', 'Boke', '1559', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20777', 'Conakry', '1560', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20778', 'Coyah', '1561', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20779', 'Dabola', '1562', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20780', 'Dalaba', '1563', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20781', 'Dinguiraye', '1564', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20782', 'Faranah', '1565', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20783', 'Forecariah', '1566', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20784', 'Fria', '1567', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20785', 'Gaoual', '1568', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20786', 'Guekedou', '1569', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20787', 'Kankan', '1570', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20788', 'Kerouane', '1571', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20789', 'Kindia', '1572', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20790', 'Kissidougou', '1573', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20791', 'Koubia', '1574', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20792', 'Koundara', '1575', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20793', 'Kouroussa', '1576', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20794', 'Labe', '1577', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20795', 'Lola', '1578', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20796', 'Macenta', '1579', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20797', 'Mali', '1580', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20798', 'Mamou', '1581', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20799', 'Mandiana', '1582', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20800', 'Nzerekore', '1583', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20801', 'Pita', '1584', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20802', 'Siguiri', '1585', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20803', 'Telimele', '1586', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20804', 'Tougue', '1587', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20805', 'Yomou', '1588', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20806', 'Bafata', '1589', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20807', 'Bissau', '1590', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20808', 'Bolama', '1591', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20809', 'Bubaque', '1591', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20810', 'Cacheu', '1592', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20811', 'Canchungo', '1592', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20812', 'Gabu', '1593', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20813', 'Bissora', '1594', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20814', 'Farim', '1594', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20815', 'Mansoa', '1594', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20816', 'Buba', '1595', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20817', 'Fulacunda', '1595', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20818', 'Quebo', '1595', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20819', 'Catio', '1596', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20820', 'Mabaruma', '1597', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20821', 'Morawhanna', '1597', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20822', 'Bartica', '1598', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20823', 'Issano', '1598', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20824', 'Kamarang', '1598', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20825', 'Georgetown', '1599', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20826', 'Mahaica', '1599', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20827', 'Paradise', '1599', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20828', 'Queenstown', '1599', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20829', 'Fort Wellington', '1602', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20830', 'Mahaicony', '1602', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20831', 'Rosignol', '1602', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20832', 'Anna Regina', '1603', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20833', 'Charity', '1603', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20834', 'Suddie', '1603', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20835', 'Mahdia', '1604', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20836', 'Tumatumari', '1604', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20837', 'Desdunes', '1607', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20838', 'Dessalines', '1607', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20839', 'Gonaives', '1607', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20840', 'Gros-Morne', '1607', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20841', 'L\'Artibonite', '1607', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20842', 'Saint-Marc', '1607', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20843', 'Saint-Michel-de-l\'Atalaye', '1607', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20844', 'Saint-Raphael', '1607', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20845', 'Verrettes', '1607', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20846', 'Hinche', '1608', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20847', 'Mirebalais', '1608', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20848', 'Anse-d\'Hainault', '1609', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20849', 'Dame Marie', '1609', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20850', 'Jeremie', '1609', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20851', 'Miragoane', '1609', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20852', 'Cap-Haitien', '1610', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20853', 'Croix-des-Bouquets', '1610', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20854', 'Grande Riviere du Nord', '1610', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20855', 'Limbe', '1610', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20856', 'Pignon', '1610', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20857', 'Derac', '1611', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20858', 'Fort-Liberte', '1611', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20859', 'Ouanaminthe', '1611', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20860', 'Trou-du-Nord', '1611', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20861', 'Port-de-Paix', '1612', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20862', 'Saint-Louis-du-Nord', '1612', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20863', 'Anse-a-Galets', '1613', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20864', 'Carrefour', '1613', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20865', 'Delmas', '1613', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20866', 'Kenscoff', '1613', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20867', 'Lascahobas', '1613', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20868', 'Leogane', '1613', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20869', 'Petionville', '1613', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20870', 'Petit Goave', '1613', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20871', 'Port-au-Prince', '1613', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20872', 'Aquin', '1614', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20873', 'Les Cayes', '1614', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20874', 'Jacmel', '1615', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20875', 'La Ceiba', '1617', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20876', 'Olanchito', '1617', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20877', 'Tela', '1617', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20878', 'Choluteca', '1618', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20879', 'El Triunfo', '1618', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20880', 'Pespire', '1618', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20881', 'Sonaguera', '1619', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20882', 'Tocoa', '1619', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20883', 'Trujillo', '1619', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20884', 'Comayagua', '1620', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20885', 'Siguatepeque', '1620', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20886', 'Copan', '1621', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20887', 'Corquin', '1621', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20888', 'Dulce Nombre', '1621', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20889', 'El Paraiso', '1621', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20890', 'San Antonio', '1621', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20891', 'San Nicolas', '1621', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20892', 'Santa Rosa de Copan', '1621', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20893', 'Choloma', '1622', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20894', 'La Lima', '1622', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20895', 'Omoa', '1622', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20896', 'Puerto Cortes', '1622', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20897', 'San Pedro Sula', '1622', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20898', 'Intibuca', '1627', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20899', 'La Esperanza', '1627', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20900', 'Utila', '1627', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20901', 'Gracias', '1630', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20902', 'Ocotepeque', '1631', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20903', 'San Marcos', '1631', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20904', 'Sinuapa', '1631', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20905', 'Catacamas', '1632', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20906', 'Juticalpa', '1632', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20907', 'Amapala', '1634', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20908', 'Langue', '1634', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20909', 'Nacaome', '1634', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20910', 'San Lorenzo', '1634', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20911', 'El Progreso', '1635', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20912', 'Morazan', '1635', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20913', 'Santa Rita', '1635', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20914', 'Yoro', '1635', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20915', 'Akaszto', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20916', 'Bacsalmas', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20917', 'Bacsbokod', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20918', 'Baja', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20919', 'Bugac', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20920', 'Davod', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20921', 'Dunapataj', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20922', 'Dunavecse', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20923', 'Fulopszallas', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20924', 'Hajos', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20925', 'Harta', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20926', 'Izsak', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20927', 'Jakabszallas', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20928', 'Janoshalma', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20929', 'Kalocsa', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20930', 'Kecel', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20931', 'Kecskemet', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20932', 'Kiskoros', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20933', 'Kiskunfelegyhaza', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20934', 'Kiskunhalas', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20935', 'Kiskunmajsa', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20936', 'Kunfeherto', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20937', 'Kunszentmiklos', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20938', 'Lajosmizse', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20939', 'Lakitelek', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20940', 'Madaras', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20941', 'Melykut', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20942', 'Nagybaracska', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20943', 'Orgovany', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20944', 'Palmonostora', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20945', 'Solt', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20946', 'Soltvadkert', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20947', 'Sukosd', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20948', 'Szabadszallas', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20949', 'Szalkszentmarton', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20950', 'Tass', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20951', 'Tiszakecske', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20952', 'Tompa', '1637', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20953', 'Beremend', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20954', 'Boly', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20955', 'Dunaszekcso', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20956', 'Harkany', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20957', 'Hosszuheteny', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20958', 'Komlo', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20959', 'Magocs', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20960', 'Mohacs', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20961', 'Pecs', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20962', 'Pecsvarad', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20963', 'Sasd', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20964', 'Sellye', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20965', 'Siklos', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20966', 'Szentlorinc', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20967', 'Szigetvar', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20968', 'Vajszlo', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20969', 'Villany', '1638', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20970', 'Battonya', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20971', 'Bekes', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20972', 'Bekescsaba', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20973', 'Bekessamson', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20974', 'Bekesszentandras', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20975', 'Csorvas', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20976', 'Devavanya', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20977', 'Doboz', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20978', 'Elek', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20979', 'Endrod', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20980', 'Fuzesgyarmat', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20981', 'Gyula', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20982', 'Ketegyhaza', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20983', 'Kondoros', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20984', 'Korosladany', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20985', 'Kunagota', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20986', 'Lokoshaza', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20987', 'Mezobereny', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20988', 'Mezohegyes', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20989', 'Mezokovacshaza', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20990', 'Nagyszenas', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20991', 'Oroshaza', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20992', 'Sarkad', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20993', 'Szabadkigyos', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20994', 'Szarvas', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20995', 'Szeghalom', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20996', 'Totkomlos', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20997', 'Veszto', '1639', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20998', 'Abaujszanto', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('20999', 'Arlo', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21000', 'Bogacs', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21001', 'Cigand', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21002', 'Edeleny', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21003', 'Emod', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21004', 'Encs', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21005', 'Gonc', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21006', 'Karcsa', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21007', 'Kazincbarcika', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21008', 'Mad', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21009', 'Megyaszo', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21010', 'Mezokeresztes', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21011', 'Mezokovesd', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21012', 'Miskolc', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21013', 'Monok', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21014', 'Nyekladhaza', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21015', 'Olaszliszka', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21016', 'Onod', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21017', 'Ozd', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21018', 'Putnok', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21019', 'Rudabanya', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21020', 'Sajokaza', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21021', 'Sajolad', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21022', 'Sajoszentpeter', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21023', 'Saly', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21024', 'Sarospatak', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21025', 'Satoraljaujhely', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21026', 'Szendro', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21027', 'Szentistvan', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21028', 'Szerencs', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21029', 'Szihalom', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21030', 'Szikszo', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21031', 'Taktaharkany', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21032', 'Taktaszada', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21033', 'Tallya', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21034', 'Tarcal', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21035', 'Tiszaluc', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21036', 'Tiszaujvaros', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21037', 'Tokaj', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21038', 'Tolcsva', '1640', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21039', 'Budapest', '1641', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21040', 'Csongrad', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21041', 'Fabiansebestyen', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21042', 'Foldeak', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21043', 'Hodmezovasarhely', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21044', 'Kiskundorozsma', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21045', 'Kistelek', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21046', 'Kiszombor', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21047', 'Mako', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21048', 'Mindszent', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21049', 'Morahalom', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21050', 'Pusztaszer', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21051', 'Roszke', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21052', 'Sandorfalva', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21053', 'Szatymaz', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21054', 'Szeged', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21055', 'Szegvar', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21056', 'Szekkutas', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21057', 'Szentes', '1642', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21058', 'Aba', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21059', 'Adony', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21060', 'Alap', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21061', 'Apostag', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21062', 'Bakonycsernye', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21063', 'Bicske', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21064', 'Bodajk', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21065', 'Cece', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21066', 'Csakvar', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21067', 'Deg', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21068', 'Dios', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21069', 'Dunaujvaros', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21070', 'Enying', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21071', 'Ercsi', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21072', 'Etyek', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21073', 'Fehervarcsurgo', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21074', 'Lovasbereny', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21075', 'Martonvasar', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21076', 'Mezofalva', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21077', 'Mezoszilas', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21078', 'Mor', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21079', 'Pazmand', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21080', 'Polgardi', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21081', 'Pusztavam', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21082', 'Rackeresztur', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21083', 'Sarbogard', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21084', 'Seregelyes', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21085', 'Soponya', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21086', 'Szabadbattyan', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21087', 'Szekesfehervar', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21088', 'Val', '1643', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21089', 'Asvanyraro', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21090', 'Beled', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21091', 'Bosarkany', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21092', 'Csorna', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21093', 'Fertod', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21094', 'Fertorakos', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21095', 'Fertoszentmiklos', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21096', 'Gyor', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21097', 'Gyorujbarat', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21098', 'Hunyadi u.', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21099', 'Kapuvar', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21100', 'Lebeny', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21101', 'Mihalyi', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21102', 'Mosonmagyarovar', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21103', 'Nyul', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21104', 'Pannonhalma', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21105', 'Rajka', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21106', 'Sopron', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21107', 'Szany', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21108', 'Tet', '1644', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21109', 'Balmazujvaros', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21110', 'Barand', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21111', 'Berettyoujfalu', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21112', 'Biharkeresztes', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21113', 'Biharnagybajom', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21114', 'Debrecen', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21115', 'Derecske', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21116', 'Egyek', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21117', 'Foldes', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21118', 'Hajduboszormeny', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21119', 'Hajdudorog', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21120', 'Hajduhadhaz', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21121', 'Hajdusamson', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21122', 'Hajduszoboszlo', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21123', 'Hajduszovat', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21124', 'Hortobagy', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21125', 'Hosszupalyi', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21126', 'Kaba', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21127', 'Komadi', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21128', 'Mikepercs', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21129', 'Monostorpalyi', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21130', 'Nadudvar', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21131', 'Nagyleta', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21132', 'Nyirabrany', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21133', 'Nyiracsad', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21134', 'Nyiradony', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21135', 'Polgar', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21136', 'Puspokladany', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21137', 'Sarretudvari', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21138', 'Tiszacsege', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21139', 'Ujfeherto', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21140', 'Vamospercs', '1645', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21141', 'Abasar', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21142', 'Andornaktalya', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21143', 'Belapatfalva', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21144', 'Domoszlo', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21145', 'Eger', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21146', 'Erdotelek', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21147', 'Felsotarkany', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21148', 'Fuzesabony', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21149', 'Gyongyos', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21150', 'Gyongyospata', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21151', 'Gyongyossolymos', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21152', 'Gyongyostarjan', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21153', 'Hatvan', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21154', 'Heves', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21155', 'Kal', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21156', 'Lorinci', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21157', 'Matraderecske', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21158', 'Parad', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21159', 'Petervasara', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21160', 'Recsk', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21161', 'Sirok', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21162', 'Tarnalelesz', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21163', 'Verpelet', '1646', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21164', 'Abadszalok', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21165', 'Besenyszog', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21166', 'Cserkeszolo', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21167', 'Fegyvernek', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21168', 'Hegyeshalom', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21169', 'Jaszalsoszentgyorgy', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21170', 'Jaszapati', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21171', 'Jaszarokszallas', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21172', 'Jaszbereny', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21173', 'Jaszfenyzaru', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21174', 'Jaszjakohalma', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21175', 'Jaszkiser', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21176', 'Jaszladany', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21177', 'Jaszszentandras', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21178', 'Karcag', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21179', 'Kenderes', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21180', 'Kisujszallas', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21181', 'Kunhegyes', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21182', 'Kunmadaras', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21183', 'Kunszentmarton', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21184', 'Martfu', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21185', 'Mezotur', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21186', 'Ocsod', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21187', 'Szolnok', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21188', 'Tiszabura', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21189', 'Tiszafoldvar', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21190', 'Tiszafured', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21191', 'Tiszapuspoki', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21192', 'Tiszaroff', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21193', 'Tiszasuly', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21194', 'Torokszentmiklos', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21195', 'Toszeg', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21196', 'Turkeve', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21197', 'Ujszasz', '1647', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21198', 'Acs', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21199', 'Almasfuzito', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21200', 'Babolna', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21201', 'Bajna', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21202', 'Dorog', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21203', 'Esztergom', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21204', 'Kesztolc', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21205', 'Kisber', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21206', 'Komarom', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21207', 'Kornye', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21208', 'Labatlan', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21209', 'Mocsa', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21210', 'Nagyigmand', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21211', 'Nyergesujfalu', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21212', 'Oroszlany', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21213', 'Sarisap', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21214', 'Tardos', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21215', 'Tarjan', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21216', 'Tata', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21217', 'Tatabanya', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21218', 'Tokod', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21219', 'Vertesszolos', '1648', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21220', 'Balassagyarmat', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21221', 'Batonyterenye', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21222', 'Bercel', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21223', 'Bujak', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21224', 'Diosjeno', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21225', 'Karancskeszi', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21226', 'Matraverebely', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21227', 'Nagyoroszi', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21228', 'Paszto', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21229', 'Retsag', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21230', 'Romhany', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21231', 'Salgotarjan', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21232', 'Szecseny', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21233', 'Tar', '1649', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21234', 'Abony', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21235', 'Albertirsa', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21236', 'Aszod', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21237', 'Biatorbagy', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21238', 'Budakalasz', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21239', 'Budakeszi', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21240', 'Budaors', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21241', 'Bugyi', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21242', 'Cegled', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21243', 'Csobanka', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21244', 'Dabas', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21245', 'Domsod', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21246', 'Dunabogdany', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21247', 'Dunaharaszti', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21248', 'Dunakeszi', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21249', 'Erd', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21250', 'Forro', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21251', 'Fot', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21252', 'Galgaheviz', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21253', 'God', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21254', 'Godollo', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21255', 'Gyomro', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21256', 'Hevizgyork', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21257', 'Isaszeg', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21258', 'Jaszkarajeno', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21259', 'Kiskunlachaza', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21260', 'Kocser', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21261', 'Koka', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21262', 'Kosd', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21263', 'Maglod', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21264', 'Monor', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21265', 'Nagykata', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21266', 'Nagykoros', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21267', 'Nagykovacsi', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21268', 'Nagymaros', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21269', 'Nagytarcsa', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21270', 'Nyaregyhaza', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21271', 'Ocsa', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21272', 'Orbottyan', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21273', 'Orkeny', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21274', 'Paty', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21275', 'Pecel', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21276', 'Perbal', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21277', 'Pilis', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21278', 'Pilisborosjeno', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21279', 'Piliscsaba', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21280', 'Pilisszanto', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21281', 'Pilisszentivan', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21282', 'Pilisszentkereszt', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21283', 'Pilisvorosvar', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21284', 'Pomaz', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21285', 'Racalmas', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21286', 'Rackeve', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21287', 'Solymar', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21288', 'Soskut', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21289', 'Szada', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21290', 'Szazhalombatta', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21291', 'Szentendre', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21292', 'Szentmartonkata', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21293', 'Szigetcsep', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21294', 'Szigetszentmiklos', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21295', 'Szigetujfalu', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21296', 'Szob', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21297', 'Tahitofalu', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21298', 'Tapiobicske', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21299', 'Tapioszecso', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21300', 'Tapioszele', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21301', 'Toalmas', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21302', 'Torokbalint', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21303', 'Tortel', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21304', 'Tura', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21305', 'Ullo', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21306', 'Uri', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21307', 'Urom', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21308', 'Vac', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21309', 'Vecses', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21310', 'Veresegyhaz', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21311', 'Verocemaros', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21312', 'Visegrad', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21313', 'Zsambek', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21314', 'Zsambok', '1650', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21315', 'Adand', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21316', 'Balatonfoldvar', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21317', 'Balatonoszod', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21318', 'Balatonszabadi', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21319', 'Balatonszarszo', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21320', 'Barcs', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21321', 'Berzence', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21322', 'Boglarlelle', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21323', 'Bohonye', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21324', 'Csurgo', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21325', 'Fonyod', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21326', 'Kaposvar', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21327', 'Karad', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21328', 'Kethely', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21329', 'Lengyeltoti', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21330', 'Marcali', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21331', 'Nagyatad', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21332', 'Nagybajom', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21333', 'Siofok', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21334', 'Somogyvar', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21335', 'Tab', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21336', 'Zamardi', '1651', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21337', 'Ajak', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21338', 'Baktaloranthaza', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21339', 'Balkany', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21340', 'Buj', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21341', 'Demecser', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21342', 'Dombrad', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21343', 'Fehergyarmat', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21344', 'Ibrany', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21345', 'Kemecse', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21346', 'Kisvarda', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21347', 'Kotaj', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21348', 'Mandok', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21349', 'Mariapocs', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21350', 'Mateszalka', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21351', 'Nagyecsed', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21352', 'Nagyhalasz', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21353', 'Nagykallo', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21354', 'Nyirbator', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21355', 'Nyirbeltek', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21356', 'Nyiregyhaza', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21357', 'Nyirmada', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21358', 'Nyirpazony', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21359', 'Nyirtelek', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21360', 'Ofeherto', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21361', 'Rakamaz', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21362', 'Tarpa', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21363', 'Tiszabercel', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21364', 'Tiszalok', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21365', 'Tiszavasvari', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21366', 'Tuzser', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21367', 'Vaja', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21368', 'Vasarosnameny', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21369', 'Zahony', '1652', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21370', 'Bataszek', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21371', 'Bonyhad', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21372', 'Decs', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21373', 'Dombovar', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21374', 'Dunafoldvar', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21375', 'Fadd', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21376', 'Gyonk', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21377', 'Hogyesz', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21378', 'Iregszemcse', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21379', 'Madocsa', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21380', 'Nagymagocs', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21381', 'Nagymanyok', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21382', 'Ozora', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21383', 'Paks', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21384', 'Pincehely', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21385', 'Simontornya', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21386', 'Szekszard', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21387', 'Szentgal', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21388', 'Tamasi', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21389', 'Tengelic', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21390', 'Tolna', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21391', 'Zomba', '1653', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21392', 'Buk', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21393', 'Celldomolk', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21394', 'Csepreg', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21395', 'Gencsapati', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21396', 'Jak', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21397', 'Janoshaza', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21398', 'Kormend', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21399', 'Koszeg', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21400', 'Sarvar', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21401', 'Szentgotthard', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21402', 'Szombathely', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21403', 'Vasvar', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21404', 'Vep', '1654', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21405', 'Ajka', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21406', 'Badacsonytomaj', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21407', 'Balatonalmadi', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21408', 'Balatonfured', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21409', 'Balatonfuzfo', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21410', 'Balatonkenese', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21411', 'Band', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21412', 'Berhida', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21413', 'Csabrendek', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21414', 'Devecser', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21415', 'Herend', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21416', 'Papa', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21417', 'Sumeg', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21418', 'Tapolca', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21419', 'Urkut', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21420', 'Varpalota', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21421', 'Veszprem', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21422', 'Zirc', '1655', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21423', 'Becsehely', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21424', 'Heviz', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21425', 'Keszthely', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21426', 'Lenti', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21427', 'Letenye', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21428', 'Nagykanizsa', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21429', 'Sarmellek', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21430', 'Turje', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21431', 'Zalaegerszeg', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21432', 'Zalakomar', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21433', 'Zalalovo', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21434', 'Zalaszentgrot', '1656', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21435', 'Bakkafjor ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21436', 'Borgarfjor ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21437', 'Brei dalsvik', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21438', 'Djupivogur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21439', 'Egilssta ir', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21440', 'Eskifjor ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21441', 'Faskru sfjor ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21442', 'Fellabar', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21443', 'Hallormssta ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21444', 'Hofn', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21445', 'Nesjakauptun', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21446', 'Neskaupsta ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21447', 'Rey arfjor ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21448', 'Sey isfjor ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21449', 'Sto varfjor ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21450', 'Vopnafjor ur', '1657', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21451', 'Akranes', '1665', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21452', 'Borgarnes', '1665', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21453', 'Bu ardalur', '1665', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21454', 'Grundarfjor ur', '1665', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21455', 'Hellissandur', '1665', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21456', 'Hvanneyri', '1665', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21457', 'Olafsvik', '1665', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21458', 'Rif', '1665', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21459', 'Stykkisholmur', '1665', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21460', 'Banda Aceh', '1666', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21461', 'Bireun', '1666', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21462', 'Langsa', '1666', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21463', 'Lhokseumawe', '1666', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21464', 'Meulaboh', '1666', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21465', 'Denpasar', '1667', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21466', 'Karangasem', '1667', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21467', 'Klungkung', '1667', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21468', 'Kuta', '1667', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21469', 'Negara', '1667', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21470', 'Singaraja', '1667', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21471', 'Tabanan', '1667', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21472', 'Ubud', '1667', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21473', 'Manggar', '1668', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21474', 'Mentok', '1668', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21475', 'Pangkal Pinang', '1668', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21476', 'Sungai Liat', '1668', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21477', 'Tanjung Pandan', '1668', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21478', 'Toboali-Rias', '1668', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21479', 'Cikupa', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21480', 'Cilegon', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21481', 'Ciputat', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21482', 'Curug', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21483', 'Kresek', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21484', 'Labuhan', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21485', 'Pandegelang', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21486', 'Pondok Aren', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21487', 'Rangkasbitung', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21488', 'Serang', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21489', 'Serpong', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21490', 'Tangerang', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21491', 'Teluknaga', '1669', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21492', 'Bengkulu', '1670', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21493', 'Curup', '1670', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21494', 'Gandaria', '1671', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21495', 'Gorontalo', '1672', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21496', 'Cengkareng', '1673', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21497', 'Jakarta', '1673', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21498', 'Jambi', '1674', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21499', 'Kualatungka', '1674', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21500', 'Simpang', '1674', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21501', 'Sungaipenuh', '1674', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21502', 'Kendal', '1682', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21503', 'Bandar Lampung', '1683', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21504', 'Kota Bumi', '1683', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21505', 'Metro', '1683', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21506', 'Pringsewu', '1683', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21507', 'Terbanggi Besar', '1683', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21508', 'Amahai', '1684', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21509', 'Ambon', '1684', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21510', 'Tual', '1684', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21511', 'Amahai', '1685', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21512', 'Ambon', '1685', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21513', 'Tual', '1685', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21514', 'Aberpura', '1688', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21515', 'Biak', '1688', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21516', 'Jaya Pura', '1688', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21517', 'Manokwari', '1688', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21518', 'Merauke', '1688', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21519', 'Sorong', '1688', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21520', 'Balaipungut', '1689', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21521', 'Bengkalis', '1689', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21522', 'Dumai', '1689', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21523', 'Duri', '1689', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21524', 'Pekan Baru', '1689', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21525', 'Selatpanjang', '1689', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21526', 'Tanjung Balai-Meral', '1689', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21527', 'Tembilahan', '1689', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21528', 'Balaipungut', '1690', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21529', 'Bengkalis', '1690', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21530', 'Dumai', '1690', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21531', 'Duri', '1690', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21532', 'Pekan Baru', '1690', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21533', 'Selatpanjang', '1690', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21534', 'Tanjung Balai-Meral', '1690', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21535', 'Tembilahan', '1690', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21536', 'Solo', '1691', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21537', 'Bambanglipuro', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21538', 'Banguntapan', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21539', 'Bantul', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21540', 'Depok', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21541', 'Gamping', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21542', 'Godean', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21543', 'Jetis', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21544', 'Kasihan', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21545', 'Ngaglik', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21546', 'Pandak', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21547', 'Pundong', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21548', 'Sewon', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21549', 'Seyegan', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21550', 'Sleman', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21551', 'Srandakan', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21552', 'Wonosari', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21553', 'Yogyakarta', '1699', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21554', 'Ardabil', '1700', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21555', 'Garmi', '1700', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21556', 'Khalkhal', '1700', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21557', 'Meshkinshahr', '1700', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21558', 'Parsabad', '1700', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21559', 'Bandar-e Gonaveh', '1703', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21560', 'Borazjan', '1703', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21561', 'Bushehr', '1703', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21562', 'Dashti', '1703', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21563', 'Dir', '1703', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21564', 'Khormuj', '1703', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21565', 'Kongan', '1703', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21566', 'Tangestan', '1703', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21567', 'Ardistan', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21568', 'Dorchehpiyaz', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21569', 'Dowlatabad', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21570', 'Esfahan', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21571', 'Falavarjan', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21572', 'Faridan', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21573', 'Fereydunshahr', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21574', 'Fuladshahr', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21575', 'Golara', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21576', 'Golpayegan', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21577', 'Kashan', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21578', 'Kelishad', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21579', 'Khomeynishahr', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21580', 'Khonsar', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21581', 'Khuresgan', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21582', 'Mobarakeh', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21583', 'Na\'in', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21584', 'Najafabad', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21585', 'Natnaz', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21586', 'Qahdarijan', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21587', 'Rehnan', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21588', 'Semirom', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21589', 'Shahinshahr', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21590', 'Shahreza', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21591', 'Zarinshahr', '1705', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21592', 'Abadeh', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21593', 'Akbarabad', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21594', 'Darab', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21595', 'Eqlid', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21596', 'Estehban', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21597', 'Fasa', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21598', 'Firuzabad', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21599', 'Gerash', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21600', 'Jahrom', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21601', 'Kazerun', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21602', 'Lar', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21603', 'Marv Dasht', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21604', 'Neyriz', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21605', 'Nurabad', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21606', 'Qa\'emiyeh', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21607', 'Sepidan', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21608', 'Shiraz', '1706', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21609', 'Astaneh-ye Ashrafiyeh', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21610', 'Astara', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21611', 'Bandar-e Anzali', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21612', 'Faman', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21613', 'Hashtpar', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21614', 'Lahijan', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21615', 'Langarud', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21616', 'Rasht', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21617', 'Rudbar', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21618', 'Rudsar', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21619', 'Sawma\'eh Sara', '1707', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21620', 'Aq Qal\'eh', '1708', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21621', 'Azad Shahr', '1708', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21622', 'Bandar-e Torkaman', '1708', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21623', 'Gonbad-e Qabus', '1708', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21624', 'Gorgan', '1708', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21625', 'Asadabad', '1709', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21626', 'Bahar', '1709', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21627', 'Hamadan', '1709', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21628', 'Malayer', '1709', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21629', 'Nahavand', '1709', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21630', 'Tuysarkan', '1709', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21631', 'Bandar Abbas', '1710', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21632', 'Bandar-e \'Abbas', '1710', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21633', 'Bandar-e Lengeh', '1710', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21634', 'Gheshm', '1710', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21635', 'Jask', '1710', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21636', 'Kish', '1710', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21637', 'Kish Island', '1710', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21638', 'Minab', '1710', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21639', 'Abdanan', '1711', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21640', 'Darrehshahr', '1711', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21641', 'Dehloran', '1711', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21642', 'Ilam', '1711', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21643', 'Ivan', '1711', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21644', 'Mehran', '1711', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21645', 'Baft', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21646', 'Bam', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21647', 'Bardsir', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21648', 'Jiroft', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21649', 'Kahnuj', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21650', 'Kerman', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21651', 'Rafsanjan', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21652', 'Ravar', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21653', 'Shahr-e Babak', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21654', 'Sirjan', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21655', 'Zarand', '1712', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21656', 'Eslamabad', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21657', 'Gilan-e Garb', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21658', 'Harsin', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21659', 'Javanrud', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21660', 'Kangavar', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21661', 'Kermanshah', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21662', 'Paveh', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21663', 'Sahneh', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21664', 'Sar-e-Pol-e-Zohab', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21665', 'Sonqor', '1713', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21666', 'Birjand', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21667', 'Bojnurd', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21668', 'Chenaran', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21669', 'Darreh Gaz', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21670', 'Esfarayen', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21671', 'Fariman', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21672', 'Ferdus', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21673', 'Gha\'nat', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21674', 'Gonabad', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21675', 'Kashmar', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21676', 'Mashad', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21677', 'Mashhad', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21678', 'Neyshabur', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21679', 'Qayen', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21680', 'Quchan', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21681', 'Sabzevar', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21682', 'Sarakhs', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21683', 'Shirvan', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21684', 'Tabas', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21685', 'Tayyebat', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21686', 'Torbat-e Heydariyeh', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21687', 'Torbat-e Jam', '1714', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21688', 'Abadan', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21689', 'Agha Jari', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21690', 'Ahvaz', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21691', 'Ahwaz', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21692', 'Andimeshk', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21693', 'Bandar-e Emam Khomeyni', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21694', 'Bandar-e Mahshahr', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21695', 'Behbahan', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21696', 'Dezful', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21697', 'Ezeh', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21698', 'Hendijan', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21699', 'Khorramshahr', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21700', 'Masjed-e Soleyman', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21701', 'Omidiyeh', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21702', 'Ramhormoz', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21703', 'Ramshir', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21704', 'Shadegan', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21705', 'Shush', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21706', 'Shushtar', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21707', 'Susangerd', '1715', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21708', 'Baneh', '1717', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21709', 'Bijar', '1717', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21710', 'Kamyaran', '1717', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21711', 'Marivan', '1717', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21712', 'Qorveh', '1717', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21713', 'Sanandaj', '1717', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21714', 'Saqqez', '1717', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21715', 'Alashtar', '1718', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21716', 'Aligudarz', '1718', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21717', 'Azna', '1718', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21718', 'Borujerd', '1718', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21719', 'Do Rud', '1718', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21720', 'Khorramabad', '1718', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21721', 'Kuhdasht', '1718', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21722', 'Nurabad', '1718', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21723', 'Arak', '1719', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21724', 'Ashtian', '1719', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21725', 'Delijan', '1719', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21726', 'Khomeyn', '1719', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21727', 'Mahallat', '1719', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21728', 'Sarband', '1719', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21729', 'Saveh', '1719', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21730', 'Tafresh', '1719', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21731', 'Aliabad', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21732', 'Amir Kala', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21733', 'Amol', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21734', 'Babol', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21735', 'Babol Sar', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21736', 'Behshahr', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21737', 'Chalus', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21738', 'Fereydunkenar', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21739', 'Juybar', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21740', 'Kalaleh', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21741', 'Kordkuy', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21742', 'Mahmudabad', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21743', 'Minudasht', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21744', 'Neka', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21745', 'Nur', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21746', 'Nushahr', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21747', 'Qa\'emshahr', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21748', 'Ramsar', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21749', 'Sari', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21750', 'Savadkuh', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21751', 'Tonekabon', '1720', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21752', 'Abhar', '1722', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21753', 'Abyek', '1722', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21754', 'Qazvin', '1722', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21755', 'Takestan', '1722', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21756', 'Qom', '1723', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21757', 'Damghan', '1724', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21758', 'Garmsar', '1724', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21759', 'Semnan', '1724', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21760', 'Shahrud', '1724', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21761', 'Damavand', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21762', 'Eqbaliyeh', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21763', 'Eslamshahr', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21764', 'Hashtgerd', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21765', 'Karaj', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21766', 'Mahdasht', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21767', 'Malard', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21768', 'Mohammadiyeh', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21769', 'Nazarabad', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21770', 'Pakdasht', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21771', 'Pishva', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21772', 'Qarchak', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21773', 'Qods', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21774', 'Robat Karim', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21775', 'Shahriyar', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21776', 'Tehran', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21777', 'Varamin', '1726', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21778', 'Ardakan', '1727', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21779', 'Bafq', '1727', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21780', 'Mehriz', '1727', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21781', 'Meybod', '1727', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21782', 'Taft', '1727', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21783', 'Yazd', '1727', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21784', 'Alvand', '1728', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21785', 'Khorramdarreh', '1728', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21786', 'Zanjan', '1728', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21787', 'Jurf-as-Sakhr', '1729', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21788', 'Saddat-al-Hindiyah', '1729', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21789', 'al-Hillah', '1729', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21790', 'al-Madhatiyah', '1729', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21791', 'al-Musayyib', '1729', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21792', 'al-Qasim', '1729', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21793', 'Baghdad', '1730', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21794', 'Dahuk', '1731', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21795', 'Zakhu', '1731', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21796', 'Ba\'qubah', '1733', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21797', 'Hanaqin', '1733', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21798', 'Jalula\'\'', '1733', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21799', 'Kifri', '1733', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21800', 'Mandali', '1733', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21801', 'al-Fuhud', '1733', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21802', 'al-Khalis', '1733', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21803', 'al-Miqdadiyah', '1733', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21804', 'ash-Shatrah', '1733', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21805', 'Ankawa', '1734', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21806', 'Chaqalawa', '1735', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21807', 'Irbil', '1735', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21808', 'Rawanduz', '1735', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21809', 'Karbala', '1736', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21810', 'al-Hindiyah', '1736', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21811', 'Erbil', '1737', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21812', '\'Ali al Gharbi', '1738', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21813', 'al-\'Amarah', '1738', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21814', 'al-Majarr-al-Kabir', '1738', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21815', 'Qarah Qush', '1739', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21816', 'Sinjar', '1739', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21817', 'Tall \'Afar', '1739', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21818', 'Tall Kayf', '1739', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21819', 'al-Mawsil', '1739', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21820', 'ash-Shaykhan', '1739', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21821', 'Balad', '1740', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21822', 'Bayji', '1740', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21823', 'Dhalu\'iyah', '1740', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21824', 'Samarra', '1740', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21825', 'Tikrit', '1740', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21826', 'Tuz', '1740', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21827', 'ad-Dujayl', '1740', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21828', 'al-\'Aziziyah', '1741', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21829', 'al-Hayy', '1741', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21830', 'al-Kut', '1741', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21831', 'an-Nu\'maniyah', '1741', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21832', 'as-Suwayrah', '1741', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21833', '\'Anah', '1742', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21834', 'Hit', '1742', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21835', 'Rawah', '1742', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21836', 'al-Fallujah', '1742', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21837', 'al-Habbaniyah', '1742', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21838', 'al-Hadithah', '1742', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21839', 'ar-Ramadi', '1742', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21840', 'ar-Rutbah', '1742', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21841', 'Abu al-Khasib', '1743', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21842', 'Harithah', '1743', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21843', 'Shatt-al-\'Arab', '1743', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21844', 'al-Basrah', '1743', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21845', 'al-Faw', '1743', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21846', 'al-Qurnah', '1743', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21847', 'az-Zubayr', '1743', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21848', 'ar-Rumaythah', '1744', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21849', 'as-Samawah', '1744', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21850', '\'Afak', '1745', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21851', 'ad-Diwaniyah', '1745', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21852', 'al-Ghammas', '1745', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21853', 'al-Hamzah', '1745', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21854', 'ash-Shamiyah', '1745', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21855', 'ash-Shinafiyah', '1745', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21856', 'al-Kufah', '1746', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21857', 'al-Mishkhab', '1746', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21858', 'an-Najaf', '1746', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21859', 'Chamchamal', '1747', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21860', 'Halabjah', '1747', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21861', 'Kusanjaq', '1747', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21862', 'Panjwin', '1747', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21863', 'Qal\'at Dizeh', '1747', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21864', 'as-Sulaymaniyah', '1747', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21865', '\'Aqrah', '1748', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21866', 'Kirkuk', '1748', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21867', 'Moira', '1749', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21868', 'Bagenalstown', '1750', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21869', 'Carlow', '1750', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21870', 'Tullow', '1750', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21871', 'Bailieborough', '1751', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21872', 'Belturbet', '1751', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21873', 'Cavan', '1751', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21874', 'Coothill', '1751', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21875', 'Ennis', '1752', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21876', 'Kilkee', '1752', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21877', 'Kilrush', '1752', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21878', 'Newmarket-on-Fergus', '1752', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21879', 'Shannon', '1752', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21880', 'Bandon', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21881', 'Bantry', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21882', 'Blarney', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21883', 'Carrigaline', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21884', 'Charleville', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21885', 'Clonakilty', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21886', 'Cobh', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21887', 'Cork', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21888', 'Drishane', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21889', 'Dunmanway', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21890', 'Fermoy', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21891', 'Kanturk', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21892', 'Kinsale', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21893', 'Macroom', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21894', 'Mallow', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21895', 'Midleton', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21896', 'Millstreet', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21897', 'Mitchelstown', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21898', 'Passage West', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21899', 'Skibbereen', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21900', 'Youghal', '1753', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21901', 'Ballybofey', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21902', 'Ballyshannon', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21903', 'Buncrana', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21904', 'Bundoran', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21905', 'Carndonagh', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21906', 'Donegal', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21907', 'Killybegs', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21908', 'Letterkenny', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21909', 'Lifford', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21910', 'Moville', '1754', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21911', 'Balbriggan', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21912', 'Ballsbridge', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21913', 'Dublin', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21914', 'Leixlip', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21915', 'Lucan', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21916', 'Malahide', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21917', 'Portrane', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21918', 'Rathcoole', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21919', 'Rush', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21920', 'Skerries', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21921', 'Swords', '1755', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21922', 'Athenry', '1756', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21923', 'Ballinasloe', '1756', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21924', 'Clifden', '1756', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21925', 'Galway', '1756', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21926', 'Gort', '1756', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21927', 'Loughrea', '1756', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21928', 'Tuam', '1756', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21929', 'Ballybunion', '1757', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21930', 'Cahirciveen', '1757', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21931', 'Castleisland', '1757', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21932', 'Dingle', '1757', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21933', 'Kenmare', '1757', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21934', 'Killarney', '1757', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21935', 'Killorglin', '1757', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21936', 'Listowel', '1757', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21937', 'Tralee', '1757', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21938', 'Athy', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21939', 'Celbridge', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21940', 'Clane', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21941', 'Kilcock', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21942', 'Kilcullen', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21943', 'Kildare', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21944', 'Maynooth', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21945', 'Monasterevan', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21946', 'Naas', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21947', 'Newbridge', '1758', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21948', 'Callan', '1759', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21949', 'Castlecomer', '1759', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21950', 'Kilkenny', '1759', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21951', 'Thomastown', '1759', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21952', 'Abbeyleix', '1760', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21953', 'Mountmellick', '1760', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21954', 'Mountrath', '1760', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21955', 'Port Laoise', '1760', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21956', 'Portarlington', '1760', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21957', 'Meath', '1761', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21958', 'Carrick-on-Shannon', '1762', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21959', 'Abbeyfeale', '1763', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21960', 'Kilmallock', '1763', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21961', 'Limerick', '1763', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21962', 'Newcastle', '1763', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21963', 'Rathkeale', '1763', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21964', 'Granard', '1765', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21965', 'Longford', '1765', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21966', 'Moate', '1765', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21967', 'Ardee', '1766', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21968', 'Drogheda', '1766', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21969', 'Drumcar', '1766', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21970', 'Dundalk', '1766', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21971', 'Ballina', '1767', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21972', 'Ballinrobe', '1767', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21973', 'Ballyhaunis', '1767', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21974', 'Castlebar', '1767', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21975', 'Claremorris', '1767', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21976', 'Swinford', '1767', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21977', 'Westport', '1767', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21978', 'Ashbourne', '1768', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21979', 'Duleek', '1768', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21980', 'Dunboyne', '1768', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21981', 'Dunshaughlin', '1768', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21982', 'Kells', '1768', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21983', 'Laytown', '1768', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21984', 'Navan', '1768', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21985', 'Trim', '1768', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21986', 'Carrickmacross', '1769', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21987', 'Castleblayney', '1769', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21988', 'Clones', '1769', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21989', 'Monaghan', '1769', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21990', 'Banagher', '1770', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21991', 'Birr', '1770', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21992', 'Clara', '1770', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21993', 'Edenderry', '1770', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21994', 'Kilcormac', '1770', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21995', 'Tullamore', '1770', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21996', 'Ballaghaderreen', '1771', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21997', 'Boyle', '1771', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21998', 'Castlerea', '1771', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('21999', 'Roscommon', '1771', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22000', 'Sligo', '1772', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22001', 'Co Tyrone', '1775', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22002', 'Downpatrick', '1775', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22003', 'Dungarvan', '1776', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22004', 'Tramore', '1776', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22005', 'Waterford', '1776', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22006', 'Athlone', '1777', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22007', 'Mullingar', '1777', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22008', 'Enniscorthy', '1778', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22009', 'Gorey', '1778', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22010', 'New Ross', '1778', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22011', 'Wexford', '1778', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22012', 'Arklow', '1779', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22013', 'Baltinglass', '1779', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22014', 'Blessington', '1779', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22015', 'Bray', '1779', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22016', 'Greystones', '1779', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22017', 'Kilcoole', '1779', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22018', 'Newtownmountkennedy', '1779', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22019', 'Rathdrum', '1779', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22020', 'Wicklow', '1779', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22021', 'Bethlehem', '1782', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22022', 'Caesarea', '1783', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22023', 'Petach Tikva', '1784', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22024', 'Ramallah', '1784', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22025', 'Gaza', '1785', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22026', '\'Arad', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22027', '\'Omer', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22028', 'Ashdod', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22029', 'Ashqelon', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22030', 'Be\'er Sheva', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22031', 'Beersheba', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22032', 'Bene Ayish', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22033', 'Dimona', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22034', 'Elat', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22035', 'Gan Yavne', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22036', 'Nahal `Oz', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22037', 'Netivot', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22038', 'Ofaqim', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22039', 'Qiryat Gat', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22040', 'Qiryat Mal\'akhi', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22041', 'Sederot', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22042', 'Yeroham', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22043', 'kiryat Malachi', '1786', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22044', 'Be\'er Ya\'aqov', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22045', 'Beit Shemesh', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22046', 'Bene Beraq', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22047', 'Bnei Brak', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22048', 'Even Yehuda', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22049', 'Fureidis', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22050', 'Gat Rimon', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22051', 'Gedera', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22052', 'Givat Shmuel', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22053', 'Hibat Zion', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22054', 'Hod HaSharon', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22055', 'Hogar', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22056', 'Jaljulye', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22057', 'Jatt', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22058', 'Kafar Qasem', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22059', 'Kefar Sava', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22060', 'Kefar Yona', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22061', 'Kfar Saba', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22062', 'Kiryag Bialik', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22063', 'Lod', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22064', 'Mazkeret Batya', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22065', 'Modi\'in', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22066', 'Nes Ziyyona', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22067', 'Ness Ziona', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22068', 'Netanya', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22069', 'Nordiya', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22070', 'Pardesiyya', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22071', 'Petakh Tiqwa', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22072', 'Qadima', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22073', 'Qalansawe', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22074', 'Qiryat \'Eqron', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22075', 'Ra\'anana', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22076', 'Ramla', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22077', 'Rehovot', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22078', 'Rekhovot', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22079', 'Rinnatya', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22080', 'Rishon LeZiyyon', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22081', 'Rosh HaAyin', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22082', 'Shoham', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22083', 'Tayibe', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22084', 'Tire', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22085', 'Tsur Igal', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22086', 'Udim', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22087', 'Yavne', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22088', 'Yehud', '1788', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22089', '\'Afula', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22090', '\'Akko', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22091', '\'Arrabe', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22092', '\'Ein Mahel', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22093', '\'Ilut', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22094', 'Abu Sinan', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22095', 'Basmat Tab\'un', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22096', 'Beit Jann', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22097', 'Bet She\'an', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22098', 'Bi\'ne', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22099', 'Bir-al-Maksur', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22100', 'Bu\'eine-Nujeidat', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22101', 'Dabburye', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22102', 'Dayr Hannah', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22103', 'Dayr-al-Asad', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22104', 'Hazor HaGelilit', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22105', 'I\'billin', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22106', 'Iksal', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22107', 'Judeide-Maker', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22108', 'Kabul', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22109', 'Kafar Kanna', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22110', 'Kafar Manda', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22111', 'Kafar Yasif', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22112', 'Karmiel', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22113', 'Kisra-Sumei', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22114', 'Ma\'alot Tarshikha', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22115', 'Majd-al-Kurum', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22116', 'Migdal Ha\'Emeq', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22117', 'Mugar', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22118', 'Nahariyya', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22119', 'Nahef', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22120', 'Nazerat', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22121', 'Nazerat \'Illit', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22122', 'Qiryat Shemona', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22123', 'Qiryat Tiv\'on', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22124', 'Rame', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22125', 'Reine', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22126', 'Sakhnin', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22127', 'Shefar\'am', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22128', 'Tamra', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22129', 'Tiberias', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22130', 'Tur\'an', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22131', 'Yirka', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22132', 'Yoqne\'am Illit', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22133', 'Zefat', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22134', 'Zur Yigal', '1789', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22135', 'Hebron', '1790', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22136', 'Sgula', '1791', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22137', 'Jerusalem', '1792', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22138', '\'Ar\'ara', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22139', '\'Isifya', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22140', 'Baqa al-Gharbiyyah', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22141', 'Binyamina', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22142', 'Daliyat-al-Karmil', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22143', 'Jizr-az-Zarqa', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22144', 'Khadera', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22145', 'Khefa', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22146', 'Nesher', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22147', 'Or \'Aqiva', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22148', 'Pardes Khanna-Karkur', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22149', 'Qiryat Atta', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22150', 'Qiryat Bialik', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22151', 'Qiryat Motzkin', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22152', 'Qiryat Yam', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22153', 'Rekhasim', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22154', 'Tirat Karmel', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22155', 'Umm-al-Fahm', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22156', 'Zikhron Ya\'aqov', '1793', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22157', 'Qalqilya', '1796', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22158', 'Hadera', '1799', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22159', 'Kiryag Bialik', '1799', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22160', 'Bet Shemesh', '1801', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22161', 'Mevasserat Ziyyon', '1801', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22162', 'Yerushalayim', '1801', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22163', 'Meta', '1802', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22164', 'Miano', '1802', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22165', 'Alba Adriatica', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22166', 'Atessa', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22167', 'Atri', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22168', 'Avezzano', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22169', 'Celano', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22170', 'Cepagatti', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22171', 'Chieti', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22172', 'Citta Sant\'Angelo', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22173', 'Francavilla al Mare', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22174', 'Giulianova', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22175', 'Guardiagrele', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22176', 'L\'Aquila', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22177', 'Lanciano', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22178', 'Martinsicuro', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22179', 'Montesilvano', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22180', 'Montorio al Vomano', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22181', 'Mosciano Sant\'Angelo', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22182', 'Ortona', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22183', 'Penne', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22184', 'Pescara', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22185', 'Pineto', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22186', 'Roseto degli Abruzzi', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22187', 'San Giovanni Teatino', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22188', 'San Salvo', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22189', 'Sant\'Egidio alla Vibrata', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22190', 'Silvi', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22191', 'Spoltore', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22192', 'Sulmona', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22193', 'Teramo', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22194', 'Vasto', '1803', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22195', 'Agrigento', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22196', 'Alessandria della Rocca', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22197', 'Aragona', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22198', 'Bivona', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22199', 'Burgio', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22200', 'Calamonaci', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22201', 'Caltabellotta', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22202', 'Camastra', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22203', 'Cammarata', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22204', 'Campobello di Licata', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22205', 'CanicattÃƒÂ¬', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22206', 'Casteltermini', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22207', 'Castrofilippo', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22208', 'Cattolica Eraclea', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22209', 'Cianciana', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22210', 'Comitini', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22211', 'Favara', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22212', 'Grotte', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22213', 'Joppolo Giancaxio', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22214', 'Lampedusa e Linosa', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22215', 'Licata', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22216', 'Lucca Sicula', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22217', 'Menfi', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22218', 'Montallegro', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22219', 'Montevago', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22220', 'Naro', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22221', 'Palma di Montechiaro', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22222', 'Porto Empedocle', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22223', 'Racalmuto', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22224', 'Raffadali', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22225', 'Ravanusa', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22226', 'Realmonte', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22227', 'Ribera', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22228', 'Sambuca di Sicilia', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22229', 'San Biagio Platani', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22230', 'San Giovanni Gemini', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22231', 'Sant Angelo Muxaro', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22232', 'Santa Elisabetta', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22233', 'Santa Margherita di Belice', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22234', 'Santo Stefano Quisquina', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22235', 'Sciacca', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22236', 'Siculiana', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22237', 'Villafranca Sicula', '1804', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22238', 'Castellazzo Bormida', '1805', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22239', 'Gavi', '1805', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22240', 'Villanova Monferrato', '1805', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22241', 'Camerano', '1806', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22242', 'Castelplanio', '1806', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22243', 'Capolona', '1807', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22244', 'Montevarchi', '1807', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22245', 'Subbiano', '1807', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22246', 'Buttigliera d\'Asti', '1809', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22247', 'Flumeri', '1810', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22248', 'Nusco', '1810', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22249', 'Prata di Principato Ultra', '1810', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22250', 'Villanova del Battista', '1810', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22251', 'Avigliano', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22252', 'Bernalda', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22253', 'Ferrandina', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22254', 'Lauria', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22255', 'Lavello', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22256', 'Matera', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22257', 'Melfi', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22258', 'Montescaglioso', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22259', 'Pisticci', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22260', 'Policoro', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22261', 'Potenza', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22262', 'Rionero in Vulture', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22263', 'Venosa', '1812', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22264', 'Belluno', '1813', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22265', 'D\'alpago', '1813', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22266', 'Longarone', '1813', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22267', 'Pedavena', '1813', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22268', 'San Bartolomeo', '1814', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22269', '', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22270', 'Bagnatica', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22271', 'Bergamo', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22272', 'Bolgare', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22273', 'Bottanuco', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22274', 'Brignano Gera d\'Adda', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22275', 'Calcio', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22276', 'Caravaggio', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22277', 'Chiuduno', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22278', 'Ciserano', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22279', 'Comun Nuovo', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22280', 'Costa di Mezzate', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22281', 'Gandino', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22282', 'Grassobbio', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22283', 'Grumello Del Monte', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22284', 'Grumello del Monte', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22285', 'Lallio', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22286', 'Levate', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22287', 'Lurano', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22288', 'Mapello', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22289', 'Pagazzano', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22290', 'Ponteranica', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22291', 'Pontida', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22292', 'Sant Omobono Imagna', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22293', 'Torre Pallavicina', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22294', 'Trescore Balneario', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22295', 'Verdellino', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22296', 'Zingonia', '1815', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22297', 'Camburzano', '1816', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22298', 'Crevacuore', '1816', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22299', 'Gaglianico', '1816', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22300', 'Sandigliano', '1816', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22301', 'Vigliano Biellese', '1816', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22302', 'Anzola dell\'Emilia', '1817', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22303', 'Bologna', '1817', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22304', 'Borgo Tossignano', '1817', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22305', 'Casalfiumanese', '1817', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22306', 'Castiglione Dei Pepoli ', '1817', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22307', 'Funo', '1817', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22308', 'Loiano', '1817', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22309', 'Monterenzio', '1817', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22310', 'Osteria Grande', '1817', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22311', 'Frangarto', '1818', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22312', 'Agnosine', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22313', 'Brescia', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22314', 'Capriano del Colle', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22315', 'Capriolo', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22316', 'Castegnato', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22317', 'Castelcovati', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22318', 'Cellatica', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22319', 'Coccaglio', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22320', 'Comezzano-Cizzago', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22321', 'Erbusco', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22322', 'Flero', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22323', 'Lavenone', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22324', 'Longhena', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22325', 'Maclodio', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22326', 'Muscoline', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22327', 'Padenghe sul Garda', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22328', 'Paderno Franciacorta', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22329', 'Paratico', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22330', 'Passirano', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22331', 'Polaveno', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22332', 'Poncarale', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22333', 'Prevalle', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22334', 'Provaglio dIseo', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22335', 'Roncadelle', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22336', 'Verolavecchia', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22337', 'Visano', '1819', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22338', 'San Donaci', '1820', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22339', 'Acri', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22340', 'Amantea', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22341', 'Bagnara Calabra', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22342', 'Belvedere Marittimo', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22343', 'Bisignano', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22344', 'Bovalino', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22345', 'Cariati', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22346', 'Cassano allo Ionio', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22347', 'Castrolibero', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22348', 'Castrovillari', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22349', 'Catanzaro', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22350', 'Cetraro', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22351', 'Ciro Marina', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22352', 'Cittanova', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22353', 'Corigliano Calabro', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22354', 'Cosenza', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22355', 'Crosia', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22356', 'Crotone', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22357', 'Cutro', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22358', 'Fuscaldo', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22359', 'Gioia Tauro', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22360', 'Isola di Capo Rizzuto', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22361', 'Lamezia Terme', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22362', 'Locri', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22363', 'Luzzi', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22364', 'Melito di Porto Salvo', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22365', 'Mendicino', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22366', 'Montalto Uffugo', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22367', 'Palmi', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22368', 'Paola', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22369', 'Petilia Policastro', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22370', 'Pizzo', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22371', 'Polistena', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22372', 'Reggio di Calabria', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22373', 'Rende', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22374', 'Rosarno', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22375', 'Rossano', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22376', 'San Giovanni in Fiore', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22377', 'Scalea', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22378', 'Sellia Marina', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22379', 'Siderno', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22380', 'Soverato', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22381', 'Taurianova', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22382', 'Trebisacce', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22383', 'Vibo Valentia', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22384', 'Villa San Giovanni', '1821', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22385', 'Acerra', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22386', 'Afragola', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22387', 'Agropoli', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22388', 'Angri', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22389', 'Ariano Irpino', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22390', 'Arzano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22391', 'Atripalda', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22392', 'Avellino', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22393', 'Aversa', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22394', 'Bacoli', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22395', 'Barano d\'Ischia', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22396', 'Baronissi', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22397', 'Battipaglia', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22398', 'Bellizzi', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22399', 'Benevento', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22400', 'Boscoreale', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22401', 'Boscotrecase', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22402', 'Brusciano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22403', 'Caivano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22404', 'Calvizzano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22405', 'Campagna', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22406', 'Capaccio', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22407', 'Capua', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22408', 'Cardito', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22409', 'Carinola', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22410', 'Casagiove', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22411', 'Casal di Principe', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22412', 'Casalnuovo di Napoli', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22413', 'Casaluce', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22414', 'Casandrino', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22415', 'Casavatore', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22416', 'Caserta', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22417', 'Casoria', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22418', 'Castel San Giorgio', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22419', 'Castel Volturno', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22420', 'Castellammare di Stabia', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22421', 'Cava de\' Tirreni', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22422', 'Cercola', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22423', 'Cervinara', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22424', 'Cicciano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22425', 'Crispano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22426', 'Eboli', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22427', 'Ercolano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22428', 'Fisciano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22429', 'Forio', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22430', 'Frattamaggiore', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22431', 'Frattaminore', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22432', 'Frignano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22433', 'Giffoni Valle Piana', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22434', 'Giugliano in Campania', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22435', 'Gragnano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22436', 'Gricignano di Aversa', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22437', 'Grottaminarda', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22438', 'Grumo Nevano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22439', 'Ischia', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22440', 'Lusciano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22441', 'Macerata Campania', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22442', 'Maddaloni', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22443', 'Marano di Napoli', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22444', 'Marcianise', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22445', 'Marigliano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22446', 'Massa Lubrense', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22447', 'Melito di Napoli', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22448', 'Mercato San Severino', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22449', 'Mercogliano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22450', 'Meta', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22451', 'Mirabella Eclano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22452', 'Mondragone', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22453', 'Monte di Procida', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22454', 'Montecorvino Rovella', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22455', 'Monteforte Irpino', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22456', 'Montesarchio', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22457', 'Montoro Inferiore', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22458', 'Mugnano di Napoli', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22459', 'Naples', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22460', 'Napoli', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22461', 'Nocera Inferiore', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22462', 'Nocera Superiore', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22463', 'Nola', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22464', 'Orta di Atella', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22465', 'Ottaviano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22466', 'Pagani', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22467', 'Palma Campania', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22468', 'Parete', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22469', 'Pellezzano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22470', 'Piano di Sorrento', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22471', 'Piedimonte Matese', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22472', 'Poggiomarino', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22473', 'Pollena Trocchia', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22474', 'Pomigliano d\'Arco', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22475', 'Pompei', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22476', 'Pontecagnano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22477', 'Portici', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22478', 'Positano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22479', 'Pozzuoli', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22480', 'Procida', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22481', 'Qualiano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22482', 'Quarto', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22483', 'Roccapiemonte', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22484', 'Sala Consilina', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22485', 'Salerno', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22486', 'San Cipriano d\'Aversa', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22487', 'San Felice a Cancello', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22488', 'San Gennaro Vesuviano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22489', 'San Giorgio a Cremano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22490', 'San Giorgio del Sannio', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22491', 'San Giuseppe Vesuviano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22492', 'San Marcellino', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22493', 'San Marzano sul Sarno', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22494', 'San Nicola', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22495', 'San Prisco', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22496', 'San Sebastiano al Vesuvio', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22497', 'San Valentino Torio', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22498', 'Sant Antimo', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22499', 'Sant\'Agata de\' Goti', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22500', 'Sant\'Agnello', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22501', 'Sant\'Anastasia', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22502', 'Sant\'Antonio Abate', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22503', 'Sant\'Arpino', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22504', 'Sant\'Egidio del Monte Albino', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22505', 'Santa Maria Capua Vetere', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22506', 'Santa Maria a Vico', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22507', 'Santa Maria la Carita', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22508', 'Sarno', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22509', 'Saviano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22510', 'Scafati', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22511', 'Sessa Aurunca', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22512', 'Siano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22513', 'Solofra', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22514', 'Somma Vesuviana', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22515', 'Sorrento', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22516', 'Teano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22517', 'Teggiano', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22518', 'Terzigno', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22519', 'Teverola', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22520', 'Torre Annunziata', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22521', 'Torre del Greco', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22522', 'Trecase', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22523', 'Trentola-Ducenta', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22524', 'Vallo della Lucania', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22525', 'Vico Equense', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22526', 'Vietri sul Mare', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22527', 'Villa Literno', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22528', 'Villaricca', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22529', 'Volla', '1822', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22530', 'Cartoceto', '1823', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22531', 'Carinaro', '1824', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22532', 'San Marco Evangelista', '1824', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22533', 'Fiandaca Di Acireale', '1825', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22534', 'San Cono', '1825', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22535', 'Altino', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22536', 'Archi', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22537', 'Ari', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22538', 'Arielli', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22539', 'Atessa', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22540', 'Bomba', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22541', 'Borrello', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22542', 'Bucchianico', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22543', 'Canosa Sannita', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22544', 'Carpineto Sinello', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22545', 'Carunchio', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22546', 'Casacanditella', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22547', 'Casalanguida', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22548', 'Casalbordino', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22549', 'Casalincontrada', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22550', 'Casoli', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22551', 'Castel Frentano', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22552', 'Castelguidone', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22553', 'Castiglione Messer Marino', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22554', 'Celenza sul Trigno', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22555', 'Chieti', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22556', 'Civitaluparella', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22557', 'Civitella Messer Raimondo', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22558', 'Colledimacine', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22559', 'Colledimezzo', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22560', 'Crecchio', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22561', 'Cupello', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22562', 'Dogliola', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22563', 'Fallo', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22564', 'Fara Filiorum Petri', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22565', 'Fara San Martino', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22566', 'Filetto', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22567', 'Fossacesia', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22568', 'Fraine', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22569', 'Francavilla al Mare', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22570', 'Fresagrandinaria', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22571', 'Frisa', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22572', 'Furci', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22573', 'Gamberale', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22574', 'Gessopalena', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22575', 'Gissi', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22576', 'Giuliano Teatino', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22577', 'Guardiagrele', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22578', 'Guilmi', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22579', 'Lama dei Peligni', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22580', 'Lanciano', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22581', 'Lentella', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22582', 'Lettopalena', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22583', 'Liscia', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22584', 'Miglianico', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22585', 'Montazzoli', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22586', 'Montebello sul Sangro', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22587', 'Monteferrante', '1826', '0.00', '1', '2021-04-06 06:43:46', '2021-04-06 06:43:46', NULL),
('22588', 'Montelapiano', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22589', 'Montenerodomo', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22590', 'Monteodorisio', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22591', 'Mozzagrogna', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22592', 'Orsogna', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22593', 'Ortona', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22594', 'Paglieta', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22595', 'Palena', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22596', 'Palmoli', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22597', 'Palombaro', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22598', 'Pennadomo', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22599', 'Pennapiedimonte', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22600', 'Perano', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22601', 'Pietraferrazzana', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22602', 'Pizzoferrato', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22603', 'Poggiofiorito', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22604', 'Pollutri', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22605', 'Pretoro', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22606', 'Quadri', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22607', 'Rapino', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22608', 'Ripa Teatina', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22609', 'Rocca San Giovanni', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22610', 'Roccamontepiano', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22611', 'Roccascalegna', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22612', 'Roccaspinalveti', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22613', 'Roio del Sangro', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22614', 'Rosello', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22615', 'San Buono', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22616', 'San Giovanni Lipioni', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22617', 'San Giovanni Teatino', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22618', 'San Martino sulla Marrucina', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22619', 'San Salvo', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22620', 'San Vito Chietino', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22621', 'Sant Eusanio del Sangro', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22622', 'Santa Maria Imbaro', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22623', 'Scerni', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22624', 'Schiavi di Abruzzo', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22625', 'Taranta Peligna', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22626', 'Tollo', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22627', 'Torino di Sangro', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22628', 'Tornareccio', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22629', 'Torrebruna', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22630', 'Torrevecchia Teatina', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22631', 'Torricella Peligna', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22632', 'Treglio', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22633', 'Tufillo', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22634', 'Vacri', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22635', 'Vasto', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22636', 'Villa Santa Maria', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22637', 'Villalfonsina', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22638', 'Villamagna', '1826', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22639', 'Albavilla', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22640', 'Cadorago', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22641', 'Carimate', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22642', 'Castelmarte', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22643', 'Cavaria', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22644', 'Cernobbio', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22645', 'Comocrea', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22646', 'Dongo', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22647', 'Gironico', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22648', 'Grandate', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22649', 'Lurago dErba', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22650', 'Mozzate', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22651', 'Novedrate', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22652', 'Orsenigo', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22653', 'Turate', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22654', 'Uggiate', '1827', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22655', 'Corso del Tirreno', '1828', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22656', 'Mangone', '1828', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22657', 'Casalbuttano', '1829', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22658', 'Casalmaggiore', '1829', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22659', 'Castelverde', '1829', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22660', 'Madignano', '1829', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22661', 'Pieve San Giacomo', '1829', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22662', 'Bandito', '1830', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22663', 'Bra', '1830', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22664', 'Casalgrasso', '1830', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22665', 'Cossano Belbo', '1830', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22666', 'Magliano Alpi', '1830', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22667', 'Mondovi', '1830', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22668', 'Roddi', '1830', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22669', 'Santa Vittoria d\'Alba', '1830', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22670', 'Verduno', '1830', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22671', 'Alfonsine', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22672', 'Argelato', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22673', 'Argenta', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22674', 'Bagnacavallo', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22675', 'Bagnolo in Piano', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22676', 'Bellaria-Igea Marina', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22677', 'Bertinoro', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22678', 'Bologna', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22679', 'Bondeno', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22680', 'Budrio', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22681', 'Calderara di Reno', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22682', 'Carpi', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22683', 'Casalecchio di Reno', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22684', 'Casalgrande', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22685', 'Castel Bolognese', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22686', 'Castel Maggiore', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22687', 'Castel San Giovanni', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22688', 'Castel San Pietro Terme', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22689', 'Castelfranco Emilia', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22690', 'Castellarano', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22691', 'Castelnovo ne\' Monti', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22692', 'Castelnuovo Rangone', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22693', 'Castelvetro di Modena', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22694', 'Castenaso', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22695', 'Cattolica', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22696', 'Cavriago', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22697', 'Cento', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22698', 'Cervia', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22699', 'Cesena', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22700', 'Cesenatico', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22701', 'Codigoro', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22702', 'Collecchio', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22703', 'Comacchio', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22704', 'Concordia sulla Secchia', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22705', 'Conselice', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22706', 'Copparo', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22707', 'Coriano', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22708', 'Correggio', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22709', 'Crespellano', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22710', 'Crevalcore', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22711', 'Faenza', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22712', 'Ferrara', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22713', 'Fidenza', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22714', 'Finale Emilia', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22715', 'Fiorano Modenese', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22716', 'Fiorenzuola d\'Arda', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22717', 'Forli', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22718', 'Forlimpopoli', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22719', 'Formigine', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22720', 'Gambettola', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22721', 'Granarolo dell\'Emilia', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22722', 'Guastalla', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22723', 'Imola', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22724', 'Langhirano', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22725', 'Lugo', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22726', 'Luzzara', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22727', 'Maranello', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22728', 'Massa Lombarda', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22729', 'Medesano', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22730', 'Medicina', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22731', 'Meldola', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22732', 'Mirandola', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22733', 'Misano Adriatico', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22734', 'Modena', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22735', 'Molinella', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22736', 'Monte San Pietro', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22737', 'Montecchio Emilia', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22738', 'Montechiarugolo', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22739', 'Noceto', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22740', 'Nonantola', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22741', 'Novellara', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22742', 'Novi di Modena', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22743', 'Ozzano dell\'Emilia', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22744', 'Parma', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22745', 'Pavullo nel Frignano', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22746', 'Piacenza', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22747', 'Pianoro', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22748', 'Ponticino', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22749', 'Portomaggiore', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22750', 'Quattro Castella', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22751', 'Ravenna', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22752', 'Reggio nell\'Emilia', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22753', 'Reggiolo', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22754', 'Riccione', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22755', 'Rimini', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22756', 'Rottofreno', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22757', 'Rubiera', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22758', 'Russi', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22759', 'Salsomaggiore Terme', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22760', 'San Felice sul Panaro', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22761', 'San Giovanni in Persiceto', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22762', 'San Lazzaro di Savena', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22763', 'San Mauro Pascoli', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22764', 'San Pietro in Casale', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22765', 'Sant\'Ilario d\'Enza', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22766', 'Santarcangelo di Romagna', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22767', 'Sasso Marconi', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22768', 'Sassuolo', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22769', 'Savignano sul Panaro', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22770', 'Savignano sul Rubicone', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22771', 'Scandiano', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22772', 'Soliera', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22773', 'Sorbolo', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22774', 'Spilamberto', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22775', 'Verucchio', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22776', 'Vignola', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22777', 'Zola Predosa', '1831', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22778', 'Saint Agostino', '1832', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22779', 'Capalle', '1833', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22780', 'Firenze', '1833', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22781', 'Pelago', '1833', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22782', 'San Donnino', '1833', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22783', 'Scarperia', '1833', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22784', 'Scandicci', '1834', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22785', 'Sesto Fiorentino', '1834', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22786', 'Casalvieri', '1837', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22787', 'Frosinone', '1837', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22788', 'Sgurgola', '1837', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22789', 'Genoa', '1838', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22790', 'Moneglia', '1838', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22791', 'Romans d\'Isonzo', '1839', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22792', 'Savogna d\'Isonzo', '1839', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22793', 'Magliano de Marsi', '1840', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22794', 'Alatri', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22795', 'Albano Laziale', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22796', 'Anagni', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22797', 'Anguillara Sabazia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22798', 'Anzio', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22799', 'Aprilia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22800', 'Ardea', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22801', 'Ariccia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22802', 'Artena', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22803', 'Boville Ernica', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22804', 'Bracciano', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22805', 'Campagnano di Roma', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22806', 'Cassino', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22807', 'Cave', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22808', 'Ceccano', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22809', 'Ceprano', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22810', 'Cerveteri', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22811', 'Ciampino', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22812', 'Cisterna', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22813', 'Civita Castellana', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22814', 'Civitavecchia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22815', 'Colleferro', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22816', 'Cori', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22817', 'Fara in Sabina', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22818', 'Ferentino', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22819', 'Fiano Romano', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22820', 'Fiuggi', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22821', 'Fiumicino', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22822', 'Fondi', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22823', 'Fonte Nuova', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22824', 'Formello', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22825', 'Formia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22826', 'Frascati', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22827', 'Frosinone', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22828', 'Gaeta', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22829', 'Genzano di Roma', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22830', 'Grottaferrata', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22831', 'Guidonia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22832', 'Isola del Liri', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22833', 'Itri', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22834', 'Ladispoli', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22835', 'Lanuvio', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22836', 'Lariano', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22837', 'Latina', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22838', 'Marino', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22839', 'Mentana', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22840', 'Minturno', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22841', 'Monte San Giovanni Campano', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22842', 'Montefiascone', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22843', 'Monterotondo', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22844', 'Nettuno', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22845', 'Palestrina', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22846', 'Palombara Sabina', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22847', 'Pomezia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22848', 'Pontecorvo', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22849', 'Pontinia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22850', 'Priverno', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22851', 'Rieti', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22852', 'Rocca Priora', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22853', 'Rocca di Papa', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22854', 'Roma', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22855', 'Rome', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22856', 'Sabaudia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22857', 'San Cesareo', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22858', 'Santa Marinella', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22859', 'Segni', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22860', 'Sezze', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22861', 'Sora', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22862', 'Soriano nel Cimino', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22863', 'Subiaco', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22864', 'Tarquinia', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22865', 'Terracina', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22866', 'Tivoli', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22867', 'Valmontone', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22868', 'Velletri', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22869', 'Veroli', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22870', 'Vetralla', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22871', 'Viterbo', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22872', 'Zagarolo', '1841', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22873', 'Acquarica del Capo', '1842', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22874', 'Airuno', '1843', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22875', 'Bosisio Parini', '1843', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22876', 'Lecco', '1843', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22877', 'Margno', '1843', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22878', 'Osnago', '1843', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22879', 'Sirone', '1843', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22886', 'Alassio', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22887', 'Albenga', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22888', 'Albisola Superiore', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22889', 'Arcola', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22890', 'Arenzano', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22891', 'Bordighera', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22892', 'Borgonuovo', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22893', 'Cairo Montenotte', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22894', 'Chiavari', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22895', 'Cogoleto', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22896', 'Finale Ligure', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22897', 'Genova', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22898', 'Imperia', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22899', 'La Spezia', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22900', 'Lavagna', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22901', 'Lerici', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22902', 'Loano', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22903', 'Ortonovo', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22904', 'Pietra Ligure', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22905', 'Rapallo', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22906', 'Recco', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22907', 'San Remo', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22908', 'Santa Margherita Ligure', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22909', 'Santo Stefano di Magra', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22910', 'Sarzana', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22911', 'Savona', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22912', 'Sestri Levante', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22913', 'Taggia', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22914', 'Varazze', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22915', 'Ventimiglia', '1845', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22916', 'Somaglia', '1846', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22917', 'Abbiategrasso', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22918', 'Agrate Brianza', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22919', 'Albiate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22920', 'Albino', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22921', 'Albizzate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22922', 'Alzano Lombardo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22923', 'Arcisate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22924', 'Arconate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22925', 'Arcore', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22926', 'Arese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22927', 'Arluno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22928', 'Asola', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22929', 'Bagnolo Mella', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22930', 'Ballabio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22931', 'Bareggio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22932', 'Basiglio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22933', 'Bedizzole', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22934', 'Bergamo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22935', 'Bernareggio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22936', 'Besana in Brianza', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22937', 'Besozzo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22938', 'Biassono', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22939', 'Bienate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22940', 'Bollate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22941', 'Botticino', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22942', 'Bovisio-Masciago', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22943', 'Brembilla', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22944', 'Brescia', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22945', 'Bresso', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22946', 'Broni', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22947', 'Brugherio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22948', 'Buccinasco', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22949', 'Bussero', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22950', 'Busto Arsizio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22951', 'Busto Garolfo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22952', 'Cairate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22953', 'Calcinato', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22954', 'Calolziocorte', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22955', 'Calusco d\'Adda', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22956', 'Canegrate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22957', 'Cantu', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22958', 'Capriolo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22959', 'Carate Brianza', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22960', 'Caravaggio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22961', 'Cardano al Campo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22962', 'Caronno Pertusella', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22963', 'Carpenedolo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22964', 'Carugate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22965', 'Carvico', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22966', 'Casalmaggiore', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22967', 'Casalpusterlengo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22968', 'Casatenovo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22969', 'Casazza', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22970', 'Casnigo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22971', 'Cassano Magnago', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22972', 'Cassano d\'Adda', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22973', 'Cassina de\' Pecchi', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22974', 'Castano Primo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22975', 'Castel Goffredo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22976', 'Castel Mella', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22977', 'Castellanza', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22978', 'Castelleone', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22979', 'Castelli Calepio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22980', 'Castenedolo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22981', 'Castiglione delle Stiviere', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22982', 'Cazzago San Martino', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22983', 'Cene', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22984', 'Cermenate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22985', 'Cernusco sul Naviglio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22986', 'Cerro Maggiore', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22987', 'Cesano Boscone', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22988', 'Cesano Maderno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22989', 'Cesate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22990', 'Chiari', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22991', 'Cilavegna', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22992', 'Cinisello Balsamo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22993', 'Cislago', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22994', 'Clusone', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22995', 'Codogno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22996', 'Cologno Monzese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22997', 'Cologno al Serio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22998', 'Como', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('22999', 'Concesio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23000', 'Concorezzo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23001', 'Corbetta', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23002', 'Cormano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23003', 'Cornaredo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23004', 'Cornate d\'Adda', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23005', 'Corsico', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23006', 'Corte dei Cortesi', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23007', 'Costa Volpino', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23008', 'Crema', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23009', 'Cremona', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23010', 'Crocetta', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23011', 'Curtatone', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23012', 'Cusano Milanino', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23013', 'Dalmine', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23014', 'Darfo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23015', 'Desenzano del Garda', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23016', 'Desio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23017', 'Erba', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23018', 'Fagnano Olona', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23019', 'Fino Mornasco', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23020', 'Gaggiano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23021', 'Galbiate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23022', 'Gallarate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23023', 'Gambolo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23024', 'Garbagnate Milanese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23025', 'Gardone Val Trompia', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23026', 'Garlasco', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23027', 'Gavardo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23028', 'Gavirate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23029', 'Gerenzano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23030', 'Ghedi', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23031', 'Giussano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23032', 'Goito', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23033', 'Gonzaga', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23034', 'Gorgonzola', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23035', 'Gussago', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23036', 'Gussola', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23037', 'Induno Olona', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23038', 'Inveruno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23039', 'Inzago', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23040', 'Iseo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23041', 'Isola Dovarese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23042', 'Lacchiarella', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23043', 'Lainate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23044', 'Laveno-Mombello', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23045', 'Lecco', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23046', 'Leffe', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23047', 'Legnano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23048', 'Leno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23049', 'Lentate sul Seveso', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23050', 'Limbiate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23051', 'Lissone', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23052', 'Locate di Triulzi', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23053', 'Lodi', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23054', 'Lomazzo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23055', 'Lonate Pozzolo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23056', 'Lonato', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23057', 'Luino', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23058', 'Lumezzane', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23059', 'Lurate Caccivio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23060', 'Magenta', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23061', 'Malnate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23062', 'Mandello del Lario', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23063', 'Manerbio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23064', 'Mantova', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23065', 'Mariano Comense', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23066', 'Martinengo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23067', 'Mazzano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23068', 'Meda', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23069', 'Mediglia', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23070', 'Melegnano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23071', 'Melzo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23072', 'Merate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23073', 'Milano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23074', 'Molteno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23075', 'Montichiari', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23076', 'Monza', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23077', 'Morbegno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23078', 'Mornago', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23079', 'Mortara', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23080', 'Muggio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23081', 'Nave', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23082', 'Nembro', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23083', 'Nerviano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23084', 'Nova Milanese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23085', 'Novate Milanese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23086', 'Olgiate Comasco', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23087', 'Olgiate Olona', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23088', 'Opera', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23089', 'Orzinuovi', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23090', 'Osio Sotto', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23091', 'Ospitaletto', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23092', 'Paderno Dugnano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23093', 'Palazzolo sull\'Oglio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23094', 'Pandino', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23095', 'Parabiago', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23096', 'Paullo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23097', 'Pavia', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23098', 'Pero', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23099', 'Peschiera Borromeo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23100', 'Pessano con Bornago', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23101', 'Pieve Emanuele', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23102', 'Pioltello', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23103', 'Ponte Nossa', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23104', 'Ponte San Pietro', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23105', 'Porto Mantovano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23106', 'Pozzolengo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23107', 'Rescaldina', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23108', 'Rezzato', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23109', 'Rho', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23110', 'Rivarolo Mantovano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23111', 'Rodano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23112', 'Romano di Lombardia', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23113', 'Rovato', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23114', 'Rozzano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23115', 'Saletto', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23116', 'Salo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23117', 'Samarate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23118', 'San Donato Milanese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23119', 'San Giuliano Milanese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23120', 'Sant\'Angelo Lodigiano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23121', 'Sarezzo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23122', 'Saronno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23123', 'Scanzorosciate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23124', 'Sedriano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23125', 'Segrate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23126', 'Senago', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23127', 'Seregno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23128', 'Seriate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23129', 'Sesto Calende', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23130', 'Sesto San Giovanni', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23131', 'Settimo Milanese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23132', 'Seveso', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23133', 'Sirmione', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23134', 'Solaro', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23135', 'Somma Lombardo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23136', 'Sondrio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23137', 'Soresina', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23138', 'Sorisole', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23139', 'Stezzano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23140', 'Stradella', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23141', 'Suzzara', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23142', 'Tirano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23143', 'Tornata', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23144', 'Tradate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23145', 'Travagliato', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23146', 'Treviglio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23147', 'Treviolo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23148', 'Trezzano sul Naviglio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23149', 'Trezzo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23150', 'Tromello', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23151', 'Uboldo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23152', 'Urgnano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23153', 'Usmate Velate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23154', 'Valmadrera', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23155', 'Varedo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23156', 'Varese', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23157', 'Verano Brianza', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23158', 'Vergiate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23159', 'Viadana', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23160', 'Vigevano', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23161', 'Vignate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23162', 'Villa Carcina', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23163', 'Villa Guardia', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23164', 'Villasanta', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23165', 'Vimercate', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23166', 'Vimodrone', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23167', 'Virgilio', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23168', 'Voghera', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23169', 'Zibido San Giacomo', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23170', 'Zogno', '1847', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23171', 'Barasso', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23172', 'Bergamo', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23173', 'Bolladello', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23174', 'Capergnanica', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23175', 'Costa Masnaga', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23176', 'Medolago', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23177', 'Nibionno', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23178', 'Rodano', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23179', 'Sordio', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23180', 'Torre d\'Isola', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23181', 'Varese', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23182', 'Villongo', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23183', 'milan', '1848', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23184', 'Colmurano', '1849', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23185', 'Monte San Giusto', '1849', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23186', 'Castel', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23187', 'Gazoldo', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23188', 'Marmirolo', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23189', 'Monzambano', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23190', 'Ostiglia', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23191', 'Pegognaga', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23192', 'Poggio Rusco', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23193', 'Quistello', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23194', 'Roverbella', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23195', 'Suzzara', '1850', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23196', 'Ancona', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23197', 'Ascoli Piceno', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23198', 'Barchi', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23199', 'Cagli', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23200', 'Castelfidardo', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23201', 'Chiaravalle', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23202', 'Cingoli', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23203', 'Civitanova Marche', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23204', 'Corridonia', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23205', 'Fabriano', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23206', 'Falconara Marittima', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23207', 'Fano', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23208', 'Fermo', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23209', 'Filottrano', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23210', 'Folignano', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23211', 'Fossombrone', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23212', 'Grottammare', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23213', 'Jesi', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23214', 'Loreto', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23215', 'Macerata', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23216', 'Matelica', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23217', 'Mondavio', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23218', 'Mondolfo', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23219', 'Montappone', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23220', 'Montecosaro', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23221', 'Montegranaro', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23222', 'Montemarciano', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23223', 'Monteprandone', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23224', 'Morrovalle', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23225', 'Osimo', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23226', 'Pesaro', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23227', 'Polverigi', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23228', 'Porto Recanati', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23229', 'Porto San Giorgio', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23230', 'Porto Sant\'Elpidio', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23231', 'Potenza Picena', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23232', 'Recanati', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23233', 'San Benedetto del Tronto', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23234', 'San Severino Marche', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23235', 'Sant\'Elpidio a Mare', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23236', 'Senigallia', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23237', 'Tolentino', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23238', 'Treia', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23239', 'Urbino', '1851', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23240', 'Cumiana', '1852', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23241', 'Giammoro', '1852', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23242', 'Assago', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23243', 'Besana in Brianza', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23244', 'Biassono', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23245', 'Burago Molgora', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23246', 'Cernusco Sul Naviglio', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23247', 'Cologno Monzese', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23248', 'Concorezzo', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23249', 'Cornaredo', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23250', 'Cuggiono', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23251', 'Cusago', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23252', 'Foro Buonaparte', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23253', 'Gessate', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23254', 'Gorgonzola', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23255', 'Liscate', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23256', 'Magenta', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23257', 'Milan', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23258', 'Noviglio', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23259', 'Passirana Di Rho', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23260', 'Pregnana Milane', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23261', 'San Donato Milanese', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23262', 'Seregno', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23263', 'Trezzo Sull\'adda', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23264', 'Tribiano', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23265', 'Vaprio d\'Adda', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23266', 'Vermezzo', '1853', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23267', 'Bomporto', '1854', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23268', 'Campogalliano', '1854', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23269', 'Cavezzo', '1854', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23270', 'Medolla', '1854', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23271', 'Nonantola', '1854', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23272', 'San Possidonio', '1854', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23273', 'Sassuolo', '1854', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23274', 'Spilamberto', '1854', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23275', 'Bojano', '1855', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23276', 'Campobasso', '1855', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23277', 'Cantalupo', '1855', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23278', 'Isernia', '1855', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23279', 'Termoli', '1855', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23280', 'Venafro', '1855', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23281', 'Montenegro', '1857', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23282', 'Forio d\'Ischia', '1859', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23283', 'Bogogno', '1860', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23284', 'Invorio', '1860', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23285', 'Pombia', '1860', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23286', 'Bagnoli di Sopra', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23287', 'Bovolenta', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23288', 'Casale Di Scodosia', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23289', 'Cervarese Santa Croce', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23290', 'Fontaniva', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23291', 'Galliera Veneta', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23292', 'Legnaro', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23293', 'Limena', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23294', 'Loreggia', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23295', 'Massanzago', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23296', 'Onara', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23297', 'Ponso', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23298', 'Portogallo', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23299', 'Tribano', '1861', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23300', 'Baganzola', '1862', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23301', 'Busseto', '1862', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23302', 'Casale Di Mezzani', '1862', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23303', 'Fontevivo', '1862', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23304', 'Solignano', '1862', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23305', 'Torrile', '1862', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23306', 'Codevilla', '1863', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23307', 'Marcignago', '1863', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23308', 'Pavia', '1863', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23309', 'Siziano', '1863', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23310', 'Pianello', '1864', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23311', 'Ponte Felcino', '1864', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23312', 'Zanica', '1864', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23313', 'Gradara', '1865', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23314', 'Monte Porzio', '1865', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23315', 'Pergola', '1865', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23316', 'Tavullia', '1865', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23317', 'Alseno', '1866', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23318', 'Gossolengo', '1866', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23319', 'Vigolzone', '1866', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23320', 'Armeno', '1867', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23321', 'Bergamasco', '1867', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23322', 'Caselette', '1867', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23323', 'Rosta', '1867', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23324', 'San Damiano', '1867', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23325', 'Spinetta Marengo', '1867', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23326', 'Acqui Terme', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23327', 'Alba', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23328', 'Alessandria', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23329', 'Alpignano', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23330', 'Andezeno', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23331', 'Andonno', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23332', 'Arona', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23333', 'Asti', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23334', 'Avigliana', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23335', 'Baveno', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23336', 'Beinasco', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23337', 'Bellinzago Novarese', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23338', 'Biella', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23339', 'Borgaro Torinese', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23340', 'Borgo San Dalmazzo', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23341', 'Borgomanero', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23342', 'Borgosesia', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23343', 'Boves', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23344', 'Bra', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23345', 'Busca', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23346', 'Cameri', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23347', 'Canelli', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23348', 'Carignano', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23349', 'Carmagnola', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23350', 'Casale Monferrato', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23351', 'Caselle Torinese', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23352', 'Castellamonte', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23353', 'Castelletto sopra Ticino', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23354', 'Chieri', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23355', 'Chivasso', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23356', 'Cirie', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23357', 'Collegno', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23358', 'Cossato', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23359', 'Cuneo', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23360', 'Cuorgne', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23361', 'Domodossola', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23362', 'Druento', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23363', 'Fossano', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23364', 'Galliate', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23365', 'Gassino Torinese', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23366', 'Gattinara', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23367', 'Giaveno', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23368', 'Grugliasco', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23369', 'Ivrea', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23370', 'Leini', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23371', 'LusigliÃƒÂ¨', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23372', 'Marano Ticino', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23373', 'Mergozzo', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23374', 'Moncalieri', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23375', 'Mondovi', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23376', 'Mongrando', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23377', 'Nichelino', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23378', 'Nizza Monferrato', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23379', 'Novara', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23380', 'Novi Ligure', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23381', 'Oleggio', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23382', 'Omegna', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23383', 'Orbassano', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23384', 'Ovada', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23385', 'Pianezza', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23386', 'Pinerolo', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23387', 'Pino Torinese', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23388', 'Piossasco', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23389', 'Poirino', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23390', 'Racconigi', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23391', 'Rivalta di Torino', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23392', 'Rivarolo Canavese', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23393', 'Rivoli', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23394', 'Saluzzo', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23395', 'San Maurizio', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23396', 'San Mauro Torinese', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23397', 'Sandigliano', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23398', 'Santena', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23399', 'Santhia', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23400', 'Savigliano', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23401', 'Settimo Torinese', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23402', 'Torino', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23403', 'Tortona', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23404', 'Trecate', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23405', 'Trofarello', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23406', 'Valduggia', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23407', 'Valenza', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23408', 'Venaria Reale', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23409', 'Verbania', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23410', 'Vercelli', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23411', 'Vigliano Biellese', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23412', 'Vinovo', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23413', 'Volpiano', '1868', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23414', 'Perignano', '1869', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23415', 'Ponte a Egola', '1869', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23416', 'San Quirino', '1870', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23417', 'Latronico', '1871', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23418', 'Acquaviva delle Fonti', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23419', 'Adelfia', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23420', 'Alberobello', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23421', 'Altamura', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23422', 'Andria', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23423', 'Apricena', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23424', 'Aradeo', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23425', 'Bari', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23426', 'Barletta', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23427', 'Bisceglie', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23428', 'Bitetto', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23429', 'Bitonto', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23430', 'Bitritto', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23431', 'Brindisi', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23432', 'Campi Salentina', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23433', 'Canosa di Puglia', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23434', 'Capurso', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23435', 'Carmiano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23436', 'Carovigno', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23437', 'Casamassima', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23438', 'Casarano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23439', 'Cassano delle Murge', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23440', 'Castellana Grotte', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23441', 'Castellaneta', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23442', 'Cavallino', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23443', 'Ceglie Messapica', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23444', 'Cerignola', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23445', 'Cisternino', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23446', 'Conversano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23447', 'Copertino', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23448', 'Corato', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23449', 'Crispiano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23450', 'Cutrofiano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23451', 'Erchie', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23452', 'Fasano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23453', 'Foggia', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23454', 'Francavilla Fontana', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23455', 'Galatina', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23456', 'Galatone', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23457', 'Gallipoli', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23458', 'Ginosa', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23459', 'Gioia del Colle', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23460', 'Giovinazzo', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23461', 'Gravina in Puglia', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23462', 'Grottaglie', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23463', 'Grumo Appula', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23464', 'Laterza', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23465', 'Latiano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23466', 'Lecce', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23467', 'Leverano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23468', 'Lizzanello', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23469', 'Lizzano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23470', 'Locorotondo', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23471', 'Lucera', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23472', 'Maglie', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23473', 'Manduria', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23474', 'Manfredonia', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23475', 'Margherita di Savoia', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23476', 'Martano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23477', 'Martina Franca', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23478', 'Massafra', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23479', 'Matino', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23480', 'Melendugno', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23481', 'Mesagne', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23482', 'Minervino Murge', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23483', 'Modugno', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23484', 'Mola di Bari', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23485', 'Molfetta', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23486', 'Monopoli', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23487', 'Monte Sant\'Angelo', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23488', 'Monteroni di Lecce', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23489', 'Mottola', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23490', 'Nardo', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23491', 'Neviano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23492', 'Noci', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23493', 'Noicattaro', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23494', 'Novoli', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23495', 'Oria', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23496', 'Orta Nova', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23497', 'Ostuni', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23498', 'Palagiano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23499', 'Palo del Colle', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23500', 'Parabita', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23501', 'Polignano a Mare', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23502', 'Pulsano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23503', 'Putignano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23505', 'Racale', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23506', 'Ruffano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23507', 'Rutigliano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23508', 'Ruvo di Puglia', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23509', 'Salice Salentino', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23510', 'San Ferdinando di Puglia', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23511', 'San Giorgio Ionico', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23512', 'San Giovanni Rotondo', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23513', 'San Marco in Lamis', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23514', 'San Marzano di San Giuseppe', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23515', 'San Nicandro Garganico', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23516', 'San Pancrazio Salentino', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23517', 'San Pietro Vernotico', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23518', 'San Severo', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23519', 'San Vito dei Normanni', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23520', 'Sannicandro di Bari', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23521', 'Santeramo in Colle', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23522', 'Sava', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23523', 'Squinzano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23524', 'Statte', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23525', 'Surbo', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23526', 'Taranto', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23527', 'Taurisano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23528', 'Taviano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23529', 'Terlizzi', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23530', 'Toritto', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23531', 'Torre Santa Susanna', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23532', 'Torremaggiore', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23533', 'Trani', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23534', 'Trepuzzi', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23535', 'Tricase', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23536', 'Triggiano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23537', 'Trinitapoli', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23538', 'Turi', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23539', 'Ugento', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23540', 'Valenzano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23541', 'Veglie', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23542', 'Vico del Gargano', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23543', 'Vieste', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23544', 'Villa Castelli', '1872', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23545', 'San Giovanni in Marignano', '1874', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23546', 'Torriana', '1874', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23547', 'Anzio', '1875', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23548', 'Atena Lucana', '1876', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23549', 'Castel San Giorgio', '1876', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23550', 'Fisciano', '1876', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23551', 'Giungano', '1876', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23552', 'Omignano', '1876', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23553', 'Alghero', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23554', 'Arzachena', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23555', 'Assemini', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23556', 'Cabras', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23557', 'Cagliari', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23558', 'Capoterra', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23559', 'Carbonia', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23560', 'Dorgali', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23561', 'Guspini', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23562', 'Iglesias', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23563', 'Ittiri', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23564', 'La Maddalena', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23565', 'Macomer', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23566', 'Monserrato', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23567', 'Nuoro', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23568', 'Olbia', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23569', 'Oristano', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23570', 'Ozieri', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23571', 'Porto Torres', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23572', 'Quartu Sant\'Elena', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23573', 'Quartucciu', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23574', 'San Gavino Monreale', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23575', 'Sanluri', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23576', 'Sant\'Antioco', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23577', 'Sassari', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23578', 'Selargius', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23579', 'Serramanna', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23580', 'Sestu', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23581', 'Siniscola', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23582', 'Sinnai', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23583', 'Sorso', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23584', 'Tempio Pausania', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23585', 'Terralba', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23586', 'Tortoli', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23587', 'Villacidro', '1877', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23588', 'Nule', '1878', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23589', 'Altare', '1879', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23590', 'Aci Castello', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23591', 'Aci Catena', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23592', 'Aci Sant\'Antonio', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23593', 'Acireale', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23594', 'Adrano', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23595', 'Agira', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23596', 'Agrigento', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23597', 'Alcamo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23598', 'Altofonte', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23599', 'Aragona', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23600', 'Augusta', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23601', 'Avola', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23602', 'Bagheria', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23603', 'Barcellona', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23604', 'Barrafranca', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23605', 'Belmonte Mezzagno', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23606', 'Belpasso', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23607', 'Biancavilla', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23608', 'Bronte', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23609', 'Caccamo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23610', 'Caltagirone', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23611', 'Caltanissetta', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23612', 'Campobello di Licata', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23613', 'Campobello di Mazara', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23614', 'Canicatti', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23615', 'Capaci', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23616', 'Capo d\'Orlando', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23617', 'Carini', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23618', 'Carlentini', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23619', 'Castelbuono', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23620', 'Casteldaccia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23621', 'Castellammare del Golfo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23622', 'Casteltermini', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23623', 'Castelvetrano', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23624', 'Catania', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23625', 'Catenanuova', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23626', 'Cefalu', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23627', 'Chiaramonte Gulfi', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23628', 'Cinisi', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23629', 'Comiso', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23630', 'Corleone', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23631', 'Enna', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23632', 'Erice', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23633', 'Favara', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23634', 'Ficarazzi', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23635', 'Fiumefreddo di Sicilia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23636', 'Floridia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23637', 'Francofonte', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23638', 'Gela', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23639', 'Giardini-Naxos', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23640', 'Giarre', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23641', 'Grammichele', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23642', 'Gravina di Catania', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23643', 'Ispica', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23644', 'Lentini', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23645', 'Leonforte', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23646', 'Licata', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23647', 'Lipari', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23648', 'Marsala', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23649', 'Mascali', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23650', 'Mascalucia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23651', 'Mazara del Vallo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23652', 'Mazzarino', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23653', 'Melilli', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23654', 'Menfi', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23655', 'Messina', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23656', 'Milazzo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23657', 'Militello in Val di Catania', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23658', 'Misilmeri', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23659', 'Misterbianco', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23660', 'Modica', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23661', 'Monreale', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23662', 'Motta Sant\'Anastasia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23663', 'Mussomeli', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23664', 'Naro', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23665', 'Nicosia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23666', 'Niscemi', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23667', 'Noto', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23668', 'Paceco', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23669', 'Pachino', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23670', 'Palagonia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23671', 'Palazzolo Acreide', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23672', 'Palermo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23673', 'Palma di Montechiaro', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23674', 'Partanna', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23675', 'Partinico', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23676', 'Paterno', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23677', 'Patti', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23678', 'Pedara', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23679', 'Piazza Armerina', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23680', 'Porto Empedocle', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23681', 'Pozzallo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23682', 'Priolo Gargallo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23683', 'Racalmuto', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23684', 'Raffadali', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23685', 'Ragusa', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23686', 'Ramacca', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23687', 'Randazzo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23688', 'Ravanusa', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23689', 'Ribera', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23690', 'Riesi', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23691', 'Riposto', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23692', 'Rosolini', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23693', 'Salemi', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23694', 'San Cataldo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23695', 'San Giovanni Gemini', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23696', 'San Giovanni la Punta', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23697', 'San Giuseppe Jato', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23698', 'San Gregorio di Catania', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23699', 'Sant\'Agata di Militello', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23700', 'Sant\'Agata li Battiati', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23701', 'Santa Croce Camerina', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23702', 'Santa Flavia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23703', 'Santa Teresa di Riva', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23704', 'Sciacca', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23705', 'Scicli', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23706', 'Scordia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23707', 'Siracusa', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23708', 'Sortino', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23709', 'Taormina', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23710', 'Termini Imerese', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23711', 'Terrasini', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23712', 'Trabia', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23713', 'Trapani', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23714', 'Trecastagni', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23715', 'Tremestieri Etneo', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23716', 'Troina', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23717', 'Valderice', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23718', 'Valguarnera Caropepe', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23719', 'Villabate', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23720', 'Villafranca Tirrena', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23721', 'Vittoria', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23722', 'Zafferana Etnea', '1880', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23723', 'Monteriggioni', '1881', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23724', 'Monteroni d Arbia', '1881', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23725', 'Delebio', '1882', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23726', 'Talamona', '1882', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23727', 'Faggiano', '1884', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23728', 'Riva del Garda', '1884', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23729', 'Castilenti', '1885', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23730', 'Controguerra', '1885', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23731', 'Bruino', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23732', 'Busano', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23733', 'Buttigliera Alta', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23734', 'Cavour', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23735', 'Chieri', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23736', 'Colleretto Giacosa', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23737', 'Cuceglio', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23738', 'Giaveno', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23739', 'Mazze', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23740', 'Mercenasco', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23741', 'Piobesi', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23742', 'Rivoli', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23743', 'Robassomero', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23744', 'Scarmagno', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23745', 'Strambino', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23746', 'Turin', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23747', 'Villar Perosa', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23748', 'Volpiano', '1886', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23749', 'Agliana', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23750', 'Altopascio', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23751', 'Anghiari', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23752', 'Arezzo', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23753', 'Aulla', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23754', 'Bagno a Ripoli', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23755', 'Barberino di Mugello', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23756', 'Barga', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23757', 'Bibbiena', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23758', 'Borgo San Lorenzo', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23759', 'Bucine', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23760', 'Buggiano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23761', 'Calcinaia', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23762', 'Calenzano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23763', 'Camaiore', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23764', 'Campi Bisenzio', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23765', 'Campiglia Marittima', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23766', 'Capannori', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23767', 'Cappelle', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23768', 'Capraia', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23769', 'Carmignano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23770', 'Carrara', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23771', 'Cascina', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23772', 'Castagneto Carducci', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23773', 'Castelfiorentino', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23774', 'Castelfranco di Sotto', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23775', 'Castiglion Fiorentino', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23776', 'Cecina', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23777', 'Cerreto Guidi', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23778', 'Certaldo', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23779', 'Chiesina Uzzanese', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23780', 'Chiusi', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23781', 'Civitella in Val di Chiana', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23782', 'Colle di Val d\'Elsa', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23783', 'Collesalvetti', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23784', 'Cortona', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23785', 'Empoli', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23786', 'Fiesole', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23787', 'Figline Valdarno', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23788', 'Firenze', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23789', 'Fivizzano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23790', 'Florence', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23791', 'Foiano della Chiana', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23792', 'Follonica', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23793', 'Forte dei Marmi', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23794', 'Fucecchio', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23795', 'Gavorrano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23796', 'Greve in Chianti', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23797', 'Grosseto', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23798', 'Impruneta', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23799', 'Lari', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23800', 'Lastra a Signa', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23801', 'Livorno', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23802', 'Lucca', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23803', 'Massa', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23804', 'Massa Marittima', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23805', 'Massarosa', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23806', 'Monsummano Terme', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23807', 'Montale', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23808', 'Monte Argentario', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23809', 'Monte San Savino', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23810', 'Montecatini-Terme', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23811', 'Montelupo Fiorentino', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23812', 'Montemurlo', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23813', 'Montepulciano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23814', 'Montespertoli', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23815', 'Montevarchi', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23816', 'Montignoso', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23817', 'Montopoli in Val d\'Arno', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23818', 'Orbetello', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23819', 'Pescia', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23820', 'Pietrasanta', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23821', 'Pieve a Nievole', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23822', 'Piombino', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23823', 'Pisa', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23824', 'Pistoia', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23825', 'Poggibonsi', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23826', 'Poggio a Caiano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23827', 'Ponsacco', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23828', 'Pontassieve', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23829', 'Pontedera', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23830', 'Ponticino', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23831', 'Pontremoli', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23832', 'Portoferraio', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23833', 'Prato', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23834', 'Quarrata', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23835', 'Reggello', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23836', 'Rignano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23837', 'Roccastrada', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23838', 'Rosignano Marittimo', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23839', 'San Casciano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23840', 'San Giovanni Valdarno', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23841', 'San Giuliano Terme', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23842', 'San Miniato', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23843', 'Sansepolcro', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23844', 'Santa Croce sull\'Arno', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23845', 'Santa Maria a Monte', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23846', 'Scandicci', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23847', 'Seravezza', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23848', 'Serravalle Pistoiese', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23849', 'Sesto Fiorentino', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23850', 'Siena', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23851', 'Signa', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23852', 'Sinalunga', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23853', 'Sovicille', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23854', 'Terranuova Bracciolini', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23855', 'Vaiano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23856', 'Varna', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23857', 'Vecchiano', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23858', 'Viareggio', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23859', 'Vinci', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23860', 'Volterra', '1887', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23861', 'Guarrato', '1888', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23862', ' San Giorgio', '1890', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23863', 'Dro', '1890', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23864', 'Asolo', '1891', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23865', 'Conegliano', '1891', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23866', 'Cordignano', '1891', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23867', 'Gaiarine', '1891', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23868', 'Ormelle', '1891', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23869', 'Possagno', '1891', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23870', 'Revine Lago', '1891', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23871', 'Basiliano', '1892', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23872', 'Bicinicco', '1892', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23873', 'Buttrio', '1892', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23874', 'Coseano', '1892', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23875', 'Pradamano', '1892', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23876', 'San Giovanni al Natisone', '1892', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23877', 'Torreano', '1892', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23878', 'Amelia', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23879', 'Assisi', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23880', 'Bastia Umbra', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23881', 'Castiglione del Lago', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23882', 'Citta di Castello', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23883', 'Corciano', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23884', 'Deruta', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23885', 'Foligno', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23886', 'Gualdo Tadino', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23887', 'Gubbio', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23888', 'Magione', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23889', 'Marsciano', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23890', 'Narni', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23891', 'Orvieto', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23892', 'Perugia', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23893', 'San Giustino', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23894', 'Spello', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23895', 'Spoleto', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23896', 'Terni', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23897', 'Todi', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23898', 'Umbertide', '1893', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23899', 'Arsago Seprio', '1895', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23900', 'Busto Arsizio', '1895', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23901', 'Cassano Magnago', '1895', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23902', 'Gazzada', '1895', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23903', 'Oggiona Con Santo Stefano', '1895', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23904', 'Solbiate Arno', '1895', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23905', 'Solbiate Olona', '1895', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23906', 'Ternate', '1895', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23907', 'Venegono Inferiore', '1895', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23908', 'Abano Terme', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23909', 'Adria', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23910', 'Albignasego', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23911', 'Altavilla Vicentina', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23912', 'Arzignano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23913', 'Badia Polesine', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23914', 'Bassano del Grappa', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23915', 'Belfiore', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23916', 'Belluno', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23917', 'Borso del Grappa', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23918', 'Bovolone', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23919', 'Bussolengo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23920', 'Cadoneghe', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23921', 'Caldogno', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23922', 'Camisano Vicentino', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23923', 'Campodarsego', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23924', 'Campolongo Maggiore', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23925', 'Camponogara', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23926', 'Camposampiero', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23927', 'Caorle', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23928', 'Carbonera', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23929', 'Casale sul Sile', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23930', 'Casier', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23931', 'Cassola', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23932', 'Castel d\'Azzano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23933', 'Castelfranco Veneto', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23934', 'Castello di Godego', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23935', 'Castelnuovo del Garda', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23936', 'Cavallino-Treporti', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23937', 'Cavarzere', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23938', 'Cerea', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23939', 'Chiampo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23940', 'Chioggia', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23941', 'Cittadella', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23942', 'Colombano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23943', 'Concordia Sagittaria', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23944', 'Conegliano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23945', 'Conselve', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23946', 'Cornedo Vicentino', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23947', 'Creazzo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23948', 'Dolo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23949', 'Due Carrare', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23950', 'Dueville', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23951', 'Eraclea', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23952', 'Este', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23953', 'Feltre', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23954', 'Galzignano Terme', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23955', 'Grezzana', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23956', 'Iesolo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23957', 'Isola Vicentina', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23958', 'Isola della Scala', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23959', 'Jesolo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23960', 'Legnago', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23961', 'Lendinara', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23962', 'Lonigo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23963', 'Malo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23964', 'Marano Vicentino', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23965', 'Marcon', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23966', 'Marostica', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23967', 'Martellago', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23968', 'Mestrino', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23969', 'Mira', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23970', 'Mirano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23971', 'Mogliano Veneto', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23972', 'Monselice', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23973', 'Montagnana', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23974', 'Montebelluna', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23975', 'Montecchio Maggiore', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23976', 'Montegrotto Terme', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23977', 'Monticello Conte Otto', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23978', 'Motta di Livenza', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23979', 'Murano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23980', 'Musile di Piave', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23981', 'Mussolente', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23982', 'Negrar', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23983', 'Noale', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23984', 'Noventa Padovana', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23985', 'Noventa Vicentina', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23986', 'Occhiobello', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23987', 'Oderzo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23988', 'Ormelle', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23989', 'Padova', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23990', 'Padua', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23991', 'Paese', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23992', 'Pescantina', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23993', 'Peschiera del Garda', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23994', 'Pianiga', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23995', 'Piazzola sul Brenta', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23996', 'Pieve di Soligo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23997', 'Pievebelvicino', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23998', 'Piombino Dese', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('23999', 'Piove di Sacco', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24000', 'Ponte San Nicolo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24001', 'Ponzano Veneto', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24002', 'Porto Tolle', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24003', 'Porto Viro', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24004', 'Portogruaro', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24005', 'Preganziol', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24006', 'Quinto di Treviso', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24007', 'Riese Pio X', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24008', 'Romano dEzzelino', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24009', 'Roncade', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24010', 'Rosa', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24011', 'Rovigo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24012', 'Rubano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24013', 'Salzano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24014', 'San Biagio di Callalta', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24015', 'San Bonifacio', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24016', 'San Dona di Piave', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24017', 'San Giovanni Lupatoto', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24018', 'San Martino Buon Albergo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24019', 'San Martino di Lupari', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24020', 'San Michele al Tagliamento', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24021', 'San Pietro in Cariano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24022', 'San Vendemiano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24023', 'Sant\'Ambrogio', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24024', 'Santa Maria di Sala', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24025', 'Santo Stino di Livenza', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24026', 'Santorso', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24027', 'Saonara', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24028', 'Sarcedo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24029', 'Schio', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24030', 'Scorze', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24031', 'Sedico', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24032', 'Selvazzano Dentro', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24033', 'Silea', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24034', 'Sivizzo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24035', 'Sommacampagna', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24036', 'Sona', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24037', 'Spinea', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24038', 'Spresiano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24039', 'Susegana', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24040', 'Taglio di Po', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24041', 'Teolo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24042', 'Tezze sul Brenta', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24043', 'Thiene', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24044', 'Torri di Quartesolo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24045', 'Trebaseleghe', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24046', 'Trevignano', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24047', 'Treviso', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24048', 'Trissino', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24049', 'Valdagno', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24050', 'Valdobbiadene', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24051', 'Valeggio sul Mincio', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24052', 'Vedelago', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24053', 'Venezia', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24054', 'Venice', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24055', 'Verona', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24056', 'Vicenza', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24057', 'Vigodarzere', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24058', 'Vigonovo', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24059', 'Vigonza', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24060', 'Villafranca di Verona', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24061', 'Villorba', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24062', 'Vittorio Veneto', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24063', 'Volpago del Montello', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24064', 'Zane', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24065', 'Zero Branco', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24066', 'Zevio', '1896', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24067', 'Cona', '1897', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24068', 'Marghera', '1897', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24069', 'Oriago di Mira', '1897', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24070', 'Tessera', '1897', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24071', 'Piedimulera', '1898', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24072', 'Crescentino', '1899', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24073', 'Moncrivello', '1899', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24074', 'Rovasenda', '1899', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24075', 'Trino', '1899', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24076', ' Valeggio Sul Mincio', '1900', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24077', 'Cadidavid', '1900', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24078', 'Colognola ai Colli', '1900', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24079', 'Pastrengo', '1900', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24080', 'Valgatara', '1900', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24081', ' Montebello Vicentino', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24082', 'Alonte', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24083', 'Arcugnano', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24084', 'Arzignano', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24085', 'Barbarano Vicentino', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24086', 'Breganze', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24087', 'Brendola', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24088', 'Bressanvido', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24089', 'Carre', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24090', 'Castelgomberto', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24091', 'Costabissara', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24092', 'Grumolo delle Abbadesse', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24093', 'Piovene Rocchette', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24094', 'Povolaro', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24095', 'Rossano Veneto', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24096', 'San Pietro di Rosa', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24097', 'San Vito di Leguzzano', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24098', 'Sandrigo', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24099', 'Thiene', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24100', 'Torrebelvicino', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24101', 'Torri di Quartesolo', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24102', 'Villaverla', '1901', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24103', 'Nepi', '1902', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24104', 'May Pen', '1904', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24105', 'Lucea', '1905', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24106', 'Kingston', '1906', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24107', 'Mandeville', '1907', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24108', 'Port Antonio', '1908', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24109', 'Albert Town', '1916', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24110', 'Falmouth', '1916', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24111', 'Savanna la Mar', '1917', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24112', 'Agui', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24113', 'Anjo', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24114', 'Atsumi', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24115', 'Bisai', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24116', 'Chiryu', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24117', 'Chita', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24118', 'Fujioka', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24119', 'Fuso', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24120', 'Gamagori', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24121', 'Handa', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24122', 'Hekinan', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24123', 'Higashiura', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24124', 'Ichinomiya', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24125', 'Inazawa', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24126', 'Inuyama', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24127', 'Isshiki', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24128', 'Iwakura', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24129', 'Jimokuji', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24130', 'Kanie', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24131', 'Kariya', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24132', 'Kasugai', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24133', 'Kira', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24134', 'Kisogawa', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24135', 'Komaki', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24136', 'Konan', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24137', 'Kota', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24138', 'Kozakai', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24139', 'Mihama', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24140', 'Minamichita', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24141', 'Miwa', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24142', 'Miyoshi', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24143', 'Nagakute', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24144', 'Nagoya', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24145', 'Nishiharu', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24146', 'Nishio', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24147', 'Nisshin', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24148', 'Obu', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24149', 'Oharu', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24150', 'Okazaki', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24151', 'Owariashi', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24152', 'Saori', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24153', 'Saya', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24154', 'Seto', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24155', 'Shikatsu', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24156', 'Shinshiro', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24157', 'Shippo', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24158', 'Sobue', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24159', 'Tahara', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24160', 'Takahama', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24161', 'Taketoyo', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24162', 'Togo', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24163', 'Tokai', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24164', 'Tokoname', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24165', 'Toyoake', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24166', 'Toyohashi', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24167', 'Toyokawa', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24168', 'Toyota', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24169', 'Tsushima', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24170', 'Yatomi', '1918', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24171', 'Akita', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24172', 'Honjo', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24173', 'Kazuno', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24174', 'Noshiro', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24175', 'Odate', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24176', 'Oga', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24177', 'Omagari', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24178', 'Takanosu', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24179', 'Tenno', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24180', 'Ugo', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24181', 'Yokote', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24182', 'Yuzawa', '1919', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24183', 'Aomori', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24184', 'Goshogawara', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24185', 'Hachinohe', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24186', 'Hiraka', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24187', 'Hirosaki', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24188', 'Kizukuri', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24189', 'Kuroishi', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24190', 'Misawa', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24191', 'Mutsu', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24192', 'Namioka', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24193', 'Towada', '1920', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24194', 'Abiko', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24195', 'Asahi', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24196', 'Chiba', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24197', 'Choshi', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24198', 'Funabashi', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24199', 'Fussa', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24200', 'Futtsu', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24201', 'Ichihara', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24202', 'Ichikawa', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24203', 'Inzai', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24204', 'Kamagaya', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24205', 'Kamogawa', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24206', 'Kashiwa', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24207', 'Katsuura', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24208', 'Kimitsu', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24209', 'Kisarazu', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24210', 'Kujukuri', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24211', 'Matsudo', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24212', 'Mobara', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24213', 'Nagareyama', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24214', 'Narashino', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24215', 'Narita', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24216', 'Naruto', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24217', 'Noda', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24218', 'Oamishirasato', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24219', 'Ohara', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24220', 'Omigawa', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24221', 'Sakae', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24222', 'Sakura', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24223', 'Sambu', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24224', 'Sawara', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24225', 'Sekiyado', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24226', 'Shiroi', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24227', 'Shisui', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24228', 'Shonan', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24229', 'Sodegaura', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24230', 'Tateyama', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24231', 'Togane', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24232', 'Tomisato', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24233', 'Urayasu', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24234', 'Yachimata', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24235', 'Yachiyo', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24236', 'Yokaichiba', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24237', 'Yotsukaido', '1921', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24238', 'Hojo', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24239', 'Imabari', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24240', 'Iyo', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24241', 'Iyomishima', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24242', 'Kawanoe', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24243', 'Masaki', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24244', 'Matsuyama', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24245', 'Niihama', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24246', 'Ozu', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24247', 'Saijo', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24248', 'Shigenobu', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24249', 'Tobe', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24250', 'Toyo', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24251', 'Uwajima', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24252', 'Yawatahama', '1922', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24253', 'Fukui', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24254', 'Harue', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24255', 'Katsuyama', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24256', 'Maruoka', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24257', 'Mikuni', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24258', 'Obama', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24259', 'Ono', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24260', 'Sabae', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24261', 'Takefu', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24262', 'Tsuruga', '1923', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24263', 'Amagi', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24264', 'Buzen', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24265', 'Chikugo', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24266', 'Chikushino', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24267', 'Dazaifu', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24268', 'Fukuma', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24269', 'Fukuoka', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24270', 'Hirokawa', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24271', 'Honami', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24272', 'Iizuka', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24273', 'Inatsuki', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24274', 'Kanda', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24275', 'Kasuga', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24276', 'Kasuya', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24277', 'Kawasaki', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24278', 'Kitakyushu', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24279', 'Koga', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24280', 'Kurate', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24281', 'Kurume', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24282', 'Maebaru', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24283', 'Miyata', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24284', 'Mizumaki', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24285', 'Munakata', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24286', 'Nakagawa', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24287', 'Nakama', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24288', 'Nogata', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24289', 'Ogori', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24290', 'Okagaki', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24291', 'Okawa', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24292', 'Omuta', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24293', 'Onojo', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24294', 'Sasaguri', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24295', 'Setaka', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24296', 'Shime', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24297', 'Shingu', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24298', 'Sue', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24299', 'Tagawa', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24300', 'Tanushimaru', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24301', 'Umi', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24302', 'Yamada', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24303', 'Yame', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24304', 'Yanagawa', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24305', 'Yukuhashi', '1924', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24306', 'Aizubange', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24307', 'Aizuwakamatsu', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24308', 'Fukushima', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24309', 'Funehiki', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24310', 'Haramachi', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24311', 'Hobara', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24312', 'Inawashiro', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24313', 'Ishikawa', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24314', 'Iwaki', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24315', 'Kawamata', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24316', 'Kitakata', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24317', 'Koriyama', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24318', 'Miharu', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24319', 'Motomiya', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24320', 'Namie', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24321', 'Nihommatsu', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24322', 'Shirakawa', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24323', 'Soma', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24324', 'Sukagawa', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24325', 'Yanagawa', '1925', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24326', 'Ena', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24327', 'Gifu', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24328', 'Ginan', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24329', 'Godo', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24330', 'Hashima', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24331', 'Hozumi', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24332', 'Ibigawa', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24333', 'Ikeda', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24334', 'Kakamigahara', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24335', 'Kani', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24336', 'Kasamatsu', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24337', 'Mino', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24338', 'Minokamo', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24339', 'Mitake', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24340', 'Mizunami', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24341', 'Nakatsugawa', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24342', 'Ogaki', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24343', 'Ono', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24344', 'Seki', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24345', 'Tajimi', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24346', 'Takayama', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24347', 'Tarui', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24348', 'Toki', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24349', 'Yoro', '1926', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24350', 'Annaka', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24351', 'Azuma', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24352', 'Fujimi', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24353', 'Fujioka', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24354', 'Gumma', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24355', 'Haruna', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24356', 'Isesaki', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24357', 'Kasakake', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24358', 'Kiryu', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24359', 'Maebashi', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24360', 'Nakanojo', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24361', 'Nitta', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24362', 'Numata', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24363', 'Oizumi', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24364', 'Omama', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24365', 'Ora', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24366', 'Ota', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24367', 'Sakai', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24368', 'Shibukawa', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24369', 'Takasaki', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24370', 'Tamamura', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24371', 'Tatebayashi', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24372', 'Tomioka', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24373', 'Yoshii', '1927', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24374', 'Fuchu', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24375', 'Fukuyama', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24376', 'Hatsukaichi', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24377', 'Higashihiroshima', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24378', 'Hiroshima', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24379', 'Innoshima', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24380', 'Kaita', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24381', 'Kannabe', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24382', 'Kumano', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24383', 'Kure', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24384', 'Kurose', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24385', 'Mihara', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24386', 'Miyoshi', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24387', 'Ono', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24388', 'Onomichi', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24389', 'Otake', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24390', 'Shinichi', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24391', 'Shobara', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24392', 'Takehara', '1928', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24393', 'Abashiri', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24394', 'Akabira', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24395', 'Asahikawa', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24396', 'Ashibetsu', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24397', 'Bibai', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24398', 'Bihoro', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24399', 'Chitose', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24400', 'Date', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24401', 'Ebetsu', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24402', 'Eniwa', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24403', 'Fukagawa', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24404', 'Furano', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24405', 'Hakodate', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24406', 'Hokkaido', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24407', 'Hyogo', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24408', 'Ishikari', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24409', 'Iwamizawa', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24410', 'Iwanai', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24411', 'Kamiiso', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24412', 'Kitahiroshima', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24413', 'Kitami', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24414', 'Kushiro', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24415', 'Makubetsu', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24416', 'Mikasa', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24417', 'Mombetsu', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24418', 'Muroran', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24419', 'Nakashibetsu', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24420', 'Nanae', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24421', 'Nayoro', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24422', 'Nemuro', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24423', 'Noboribetsu', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24424', 'Obihiro', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24425', 'Otaru', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24426', 'Otofuke', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24427', 'Rumoi', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24428', 'Sapporo', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24429', 'Shibetsu', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24430', 'Shiraoi', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24431', 'Shizunai', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24432', 'Sunagawa', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24433', 'Takikawa', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24434', 'Tobetsu', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24435', 'Tomakomai', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24436', 'Utashinai', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24437', 'Wakkanai', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24438', 'Yoichi', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24439', 'Yubari', '1929', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24440', 'Aioi', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24441', 'Akashi', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24442', 'Ako', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24443', 'Amagasaki', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24444', 'Ashiya', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24445', 'Fukusaki', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24446', 'Harima', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24447', 'Himeji', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24448', 'Inagawa', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24449', 'Inami', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24450', 'Itami', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24451', 'Kakogawa', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24452', 'Kasai', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24453', 'Kawanishi', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24454', 'Kobe', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24455', 'Kodera', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24456', 'Miki', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24457', 'Nandan', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24458', 'Nishinomiya', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24459', 'Nishiwaki', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24460', 'Ono', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24461', 'Sanda', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24462', 'Sasayama', '1930', '0.00', '1', '2021-04-06 06:43:47', '2021-04-06 06:43:47', NULL),
('24463', 'Sumoto', '1930', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24464', 'Taishi', '1930', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24465', 'Takarazuka', '1930', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24466', 'Takasago', '1930', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24467', 'Tatsuno', '1930', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24468', 'Toyooka', '1930', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24469', 'Yamasaki', '1930', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24470', 'Yashiro', '1930', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24471', 'Yumesaki', '1930', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24472', 'Ami', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24473', 'Chiyoda', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24474', 'Daigo', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24475', 'Edosaki', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24476', 'Fujishiro', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24477', 'Hasaki', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24478', 'Hitachi', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24479', 'Hitachinaka', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24480', 'Hitachiota', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24481', 'Hokota', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24482', 'Ibaraki', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24483', 'Ina', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24484', 'Ishige', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24485', 'Ishioka', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24486', 'Itako', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24487', 'Iwai', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24488', 'Iwase', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24489', 'Kamisu', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24490', 'Kasama', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24491', 'Kashima', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24492', 'Kasumigaura', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24493', 'Kitaibaraki', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24494', 'Koga', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24495', 'Kukizaki', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24496', 'Makabe', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24497', 'Minori', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24498', 'Mito', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24499', 'Mitsukaido', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24500', 'Moriya', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24501', 'Naka', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24502', 'Oarai', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24503', 'Omiya', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24504', 'Ryugasaki', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24505', 'Sakai', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24506', 'Sanwa', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24507', 'Shimodate', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24508', 'Shimotsuma', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24509', 'Sowa', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24510', 'Takahagi', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24511', 'Tokai', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24512', 'Tomobe', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24513', 'Tone', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24514', 'Toride', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24515', 'Tsukuba', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24516', 'Ushiku', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24517', 'Yachiyo', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24518', 'Yasato', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24519', 'Yuki', '1931', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24520', 'Hakui', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24521', 'Kaga', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24522', 'Kanazawa', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24523', 'Komatsu', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24524', 'Matto', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24525', 'Nanao', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24526', 'Nonoichi', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24527', 'Suzu', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24528', 'Tsubata', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24529', 'Tsurugi', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24530', 'Uchinada', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24531', 'Wajima', '1932', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24532', 'Daito', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24533', 'Esashi', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24534', 'Hanamaki', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24535', 'Ichinohe', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24536', 'Ichinoseki', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24537', 'Iwate', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24538', 'Kamaishi', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24539', 'Kitakami', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24540', 'Kuji', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24541', 'Miyako', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24542', 'Mizusawa', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24543', 'Morioka', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24544', 'Ninohe', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24545', 'Ofunato', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24546', 'Otsuchi', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24547', 'Rikuzentakata', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24548', 'Shiwa', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24549', 'Shizukuishi', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24550', 'Takizawa', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24551', 'Tono', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24552', 'Yahaba', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24553', 'Yamada', '1933', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24554', 'Kagawa', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24555', 'Kanonji', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24556', 'Kokubunji', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24557', 'Marugame', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24558', 'Miki', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24559', 'Ryonan', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24560', 'Sakaide', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24561', 'Shido', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24562', 'Tadotsu', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24563', 'Takamatsu', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24564', 'Tonosho', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24565', 'Zentsuji', '1934', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24566', 'Aira', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24567', 'Akune', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24568', 'Hayato', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24569', 'Ibusuki', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24570', 'Ijuin', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24571', 'Izumi', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24572', 'Kagoshima', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24573', 'Kajiki', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24574', 'Kanoya', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24575', 'Kaseda', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24576', 'Kokubu', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24577', 'Kushikino', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24578', 'Makurazaki', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24579', 'Naze', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24580', 'Nishinoomote', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24581', 'Okuchi', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24582', 'Sendai', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24583', 'Shibushi', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24584', 'Sueyoshi', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24585', 'Tarumizu', '1935', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24586', 'Aikawa', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24587', 'Atsugi', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24588', 'Ayase', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24589', 'Chigasaki', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24590', 'Ebina', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24591', 'Fujisawa', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24592', 'Hadano', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24593', 'Hakone', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24594', 'Hayama', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24595', 'Hiratsuka', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24596', 'Isehara', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24597', 'Kamakura', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24598', 'Kawasaki', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24599', 'Minamiashigara', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24600', 'Miura', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24601', 'Ninomiya', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24602', 'Odawara', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24603', 'Oiso', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24604', 'Sagamihara', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24605', 'Samukawa', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24606', 'Shiroyama', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24607', 'Takatsu-Ku', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24608', 'Tsukui', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24609', 'Yamato', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24610', 'Yokohama', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24611', 'Yokosuka', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24612', 'Yugawara', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24613', 'Zama', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24614', 'Zushi', '1936', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24615', 'Gunma', '1937', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24616', 'Saitama', '1937', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24617', 'Aki', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24618', 'Ino', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24619', 'Kochi', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24620', 'Muroto', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24621', 'Nakamura', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24622', 'Nankoku', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24623', 'Sukumo', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24624', 'Susaki', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24625', 'Tosa', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24626', 'Tosashimizu', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24627', 'Tosayamada', '1938', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24628', 'Arao', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24629', 'Ashikita', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24630', 'Aso', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24631', 'Hitoyoshi', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24632', 'Hondo', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24633', 'Jonan', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24634', 'Kikuchi', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24635', 'Kikuyo', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24636', 'Koshi', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24637', 'Kumamoto', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24638', 'Mashiki', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24639', 'Matsubase', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24640', 'Minamata', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24641', 'Nishigoshi', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24642', 'Ozu', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24643', 'Tamana', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24644', 'Ueki', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24645', 'Ushibuka', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24646', 'Uto', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24647', 'Yamaga', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24648', 'Yatsushiro', '1939', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24649', 'Ayabe', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24650', 'Fukuchiyama', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24651', 'Joyo', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24652', 'Kameoka', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24653', 'Kizu', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24654', 'Kumiyama', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24655', 'Kyotanabe', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24656', 'Kyoto', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24657', 'Maizuru', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24658', 'Miyazu', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24659', 'Muko', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24660', 'Nagaokakyo', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24661', 'Seika', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24662', 'Uji', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24663', 'Yawata', '1940', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24664', 'Ago', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24665', 'Hisai', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24666', 'Ise', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24667', 'Kameyama', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24668', 'Komono', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24669', 'Kumano', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24670', 'Kuwana', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24671', 'Matsusaka', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24672', 'Meiwa', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24673', 'Nabari', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24674', 'Owase', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24675', 'Suzuka', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24676', 'Toba', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24677', 'Toin', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24678', 'Tsu', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24679', 'Ueno', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24680', 'Yokkaichi', '1941', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24681', 'Furukawa', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24682', 'Hasama', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24683', 'Ishinomaki', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24684', 'Iwanuma', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24685', 'Kakuda', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24686', 'Kesennuma', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24687', 'Kogota', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24688', 'Marumori', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24689', 'Natori', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24690', 'Ogawara', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24691', 'Rifu', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24692', 'Sendai', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24693', 'Shibata', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24694', 'Shichigahama', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24695', 'Shiogama', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24696', 'Shiroishi', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24697', 'Tagajo', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24698', 'Taiwa', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24699', 'Tomiya', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24700', 'Wakuya', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24701', 'Watari', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24702', 'Yamoto', '1942', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24703', 'Ebino', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24704', 'Hyuga', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24705', 'Kiyotake', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24706', 'Kobayashi', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24707', 'Kunitomi', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24708', 'Kushima', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24709', 'Mimata', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24710', 'Miyakonojo', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24711', 'Miyazaki', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24712', 'Nichinan', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24713', 'Nobeoka', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24714', 'Sadowara', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24715', 'Saito', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24716', 'Shintomi', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24717', 'Takanabe', '1943', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24718', 'Chino', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24719', 'Hotaka', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24720', 'Iida', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24721', 'Iiyama', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24722', 'Ina', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24723', 'Komagane', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24724', 'Komoro', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24725', 'Koshoku', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24726', 'Maruko', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24727', 'Matsumoto', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24728', 'Minowa', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24729', 'Nagano', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24730', 'Nakano', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24731', 'Okaya', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24732', 'Omachi', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24733', 'Saku', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24734', 'Shimosuwa', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24735', 'Shiojiri', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24736', 'Suwa', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24737', 'Suzaka', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24738', 'Tatsuno', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24739', 'Tobu', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24740', 'Toyoshina', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24741', 'Ueda', '1944', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24742', 'Fukue', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24743', 'Hirado', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24744', 'Isahaya', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24745', 'Matsuura', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24746', 'Nagasaki', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24747', 'Nagayo', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24748', 'Omura', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24749', 'Sasebo', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24750', 'Shimabara', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24751', 'Togitsu', '1945', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24752', 'Gojo', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24753', 'Gose', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24754', 'Haibara', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24755', 'Heguri', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24756', 'Ikagura', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24757', 'Ikoma', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24758', 'Kammaki', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24759', 'Kashiba', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24760', 'Kashihara', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24761', 'Kawai', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24762', 'Koryo', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24763', 'Nara', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24764', 'Oji', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24765', 'Oyodo', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24766', 'Sakurai', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24767', 'Sango', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24768', 'Tawaramoto', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24769', 'Tenri', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24770', 'Yamatokoriyama', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24771', 'Yamatotakada', '1946', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24772', 'Arai', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24773', 'Fuchu', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24774', 'Gosen', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24775', 'Itoigawa', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24776', 'Joetsu', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24777', 'Kameda', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24778', 'Kamo', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24779', 'Kashiwazaki', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24780', 'Kurosaki', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24781', 'Maki', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24782', 'Mitsuke', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24783', 'Muika', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24784', 'Murakami', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24785', 'Muramatsu', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24786', 'Nagaoka', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24787', 'Nakajo', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24788', 'Niigata', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24789', 'Niitsu', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24790', 'Ojiya', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24791', 'Ryotsu', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24792', 'Sanjo', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24793', 'Shibata', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24794', 'Shiozawa', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24795', 'Shirone', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24796', 'Suibara', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24797', 'Tochio', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24798', 'Tokamachi', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24799', 'Toyosaka', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24800', 'Tsubame', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24801', 'Yoshida', '1947', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24802', 'Beppu', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24803', 'Bungotakada', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24804', 'Hiji', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24805', 'Hita', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24806', 'Kitsuki', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24807', 'Kusu', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24808', 'Nakatsu', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24809', 'Oita', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24810', 'Saiki', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24811', 'Taketa', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24812', 'Tsukumi', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24813', 'Usa', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24814', 'Usuki', '1948', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24815', 'Bizen', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24816', 'Ibara', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24817', 'Kamogata', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24818', 'Kasaoka', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24819', 'Kurashiki', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24820', 'Mabi', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24821', 'Niimi', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24822', 'Okayama', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24823', 'Sanyo', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24824', 'Soja', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24825', 'Takahashi', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24826', 'Tamano', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24827', 'Tsuyama', '1949', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24828', 'Chatan', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24829', 'Ginowan', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24830', 'Gushikawa', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24831', 'Haebaru', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24832', 'Hirara', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24833', 'Ishigaki', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24834', 'Ishikawa', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24835', 'Itoman', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24836', 'Nago', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24837', 'Naha', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24838', 'Nishihara', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24839', 'Okinawa', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24840', 'Tomigusuku', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24841', 'Urasoe', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24842', 'Yomitan', '1950', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24843', 'Daito', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24844', 'Fujiidera', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24845', 'Habikino', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24846', 'Hannan', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24847', 'Higashiosaka', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24848', 'Hirakata', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24849', 'Ibaraki', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24850', 'Ikeda', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24851', 'Izumi', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24852', 'Izumiotsu', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24853', 'Izumisano', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24854', 'Kadoma', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24855', 'Kaizuka', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24856', 'Kashiwara', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24857', 'Katano', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24858', 'Kawachinagano', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24859', 'Kishiwada', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24860', 'Kobe', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24861', 'Kumatori', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24862', 'Matsubara', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24863', 'Mihara', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24864', 'Mino', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24865', 'Misaki', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24866', 'Moriguchi', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24867', 'Neyagawa', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24868', 'Osaka', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24869', 'Osakasayama', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24870', 'Sakai', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24871', 'Sennan', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24872', 'Settsu', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24873', 'Shijonawate', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24874', 'Shimamoto', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24875', 'Suita', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24876', 'Takaishi', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24877', 'Takatsuki', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24878', 'Tondabayashi', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24879', 'Toyonaka', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24880', 'Toyono', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24881', 'Yao', '1951', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24882', 'Imari', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24883', 'Kanzaki', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24884', 'Karatsu', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24885', 'Kashima', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24886', 'Kawasoe', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24887', 'Saga', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24888', 'Takeo', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24889', 'Taku', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24890', 'Tosu', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24891', 'Ureshino', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24892', 'Yamato', '1952', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24893', 'Ageo', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24894', 'Asaka', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24895', 'Chichibu', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24896', 'Fujimi', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24897', 'Fukaya', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24898', 'Fukiage', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24899', 'Gyoda', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24900', 'Hanno', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24901', 'Hanyu', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24902', 'Hasuda', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24903', 'Hatogaya', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24904', 'Hatoyama', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24905', 'Hidaka', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24906', 'Higashimatsuyama', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24907', 'Honjo', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24908', 'Ina', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24909', 'Iruma', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24910', 'Iwatsuki', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24911', 'Kamifukuoka', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24912', 'Kamisato', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24913', 'Kasukabe', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24914', 'Kawagoe', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24915', 'Kawaguchi', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24916', 'Kawajima', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24917', 'Kazo', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24918', 'Kisai', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24919', 'Kitamoto', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24920', 'Kodama', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24921', 'Konosu', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24922', 'Koshigaya', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24923', 'Kuki', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24924', 'Kumagaya', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24925', 'Kurihashi', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24926', 'Matsubushi', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24927', 'Menuma', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24928', 'Misato', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24929', 'Miyashiro', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24930', 'Miyoshi', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24931', 'Moroyama', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24932', 'Niiza', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24933', 'Ogawa', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24934', 'Oi', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24935', 'Okegawa', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24936', 'Omiya', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24937', 'Saitma-Shi', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24938', 'Sakado', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24939', 'Satte', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24940', 'Sayama', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24941', 'Shiki', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24942', 'Shiraoka', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24943', 'Shobu', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24944', 'Showa', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24945', 'Soka', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24946', 'Sugito', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24947', 'Toda', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24948', 'Tokorozawa', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24949', 'Tsurugashima', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24950', 'Urawa', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24951', 'Wako', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24952', 'Warabi', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24953', 'Washimiya', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24954', 'Yashio', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24955', 'Yono', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24956', 'Yorii', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24957', 'Yoshikawa', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24958', 'Yoshimi', '1953', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24959', 'Hikone', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24960', 'Hino', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24961', 'Konan', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24962', 'Kosei', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24963', 'Kusatsu', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24964', 'Minakuchi', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24965', 'Moriyama', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24966', 'Nagahama', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24967', 'Notogawa', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24968', 'Omihachiman', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24969', 'Otsu', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24970', 'Ritto', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24971', 'Shiga', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24972', 'Yasu', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24973', 'Yokaichi', '1954', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24974', 'Gotsu', '1955', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24975', 'Hamada', '1955', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24976', 'Hikawa', '1955', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24977', 'Hirata', '1955', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24978', 'Izumo', '1955', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24979', 'Masuda', '1955', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24980', 'Matsue', '1955', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24981', 'Oda', '1955', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24982', 'Yasugi', '1955', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24983', 'Asaba', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24984', 'Atami', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24985', 'Daito', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24986', 'Fuji', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24987', 'Fujieda', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24988', 'Fujinomiya', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24989', 'Fukuroi', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24990', 'Gotemba', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24991', 'Haibara', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24992', 'Hamakita', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24993', 'Hamamatsu', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24994', 'Hamaoka', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24995', 'Hosoe', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24996', 'Ito', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24997', 'Iwata', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24998', 'Kakegawa', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('24999', 'Kanaya', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25000', 'Kannami', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25001', 'Kikugawa', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25002', 'Kosai', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25003', 'Mishima', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25004', 'Mori', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25005', 'Nagaizumi', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25006', 'Numazu', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25007', 'Oigawa', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25008', 'Oyama', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25009', 'Ryuyo', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25010', 'Sagara', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25011', 'Shimada', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25012', 'Shimizu', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25013', 'Shimoda', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25014', 'Shizuoka', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25015', 'Susono', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25016', 'Tenryu', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25017', 'Toyoda', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25018', 'Yaizu', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25019', 'Yoshida', '1956', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25020', 'Ashikaga', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25021', 'Fujioka', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25022', 'Imaichi', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25023', 'Iwafune', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25024', 'Kaminokawa', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25025', 'Kanuma', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25026', 'Karasuyama', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25027', 'Kawachi', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25028', 'Kuroiso', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25029', 'Mashiko', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25030', 'Mibu', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25031', 'Minamikawachi', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25032', 'Moka', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25033', 'Motegi', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25034', 'Nasu', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25035', 'Nikko', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25036', 'Nishinasuno', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25037', 'Nogi', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25038', 'Ohira', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25039', 'Otawara', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25040', 'Oyama', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25041', 'Sano', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25042', 'Takanezawa', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25043', 'Tanuma', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25044', 'Tochigi', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25045', 'Ujiie', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25046', 'Utsunomiya', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25047', 'Yaita', '1957', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25048', 'Aizumi', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25049', 'Anan', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25050', 'Ikeda', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25051', 'Ishii', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25052', 'Kamojima', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25053', 'Kitajima', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25054', 'Komatsushima', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25055', 'Naruto', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25056', 'Tokushima', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25057', 'Waki', '1958', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25058', 'Akiruno', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25059', 'Akishima', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25060', 'Chofu', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25061', 'Fuchu', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25062', 'Hachioji', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25063', 'Hamura', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25064', 'Higashikurume', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25065', 'Higashimurayama', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25066', 'Higashiyamato', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25067', 'Hino', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25068', 'Hoya', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25069', 'Inagi', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25070', 'Kiyose', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25071', 'Kodaira', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25072', 'Koganei', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25073', 'Kokubunji', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25074', 'Komae', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25075', 'Kunitachi', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25076', 'Machida', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25077', 'Mitaka', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25078', 'Mizuho', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25079', 'Musashimurayama', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25080', 'Musashino', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25081', 'Ome', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25082', 'Tachikawa', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25083', 'Tama', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25084', 'Tanashi', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25085', 'Tokyo', '1959', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25086', 'Kurayoshi', '1960', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25087', 'Sakaiminato', '1960', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25088', 'Tottori', '1960', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25089', 'Yonago', '1960', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25090', 'Fukumitsu', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25091', 'Himi', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25092', 'Kamiichi', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25093', 'Kosugi', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25094', 'Kurobe', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25095', 'Namerikawa', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25096', 'Nyuzen', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25097', 'Osawano', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25098', 'Oyabe', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25099', 'Shimminato', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25100', 'Takaoka', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25101', 'Tateyama', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25102', 'Tonami', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25103', 'Toyama', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25104', 'Uozu', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25105', 'Yatsuo', '1961', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25106', 'Arida', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25107', 'Gobo', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25108', 'Hashimoto', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25109', 'Iwade', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25110', 'Kainan', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25111', 'Katsuragi', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25112', 'Kishigawa', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25113', 'Nachikatsuura', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25114', 'Shingu', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25115', 'Tanabe', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25116', 'Wakayama', '1962', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25117', 'Higashine', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25118', 'Kahoku', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25119', 'Kaminoyama', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25120', 'Kawanishi', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25121', 'Murayama', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25122', 'Nagai', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25123', 'Nanyo', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25124', 'Obanazawa', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25125', 'Sagae', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25126', 'Sakata', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25127', 'Shinjo', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25128', 'Takahata', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25129', 'Tendo', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25130', 'Tsuchiura', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25131', 'Tsuruoka', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25132', 'Yamagata', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25133', 'Yonezawa', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25134', 'Yuza', '1963', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25135', 'Hagi', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25136', 'Hikari', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25137', 'Hofu', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25138', 'Iwakuni', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25139', 'Kudamatsu', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25140', 'Mine', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25141', 'Nagato', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25142', 'Ogori', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25143', 'Onoda', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25144', 'Sanyo', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25145', 'Shimonoseki', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25146', 'Shinnanyo', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25147', 'Tokuyama', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25148', 'Toyoura', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25149', 'Ube', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25150', 'Yamaguchi', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25151', 'Yanai', '1964', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25152', 'Enzan', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25153', 'Fujiyoshida', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25154', 'Isawa', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25155', 'Kofu', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25156', 'Nirasaki', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25157', 'Otsuki', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25158', 'Ryuo', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25159', 'Tsuru', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25160', 'Uenohara', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25161', 'Yamanashi', '1965', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25162', 'Grouville', '1966', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25163', 'Trinity', '1976', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25164', '\'Abbin', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25165', '\'Ajlun', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25166', '\'Anjarah', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25167', '\'Arjan', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25168', '\'Ayn Janna', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25169', 'Halawah', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25170', 'Kharbat al-Wahadnah', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25171', 'Kufranjah', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25172', 'Sakhrah', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25173', 'al-Hashamiyah', '1977', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25174', 'Abu \'Alanda', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25175', 'Amman', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25176', 'Askan Abu Nusayr', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25177', 'Jawa', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25178', 'Khalda wa Tila\'-al-\'Ali', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25179', 'Khraybat As-Suq', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25180', 'Marj al-Hammam', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25181', 'Na\'ur', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25182', 'Nuzhat Sahab', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25183', 'Sahab', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25184', 'Shafa Badran', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25185', 'Suwaylih', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25186', 'Tariq', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25187', 'Umm As-Summaq', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25188', 'Umm Nuwarah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25189', 'Umm Qusayr wal Muqabalin', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25190', 'Umm al-Basatin', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25191', 'Wadi as-Sir', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25192', 'al-\'Abdaliyah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25193', 'al-Binayat', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25194', 'al-Faysaliyah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25195', 'al-Jizah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25196', 'al-Jubayhah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25197', 'al-Juwaydah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25198', 'al-Quwaysimah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25199', 'al-Yadudah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25200', 'ar-Rawdah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25201', 'at-Talbiyah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25202', 'at-Taybah', '1978', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25203', '\'Al\'al', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25204', '\'Anbah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25205', 'Arhaba', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25206', 'Aydun', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25207', 'Bayt Idas', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25208', 'Bayt Ras', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25209', 'Bayt Yafa', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25210', 'Bushra', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25211', 'Dayr Abi Sa\'id', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25212', 'Dayr Yusif', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25213', 'Dayr as-Sa\'anah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25214', 'Duwaqarah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25215', 'Hakama', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25216', 'Hartha', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25217', 'Hatam', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25218', 'Hawwarah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25219', 'Irbid', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25220', 'Jasar ash-Shaykh Hussayn', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25221', 'Judayta', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25222', 'Katam', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25223', 'Kharja', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25224', 'Kufur \'Awan', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25225', 'Kufur Abil', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25226', 'Kufur Asad', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25227', 'Kufur Rakab', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25228', 'Kufur Sum', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25229', 'Kufur Yuba', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25230', 'Kufur al-Ma\'', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25231', 'Kuraymah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25232', 'Malka', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25233', 'Mukhayyam al-Husun', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25234', 'Qumaym', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25235', 'Saham', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25236', 'Sal', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25237', 'Samma', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25238', 'Sammaw\'', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25239', 'Sum', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25240', 'Tabnah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25241', 'Umm Qays', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25242', 'Wadi al-Yabas', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25243', 'Waqqas', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25244', 'Zahar', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25245', 'al-Ashrafiyah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25246', 'al-Balawnah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25247', 'al-Buwaydah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25248', 'al-Husun', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25249', 'al-Manshiyah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25250', 'al-Mashari\'a', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25251', 'al-Mazar ash-Shamaliyah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25252', 'al-Mughayyar', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25253', 'an-Nu\'aymeh', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25254', 'ar-Ramtha', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25255', 'as-Sarih', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25256', 'ash-Shajarah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25257', 'ash-Shunah ash-Shamaliyah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25258', 'at-Taybah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25259', 'at-Turrah', '1979', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25260', 'Balila', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25261', 'Burma', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25262', 'Jarash', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25263', 'Kufur Khall', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25264', 'Mukhayyam Ghazzah', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25265', 'Mukhayyam Suf', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25266', 'Qafqafa', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25267', 'Raymun', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25268', 'Sakab', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25269', 'Suf', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25270', 'al-Kattah', '1980', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25271', 'Bayar', '1981', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25272', 'Ma\'an', '1981', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25273', 'Wadi Musa', '1981', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25274', 'al-Hussayniyah', '1981', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25275', 'al-Jafar', '1981', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25276', 'at-Taybah', '1981', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25277', 'Dhiban', '1982', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25278', 'Ma\'in', '1982', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25279', 'Madaba', '1982', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25280', 'Mulayh', '1982', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25281', 'al-Faysaliyah', '1982', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25282', 'al-\'Aqabah', '1983', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25283', 'al-Quwayrah', '1983', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25284', '\'Ayn al-Basha', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25285', 'Darar', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25286', 'Juwafat al-Kafrayn', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25287', 'Ma\'addi', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25288', 'Mahas', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25289', 'Safut', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25290', 'Suknat ash-Shunah', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25291', 'Yarqa', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25292', 'al-Baq\'ah', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25293', 'al-Fuhays', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25294', 'al-Karamah', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25295', 'ar-Rawdah', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25296', 'as-Salt', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25297', 'as-Sawalhah', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25298', 'as-Subayhi', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25299', 'at-Tawal al-Janubi', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25300', 'at-Tuwal ash-Shamali', '1984', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25301', '\'Ayy', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25302', 'Adar', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25303', 'Faqqu\'', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25304', 'Ghawr al-Mazra\'ah', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25305', 'Ghawr as-Safi', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25306', 'Maw\'tah', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25307', 'Sirfa', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25308', 'al-Hussayniyah', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25309', 'al-Karak', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25310', 'al-Mazar', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25311', 'al-Qasr', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25312', 'al-Qitranah', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25313', 'ar-Rabbah', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25314', 'ash-Shahabiyah', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25315', 'at-Taybah', '1985', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25316', 'Badiyat ar-Ruwayshid', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25317', 'Bal\'ama', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25318', 'Manshiyat Bani Hassan', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25319', 'Mugayyar as-Sarhan', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25320', 'Sabha', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25321', 'Sama as-Sarhan', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25322', 'Umm al-Quttayn', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25323', 'al-Hamra\'', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25324', 'al-Khaldiyah al-Jadidah', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25325', 'al-Mabrukah', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25326', 'al-Mafraq', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25327', 'ar-Ruwayshid', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25328', 'az-Za\'tari', '1986', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25329', 'Busayrah', '1987', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25330', 'al-\'Ayn al-Bayda', '1987', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25331', 'al-Hasa', '1987', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25332', 'al-Qadisiyah', '1987', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25333', 'at-Tafilah', '1987', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25334', 'Iskan al-Hashamiyah', '1988', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25335', 'Mushayrfat Ras al-\'Ayn', '1988', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25336', 'Shnillar', '1988', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25337', 'ad-Dulayl', '1988', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25338', 'al-Azraq ash-Shamali', '1988', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25339', 'al-Hashamiyah', '1988', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25340', 'ar-Russayfah', '1988', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25341', 'as-Sukhnah', '1988', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25342', 'az-Zarqa\'', '1988', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25343', 'Akmecet', '1989', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25344', 'Aral', '1989', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25345', 'Baykonir', '1989', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25346', 'Canakazali', '1989', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25347', 'Canakorgan', '1989', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25348', 'Cosali', '1989', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25349', 'Kazali', '1989', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25350', 'Sieli', '1989', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25351', 'Tasboget', '1989', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25352', 'Aksu', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25353', 'Alekseevka', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25354', 'Astana', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25355', 'Atbasar', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25356', 'Bestobe', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25357', 'Caltir', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25358', 'Colimbet', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25359', 'Ereymentau', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25360', 'Koksetau', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25361', 'Makin', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25362', 'Stepnogorsk', '1990', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25363', 'Aktobe', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25364', 'Alka', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25365', 'Batamsi', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25366', 'Embi', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25367', 'Hromtau', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25368', 'Kandagac', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25369', 'Salkar', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25370', 'Subarkudik', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25371', 'Subarsi', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25372', 'Temir', '1991', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25373', 'Almati', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25374', 'Almaty', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25375', 'Boralday', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25376', 'Carkant', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25377', 'Energetyceskiy', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25378', 'Esik', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25379', 'Fabrichniy', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25380', 'Kapsagay', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25381', 'Karabulak', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25382', 'Kaskelen', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25383', 'Kirov', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25384', 'Sariozek', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25385', 'Sarkand', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25386', 'Selek', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25387', 'Taldikorgan', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25388', 'Talgar', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25389', 'Tekeli', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25390', 'Ustobe', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25391', 'Uzunagac', '1992', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25392', 'Atirau', '1993', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25393', 'Atyrau', '1993', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25394', 'Dossor', '1993', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25395', 'Inderbor', '1993', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25396', 'Karaton', '1993', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25397', 'Kulsari', '1993', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25398', 'Makat', '1993', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25399', 'Oporni', '1993', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25400', 'Sumisker', '1993', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25401', 'Abay', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25402', 'Akadir', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25403', 'Aktas', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25404', 'Aktau', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25405', 'Atasu', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25406', 'Balkas', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25407', 'Cayrem', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25408', 'Cezkazgan', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25409', 'Gulsat', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25410', 'Karacal', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25411', 'Karaganda', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25412', 'Karkarali', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25413', 'Karsakbay', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25414', 'Konrat', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25415', 'Novodolinskiy', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25416', 'Osakarovka', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25417', 'Sahti', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25418', 'Saran', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25419', 'Sarisagan', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25420', 'Satpaev', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25421', 'Temirtau', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25422', 'Tokaryovka', '1996', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25423', 'Arkalik', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25424', 'Borovskoy', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25425', 'Cetikara', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25426', 'Derjavinsk', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25427', 'Esil', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25428', 'Fodorov', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25429', 'Kacar', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25430', 'Komsomol', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25431', 'Kostanay', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25432', 'Kusmurin', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25433', 'Lisakovsk', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25434', 'Rudni', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25435', 'Tobol', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25436', 'Uritsk', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25437', 'Zatobolsk', '1997', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25438', 'Aktau', '1998', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25439', 'Beyneu', '1998', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25440', 'Canaozen', '1998', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25441', 'Cetibay', '1998', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25442', 'Fort-Sevcenko', '1998', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25443', 'Kurik', '1998', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25444', 'Mangyslak', '1998', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25445', 'Setpe', '1998', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25446', 'Ekibastuz', '2000', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25447', 'Ermak', '2000', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25448', 'Ertis', '2000', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25449', 'Kaciri', '2000', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25450', 'Maykain', '2000', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25451', 'Pavlodar', '2000', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25452', 'Sarbakti', '2000', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25453', 'Canatas', '2003', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25454', 'Georgiyev', '2003', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25455', 'Karatau', '2003', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25456', 'Lugovoy', '2003', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25457', 'Merke', '2003', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25458', 'Mihaylov', '2003', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25459', 'Oytal', '2003', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25460', 'Su', '2003', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25461', 'Taraz', '2003', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25462', 'Gilgil', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25463', 'Karatina', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25464', 'Kiambu', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25465', 'Kijabe', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25466', 'Kikuyu', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25467', 'Limuru', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25468', 'Maragua', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25469', 'Muranga', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25470', 'Nyeri', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25471', 'Ruiru', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25472', 'Sagana', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25473', 'Thika', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25474', 'Vanga', '2004', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25475', 'Changamwe', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25476', 'Garsen', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25477', 'Gazi', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25478', 'Hola', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25479', 'Kaloleni', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25480', 'Kilifi', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25481', 'Kinango', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25482', 'Kipini', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25483', 'Kwale', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25484', 'Lamu', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25485', 'Malindi', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25486', 'Mambrui', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25487', 'Mombasa', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25488', 'Sawasawa', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25489', 'Shimoni', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25490', 'Takaungu', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25491', 'Taveta', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25492', 'Voi', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25493', 'Witu', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25494', 'Wundanyi', '2005', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25495', 'Athi River', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25496', 'Chuka', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25497', 'Embu', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25498', 'Isiolo', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25499', 'Kangonde', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25500', 'Kitui', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25501', 'Machakos', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25502', 'Mado Gashi', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25503', 'Marsabit', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25504', 'Meru', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25505', 'Moyale', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25506', 'Mutomo', '2006', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25507', 'Nairobi', '2007', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25508', 'Homa Bay', '2009', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25509', 'Kisii', '2009', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25510', 'Kisumu', '2009', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25511', 'Migori', '2009', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25512', 'Bungoma', '2011', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25513', 'Busia', '2011', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25514', 'Kakamega', '2011', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25515', 'Mumias', '2011', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25516', 'Webuye', '2011', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25517', 'Taburao', '2012', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25518', 'Binoinano', '2013', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25519', 'Takaeang', '2014', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25520', 'Roreti', '2015', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25521', 'Ooma', '2016', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25522', 'Tabukiniberu', '2017', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25523', 'Butaritari', '2018', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25524', 'London', '2019', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25525', 'Tabontebike', '2020', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25526', 'Tabiauea', '2021', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25527', 'Makin', '2022', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25528', 'Rawannawi', '2023', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25529', 'Rungata', '2024', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25530', 'Temaraia', '2025', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25531', 'Ijaki', '2026', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25532', 'Nabari', '2030', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25533', 'Abaokoro', '2031', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25534', 'Washington', '2034', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25535', 'Kanggye', '2035', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25536', 'Cheongjin', '2036', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25537', 'Kimchaek', '2036', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25538', 'Najin', '2036', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25539', 'Hamheung', '2037', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25540', 'Sariweon', '2038', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25541', 'Seongnim', '2038', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25542', 'Haeju', '2039', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25543', 'Kaeseong', '2040', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25544', 'Weonsan', '2041', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25545', 'Nampo', '2042', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25546', 'Sineuiju', '2043', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25547', 'Phyeongseong', '2044', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25548', 'Pyeongyang', '2045', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25549', 'Pyongyang', '2045', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25550', 'Hyesan', '2046', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25551', 'Busan', '2047', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25552', 'Aeweol', '2048', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25553', 'Cheju', '2048', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25554', 'Seogwipo', '2048', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25555', 'Cheonju', '2049', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25556', 'Chongup', '2049', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25557', 'Iksan', '2049', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25558', 'Kimje', '2049', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25559', 'Kochang', '2049', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25560', 'Kunsan', '2049', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25561', 'Namwon', '2049', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25562', 'Puan', '2049', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25563', 'Haenam', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25564', 'Hwasun', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25565', 'Kwangyang', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25566', 'Kwangyang Up', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25567', 'Mokpo', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25568', 'Naju', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25569', 'Peolgyo', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25570', 'Suncheon', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25571', 'Yeocheon', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25572', 'Yeosu', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25573', 'Yonggwang', '2050', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25574', 'Cheongwon-gun', '2051', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25575', 'Eumsung-Kun', '2051', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25576', 'Jinchunkun', '2051', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25577', 'Okcheon-gun', '2051', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25578', 'Um Sung Gun', '2051', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25579', 'Chechon', '2052', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25580', 'Cheongju', '2052', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25581', 'Chincheon', '2052', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25582', 'Chungju', '2052', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25583', 'Jincheon-gun', '2052', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25584', 'Okchon', '2052', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25585', 'Yongdong', '2052', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25586', 'Asan', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25587', 'Cheonan', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25588', 'Chochiwon', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25589', 'Geumsan-Gun', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25590', 'Hongseong', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25591', 'Kongju', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25592', 'Kumsan', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25593', 'Nonsan', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25594', 'Poryong', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25595', 'Puyeo', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25596', 'Seonghwan', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25597', 'Seosan', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25598', 'Taean', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25599', 'Taesan', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25600', 'Tangjin', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25601', 'Yesan', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25602', 'Yonmu', '2053', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25603', 'Chonan', '2054', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25604', 'Danjin-gun', '2054', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25605', 'Gongjusi', '2054', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25606', 'Daegu', '2055', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25607', 'Dalseo-gu', '2055', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25608', 'Chungcheong', '2056', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25609', 'Hoengseong', '2056', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25610', 'Mummakeup', '2056', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25611', 'Wonju', '2056', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25612', 'Gimhae', '2057', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25613', 'Goyang-si', '2057', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25614', 'Ansan', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25615', 'Anyang', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25616', 'Anyang-Si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25617', 'Anyangsi', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25618', 'Buchon', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25619', 'Buchun-Si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25620', 'Byeoryangdong', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25621', 'Dongan-gu', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25622', 'Gimpo City', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25623', 'Goyang', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25624', 'Gupo-si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25625', 'Guri-Si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25626', 'Gwacheon Si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25627', 'Gwangju-Si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25628', 'Hwaseong-si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25629', 'Icheon-si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25630', 'Iljuk-myeon', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25631', 'Kwangju', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25632', 'Pocheon-Si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25633', 'Seongnam', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25634', 'Shihung-Si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25635', 'Siheung', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25636', 'Sihung-si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25637', 'Suwon', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25638', 'Uijeongbu-dong', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25639', 'Uiwang', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25640', 'Yangju', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25641', 'Yangpyeong-Gun', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25642', 'Yeokbuk-Dong-Si', '2058', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25643', 'Changwon', '2060', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25644', 'Gimhae-si', '2060', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25645', 'Incheon', '2061', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25646', 'Kanghwa', '2061', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25647', 'Namdongku', '2061', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25648', 'Jeju', '2062', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25649', 'Yeongpyeong-Dong', '2062', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25650', 'Jeonju-Si', '2063', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25651', 'Chuncheon', '2064', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25652', 'Hongcheon', '2064', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25653', 'Kangneung', '2064', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25654', 'Samchok', '2064', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25655', 'Seokcho', '2064', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25656', 'Taebaek', '2064', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25657', 'Tonghae', '2064', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25658', 'Weonju', '2064', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25659', 'Yeongweol', '2064', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25660', 'Kwangju', '2065', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25661', 'Ansan', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25662', 'Anseong', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25663', 'Anyang', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25664', 'Chongok', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25665', 'Euijeongbu', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25666', 'Euiwang', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25667', 'Hanam', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25668', 'Hoechon', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25669', 'Hwado', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25670', 'Hwasung', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25671', 'Ichon', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25672', 'Kihung', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25673', 'Kimpo', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25674', 'Koyang', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25675', 'Kumchon', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25676', 'Kunpo', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25677', 'Kuri', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25678', 'Kwacheon', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25679', 'Kwangju', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25680', 'Kwangmyeong', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25681', 'Munsan', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25682', 'Namyangju', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25683', 'Osan', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25684', 'Paengseong', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25685', 'Pochon', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25686', 'Pubal', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25687', 'Pucheon', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25688', 'Pyeongtaek', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25689', 'Seongnam', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25690', 'Shiheung', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25691', 'Suweon', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25692', 'Taean', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25693', 'Tongducheon', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25694', 'Wabu', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25695', 'Yeoju', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25696', 'Yongin', '2066', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25697', 'Andong', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25698', 'Angang', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25699', 'Hayang', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25700', 'Heunghae', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25701', 'Kimcheon', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25702', 'Kumi', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25703', 'Kyeongju', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25704', 'Kyeongsan', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25705', 'Mungyong', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25706', 'Ochon', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25707', 'Oedong', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25708', 'Pohang', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25709', 'Sangju', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25710', 'Seonsan', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25711', 'Waegwan', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25712', 'Yechon', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25713', 'Yeongcheon', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25714', 'Yeongju', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25715', 'Yeonil', '2067', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25716', 'Changweon', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25717', 'Chinhae', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25718', 'Chinju', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25719', 'Chinyeong', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25720', 'Keoje', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25721', 'Kimhae', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25722', 'Kochang', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25723', 'Koseong', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25724', 'Masan', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25725', 'Miryang', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25726', 'Naeso', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25727', 'Sacheon', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25728', 'Sinhyeon', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25729', 'Tongyong', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25730', 'Ungsang', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25731', 'Yangju', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25732', 'Yangsan', '2068', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25733', 'Anyang-Si', '2069', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25734', 'Bucheon', '2069', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25735', 'Paju', '2069', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25736', 'Sungnamshi', '2069', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25737', 'Suwon', '2069', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25738', 'Uijongbu', '2069', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25739', 'Yangju', '2069', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25740', 'Gumi-Shi', '2070', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25741', 'Kyungsan', '2070', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25742', 'Youngcheon-Si', '2070', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25743', 'Bundang', '2071', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25744', 'Gunpo', '2071', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25745', 'Yangu', '2071', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25746', 'Pochun', '2072', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25747', 'Yangju', '2072', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25748', 'Yonggi', '2072', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25749', 'Kijang', '2073', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25750', 'Pusan', '2073', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25751', 'Seoul', '2074', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25752', 'Paju', '2075', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25753', 'Hwawon', '2076', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25754', 'Taegu', '2076', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25755', 'Taejeon', '2077', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25756', 'Daejeon', '2078', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25757', 'Nongso', '2079', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25758', 'Ulsan', '2079', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25759', 'Heungup-Myun', '2080', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25760', 'Inchon', '2081', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25761', 'Pusan', '2081', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25762', 'Taejon', '2081', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25763', 'Bayan', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25764', 'Hawalli', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25765', 'Massilah', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25766', 'Mushrif', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25767', 'Salwa\'', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25768', 'Sha\'\'ab', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25769', 'Subbah-as-Salim', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25770', 'al-Funaytis', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25771', 'al-Funaytis-al-Garbiyah', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25772', 'al-Jabiriyah', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25773', 'al-Karim', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25774', 'ar-Rumaythiyah', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25775', 'as-Salimiyah', '2083', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25776', 'Mishref', '2084', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25777', 'Qadesiya', '2085', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25778', 'Safat', '2086', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25779', 'Salmiya', '2087', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25780', 'A\'qaylah', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25781', 'Abu Hulayfah', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25782', 'Dahar', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25783', 'Desert Area', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25784', 'Hadiyah', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25785', 'Jabbar-al-\'Ali', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25786', 'Shu\'aybah', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25787', 'al-Ahmadi', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25788', 'al-Fintas', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25789', 'al-Fuhayhil', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25790', 'al-Mahbulah', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25791', 'al-Manqaf', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25792', 'al-Wafrah', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25793', 'ar-Riqqah', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25794', 'as-Sabahiyah', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25795', 'az-Zawr', '2088', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25796', '\'Umayriyah', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25797', 'Abraq Khitan', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25798', 'Ardiyah', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25799', 'Fardaws', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25800', 'Jalib ash-Shuyuh', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25801', 'Janub-as-Surrah', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25802', 'Khitan-al-Janubiyah', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25803', 'Qartaba', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25804', 'Ray', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25805', 'Riqay', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25806', 'Sabhan', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25807', 'Sarbah-an-Nasr', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25808', 'Warmawk', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25809', 'al-Andalus', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25810', 'al-Farwaniyah', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25811', 'ar-Rabbiyah', '2089', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25812', 'Amgarah', '2090', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25813', 'Desert Area', '2090', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25814', 'Nasim', '2090', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25815', 'Tayma\'', '2090', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25816', 'Uyawn', '2090', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25817', 'Waha', '2090', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25818', 'al-Jahra', '2090', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25819', 'al-Qusayr', '2090', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25820', 'as-Sulaybiyah', '2090', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25821', '\'Abullah-as-Salam', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25822', 'Ardhiyah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25823', 'Banayd-al-Qar', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25824', 'Health District', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25825', 'Kayfan', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25826', 'Khalidiyah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25827', 'Mansuriyah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25828', 'Nuzha', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25829', 'Qarnadah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25830', 'Shamiyah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25831', 'ad-Da\'iyah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25832', 'ad-Dasma', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25833', 'ad-Dawhah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25834', 'al-\'Udayliyah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25835', 'al-Fayha', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25836', 'al-Kuwayt', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25837', 'al-Qadisiyah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25838', 'ar-Rawdah', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25839', 'as-Sulaybihat', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25840', 'ash-Shuwaykh Industrial', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25841', 'ash-Shuwaykh Reservoir', '2091', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25842', 'Batken', '2092', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25843', 'Isfana', '2092', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25844', 'Khaidarkan', '2092', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25845', 'Kyzyl-Kiya', '2092', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25846', 'Ravat', '2092', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25847', 'Sulukta', '2092', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25848', 'Bishkek', '2093', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25849', 'Ak-Suu', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25850', 'Belovodskoye', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25851', 'Boroldoy', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25852', 'Chaldovar', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25853', 'Chatkyol', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25854', 'Chui', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25855', 'Don Arik', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25856', 'Ivanovka', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25857', 'Jangyjar', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25858', 'Jangypakhtar', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25859', 'Kalininskoye', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25860', 'Kalinovka', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25861', 'Kant', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25862', 'Kara-Suu', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25863', 'Karabalta', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25864', 'Kayingdi', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25865', 'Kegety', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25866', 'Kemin', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25867', 'Kosh Tegirmen', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25868', 'Krasnaya Rechka', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25869', 'Orlovka', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25870', 'Sokuluk', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25871', 'Sopokov', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25872', 'Sosnovka', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25873', 'Tokmok', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25874', 'Tunuk', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25875', 'Yuryevka', '2094', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25876', 'Ak-Bulok', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25877', 'Ak-Terek', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25878', 'Ananyevo', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25879', 'Balykchy', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25880', 'Barskoon', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25881', 'Cholpon-Ata', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25882', 'Darkhon', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25883', 'Enilchek', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25884', 'Grigoryevka', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25885', 'Jyrgolon', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25886', 'Kara-Say', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25887', 'Karako', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25888', 'Karakol', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25889', 'Kuturgu', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25890', 'Mikhaylovka', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25891', 'Novovoznesenovka', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25892', 'Ottuk', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25893', 'Semyonovka', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25894', 'Taldy-Suu', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25895', 'Teploklyuchenka', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25896', 'Tyup', '2095', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25897', 'Ala Buka', '2096', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25898', 'Bazarkurgon', '2096', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25899', 'Jalal-Abad', '2096', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25900', 'Jangybazar', '2096', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25901', 'Karavan', '2096', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25902', 'Kochkor-Ata', '2096', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25903', 'Kok-Jangak', '2096', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25904', 'Mailuu-Suu', '2096', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25905', 'Tash-Kumyr', '2096', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25906', 'At-Bashi', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25907', 'Chaiek', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25908', 'Kara-Suu', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25909', 'Kayirma', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25910', 'Kek-Algyp', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25911', 'Kochkorka', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25912', 'Kulanak', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25913', 'Mingbulok', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25914', 'Mingkush', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25915', 'Naryn', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25916', 'Ugyut', '2097', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25917', 'Daraut-Korgan', '2098', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25918', 'Gulcha', '2098', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25919', 'Kara-Suu', '2098', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25920', 'Leninskoye', '2098', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25921', 'Osh', '2098', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25922', 'Uzgen', '2098', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25923', 'Chat-Bazar', '2099', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25924', 'Groznoye', '2099', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25925', 'Kara-Kul', '2099', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25926', 'Klyuchevka', '2099', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25927', 'Kyzyl-Adyr', '2099', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25928', 'Leninopol', '2099', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25929', 'Maimak', '2099', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25930', 'Talas', '2099', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25931', 'Toktogul', '2099', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25932', 'Samakhixai', '2100', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25933', 'Huayxay', '2101', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25934', 'Pakxan', '2102', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25935', 'Champasak', '2103', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25936', 'Muang Khong', '2103', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25937', 'Muang Khongxedon', '2103', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25938', 'Pakxe', '2103', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25939', 'Xam Nua', '2104', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25940', 'Thakek', '2105', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25941', 'Ban Nahin', '2108', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25942', 'Phongsaly', '2109', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25943', 'Saravan', '2110', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25944', 'Savannakhet', '2111', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25945', 'Sekong', '2112', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25946', 'Xaignabury', '2115', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25947', 'Aizkraukle', '2117', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25948', 'Jaunjelgava', '2117', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25949', 'Plavinas', '2117', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25950', 'Aluksne', '2118', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25951', 'Ape', '2118', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25952', 'Balvi', '2119', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25953', 'Vilaka', '2119', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25954', 'Bauska', '2120', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25955', 'Cesis', '2121', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25956', 'Ligatne', '2121', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25957', 'Ilukste', '2122', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25958', 'Subate', '2122', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25959', 'Ilukste', '2123', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25960', 'Subate', '2123', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25961', 'Auce', '2124', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25962', 'Dobele', '2124', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25963', 'Gulbene', '2125', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25964', 'Akniste', '2126', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25965', 'Jekabspils', '2126', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25966', 'Viesite', '2126', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25967', 'Jelgava', '2127', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25968', 'Kalnciems', '2128', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25969', 'Dagda', '2130', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25970', 'Kraslava', '2130', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25971', 'Kuldiga', '2131', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25972', 'Skrunda', '2131', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25973', 'Liepaja', '2132', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25974', 'Aizpute', '2133', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25975', 'Durbe', '2133', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25976', 'Grobina', '2133', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25977', 'Pavilosta', '2133', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25978', 'Priekule', '2133', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25979', 'Ainazhi', '2134', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25980', 'Aloja', '2134', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25981', 'Limbazhi', '2134', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25982', 'Salacgriva', '2134', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25983', 'Staicele', '2134', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25984', 'Karsava', '2135', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25985', 'Ludza', '2135', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25986', 'Zilupe', '2135', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25987', 'Cesvaine', '2136', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25988', 'Lubana', '2136', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25989', 'Madona', '2136', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25990', 'Varaklani', '2136', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25991', 'Ikskile', '2137', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25992', 'Kegums', '2137', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25993', 'Les Hautes-Rivieres', '2137', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25994', 'Lielvarde', '2137', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25995', 'Ogre', '2137', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25996', 'Livani', '2138', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25997', 'Preili', '2138', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25998', 'Rezekne', '2139', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('25999', 'Vilani', '2140', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26000', 'Riga', '2141', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26001', 'Baldone', '2142', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26002', 'Balozhi', '2142', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26003', 'Olaine', '2142', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26004', 'Salaspils', '2142', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26005', 'Saulkrasti', '2142', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26006', 'Sigulda', '2142', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26007', 'Vangazhi', '2142', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26008', 'Broceni', '2143', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26009', 'Saldus', '2143', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26010', 'Sabile', '2144', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26011', 'Stende', '2144', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26012', 'Talsi', '2144', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26013', 'Valdemarpils', '2144', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26014', 'Kandava', '2145', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26015', 'Tukums', '2145', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26016', 'Seda', '2146', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26017', 'Smiltene', '2146', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26018', 'Strenchi', '2146', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26019', 'Valka', '2146', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26020', 'Mazsalaca', '2147', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26021', 'Rujiena', '2147', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26022', 'Valmiera', '2147', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26023', 'Piltene', '2148', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26024', 'Piltene', '2149', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26025', 'Beirut', '2150', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26026', 'Jdeidet el Metn', '2150', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26027', 'Jnaah', '2150', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26028', 'Sidon', '2154', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26029', 'Ba\'labakk', '2155', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26030', 'Jubb Jannin', '2155', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26031', 'Rashayya', '2155', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26032', 'Riyak', '2155', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26033', 'Zahlah', '2155', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26034', 'al-Hirmil', '2155', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26035', 'Jazzin', '2156', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26036', 'Juwayya', '2156', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26037', 'Sayda\'', '2156', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26038', 'Sur', '2156', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26039', 'Marj \'Uyun', '2157', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26040', 'Nabatieh', '2157', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26041', 'an-Nabatiyat-at-Tahta', '2157', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26042', 'Tarabulus ash-Sham', '2158', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26043', 'al-Batrun', '2158', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26044', 'Teyateyaneng', '2159', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26045', 'Butha Buthe', '2160', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26046', 'Hlotse', '2161', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26047', 'Maputsoa', '2161', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26048', 'Mafeteng', '2162', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26049', 'Maseru', '2163', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26050', 'Mokhotlong', '2165', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26051', 'Quthing', '2167', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26052', 'Thaba-Tseka', '2168', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26053', 'Tubmanburg', '2169', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26054', 'Gbarnga', '2170', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26055', 'Voinjama', '2174', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26056', 'Harbel', '2175', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26057', 'Kakata', '2175', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26058', 'Bensonville', '2177', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26059', 'Monrovia', '2177', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26060', 'Ganta', '2178', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26061', 'Sanniquellie', '2178', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26062', 'Yekepa', '2178', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26063', 'Rivercess', '2179', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26064', 'Greenville', '2180', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26065', 'Ajdabiya', '2181', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26066', 'Awjilah', '2181', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26067', 'Marsa al-Burayqah', '2181', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26068', 'az-Zuwaytinah', '2181', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26069', 'Awbari', '2182', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26070', 'Ghat', '2182', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26071', 'Banghazi', '2183', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26072', 'Suluq', '2183', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26073', 'al-Quriyah', '2183', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26074', 'Darnah', '2184', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26075', 'Ghadamis', '2185', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26076', 'Nalut', '2185', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26077', 'Gharyan', '2186', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26078', 'Mizdah', '2186', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26079', 'al-Qaryah-ash-Sharqiyah', '2186', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26080', 'Misratah', '2187', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26081', 'Murzuq', '2188', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26082', 'Sabha', '2189', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26083', 'Bani Walid', '2190', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26084', 'Surt', '2191', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26085', 'Tarabulus', '2192', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26086', 'Tripoli', '2192', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26087', 'Tarhunah', '2193', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26088', 'Misrata', '2194', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26089', 'Bardiyah', '2195', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26090', 'Tubruq', '2195', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26091', 'Yafran', '2196', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26092', 'Zlitan', '2197', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26093', 'al-Aziziyah', '2198', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26094', 'al-Abyar', '2199', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26095', 'al-Marj', '2199', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26096', 'Waddan', '2201', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26097', 'al-Khums', '2202', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26098', 'al-Jawf', '2203', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26099', 'Birak', '2205', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26100', 'az-Zawiyah', '2206', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26101', 'Balzers', '2207', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26102', 'Eschen', '2208', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26103', 'Gamprin', '2209', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26104', 'Mauren', '2210', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26105', 'Planken', '2211', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26106', 'Ruggell', '2212', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26107', 'Schaan', '2213', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26108', 'Schellenberg', '2214', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26109', 'Triesen', '2215', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26110', 'Triesenberg', '2216', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26111', 'Vaduz', '2217', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26112', 'Alytus', '2218', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26113', 'Daugai', '2218', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26114', 'Druskininkai', '2218', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26115', 'Lazdijai', '2218', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26116', 'Simnas', '2218', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26117', 'Varena', '2218', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26118', 'Veisiejai', '2218', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26119', 'Anyksciai', '2219', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26120', 'Ariogala', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26121', 'Birshtonas', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26122', 'Dotnuva', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26123', 'Ezherelis', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26124', 'Garliava', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26125', 'Jieznas', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26126', 'Jonava', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26127', 'Kachergine', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26128', 'Kaishiadorys', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26129', 'Kaunas', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26130', 'Kedainiai', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26131', 'Kulautuva', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26132', 'Prienai', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26133', 'Raseiniai', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26134', 'Vilkija', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26135', 'Zhiezhmariai', '2220', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26136', 'Gargzhdai', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26137', 'Klaipeda', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26138', 'Kretinga', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26139', 'Neringa', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26140', 'Pagegiai', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26141', 'Palanga', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26142', 'Panemune', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26143', 'Priekule', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26144', 'Rusne', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26145', 'Salantai', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26146', 'Shilute', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26147', 'Skuodas', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26148', 'Zhemaichiu Naumiestis', '2221', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26149', 'Gelgaudishkis', '2222', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26150', 'Kalvarija', '2222', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26151', 'Kazlu Ruda', '2222', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26152', 'Kudirkos Naumiestis', '2222', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26153', 'Kybartai', '2222', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26154', 'Marijampole', '2222', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26155', 'Shakiai', '2222', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26156', 'Vilkavishkis', '2222', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26157', 'Virbalis', '2222', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26158', 'Birzhai', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26159', 'Jonishkelis', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26160', 'Juodupe', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26161', 'Kupishkis', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26162', 'Obeliai', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26163', 'Pandelys', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26164', 'Panevezhys', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26165', 'Panevezio', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26166', 'Pasvalys', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26167', 'Ramygala', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26168', 'Rokishkis', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26169', 'Subachius', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26170', 'Vabalninkas', '2223', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26171', 'Panevezys', '2224', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26172', 'Akmene', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26173', 'Jonishkis', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26174', 'Kelme', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26175', 'Kurshenai', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26176', 'Linkuva', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26177', 'Naujoji Akmene', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26178', 'Pakruojis', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26179', 'Radvilishkis', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26180', 'Sheduva', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26181', 'Shiauliai', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26182', 'Siauliai', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26183', 'Tyruliai', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26184', 'Tytuvenai', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26185', 'Uzhventis', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26186', 'Venta', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26187', 'Viekshniai', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26188', 'Zhagare', '2225', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26189', 'Jurbarkas', '2226', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26190', 'Shilale', '2226', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26191', 'Skaudvile', '2226', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26192', 'Smalininkai', '2226', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26193', 'Taurage', '2226', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26194', 'Guglingen', '2227', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26195', 'Mazheikiai', '2227', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26196', 'Plunge', '2227', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26197', 'Rietavas', '2227', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26198', 'Seda', '2227', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26199', 'Telshiai', '2227', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26200', 'Varniai', '2227', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26201', 'Mazeikiai', '2228', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26202', 'Anykshchiai', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26203', 'Dukshtas', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26204', 'Dusetos', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26205', 'Ignalina', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26206', 'Kavarskas', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26207', 'Moletai', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26208', 'Troshkunai', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26209', 'Turmantas', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26210', 'Utena', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26211', 'Visaginas', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26212', 'Zarasai', '2229', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26213', 'Baltoji Voke', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26214', 'Eishishkes', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26215', 'Elektrenai', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26216', 'Grigishkes', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26217', 'Lentvaris', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26218', 'Nemenchine', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26219', 'Pabrade', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26220', 'Rudishkes', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26221', 'Shalchininkai', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26222', 'Shirvintos', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26223', 'Shvenchioneliai', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26224', 'Shvenchionys', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26225', 'Trakai', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26226', 'Ukmerge', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26227', 'Vievis', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26228', 'Vilnius', '2230', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26229', 'Bascharage', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26230', 'Bettange-sur-Mess', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26231', 'Bridel', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26232', 'Capellen', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26233', 'Clemency', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26234', 'Dahlem', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26235', 'Dippach', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26236', 'Dondelange', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26237', 'Eischen', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26238', 'Fingig', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26239', 'Garnich', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26240', 'Goeblange', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26241', 'Goetzingen', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26242', 'Grass', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26243', 'Greisch', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26244', 'Hagen', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26245', 'Hautcharage', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26246', 'Hivange', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26247', 'Hobscheid', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26248', 'Holzem', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26249', 'Kahler', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26250', 'Kehlen', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26251', 'Keispelt', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26252', 'Kleinbettingen', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26253', 'Koerich', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26254', 'Kospstal', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26255', 'Linger', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26256', 'Mamer', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26257', 'Meispelt', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26258', 'Nospelt', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26259', 'Olm', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26260', 'Roodt', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26261', 'Schouweiler', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26262', 'Septfontaines', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26263', 'Sprinkange', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26264', 'Steinfort', '2231', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26265', 'Allerborn', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26266', 'Asselborn', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26267', 'Basbellain', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26268', 'Beiler', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26269', 'Binsfeld', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26270', 'Biwisch', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26271', 'Bockholtz', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26272', 'Boevange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26273', 'Boxhorn', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26274', 'Brachtenbach', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26275', 'Breidfeld', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26276', 'Cinqfontaines', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26277', 'Clervaux', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26278', 'Consthum', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26279', 'Crendal', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26280', 'Deiffelt-Lentzweiler', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26281', 'Derenbach', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26282', 'Doennange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26283', 'Dorscheid', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26284', 'Drauffelt', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26285', 'Drinklange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26286', 'Eisenbach', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26287', 'Eselborn', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26288', 'Fischbach', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26289', 'Goedange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26290', 'Grindhausen', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26291', 'Hachiville', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26292', 'Hamiville', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26293', 'Hautbellain', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26294', 'Heinerscheid', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26295', 'Hoffelt', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26296', 'Holler', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26297', 'Holzthum', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26298', 'Hosingen', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26299', 'Huldange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26300', 'Hupperdange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26301', 'Kalborn', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26302', 'Leithum', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26303', 'Lieler', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26304', 'Lullange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26305', 'Marnach', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26306', 'Maulusmuehle', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26307', 'Munshausen', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26308', 'Neidhausen', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26309', 'Niederwampach-Schimpach', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26310', 'Oberwampach', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26311', 'Reuler', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26312', 'Roder', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26313', 'Rodershausen', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26314', 'Rumlange-Lentzweiler', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26315', 'Sassel', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26316', 'Siebenaler', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26317', 'Stockem', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26318', 'Troine-Hinterhasselt', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26319', 'Troine-Route', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26320', 'Troisvierges', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26321', 'Urspelt', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26322', 'Wahlhausen', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26323', 'Weicherdange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26324', 'Weiler', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26325', 'Weiswampach', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26326', 'Wilwerdange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26327', 'Wincrange', '2232', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26328', 'Bastendorf', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26329', 'Bettendorf', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26330', 'Bigelbach', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26331', 'Bourscheid', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26332', 'Brandenbourg', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26333', 'Burden', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26334', 'Diekirch', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26335', 'Eppeldorf', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26336', 'Ermsdorf', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26337', 'Erpeldange', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26338', 'Ettelbruck', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26339', 'Folkendange', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26340', 'Gilsdorf', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26341', 'Hoesdorf', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26342', 'Hoscheid', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26343', 'Hoscheid-Dickt', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26344', 'Ingeldorf', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26345', 'Kehmen-Scheidel', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26346', 'Landscheid', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26347', 'Lipperscheid', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26348', 'Medernach', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26349', 'Mertzig', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26350', 'Michelau', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26351', 'Moestroff', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26352', 'Niederfeulen', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26353', 'Oberfeulen', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26354', 'Reisdorf', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26355', 'Savelborn + Fermes', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26356', 'Schieren', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26357', 'Schlindermanderscheid', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26358', 'Stegen', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26359', 'Tandel', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26360', 'Wallendorf', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26361', 'Warken', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26362', 'Welscheid', '2233', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26363', 'Altrier', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26364', 'Beaufort', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26365', 'Bech', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26366', 'Berdorf', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26367', 'Bollendorf-Pont', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26368', 'Born', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26369', 'Boursdorf', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26370', 'Breidweiler', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26371', 'Christnach', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26372', 'Consdorf', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26373', 'Dickweiler', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26374', 'Dillingen', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26375', 'Echternach', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26376', 'Girst', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26377', 'Girsterklaus', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26378', 'Givenich', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26379', 'Grundhof', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26380', 'Haller', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26381', 'Hemstal', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26382', 'Herborn', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26383', 'Hersberg-Kobenbour-Graulinster', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26384', 'Hinkel', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26385', 'Moersdorf', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26386', 'Mompach', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26387', 'Mullerthal', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26388', 'Osweiler', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26389', 'Rippig', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26390', 'Rosport', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26391', 'Scheidgen', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26392', 'Steinheim', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26393', 'Waldbillig', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26394', 'Weilerbach', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26395', 'Zittig', '2234', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26396', 'Abweiler', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26397', 'Aspelt', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26398', 'Belvaux', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26399', 'Berchem', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26400', 'Bergem', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26401', 'Bettembourg', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26402', 'Bivange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26403', 'Crauthem', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26404', 'Differdange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26405', 'Dudelange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26406', 'Ehlange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26407', 'Ehlerange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26408', 'Esch-Alzette', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26409', 'Fennange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26410', 'Foetz', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26411', 'Fousbann', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26412', 'Frisange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26413', 'Hellange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26414', 'Huncherange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26415', 'Kayl', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26416', 'Kockelscheuer', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26417', 'Lamadelaine', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26418', 'Lasauvage', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26419', 'Leudelange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26420', 'Limpach', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26421', 'Livange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26422', 'Mondercange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26423', 'Niedercorn', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26424', 'Noertzange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26425', 'Obercorn', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26426', 'Peppange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26427', 'Petange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26428', 'Pissange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26429', 'Pontpierre', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26430', 'Reckange-sur-Mess', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26431', 'Rodange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26432', 'Roedgen', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26433', 'Roeser', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26434', 'Rumelange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26435', 'Sanem', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26436', 'Schifflange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26437', 'Soleuvre', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26438', 'Tetange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26439', 'Wickrange', '2235', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26440', 'Ahn-Dreiborn', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26441', 'Altlinster', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26442', 'Beidweiler', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26443', 'Berbourg', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26444', 'Berg', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26445', 'Betzdorf', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26446', 'Beyren', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26447', 'Biwer', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26448', 'Biwerbach', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26449', 'Boudler', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26450', 'Boudlerbach', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26451', 'Bourglinster', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26452', 'Breinert', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26453', 'Brouch', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26454', 'Ehnen', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26455', 'Eisenborn', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26456', 'Eschweiler', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26457', 'Flaxweiler', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26458', 'Godbrange', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26459', 'Gonderange', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26460', 'Gostingen', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26461', 'Graulinster-Blumenthal', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26462', 'Grevenmacher', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26463', 'Hagelsdorf', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26464', 'Imbringen', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26465', 'Junglinster', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26466', 'Lellig', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26467', 'Machtum', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26468', 'Manternach', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26469', 'Mensdorf', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26470', 'Mertert', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26471', 'Munschecker', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26472', 'Niederdonven', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26473', 'Oberdonven', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26474', 'Olingen', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26475', 'Rodenbourg', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26476', 'Roodt-sur-Syr', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26477', 'Wasserbillig', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26478', 'Wecker', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26479', 'Wecker-Gare', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26480', 'Weydig', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26481', 'Wormeldange', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26482', 'Wormeldange-Haut', '2236', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26483', 'Alzingen', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26484', 'Bereldange', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26485', 'Bertrange', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26486', 'Contern', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26487', 'Ernster', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26488', 'Fentange', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26489', 'Findel', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26490', 'Hassel', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26491', 'Heisdorf', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26492', 'Helmsange', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26493', 'Hesperange', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26494', 'Hostert', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26495', 'Howald', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26496', 'Itzig', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26497', 'Luxembourg', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26498', 'Medingen', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26499', 'Moutfort', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26500', 'Mullendorf', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26501', 'Munsbach', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26502', 'Neuhaeusgen', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26503', 'Niederanven', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26504', 'Oberanven', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26505', 'Oetrange', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26506', 'Rameldange', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26507', 'Sandweiler', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26508', 'Schrassig', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26509', 'Schuttrange', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26510', 'Senningen', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26511', 'Senningerberg', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26512', 'Steinsel', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26513', 'Strassen', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26514', 'Syren', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26515', 'Uebersyren', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26516', 'Waldhof', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26517', 'Walferdange', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26518', 'Weiler-la-Tour', '2237', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26519', 'Angelsberg', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26520', 'Ansembourg', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26521', 'Beringen', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26522', 'Bissen', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26523', 'Blaschette', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26524', 'Boevange-Attert', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26525', 'Bofferdange', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26526', 'Bour', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26527', 'Brouch', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26528', 'Buschdorf', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26529', 'Colmar-Berg', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26530', 'Cruchten', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26531', 'Ernzen', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26532', 'Essingen', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26533', 'Fischbach', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26534', 'Glabach', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26535', 'Gosseldange', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26536', 'Grevenknapp-Bill-Finsterthal', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26537', 'Heffingen', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26538', 'Helmdange', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26539', 'Hollenfels', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26540', 'Hunsdorf', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26541', 'Larochette', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26542', 'Lintgen', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26543', 'Lorentzweiler', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26544', 'Marienthal', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26545', 'Mersch', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26546', 'Moesdorf', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26547', 'Nommern', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26548', 'Pettingen', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26549', 'Prettange', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26550', 'Reckange', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26551', 'Reuland', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26552', 'Rollingen', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26553', 'Scherbach', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26554', 'Scherfenhof', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26555', 'Schiltzberg', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26556', 'Schoenfels', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26557', 'Schoos', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26558', 'Schrondweiler', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26559', 'Tuntange', '2238', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26560', 'Arsdorf', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26561', 'Beckerich', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26562', 'Bettborn', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26563', 'Bigonville', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26564', 'Bilsdorf', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26565', 'Brattert-Rindschleiden', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26566', 'Buschrodt', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26567', 'Calmus', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26568', 'Colpach-Bas', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26569', 'Colpach-Haut', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26570', 'Dellen-Lehrhof-Grevels', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26571', 'Ehner', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26572', 'Ell', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26573', 'Eltz', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26574', 'Elvange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26575', 'Eschette', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26576', 'Everlange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26577', 'Folschette', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26578', 'Grevels', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26579', 'Grosbous', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26580', 'Haut-Martelange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26581', 'Heispelt', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26582', 'Holtz', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26583', 'Hostert', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26584', 'Hovelange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26585', 'Huttange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26586', 'Kapweiler', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26587', 'Koetschette', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26588', 'Kuborn', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26589', 'Lannen', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26590', 'Levelange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26591', 'Michelbouch', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26592', 'Nagem', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26593', 'Niederpallen', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26594', 'Noerdange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26595', 'Oberpallen', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26596', 'Ospern', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26597', 'Perle', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26598', 'Petit-Nobressart', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26599', 'Platen', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26600', 'Pratz', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26601', 'Rambrouch', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26602', 'Redange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26603', 'Reichlange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26604', 'Reimberg', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26605', 'Rippweiler', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26606', 'Rombach', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26607', 'Roodt', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26608', 'Saeul', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26609', 'Schandel', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26610', 'Schwebach', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26611', 'Schweich', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26612', 'Useldange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26613', 'Vichten', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26614', 'Wahl', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26615', 'Wolwelange', '2239', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26616', 'Altwies', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26617', 'Assel', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26618', 'Bech-Kleinmacher', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26619', 'Bous', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26620', 'Burmerange', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26621', 'Canach', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26622', 'Dalheim', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26623', 'Ellange', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26624', 'Elvange', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26625', 'Emerange', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26626', 'Erpeldange', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26627', 'Filsdorf', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26628', 'Greiveldange', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26629', 'Lenningen', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26630', 'Mondorf-les-Bains', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26631', 'Remerschen', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26632', 'Remich', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26633', 'Rolling', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26634', 'Schengen', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26635', 'Schwebsingen', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26636', 'Stadtbredimus', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26637', 'Trintange', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26638', 'Trintange-Ersange-Roedt', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26639', 'Waldbredimus', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26640', 'Welfrange', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26641', 'Wellenstein', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26642', 'Wintrange', '2240', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26643', 'Bettel', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26644', 'Bivels', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26645', 'Fouhren', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26646', 'Gralingen', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26647', 'Longsdorf', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26648', 'Merscheid', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26649', 'Nachtmanderscheid', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26650', 'Putscheid', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26651', 'Stolzembourg', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26652', 'Vianden', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26653', 'Walsdorf', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26654', 'Weiler', '2241', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26655', 'Alscheid', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26656', 'Baschleiden', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26657', 'Bavigne', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26658', 'Berle', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26659', 'Bockholtz', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26660', 'Boulaide', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26661', 'Buderscheid', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26662', 'Dahl', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26663', 'Doncols', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26664', 'Enscherange', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26665', 'Erpeldange', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26666', 'Esch-sur-Sure', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26667', 'Eschdorf', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26668', 'Eschweiler', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26669', 'Goesdorf', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26670', 'Grumelscheid', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26671', 'Harlange', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26672', 'Heiderscheid', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26673', 'Heiderscheid-Fond', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26674', 'Hierheck', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26675', 'Insenborn', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26676', 'Kaundorf', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26677', 'Kautenbach', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26678', 'Knaphoscheid', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26679', 'Lellingen', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26680', 'Liefrange', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26681', 'Lultzhausen', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26682', 'Masseler', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26683', 'Mecher', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26684', 'Merckholtz', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26685', 'Merscheid', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26686', 'Neunhausen', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26687', 'Nocher', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26688', 'Nocher-Route', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26689', 'Noertrange', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26690', 'Nothum', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26691', 'Pintsch', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26692', 'Pommerloch', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26693', 'Schleif', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26694', 'Selscheid', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26695', 'Sonlez', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26696', 'Surre', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26697', 'Tadler-Ringel-Dirbach', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26698', 'Tarchamps', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26699', 'Watrange', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26700', 'Wiltz', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26701', 'Wilwerwiltz', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26702', 'Winseler', '2242', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26703', 'Macau', '2243', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26704', 'Berovo', '2244', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26705', 'Pehchevo', '2244', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26706', 'Bach', '2245', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26707', 'Bistrica', '2245', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26708', 'Bitola', '2245', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26709', 'Capari', '2245', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26710', 'Dobrushevo', '2245', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26711', 'Kukurechani', '2245', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26712', 'Mogila', '2245', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26713', 'Novaci', '2245', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26714', 'Staravina', '2245', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26715', 'Brod', '2246', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26716', 'Plasnica', '2246', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26717', 'Samokov', '2246', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26718', 'Debar', '2247', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26719', 'Zhupa', '2247', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26720', 'Delchevo', '2248', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26721', 'Kamenica', '2248', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26722', 'Bogdanci', '2250', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26723', 'Gevgelija', '2250', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26724', 'Miravci', '2250', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26725', 'Star Dojran', '2250', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26726', 'Chegrane', '2251', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26727', 'Dolna Banjica', '2251', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26728', 'Gostivar', '2251', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26729', 'Mavrovi Anovi', '2251', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26730', 'Negotino-Poloshko', '2251', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26731', 'Rostusha', '2251', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26732', 'Srbinovo', '2251', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26733', 'Vrapchishte', '2251', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26734', 'Vrutok', '2251', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26735', 'Kavadarci', '2252', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26736', 'Konopishte', '2252', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26737', 'Rosoman', '2252', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26738', 'Drugovo', '2253', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26739', 'Kichevo', '2253', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26740', 'Oslomej', '2253', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26741', 'Vraneshtica', '2253', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26742', 'Zajas', '2253', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26743', 'Cheshinovo', '2254', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26744', 'Kochani', '2254', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26745', 'Obleshevo', '2254', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26746', 'Zletovo', '2254', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26747', 'Kratovo', '2255', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26748', 'Krushevo', '2257', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26749', 'Zhitoshe', '2257', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26750', 'Izvor', '2258', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26751', 'Klechevce', '2258', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26752', 'Kumanovo', '2258', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26753', 'Lipkovo', '2258', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26754', 'Orashac', '2258', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26755', 'Staro Nagorichane', '2258', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26756', 'Demir Kapija', '2259', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26757', 'Negotino', '2259', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26758', 'Belchishta', '2260', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26759', 'Kosel', '2260', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26760', 'Mesheishta', '2260', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26761', 'Ohrid', '2260', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26762', 'Dolneni', '2261', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26763', 'Krivogashtani', '2261', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26764', 'Prilep', '2261', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26765', 'Topolchani', '2261', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26766', 'Vitolishte', '2261', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26767', 'Probishtip', '2262', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26768', 'Konche', '2263', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26769', 'Podaresh', '2263', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26770', 'Radovish', '2263', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26771', 'Resen', '2264', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26772', 'Karbinci', '2265', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26773', 'Shtip', '2265', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26774', 'Stip', '2265', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26775', 'Arachinovo', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26776', 'Chucher', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26777', 'Ilinden', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26778', 'Kondovo', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26779', 'Petrovec', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26780', 'Saraj', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26781', 'Skopje', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26782', 'Sopishte', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26783', 'Studenichani', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26784', 'Zelenikovo', '2266', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26785', 'Delogozhdi', '2267', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26786', 'Labunishta', '2267', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26787', 'Lukovo', '2267', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26788', 'Struga', '2267', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26789', 'Veleshta', '2267', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26790', 'Vevchani', '2267', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26791', 'Bosilovo', '2268', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26792', 'Kuklish', '2268', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26793', 'Murtino', '2268', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26794', 'Novo Selo', '2268', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26795', 'Strumica', '2268', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26796', 'Vasilevo', '2268', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26797', 'Bogovinje', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26798', 'Brvenica', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26799', 'Dzhepchishte', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26800', 'Jegunovce', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26801', 'Kamenjance', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26802', 'Shipkovica', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26803', 'Tearce', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26804', 'Tetovo', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26805', 'Vratnica', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26806', 'Zhelino', '2270', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26807', 'Valandovo', '2271', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26808', 'Bogomila', '2272', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26809', 'Chashka', '2272', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26810', 'Gradsko', '2272', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26811', 'Veles', '2272', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26812', 'Blatec', '2273', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26813', 'Orizari', '2273', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26814', 'Vinica', '2273', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26815', 'Zrnovci', '2273', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26816', 'Ambatolampy', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26817', 'Anjozorobe', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26818', 'Ankazobe', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26819', 'Antananarivo', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26820', 'Antanifotsy', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26821', 'Antsirabe', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26822', 'Arivonimamo', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26823', 'Betafo', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26824', 'Faratsiho', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26825', 'Fenoarivo', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26826', 'Manjakandriana', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26827', 'Soavinandriana', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26828', 'Tsiroanomandidy', '2274', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26829', 'Ambanja', '2275', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26830', 'Ambilobe', '2275', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26831', 'Andapa', '2275', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26832', 'Antalaha', '2275', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26833', 'Antsirambazaha', '2275', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26834', 'Antsiranana', '2275', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26835', 'Sambava', '2275', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26836', 'Ambalavao', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26837', 'Ambatofinandrahana', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26838', 'Ambositra', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26839', 'Fandriana', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26840', 'Farafangana', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26841', 'Fianarantsoa', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26842', 'Ifanadiana', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26843', 'Ihosy', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26844', 'Ikalamavony', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26845', 'Ikongo', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26846', 'Manakara', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26847', 'Manandriana', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26848', 'Mananjary', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26849', 'Nosy Varika', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26850', 'Vangaindrano', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26851', 'Vondrozo', '2276', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26852', 'Ambato Boina', '2277', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26853', 'Antsohihy', '2277', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26854', 'Bealanana', '2277', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26855', 'Mahajanga', '2277', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26856', 'Marovoay', '2277', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26857', 'Tsaratanana', '2277', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26858', 'Ambatondrazaka', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26859', 'Ambodifototra', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26860', 'Amparafaravola', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26861', 'Andevoranto', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26862', 'Andilamena', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26863', 'Anosibe An\'ala', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26864', 'Fenoarivo Atsinanana', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26865', 'Mahanoro', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26866', 'Mananara', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26867', 'Maroantsetra', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26868', 'Marolambo', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26869', 'Moramanga', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26870', 'Soanierana Ivongo', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26871', 'Toamasina', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26872', 'Vavatenina', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26873', 'Vohibinany', '2278', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26874', 'Amboasary', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26875', 'Ambovombe', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26876', 'Ampanihy', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26877', 'Ankazoabo', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26878', 'Beloha', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26879', 'Belon\'i Tsiribihina', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26880', 'Beroroha', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26881', 'Betioky', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26882', 'Miandrivazo', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26883', 'Morondava', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26884', 'Sakaraha', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26885', 'Taolanaro', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26886', 'Toliary', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26887', 'Tsihombe', '2279', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26888', 'Balaka', '2280', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26889', 'Chikwawa', '2282', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26890', 'Chiradzulu', '2283', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26891', 'Chitipa', '2284', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26892', 'Chipoka', '2285', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26893', 'Dedza', '2285', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26894', 'Dowa', '2286', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26895', 'Mponela', '2286', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26896', 'Chilumba', '2287', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26897', 'Karonga', '2287', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26898', 'Livingstonia', '2287', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26899', 'Kasungu', '2288', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26900', 'Liwonde', '2290', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26901', 'Machinga', '2290', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26902', 'Mangochi', '2291', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26903', 'Monkey Bay', '2291', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26904', 'Mchinji', '2292', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26905', 'Mulanje', '2293', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26906', 'Mwanza', '2294', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26907', 'Mzimba', '2295', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26908', 'Nkhotakota', '2298', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26909', 'Nsanje', '2299', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26910', 'Ntcheu', '2300', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26911', 'Ntchisi', '2301', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26912', 'Phalombe', '2302', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26913', 'Rumphi', '2303', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26914', 'Salima', '2304', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26915', 'Luchenza', '2305', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26916', 'Thyolo', '2305', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26917', 'Bandar Maharani', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26918', 'Bandar Penggaram', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26919', 'Bukit Bakri', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26920', 'Buloh Kasap', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26921', 'Chaah', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26922', 'Johor Bahru', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26923', 'Kelapa Sawit', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26924', 'Kluang', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26925', 'Kota Tinggi', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26926', 'Kulai', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26927', 'Labis', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26928', 'Ledang', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26929', 'Masai', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26930', 'Mersing', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26931', 'Parit Raja', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26932', 'Pasir Gudang', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26933', 'Pekan Nenas', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26934', 'Pontian Kecil', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26935', 'Segamat', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26936', 'Sekudai', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26937', 'Senai', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26938', 'Simpang Rengam', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26939', 'Tangkak', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26940', 'Ulu Tiram', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26941', 'Yong Peng', '2307', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26942', 'Alor Setar', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26943', 'Bailing', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26944', 'Bedong', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26945', 'Gurun', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26946', 'Jitra', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26947', 'Kuah', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26948', 'Kuala Kedah', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26949', 'Kulim', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26950', 'Langgar', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26951', 'Sungai Petani', '2308', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26952', 'Gua Musang', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26953', 'Kadok', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26954', 'Kota Bahru', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26955', 'Kuala Krai', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26956', 'Pangkal Kalong', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26957', 'Pasir Mas', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26958', 'Peringat', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26959', 'Tanah Merah', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26960', 'Tumpat', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26961', 'Wakaf Baru', '2309', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26962', 'Labuan', '2311', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26963', 'Alor Gajah', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26964', 'Ayer Keroh', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26965', 'Ayer Molek', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26966', 'Batu Berendam', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26967', 'Bemban', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26968', 'Bukit Baru', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26969', 'Bukit Rambai', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26970', 'Klebang', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26971', 'Kuala Sungai Baru', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26972', 'Malacca', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26973', 'Masjid Tanah', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26974', 'Melaka', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26975', 'Pulau Sebang', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26976', 'Sungai Udang', '2312', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26977', 'Bandar Jengka Pusat', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26978', 'Bentong', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26979', 'Bukit Tinggi', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26980', 'Jerantut', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26981', 'Karak', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26982', 'Kuala Lipis', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26983', 'Kuantan', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26984', 'Mentakab', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26985', 'Pekan', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26986', 'Pulau Pinang', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26987', 'Raub', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26988', 'Temerloh', '2315', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26989', 'Bayan Lepas', '2316', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26990', 'Church Town', '2316', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26991', 'George Town', '2316', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26992', 'Ayer Tawar', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26993', 'Bagan Serai', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26994', 'Batu Gajah', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26995', 'Bidor', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26996', 'Ipoh', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26997', 'Jelapang', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26998', 'Kampar', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('26999', 'Kampong Koh', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27000', 'Kuala Kangsar', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27001', 'Lawan Kuda Baharu', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27002', 'Lumut', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27003', 'Pantai Remis', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27004', 'Parit Buntar', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27005', 'Perak', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27006', 'Pusing', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27007', 'Simpang Empat', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27008', 'Sungai Siput Utara', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27009', 'Taiping', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27010', 'Tanjong Malim', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27011', 'Tapah', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27012', 'Teluk Intan', '2317', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27013', 'Kangar', '2318', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27014', 'Kuala Perlis', '2318', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27015', 'Beaufort', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27016', 'Donggongon', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27017', 'Keningau', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27018', 'Kinarut', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27019', 'Kota Belud', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27020', 'Kota Kinabalu', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27021', 'Kudat', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27022', 'Kunak', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27023', 'Lahad Datu', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27024', 'Papar', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27025', 'Putatan', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27026', 'Ranau', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27027', 'Sandakan', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27028', 'Semporna', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27029', 'Tawau', '2320', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27030', 'Batu Delapan Bazaar', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27031', 'Bintulu', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27032', 'Kapit', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27033', 'Kota Samarahan', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27034', 'Kuching', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27035', 'Limbang', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27036', 'Miri', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27037', 'Sarawak', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27038', 'Sarikel', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27039', 'Sibu', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27040', 'Sri Aman', '2321', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27041', 'Ampang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27042', 'Ampang Jaya', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27043', 'Balakong', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27044', 'Bandar Baru Bangi', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27045', 'Bandar Baru Salak Tinggi', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27046', 'Bander Baro Bangi', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27047', 'Banting', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27048', 'Batang Berjuntai', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27049', 'Batu Arang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27050', 'Batu Sembilan Cheras', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27051', 'Beranang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27052', 'Bukit Beruntung', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27053', 'Cyberjaya', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27054', 'Darul Ehsan', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27055', 'Dungun', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27056', 'Gombak Setia', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27057', 'Jenjarom', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27058', 'Kajang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27059', 'Kajang-Sungai Chua', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27060', 'Klang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27061', 'Kuala Kubu Baru', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27062', 'Kuala Selangor', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27063', 'Kuang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27064', 'Pengkalan Kundang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27065', 'Petaling Jaya', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27066', 'Port Klang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27067', 'Puchong', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27068', 'Rawang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27069', 'Sabak', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27070', 'Sekinchan', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27071', 'Selayang Baru', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27072', 'Semenyih', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27073', 'Serendah', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27074', 'Seri Kembangan', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27075', 'Shah Alam', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27076', 'Subang Jaya', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27077', 'Sungai Besar', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27078', 'Sungai Buloh', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27079', 'Sungai Pelek', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27080', 'Taman Greenwood', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27081', 'Tanjong Karang', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27082', 'Tanjong Sepat', '2322', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27083', 'Bahaiyah', '2323', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27084', 'Langkap', '2323', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27085', 'Cukai', '2324', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27086', 'Jertih', '2324', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27087', 'Kemaman', '2324', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27088', 'Kerteh', '2324', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27089', 'Kuala Terengganu', '2324', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27090', 'Marang', '2324', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27091', 'Paka', '2324', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27092', 'Serdang', '2324', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27093', 'Dharavandhoo', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27094', 'Dhonfanu', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27095', 'Eydhafushi', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27096', 'Fehendhoo', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27097', 'Fulhadhoo', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27098', 'Goidhoo', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27099', 'Hithaadhoo', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27100', 'Kamadhoo', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27101', 'Kendhoo', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27102', 'Kihaadhoo', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27103', 'Kudarikilu', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27104', 'Maalhos', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27105', 'Thulhaadhoo', '2327', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27106', 'Badidhoo', '2328', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27107', 'Gemendhoo', '2328', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27108', 'Hulhudheli', '2328', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27109', 'Kudahuvadhoo', '2328', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27110', 'Maaeboodhoo', '2328', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27111', 'Meedhoo', '2328', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27112', 'Ribudhoo', '2328', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27113', 'Vaanee', '2328', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27114', 'Biledhdhoo', '2329', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27115', 'Dharaboodhoo', '2329', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27116', 'Feeali', '2329', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27117', 'Magoodhoo', '2329', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27118', 'Nilandhoo', '2329', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27119', 'Fuvammulah', '2332', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27120', 'Dhiffushi', '2335', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27121', 'Gaafaru', '2335', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27122', 'Gulhi', '2335', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27123', 'Guraidhoo', '2335', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27124', 'Himmafushi', '2335', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27125', 'Huraa', '2335', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27126', 'Kaashidhoo', '2335', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27127', 'Maafushi', '2335', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27128', 'Thulusdhoo', '2335', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27129', 'Dhabidhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27130', 'Fonadhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27131', 'Gaadhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27132', 'Gamu', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27133', 'Hithadhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27134', 'Isdhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27135', 'Kalhaidhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27136', 'Kunahandhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27137', 'Maabaidhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27138', 'Maamendhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27139', 'Maavah', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27140', 'Mundhoo', '2336', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27141', 'Hinnavaru', '2337', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27142', 'Kurendhoo', '2337', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27143', 'Maafilaafushi', '2337', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27144', 'Naifaru', '2337', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27145', 'Olhuvelifushi', '2337', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27146', 'Dhiggaru', '2339', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27147', 'Kolhufushi', '2339', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27148', 'Madifushi', '2339', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27149', 'Maduvvari', '2339', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27150', 'Mulah', '2339', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27151', 'Muli', '2339', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27152', 'Naalaafushi', '2339', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27153', 'Raimandhoo', '2339', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27154', 'Veyvah', '2339', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27155', 'Fodhdhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27156', 'Hebadhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27157', 'Holhudhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27158', 'Kedhikolhudhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27159', 'Kudafari', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27160', 'Landhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27161', 'Lhohi', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27162', 'Maafaru', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27163', 'Maalhendhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27164', 'Magoodhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27165', 'Manadhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27166', 'Miladhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27167', 'Velidhoo', '2340', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27168', 'Agolhitheemu', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27169', 'Alifushi', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27170', 'Fainu', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27171', 'Hulhudhuffaaru', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27172', 'Iguraidhoo', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27173', 'Innamaadhoo', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27174', 'Kadholhudhoo', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27175', 'Kinolhas', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27176', 'Maakurathu', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27177', 'Maduvvari', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27178', 'Meedhoo', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27179', 'Rasgetheemu', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27180', 'Rasmaadhoo', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27181', 'Ugoofaaru', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27182', 'Vaadhoo', '2341', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27183', 'Bilehffahi', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27184', 'Feevah', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27185', 'Feydhoo', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27186', 'Firubaidhoo', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27187', 'Foakaidhoo', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27188', 'Funadhoo', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27189', 'Goidhoo', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27190', 'Kaditheemu', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27191', 'Komandoo', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27192', 'Lhaimagu', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27193', 'Maakandoodhoo', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27194', 'Maaugoodhoo', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27195', 'Maroshi', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27196', 'Narudhoo', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27197', 'Noomaraa', '2342', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27198', 'Feydhoo', '2343', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27199', 'Hithadhoo', '2343', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27200', 'Hulhudhoo', '2343', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27201', 'Maradhoo', '2343', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27202', 'Maradhoo-Feydhoo', '2343', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27203', 'Meedhoo', '2343', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27204', 'Buruni', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27205', 'Dhiyamigili', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27206', 'Gaadhiffushi', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27207', 'Guraidhoo', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27208', 'Hirilandhoo', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27209', 'Kadoodhoo', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27210', 'Kibidhoo', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27211', 'Madifushi', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27212', 'Omadhoo', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27213', 'Thimarafushi', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27214', 'Vandhoo', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27215', 'Veymandhoo', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27216', 'Vilufushi', '2344', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27217', 'Felidhoo', '2345', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27218', 'Fulidhoo', '2345', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27219', 'Keyodhoo', '2345', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27220', 'Rakeedhoo', '2345', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27221', 'Thinadhoo', '2345', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27222', 'Bamako', '2346', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27223', 'Gao', '2347', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27224', 'Bafoulabe', '2348', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27225', 'Kayes', '2348', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27226', 'Kita', '2348', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27227', 'Nioro', '2348', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27228', 'Kidal', '2349', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27229', 'Tessalit', '2349', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27230', 'Banamba', '2350', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27231', 'Kangaba', '2350', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27232', 'Kati', '2350', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27233', 'Kolokani', '2350', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27234', 'Koulikoro', '2350', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27235', 'Nara', '2350', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27236', 'Bandiagara', '2351', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27237', 'Djenne', '2351', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27238', 'Douentza', '2351', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27239', 'Koro', '2351', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27240', 'Mopti', '2351', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27241', 'Tenenkou', '2351', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27242', 'Ke-Massina', '2352', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27243', 'Kimparana', '2352', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27244', 'Markala', '2352', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27245', 'Niono', '2352', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27246', 'San', '2352', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27247', 'Segou', '2352', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27248', 'Sokolo', '2352', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27249', 'Bougouni', '2353', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27250', 'Kolondieba', '2353', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27251', 'Koutiala', '2353', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27252', 'Sikasso', '2353', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27253', 'Yorosso', '2353', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27254', 'Araouane', '2354', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27255', 'Dire', '2354', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27256', 'Goundam', '2354', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27257', 'Niafunke', '2354', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27258', 'Taoudenni', '2354', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27259', 'Tombouctou', '2354', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27260', 'Gharghur', '2357', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27261', 'Mellieha', '2357', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27262', 'Mgarr', '2357', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27263', 'Mosta', '2357', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27264', 'Naxxar', '2357', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27265', 'San Pawl il-Bahar', '2357', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27266', 'L-Iklin', '2360', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27267', 'Attard', '2361', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27268', 'Balzan', '2361', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27269', 'Dingli', '2361', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27270', 'Iklin', '2361', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27271', 'Lija', '2361', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27272', 'Mdina', '2361', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27273', 'Rabat', '2361', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27274', 'Sighghiewi', '2361', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27275', 'Zebbug', '2361', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27276', 'Castletown', '2362', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27277', 'Douglas', '2363', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27278', 'Laxey', '2364', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27279', 'Onchan', '2365', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27280', 'Peel', '2366', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27281', 'Ramsey', '2369', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27282', 'Aerok', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27283', 'Beran', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27284', 'Bikeer', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27285', 'Buoj', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27286', 'Enewe', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27287', 'Jabwan', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27288', 'Jah', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27289', 'Jeh', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27290', 'Kattiej', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27291', 'Mejajok', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27292', 'Mejil', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27293', 'Tobomaro', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27294', 'Woja', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27295', 'Wolar', '2370', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27296', 'Ailuk', '2371', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27297', 'Ajelep', '2371', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27298', 'Aliej', '2371', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27299', 'Biken', '2371', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27300', 'Enejabrok', '2371', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27301', 'Enejelar', '2371', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27302', 'Kapen', '2371', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27303', 'Arno Arno', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27304', 'Bikarej', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27305', 'Bikonele', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27306', 'Boken', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27307', 'Eneaidrik', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27308', 'Enirik', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27309', 'Ijoen', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27310', 'Ine', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27311', 'Japo', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27312', 'Jilane', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27313', 'Kejbwe', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27314', 'Kilange', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27315', 'Kilemman', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27316', 'Kinajon', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27317', 'Langor', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27318', 'Lukoj', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27319', 'Malel', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27320', 'Manrar', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27321', 'Matolen', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27322', 'Meetdik', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27323', 'Mian', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27324', 'Najaj', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27325', 'Namwi', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27326', 'Neenkotkot', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27327', 'Taklep', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27328', 'Tinak', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27329', 'Tutu', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27330', 'Ulien', '2372', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27331', 'Aur', '2373', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27332', 'Tabal', '2373', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27333', 'Eneu', '2374', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27334', 'Emej', '2375', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27335', 'Enearmij', '2375', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27336', 'Enekoion', '2375', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27337', 'Enilok', '2375', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27338', 'Jittaken', '2375', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27339', 'Jittoen', '2375', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27340', 'Rerok', '2375', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27341', 'Toka', '2375', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27342', 'Enewetak', '2376', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27343', 'Japtan', '2376', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27344', 'Medren', '2376', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27345', 'Jabat', '2377', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27346', 'Ae', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27347', 'Ajejen', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27348', 'Anilep', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27349', 'Arreen', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27350', 'Bokanake', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27351', 'Bokkan', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27352', 'Bukantorak', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27353', 'Dede', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27354', 'Ewo', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27355', 'Imiej', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27356', 'Imroj', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27357', 'Jabnoren', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27358', 'Jabwor', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27359', 'Jaluit', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27360', 'Lonone', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27361', 'Mejatto', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27362', 'Mejrirok', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27363', 'Menge', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27364', 'Nabbe', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27365', 'Narmej', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27366', 'Urbaj', '2378', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27367', 'Kili', '2379', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27368', 'Arbwa', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27369', 'Ebadon', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27370', 'Ebeye', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27371', 'Ebjadik', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27372', 'Ebwaj', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27373', 'Ennilabegan', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27374', 'Enubirr', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27375', 'Enubuj', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27376', 'Gugeegue', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27377', 'Mejatto', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27378', 'Ningi', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27379', 'North Loi', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27380', 'Orpap', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27381', 'South Loi', '2380', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27382', 'Enerein', '2381', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27383', 'Lae', '2381', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27384', 'Lejab', '2381', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27385', 'Lib', '2382', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27386', 'Jebal', '2383', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27387', 'Likiep', '2383', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27388', 'Liklal', '2383', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27389', 'Melang', '2383', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27390', 'Ajeltake', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27391', 'Aneenwudej', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27392', 'Aneko', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27393', 'Arrak', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27394', 'Biken', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27395', 'Bokaetoktok', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27396', 'Denmeo', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27397', 'Didej', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27398', 'Ejit', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27399', 'Enemanet', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27400', 'Jelter', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27401', 'Kalalen', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27402', 'Kemman', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27403', 'Laura', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27404', 'Pikiriin', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27405', 'Rita', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27406', 'Rongrong', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27407', 'Woja', '2384', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27408', 'Airok', '2385', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27409', 'Jang', '2385', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27410', 'Kaben', '2385', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27411', 'Tarawa', '2385', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27412', 'Wolot', '2385', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27413', 'Mejit', '2386', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27414', 'Aeloneo', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27415', 'Anel', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27416', 'Arbar', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27417', 'Bar', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27418', 'Bikonel', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27419', 'Enajet', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27420', 'Eoo', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27421', 'Jabonwod', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27422', 'Loen', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27423', 'Lukoj', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27424', 'Lukonwor', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27425', 'Mae', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27426', 'Majkin', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27427', 'Mili', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27428', 'Nad', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27429', 'Nallu', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27430', 'Tokewa', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27431', 'Wau', '2387', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27432', 'Namorik', '2388', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27433', 'Namu', '2389', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27434', 'Rongelap', '2390', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27435', 'Ujae', '2391', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27436', 'Utirik', '2392', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27437', 'Wotho', '2393', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27438', 'Didi', '2394', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27439', 'Nibun', '2394', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27440', 'Wormej', '2394', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27441', 'Wotje', '2394', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27442', 'Fort-de-France', '2395', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27443', 'Le Lamentin', '2395', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27444', 'Saint-Joseph', '2395', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27445', 'Schoelcher', '2395', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27446', 'Le Morne-Rouge', '2398', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27447', 'Saint-Pierre', '2398', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27448', 'Atar', '2399', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27449', 'Shingati', '2399', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27450', 'Kifah', '2400', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27451', 'Alaq', '2401', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27452', 'Buqah', '2401', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27453', 'Magta\' Lahjar', '2401', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27454', '\'Ayun-al-\'Atrus', '2403', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27455', 'Kubanni', '2403', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27456', 'Timbedra', '2404', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27457', 'Walatah', '2404', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27458', 'an-Na\'mah', '2404', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27459', 'Aqjawajat', '2405', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27460', 'Nawakshut', '2406', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27461', 'Hsay Walad \'Ali Babi', '2407', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27462', 'Kayhaydi', '2408', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27463', 'Tijiqjah', '2409', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27464', 'Rusu', '2411', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27465', 'Bel Air', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27466', 'Bon Accueil', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27467', 'Brisee Verdiere', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27468', 'Camp Ithier', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27469', 'Camp de Masque', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27470', 'Camp de Masque Pave', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27471', 'Central Flacq', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27472', 'Clemencia', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27473', 'Ecroignard', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27474', 'Grand River South East', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27475', 'Lalmatie', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27476', 'Laventure', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27477', 'Mare La Chaux', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27478', 'Medine-Camp de Masque', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27479', 'Olivia', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27480', 'Poste de Flacq', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27481', 'Quatre Cocos', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27482', 'Quatre Soeurs', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27483', 'Queen Victoria', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27484', 'Saint Julien', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27485', 'Saint Julien d\'Hotman', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27486', 'Sebastopol', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27487', 'Trou d\'Eau Douce', '2414', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27488', 'Floreal', '2415', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27489', 'Camp Thorel', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27490', 'Dagotiere', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27491', 'Dubreuil', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27492', 'Esperance', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27493', 'L\'Avenir', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27494', 'La Laura-Malenga', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27495', 'Melrose', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27496', 'Moka', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27497', 'Montagne Blanche', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27498', 'Pailles', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27499', 'Providence', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27500', 'Quartier Militaire', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27501', 'Ripailles', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27502', 'Saint Pierre', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27503', 'Verdun', '2417', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27504', 'Arsenal', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27505', 'Baie du Tombeau', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27506', 'Calebasses', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27507', 'Congomah', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27508', 'Creve Coeur', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27509', 'D\'Epinay', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27510', 'Fond du Sac', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27511', 'La Tour Koenig', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27512', 'Le Hochet', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27513', 'Long Mountain', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27514', 'Morcellement Saint Andre', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27515', 'Notre Dame', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27516', 'Pamplemousse', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27517', 'Plaines des Papayes', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27518', 'Pointe aux Piments', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27519', 'Terre Rouge', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27520', 'Triolet', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27521', 'Villebague', '2418', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27522', 'Baie Malgache', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27523', 'Coromandel-Graviers', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27524', 'Grand Baie-Montagne Goyaves', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27525', 'La Ferme', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27526', 'Lataniers-Mont Lubin', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27527', 'Mangues-Quatre Vents', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27528', 'Oyster Bay', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27529', 'Petit Gabriel', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27530', 'Piments-Baie Topaze', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27531', 'Plaine Corail-La Fouche Corail', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27532', 'Port Mathurin', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27533', 'Port Sud-Est', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27534', 'Riviere Cocos', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27535', 'Roche Bon Dieu-Trefles', '2422', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27536', 'Baie du Cap', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27537', 'Bel Ombre', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27538', 'Benares', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27539', 'Bois Cheri', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27540', 'Britannia', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27541', 'Camp Diable', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27542', 'Chamouny', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27543', 'Chemin Grenier', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27544', 'Grand Bois', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27545', 'Riviere des Anguilles', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27546', 'Saint Aubin', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27547', 'Souillac', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27548', 'Surinam', '2424', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27549', 'Acoua', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27550', 'Bandraboua', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27551', 'Bandrele', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27552', 'Boueni', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27553', 'Chiconi', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27554', 'Chirongui', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27555', 'Dembeni', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27556', 'Kanikeli', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27557', 'Koungou', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27558', 'Mamoudzou', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27559', 'Mtsamboro', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27560', 'Mtsangamouji', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27561', 'Ouangani', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27562', 'Sada', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27563', 'Tsingoni', '2425', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27564', 'Dzaoudzi', '2426', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27565', 'Pamanzi', '2426', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27566', 'Aguascalientes', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27567', 'Asientos', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27568', 'Calvillo', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27569', 'Cosio', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27570', 'Margaritas', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27571', 'Ojocaliente', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27572', 'Pabellon de Arteaga', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27573', 'Pabellon de Hidalgo', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27574', 'Palo Alto', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27575', 'Rincon de Romos', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27576', 'San Francisco de los Romo', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27577', 'San Jose de Gracia', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27578', 'Tepezala', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27579', 'Villa Juarez', '2427', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27580', 'Becal', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27581', 'Bolonchen', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27582', 'Calkini', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27583', 'Campeche', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27584', 'Candelaria', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27585', 'Carmen', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27586', 'Champoton', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27587', 'China', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27588', 'Dzitbalche', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27589', 'Escarcega', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27590', 'Hecelchakan', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27591', 'Hopelchen', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27592', 'Isla Aguada', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27593', 'Nuevo Progreso', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27594', 'Nunkini', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27595', 'Palizada', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27596', 'Pomuch', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27597', 'Sabancuy', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27598', 'Seybaplaya', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27599', 'Tenabo', '2430', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27600', 'Acacoyagua', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27601', 'Acala', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27602', 'Acapetahua', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27603', 'Altamirano', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27604', 'Alvaro Obregon', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27605', 'Amatan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27606', 'Amatenango del Valle', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27607', 'Arriaga', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27608', 'Benemerito de las Americas', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27609', 'Berriozabal', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27610', 'Bochil', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27611', 'Cacahoatan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27612', 'Cancuc', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27613', 'Catazaja', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27614', 'Chalchihiutan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27615', 'Chanal', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27616', 'Chiapa', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27617', 'Chiapilla', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27618', 'Chicomuselo', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27619', 'Chilon', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27620', 'Cintalapa', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27621', 'Comaltitlan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27622', 'Comitan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27623', 'Copainala', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27624', 'Copoya', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27625', 'Cristobal Obregon', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27626', 'El Bosque', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27627', 'El Parral', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27628', 'Escuintla', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27629', 'Frontera Comalapa', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27630', 'Frontera Corozal', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27631', 'Frontera Hidalgo', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27632', 'Huehuetan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27633', 'Huehuetan Estacion', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27634', 'Huixtla', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27635', 'Ixhuatan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27636', 'Ixtacomitan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27637', 'Ixtapa', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27638', 'Jaltenango', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27639', 'Jesus Maria Garza', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27640', 'Jiquipilas', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27641', 'Jitotol', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27642', 'Juarez', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27643', 'La Concordia', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27644', 'La Libertad', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27645', 'La Trinitaria', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27646', 'Las Margaritas', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27647', 'Las Rosas', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27648', 'Mapastepec', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27649', 'Mazatan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27650', 'Motozintla', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27651', 'Navenchauc', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27652', 'Nicolas Ruiz', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27653', 'Ocosingo', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27654', 'Ocotepec', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27655', 'Ocozocoautla', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27656', 'Ostuacan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27657', 'Oxchuc', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27658', 'Palenque', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27659', 'Palestina', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27660', 'Pantelho', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27661', 'Paredon', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27662', 'Petalcingo', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27663', 'Pichucalco', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27664', 'Pijijiapan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27665', 'Pueblo Nuevo Solistahuacan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27666', 'Puerto Madero', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27667', 'Pujiltic', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27668', 'Raudales Malpaso', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27669', 'Rayon', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27670', 'Reforma', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27671', 'Revolucion Mexicana', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27672', 'Rincon Chamula', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27673', 'Salto de Agua', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27674', 'San Cristobal de las Casas', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27675', 'San Fernando', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27676', 'San Lucas', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27677', 'San Pedro Buenavista', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27678', 'Simojovel', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27679', 'Socoltenango', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27680', 'Soyalo', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27681', 'Suchiapa', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27682', 'Suchiate', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27683', 'Tapachula', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27684', 'Tapilula', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27685', 'Tecpatan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27686', 'Tenango', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27687', 'Teopisca', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27688', 'Tila', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27689', 'Tonala', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27690', 'Totolapa', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27691', 'Tres Picos', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27692', 'Tuxtla Chico', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27693', 'Tuxtla Gutierrez', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27694', 'Tzimol', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27695', 'Veinte de Noviembre', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27696', 'Venustiano Carranza', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27697', 'Villa Corzo', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27698', 'Villaflores', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27699', 'Yajalon', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27700', 'Zinacantan', '2431', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27701', 'Adolfo Lopez Mateos', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27702', 'Ahumada', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27703', 'Anahuac', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27704', 'Ascension', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27705', 'Benito Juarez', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27706', 'Camargo', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27707', 'Carichi', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27708', 'Casas Grandes', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27709', 'Chihuahua', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27710', 'Colonia Municipio Libre', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27711', 'Creel', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27712', 'Cuauhtemoc', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27713', 'Delicias', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27714', 'El Largo', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27715', 'Guachochi', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27716', 'Guadalupe', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27717', 'Guadalupe y Calvo', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27718', 'Hermenegildo Galeana', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27719', 'Hidalgo', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27720', 'Ignacio Zaragoza', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27721', 'Jimenez', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27722', 'Juan Aldama', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27723', 'Juarez', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27724', 'Lazaro Cardenas', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27725', 'Madera', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27726', 'Majimachi', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27727', 'Meoqui', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27728', 'Naica', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27729', 'Nuevo Casas Grandes', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27730', 'Octaviano Lopez', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27731', 'Ojinaga', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27732', 'Praxedis Guerrero', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27733', 'Puerto Palomas', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27734', 'Puerto de Anapra', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27735', 'San Buenaventura', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27736', 'San Francisco el Oro', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27737', 'Santa Barbara', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27738', 'Santa Cruz de Rosales', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27739', 'Saucillo', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27740', 'Valentin Gomez Farias', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27741', 'Valle de Allende', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27742', 'Vicente Guerrero', '2432', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27743', 'Acuna', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27744', 'Allende', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27745', 'Arteaga', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27746', 'Castanos', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27747', 'Concordia', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27748', 'Cuatrocienagas', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27749', 'El Coyote', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27750', 'Frontera', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27751', 'General Cepeda', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27752', 'Hercules', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27753', 'Matamoros', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27754', 'Minas de Barroteran', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27755', 'Monclova', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27756', 'Muzquiz', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27757', 'Nadadores', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27758', 'Nava', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27759', 'Nueva Rosita', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27760', 'Ocampo', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27761', 'Palau', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27762', 'Parras', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27763', 'Piedras Negras', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27764', 'Ramos Arizpe', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27765', 'Sabinas', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27766', 'Saltillo', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27767', 'San Buenaventura', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27768', 'San Pedro', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27769', 'Torreon', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27770', 'Venustiano Carranza', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27771', 'Viesca', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27772', 'Villa Madero', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27773', 'Villa Union', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27774', 'Zaragoza', '2433', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27775', 'Armeria', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27776', 'Cofradia', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27777', 'Colima', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27778', 'Colonia Bayardo', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27779', 'Comala', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27780', 'Coquimatlan', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27781', 'Cuauhtemoc', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27782', 'El Colomo', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27783', 'Madrid', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27784', 'Manzanillo', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27785', 'Minatitlan', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27786', 'Queseria', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27787', 'Suchitlan', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27788', 'Tecoman', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27789', 'Villa de Alvarez', '2434', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27790', 'Bermejillo', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27791', 'Canatlan', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27792', 'Cuencame', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27793', 'Durango', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27794', 'Gomez Palacio', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27795', 'Guadalupe Victoria', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27796', 'Juarez', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27797', 'Lerdo', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27798', 'Mapimi', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27799', 'Nazareno', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27800', 'Nazas', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27801', 'Nombre de Dios', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27802', 'Nuevo Ideal', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27803', 'Ocampo', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27804', 'Panuco', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27805', 'Papasquiaro', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27806', 'Penon Blanco', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27807', 'Poanas', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27808', 'Pueblo Nuevo', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27809', 'Rodeo', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27810', 'Santa Catarina de Tepehuanes', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27811', 'Santa Clara', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27812', 'Santa Maria del Oro', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27813', 'Suchil', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27814', 'Tayoltita', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27815', 'Tlahualilo', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27816', 'Vicente Guerrero', '2436', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27817', 'Abasolo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27818', 'Acambaro', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27819', 'Aldama', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27820', 'Allende', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27821', 'Antonio Rodriguez', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27822', 'Apaseo el Alto', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27823', 'Apaseo el Grande', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27824', 'Celaya', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27825', 'Centro Familiar la Soledad', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27826', 'Cerano', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27827', 'Cerro Gordo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27828', 'Colonias Nuevo Mexico', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27829', 'Comonfort', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27830', 'Coroneo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27831', 'Cortazar', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27832', 'Cueramaro', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27833', 'Doctor Mora', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27834', 'Dolores Hidalgo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27835', 'Duarte', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27836', 'El Sabino', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27837', 'Escobedo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27838', 'Guanajuato', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27839', 'Huanimaro', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27840', 'Iramuco', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27841', 'Irapuato', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27842', 'Jaral del Progreso', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27843', 'Jerecuaro', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27844', 'Juventino Rosas', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27845', 'La Aldea', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27846', 'La Calera', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27847', 'La Ermita', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27848', 'La Moncada', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27849', 'Leon', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27850', 'Loma Pelada', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27851', 'Manuel Doblado', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27852', 'Maravatio', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27853', 'Marfil', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27854', 'Medina', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27855', 'Mexicanos', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27856', 'Moroleon', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27857', 'Ocampo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27858', 'Octopan', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27859', 'Pacueco', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27860', 'Palo Verde', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27861', 'Paracuaro', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27862', 'Penjamo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27863', 'Plan de Ayala', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27864', 'Pueblo Nuevo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27865', 'Purisima de Bustos', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27866', 'Rincon de Tamayo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27867', 'Romita', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27868', 'Salamanca', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27869', 'Salvatierra', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27870', 'San Bartolo de Berrios', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27871', 'San Cristobal', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27872', 'San Diego de la Union', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27873', 'San Felipe', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27874', 'San Francisco del Rincon', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27875', 'San Jose Agua Azul', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27876', 'San Jose Iturbide', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27877', 'San Jose Temascatio', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27878', 'San Juan de la Vega', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27879', 'San Luis de la Paz', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27880', 'San Nicolas de los Agustinos', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27881', 'San Pedro de los Naranjos', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27882', 'San Roque', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27883', 'Santa Teresa', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27884', 'Santiago de Cuenda', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27885', 'Sarabia', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27886', 'Silao', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27887', 'Tarandacuao', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27888', 'Tarimoro', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27889', 'Teneria del Santuario', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27890', 'Uriangato', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27891', 'Urireo', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27892', 'Valle de Santiago', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27893', 'Valtierrilla', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27894', 'Victoria', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27895', 'Villagran', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27896', 'Villas de Irapuato', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27897', 'Yerbabuena', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27898', 'Yuriria', '2438', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27899', 'Acamixtla', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27900', 'Acapulco', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27901', 'Acatlan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27902', 'Ajuchitlan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27903', 'Alpoyeca', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27904', 'Altamirano', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27905', 'Apango', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27906', 'Apaxtla', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27907', 'Arcelia', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27908', 'Atliaca', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27909', 'Atoyac', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27910', 'Ayutla', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27911', 'Azoyu', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27912', 'Bajos de Ejido', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27913', 'Buenavista', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27914', 'Chichihualco', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27915', 'Chilapa', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27916', 'Chilpancingo', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27917', 'Coacoyul', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27918', 'Cocula', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27919', 'Copala', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27920', 'Copalillo', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27921', 'Coyuca', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27922', 'Cruz Grande', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27923', 'Cuajinicuilapa', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27924', 'Cuautepec', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27925', 'Cutzamala', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27926', 'El Ocotito', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27927', 'El Paraiso', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27928', 'El Suchil', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27929', 'Huamuxtitlan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27930', 'Huitziltepec', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27931', 'Huitzuco', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27932', 'Iguala', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27933', 'Ixtapa', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27934', 'Kilometro Treinta', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27935', 'La Loma', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27936', 'La Union', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27937', 'Las Petaquillas', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27938', 'Las Vigas', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27939', 'Marquelia', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27940', 'Mazatlan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27941', 'Mochitlan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27942', 'Olinala', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27943', 'Ometepec', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27944', 'Petatlan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27945', 'Pilcaya', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27946', 'Quechultenango', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27947', 'San Jeronimito', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27948', 'San Jeronimo', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27949', 'San Jose Ixtapa', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27950', 'San Luis San Pedro', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27951', 'San Marcos', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27952', 'Taxco', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27953', 'Taxco de Alarcon', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27954', 'Tecoanapa', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27955', 'Tecpan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27956', 'Teloloapan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27957', 'Tepecoacuilco', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27958', 'Tierra Colorada', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27959', 'Tixtla', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27960', 'Tlacoachistlahuaca', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27961', 'Tlacotepec', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27962', 'Tlalchapa', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27963', 'Tlamacazapa', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27964', 'Tlapa', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27965', 'Tlapehuala', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27966', 'Totolapan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27967', 'Tres Palos', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27968', 'Xalpatlahuac', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27969', 'Xaltianguis', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27970', 'Xochihuehuetlan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27971', 'Xochistlahuaca', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27972', 'Zacualpan', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27973', 'Zihuatanejo', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27974', 'Zirandaro', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27975', 'Zitlala', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27976', 'Zumpango', '2439', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27977', 'Acaxochitlan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27978', 'Acayuca', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27979', 'Actopan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27980', 'Ajacuba', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27981', 'Almoloya', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27982', 'Apan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27983', 'Atengo', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27984', 'Atitalaquia', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27985', 'Atotonilco de Tula', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27986', 'Atotonilco el Grande', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27987', 'Calnali', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27988', 'Cardonal', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27989', 'Chapulhuacan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27990', 'Cuautepec', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27991', 'Doxey', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27992', 'El Arenal', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27993', 'El Llano', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27994', 'El Rosario', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27995', 'Emiliano Zapata', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27996', 'Huautla', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27997', 'Huejutla', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27998', 'Hueytlalpan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('27999', 'Huichapan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28000', 'Ixmiquilpan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28001', 'Jacala', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28002', 'Jaltocan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28003', 'Los Reyes', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28004', 'Mineral del Monte', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28005', 'Mixquiahuala', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28006', 'Molango', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28007', 'Orizatlan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28008', 'Pachuca', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28009', 'Pachuquilla', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28010', 'Progreso', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28011', 'Sahagun', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28012', 'San Ildefonso', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28013', 'San Juan Tepa', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28014', 'San Marcos', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28015', 'Singuilucan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28016', 'Tasquillo', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28017', 'Tecozautla', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28018', 'Tepatepec', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28019', 'Tepeapulco', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28020', 'Tepeji', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28021', 'Tepepa', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28022', 'Tetepango', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28023', 'Tezontepec', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28024', 'Tizayuca', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28025', 'Tlahuelilpan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28026', 'Tlanalapa', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28027', 'Tlanchinol', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28028', 'Tlaxcoapan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28029', 'Tlaxiaca', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28030', 'Tolcayuca', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28031', 'Tula de Allende', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28032', 'Tulancingo', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28033', 'Tulantepec', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28034', 'Vindho', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28035', 'Zacualtipan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28036', 'Zapotlan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28037', 'Zempoala', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28038', 'Zimapan', '2440', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28039', 'Acatic', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28040', 'Acatlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28041', 'Ahualulco', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28042', 'Ajijic', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28043', 'Alejandria', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28044', 'Amatitan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28045', 'Ameca', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28046', 'Antonio Escobedo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28047', 'Arandas', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28048', 'Atemajac', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28049', 'Atequiza', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28050', 'Atotonilco el Alto', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28051', 'Atotonilquillo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28052', 'Atoyac', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28053', 'Autlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28054', 'Ayotlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28055', 'Ayutla', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28056', 'Bellavista', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28057', 'Cajititlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28058', 'Capilla de Guadalupe', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28059', 'Casimiro Castillo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28060', 'Centro de Readaptacion Social', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28061', 'Chapala', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28062', 'Chiquilistlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28063', 'Cihuatlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28064', 'Cocula', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28065', 'Colotlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28066', 'Concepcion de Buenos Aires', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28067', 'Cosala', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28068', 'Coyula', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28069', 'Cuitzeo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28070', 'Cuqio', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28071', 'Cuyutlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28072', 'Degollado', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28073', 'El Arenal', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28074', 'El Grullo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28075', 'El Limon', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28076', 'El Quince', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28077', 'El Refugio', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28078', 'El Salto', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28079', 'El Verde', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28080', 'Encarnacion', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28081', 'Etzatlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28082', 'Guadalajara', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28083', 'Guzman', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28084', 'Hidalgo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28085', 'Hostotipaquillo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28086', 'Huejucar', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28087', 'Huejuquilla el Alto', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28088', 'Itzican', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28089', 'Ixtapa', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28090', 'Ixtlahuacan de los Membrillos', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28091', 'Ixtlahuacan del Rio', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28092', 'Ixtlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28093', 'Jalostotitlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28094', 'Jamay', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28095', 'Jesus Maria', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28096', 'Jocotepec', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28097', 'Juanacatlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28098', 'Juchitlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28099', 'La Barca', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28100', 'La Huerta', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28101', 'La Ribera', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28102', 'La Tijera', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28103', 'La Venta del Astillero', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28104', 'Lagos de Moreno', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28105', 'Las Juntas', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28106', 'Las Pintas', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28107', 'Las Pintitas', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28108', 'Lo Arado', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28109', 'Magdalena', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28110', 'Mascota', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28111', 'Mazamitla', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28112', 'Mexticacan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28113', 'Mezcala', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28114', 'Nuevo Mexico', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28115', 'Ocotlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28116', 'Ojuelos de Jalisco', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28117', 'Pihuamo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28118', 'Poncitlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28119', 'Puente Grande', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28120', 'Puerto Vallarta', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28121', 'Purificacion', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28122', 'San Agustin', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28123', 'San Francisco de Asis', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28124', 'San Gabriel', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28125', 'San Jose de Gracia', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28126', 'San Jose del Castillo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28127', 'San Juan de los Lagos', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28128', 'San Julian', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28129', 'San Marcos', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28130', 'San Martin de Hidalgo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28131', 'San Miguel el Alto', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28132', 'San Patricio', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28133', 'San Sebastian del Sur', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28134', 'San Sebastian el Grande', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28135', 'Santa Anita', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28136', 'Santa Cruz de las Flores', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28137', 'Santa Cruz del Valle', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28138', 'Sayula', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28139', 'Tala', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28140', 'Talpa', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28141', 'Tamazula', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28142', 'Tapalpa', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28143', 'Tecalitlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28144', 'Tecolotlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28145', 'Tenamaxtlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28146', 'Teocaltiche', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28147', 'Teocuitatlan de Corona', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28148', 'Tepatitlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28149', 'Tequila', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28150', 'Tesistan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28151', 'Teuchitlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28152', 'Tizapan el Alto', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28153', 'Tlajomulco', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28154', 'Tlaquepaque', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28155', 'Tomatlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28156', 'Tonala', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28157', 'Tonaya', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28158', 'Tonila', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28159', 'Tototlan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28160', 'Tuxpan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28161', 'Union de San Antonio', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28162', 'Union de Tula', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28163', 'Usmajac', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28164', 'Valle de Guadalupe', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28165', 'Valle de Juarez', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28166', 'Villa Corona', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28167', 'Villa Guerrero', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28168', 'Yahualica', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28169', 'Zacoalco', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28170', 'Zapopan', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28171', 'Zapote', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28172', 'Zapotiltic', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28173', 'Zapotlanejo', '2441', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28174', 'Acahualco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28175', 'Acambay', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28176', 'Acazulco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28177', 'Acolman', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28178', 'Acuautla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28179', 'Acutzilapan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28180', 'Ajoloapan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28181', 'Alborada', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28182', 'Almaya', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28183', 'Almoloya', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28184', 'Almoloya del Rio', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28185', 'Amanalco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28186', 'Amecameca', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28187', 'Ameyalco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28188', 'Apaxco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28189', 'Atarasquillo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28190', 'Atenco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28191', 'Atizapan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28192', 'Atlacomulco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28193', 'Atlatlahuca', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28194', 'Atlatongo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28195', 'Atlautla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28196', 'Atlazalpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28197', 'Autopan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28198', 'Axapusco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28199', 'Ayotuzco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28200', 'Ayotzingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28201', 'Azcatepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28202', 'Balderas', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28203', 'Bocanegra', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28204', 'Boreje', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28205', 'Buenavista', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28206', 'Cacalomacan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28207', 'Cahuacan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28208', 'Calimaya', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28209', 'Calixtlahuaca', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28210', 'Capulhuac', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28211', 'Carbon', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28212', 'Cautzingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28213', 'Chalco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28214', 'Chapultepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28215', 'Chiautla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28216', 'Chicoloapan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28217', 'Chiconautla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28218', 'Chiconcuac', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28219', 'Chimalhuacan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28220', 'Chimalpa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28221', 'Cholula', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28222', 'Citendeje', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28223', 'Coacalco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28224', 'Coachochitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28225', 'Coacomulco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28226', 'Coapango', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28227', 'Coatepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28228', 'Coatepec Harinas', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28229', 'Coatlinchan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28230', 'Cocotitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28231', 'Colorines', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28232', 'Concepcion Jolalpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28233', 'Coyotepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28234', 'Cuauhtemoc', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28235', 'Cuauhtenco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28236', 'Cuautitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28237', 'Cuautitlan Izcalli', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28238', 'Cuautlalpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28239', 'Cuaxustenco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28240', 'Cuexontitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28241', 'Cuijingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28242', 'Ecatepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28243', 'Ecatzingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28244', 'Ejido Cahuacan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28245', 'Ejido Veinte de Noviembre la C', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28246', 'Ejido de la Y Seccion Siete a ', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28247', 'El Coporo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28248', 'El Oro', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28249', 'Enchisi', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28250', 'Enthavi', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28251', 'Fuentes del Valle', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28252', 'Huehuetoca', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28253', 'Huexoculco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28254', 'Hueypoxtla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28255', 'Huilango', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28256', 'Huitzilzingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28257', 'Huixquilucan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28258', 'Huixquilucan de Degollado', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28259', 'Huixtoco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28260', 'Ixlahuaca', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28261', 'Ixtacalco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28262', 'Ixtapaluca', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28263', 'Ixtapan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28264', 'Ixtlahuatzingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28265', 'Jajalpa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28266', 'Jaltenco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28267', 'Jaltepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28268', 'Jesus del Monte', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28269', 'Jicaltepec Autopan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28270', 'Jilotepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28271', 'Jilotzingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28272', 'Jocotitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28273', 'Joquicingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28274', 'Jorge Jimenez Cantu', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28275', 'Juchitepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28276', 'La Concepcion los Banos', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28277', 'La Constitucion', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28278', 'La Magdalema', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28279', 'Lerma', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28280', 'Loma de Juarez', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28281', 'Lomas de Zacamulpa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28282', 'Lopez Mateos', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28283', 'Los Esparragos', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28284', 'Los Reyes', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28285', 'Los Reyes Acozac', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28286', 'Luvianos', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28287', 'Malinalco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28288', 'Melchor Ocampo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28289', 'Metepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28290', 'Mexicaltzingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28291', 'Mextepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28292', 'Montecillo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28293', 'Nativitas', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28294', 'Naucalpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28295', 'Nexquipayac', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28296', 'Nextlalpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28297', 'Nezahualcoyotl', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28298', 'Nicolas Romero', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28299', 'Nopaltepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28300', 'Ocotitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28301', 'Ocotlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28302', 'Ocoyoacac', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28303', 'Ojo de Agua', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28304', 'Otumba', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28305', 'Otzacatipan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28306', 'Oyamel', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28307', 'Oztolotepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28308', 'Ozumba', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28309', 'Papalotla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28310', 'Progreso Industrial', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28311', 'Pueblo Nuevo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28312', 'Rayon', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28313', 'Rio Frio', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28314', 'Salitrillo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28315', 'San Antonio Buenavista', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28316', 'San Antonio La Isla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28317', 'San Bartolo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28318', 'San Bartolo del Llano', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28319', 'San Bernardino', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28320', 'San Buenaventura', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28321', 'San Felipe del Progreso', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28322', 'San Jeronimo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28323', 'San Jose Guadalupe', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28324', 'San Jose el Vidrio', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28325', 'San Juan Tilapa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28326', 'San Juan de las Huertas', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28327', 'San Juan y San Pedro Tezompa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28328', 'San Lorenzo Cuauhtenco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28329', 'San Martin de las Piramides', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28330', 'San Miguel la Labor', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28331', 'San Nicolas Guadalupe', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28332', 'San Nicolas Tolentino', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28333', 'San Pablo de las Salinas', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28334', 'San Pedro Abajo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28335', 'San Pedro Arriba', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28336', 'San Pedro el Alto', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28337', 'San Pedro los Banos', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28338', 'San Simon de la Laguna', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28339', 'Santa Catarina del Monte', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28340', 'Santa Cruz del Monte', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28341', 'Santa Gertrudis', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28342', 'Santa Maria del Monte', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28343', 'Santo Domingo de Guzman', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28344', 'Soyaniquilpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28345', 'Sultepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28346', 'Tecalco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28347', 'Tecamac', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28348', 'Techuchulco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28349', 'Tecuahutitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28350', 'Tehuixtitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28351', 'Tejupilco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28352', 'Temamatla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28353', 'Temascalapa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28354', 'Temascalcingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28355', 'Temoaya', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28356', 'Tenancingo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28357', 'Tenango de Arista', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28358', 'Tenango del Aire', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28359', 'Tenochtitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28360', 'Teoloyucan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28361', 'Teotihuacan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28362', 'Tepeolulco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28363', 'Tepetitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28364', 'Tepetlaoxtoc', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28365', 'Tepetlixpa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28366', 'Tepexpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28367', 'Tepotzotlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28368', 'Tequexquinahuac', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28369', 'Tequisistlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28370', 'Tequixquiac', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28371', 'Texcalyacac', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28372', 'Texcoco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28373', 'Teyahualco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28374', 'Tezoquipan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28375', 'Tezoyuca', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28376', 'Tianguistenco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28377', 'Tilapa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28378', 'Tlachaloya Segunda Seccion', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28379', 'Tlachihualpa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28380', 'Tlacotepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28381', 'Tlahuelilpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28382', 'Tlaixpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28383', 'Tlalcilalcalli', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28384', 'Tlalcilalcalpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28385', 'Tlalmanalco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28386', 'Tlalmimilolpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28387', 'Tlalnepantla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28388', 'Tlaltelulco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28389', 'Tlaltizapan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28390', 'Tlanisco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28391', 'Toluca', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28392', 'Tonanitla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28393', 'Tonatico', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28394', 'Totocuitlapilco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28395', 'Totoltepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28396', 'Tulantongo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28397', 'Tultepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28398', 'Tultitlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28399', 'Valle de Bravo', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28400', 'Victoria', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28401', 'Villa Guerrero', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28402', 'Vista Hermosa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28403', 'Xalatlaco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28404', 'Xalpa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28405', 'Xico', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28406', 'Xochimanca', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28407', 'Xolalpa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28408', 'Xoloc', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28409', 'Xometla', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28410', 'Xonacatlan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28411', 'Yachihuacaltepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28412', 'Yancuitlalpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28413', 'Zacacalco', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28414', 'Zacamulpa', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28415', 'Zacualpan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28416', 'Zaragoza', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28417', 'Zictepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28418', 'Zinacantepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28419', 'Zolotepec', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28420', 'Zumpahuacan', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28421', 'Zumpango', '2442', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28422', 'Acuitzio', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28423', 'Aguililla', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28424', 'Alvaro Obregon', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28425', 'Angahuan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28426', 'Angamacutiro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28427', 'Angangueo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28428', 'Antunez', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28429', 'Apatzingan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28430', 'Ario', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28431', 'Arteaga', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28432', 'Benito Juarez', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28433', 'Brisenas', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28434', 'Buenavista', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28435', 'Buenos Aires', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28436', 'Caltzontzin', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28437', 'Capacuaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28438', 'Capula', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28439', 'Caracuaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28440', 'Charapan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28441', 'Charo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28442', 'Chavinda', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28443', 'Cheran', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28444', 'Chilchota', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28445', 'Churintzio', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28446', 'Churumuco', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28447', 'Coahuayana', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28448', 'Coalcoman', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28449', 'Coeneo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28450', 'Cojumatlan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28451', 'Comachuen', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28452', 'Contepec', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28453', 'Copandaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28454', 'Cotija', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28455', 'Cuanajo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28456', 'Cuitareo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28457', 'Cuitzeo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28458', 'Ecuandureo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28459', 'Hidalgo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28460', 'Huandacareo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28461', 'Huetamo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28462', 'Indaparapeo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28463', 'Irimbo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28464', 'Ixtlan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28465', 'Jacona', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28466', 'Jiquilpan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28467', 'Jungapeo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28468', 'La Huacana', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28469', 'La Mira', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28470', 'La Orilla', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28471', 'La Piedad', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28472', 'La Ruana', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28473', 'Las Guacamayas', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28474', 'Lazaro Cardenas', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28475', 'Lombardia', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28476', 'Los Reyes', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28477', 'Madero', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28478', 'Maravatio', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28479', 'Maya', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28480', 'Morelia', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28481', 'Morelos', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28482', 'Nahuatzen', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28483', 'Nocupetaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28484', 'Nueva Italia de Ruiz', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28485', 'Nuevo San Juan Parangaricutiro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28486', 'Numaran', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28487', 'Ocampo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28488', 'Opopeo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28489', 'Pajacuaran', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28490', 'Panindicuaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28491', 'Paracho', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28492', 'Paracuaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28493', 'Pastor Ortiz', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28494', 'Patzcuaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28495', 'Pedernales', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28496', 'Penjamillo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28497', 'Periban', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28498', 'Pichataro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28499', 'Purepero', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28500', 'Puruandiro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28501', 'Puruaran', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28502', 'Querendaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28503', 'Quiroga', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28504', 'Rincon de Nicolas Romero', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28505', 'Riva Palacio', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28506', 'Sahuayo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28507', 'San Jose de Gracia', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28508', 'San Lucas', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28509', 'San Matias Grande', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28510', 'Santa Clara de Valladares', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28511', 'Santa Clara del Cobre', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28512', 'Santa Fe de la Laguna', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28513', 'Tacambaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28514', 'Tancitaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28515', 'Tangamandapio', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28516', 'Tangancicuaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28517', 'Tanhuato', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28518', 'Tarecuato', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28519', 'Taretan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28520', 'Tarimbaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28521', 'Tejaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28522', 'Tepalcatepec', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28523', 'Tingambato', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28524', 'Tinguindin', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28525', 'Tiquicheo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28526', 'Tlalpujahua', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28527', 'Tlazazalca', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28528', 'Tungareo', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28529', 'Tuxpan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28530', 'Tzintzuntzan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28531', 'Uruapan', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28532', 'Venustiano Carranza', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28533', 'Villa Jimenez', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28534', 'Villachuato', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28535', 'Villamar', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28536', 'Vista Hermosa', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28537', 'Yurecuaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28538', 'Zacapu', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28539', 'Zamora', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28540', 'Zinapecuaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28541', 'Zitacuaro', '2443', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28542', 'Alpuyeca', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28543', 'Amacuzac', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28544', 'Amayuca', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28545', 'Anenecuilco', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28546', 'Apatlaco', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28547', 'Atlatlahucan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28548', 'Axochiapan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28549', 'Ayala', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28550', 'Calera Chica', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28551', 'Chiconcuac', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28552', 'Coatetelco', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28553', 'Cocoyoc', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28554', 'Cuautla', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28555', 'Cuernavaca', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28556', 'Emiliano Zapata', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28557', 'Higueron', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28558', 'Hueyapan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28559', 'Huiztilac', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28560', 'Independencia', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28561', 'Jantetelco', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28562', 'Jiutepec', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28563', 'Jojutla', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28564', 'Jonacatepec', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28565', 'Juan Morales', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28566', 'La Joya', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28567', 'Los Arcos', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28568', 'Mazatepec', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28569', 'Miacatlan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28570', 'Oaxtepec', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28571', 'Ocuituco', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28572', 'Pedro Amaro', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28573', 'Progreso', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28574', 'Puente de Ixtla', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28575', 'San Jose Vista Hermosa', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28576', 'San Nicolas Galeana', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28577', 'Santa Catarina', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28578', 'Santa Rosa Treinta', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28579', 'Tehuixtla', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28580', 'Telixtac', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28581', 'Temixco', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28582', 'Temoac', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28583', 'Tenextepango', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28584', 'Tepalcingo', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28585', 'Tepoztlan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28586', 'Tetecala', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28587', 'Tetela del Volcan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28588', 'Tilzapotla', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28589', 'Tlacotepec', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28590', 'Tlalnepantla', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28591', 'Tlaltizapan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28592', 'Tlaquiltenango', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28593', 'Tlatenchi', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28594', 'Tlayacapan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28595', 'Totolapan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28596', 'Tres Marias', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28597', 'Unidad Habitacional Jose Maria', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28598', 'Xochitepec', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28599', 'Xoxocotla', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28600', 'Yautepec', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28601', 'Yecapixtla', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28602', 'Zacatepec', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28603', 'Zacualpan', '2444', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28604', 'Acaponeta', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28605', 'Ahuacatlan', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28606', 'Amatlan', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28607', 'Aztatan', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28608', 'Bucerias', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28609', 'Carmen', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28610', 'Cerralvo', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28611', 'Compostela', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28612', 'Hidalgo', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28613', 'Ixcuintla', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28614', 'Ixtlan del Rio', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28615', 'Jala', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28616', 'Jalcocotan', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28617', 'La Penita de Jaltemba', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28618', 'La Presa', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28619', 'Lagunillas', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28620', 'Las Jarretaderas', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28621', 'Las Varas', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28622', 'Puga', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28623', 'Rosamorada', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28624', 'Ruiz', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28625', 'San Blas', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28626', 'San Jose del Valle', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28627', 'San Juan de Abajo', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28628', 'San Vicente', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28629', 'Santa Maria del Oro', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28630', 'Tecuala', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28631', 'Tepic', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28632', 'Tuxpan', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28633', 'Valle de Banderas', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28634', 'Xalisco', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28635', 'Yago', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28636', 'Zacualpan', '2445', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28637', 'Acatlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28638', 'Amatlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28639', 'Amilpas', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28640', 'Amuzgos', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28641', 'Asuncion Ixtaltepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28642', 'Asuncion Nochixtlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28643', 'Asuncion Ocotlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28644', 'Atempa', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28645', 'Atzompa', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28646', 'Ayautla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28647', 'Ayoquezco', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28648', 'Ayotzintepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28649', 'Bajos de Chila', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28650', 'Brisas de Zicatela', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28651', 'Cacahuatepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28652', 'Cacaotepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28653', 'Chahuites', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28654', 'Chichicapam', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28655', 'Chiltepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28656', 'Cienaga de Zimatlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28657', 'Coatlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28658', 'Comitancillo', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28659', 'Cosolapa', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28660', 'Coyotepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28661', 'Crucecita', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28662', 'Cuicatlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28663', 'Cuilapam', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28664', 'Ejutla de Crespo', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28665', 'El Espinal', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28666', 'Etla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28667', 'Fraccionamiento el Rosario', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28668', 'Guelavia', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28669', 'Guichicovi', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28670', 'Huajuapan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28671', 'Huatulco', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28672', 'Huautla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28673', 'Huaxpaltepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28674', 'Huayapam', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28675', 'Huazolotitlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28676', 'Huitzo', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28677', 'Huixtepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28678', 'Ingenio', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28679', 'Ixcatlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28680', 'Ixhuatan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28681', 'Ixtepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28682', 'Jalapa', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28683', 'Jamiltepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28684', 'Jicayan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28685', 'Juchitan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28686', 'Juquila', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28687', 'Juxtlahuaca', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28688', 'Loma Bonita', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28689', 'Magdalena Teitipac', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28690', 'Magdalena Tequisistlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28691', 'Matatlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28692', 'Matias Romero', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28693', 'Mechoacan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28694', 'Miahuatlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28695', 'Mitla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28696', 'Mixtepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28697', 'Mixtequilla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28698', 'Nazareno Etla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28699', 'Niltepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28700', 'Oaxaca', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28701', 'Ocotepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28702', 'Ocotlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28703', 'Ojitlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28704', 'Palomares', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28705', 'Panixtlahuaca', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28706', 'Petapa', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28707', 'Pinotepa Nacional', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28708', 'Pinotepa de Don Luis', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28709', 'Pochutla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28710', 'Puerto Escondido', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28711', 'Putla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28712', 'Quetzaltepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28713', 'Rincon Viejo', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28714', 'Rio Grande', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28715', 'Salina Cruz', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28716', 'San Agustin de las Juntas', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28717', 'San Antonio Castillo Velasco', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28718', 'San Antonio de la Cal', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28719', 'San Dionisio del Mar', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28720', 'San Francisco del Mar', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28721', 'San Jose del Progreso', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28722', 'San Juan Colorado', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28723', 'San Mateo del Mar', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28724', 'Santa Lucia del Camino', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28725', 'Santa Maria del Tule', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28726', 'Santiago Apostol', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28727', 'Santos Reyes Nopala', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28728', 'Soyaltepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28729', 'Suchilquitongo', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28730', 'Tamazulapam', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28731', 'Tapanatepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28732', 'Tehuantepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28733', 'Teitipac', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28734', 'Telixtlahuaca', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28735', 'Teotitlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28736', 'Teotitlan den Valle', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28737', 'Tilquiapam', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28738', 'Tlacolula', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28739', 'Tlalixtac', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28740', 'Tlaxiaco', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28741', 'Tutla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28742', 'Tuxtepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28743', 'Union Hidalgo', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28744', 'Usila', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28745', 'Valle Nacional', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28746', 'Vicente Camalote', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28747', 'Vicente Guerrero', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28748', 'Xadani', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28749', 'Xitla', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28750', 'Xoxocotlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28751', 'Yaitepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28752', 'Yatareni', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28753', 'Zaachila', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28754', 'Zacatepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28755', 'Zanatepec', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28756', 'Zimatlan', '2447', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28757', 'Acajete', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28758', 'Acateno', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28759', 'Acatlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28760', 'Acatzingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28761', 'Actipan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28762', 'Acuexcomac', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28763', 'Ahuatempan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28764', 'Ajalpan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28765', 'Aljojuca', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28766', 'Almecatla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28767', 'Alseseca', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28768', 'Altepexi', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28769', 'Amecac', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28770', 'Amozoc', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28771', 'Aparicio', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28772', 'Atempan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28773', 'Atencingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28774', 'Atlixco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28775', 'Atoyatempan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28776', 'Atzitzintla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28777', 'Atzompa', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28778', 'Ayutla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28779', 'Azumiatla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28780', 'Benito Juarez', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28781', 'Buenos Aires', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28782', 'Cacaloxuchitl', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28783', 'Calipan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28784', 'Calmeca', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28785', 'Calpan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28786', 'Caltenco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28787', 'Canada', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28788', 'Canoa', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28789', 'Caxhuacan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28790', 'Chalchihuapan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28791', 'Chapulco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28792', 'Chautla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28793', 'Chiapa', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28794', 'Chiautla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28795', 'Chiautzingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28796', 'Chiconquiac', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28797', 'Chietla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28798', 'Chignahuapan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28799', 'Chignautla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28800', 'Chilac', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28801', 'Chilchotla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28802', 'Cholula', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28803', 'Citlaltepetl', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28804', 'Coatepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28805', 'Coronango', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28806', 'Coxcatlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28807', 'Coyula', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28808', 'Cuacnopalan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28809', 'Cuanala', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28810', 'Cuapiaxtla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28811', 'Cuautlancingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28812', 'Cuayucatepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28813', 'Cuetzalan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28814', 'Domingo Arenas', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28815', 'Escape', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28816', 'Esperanza', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28817', 'Guadalupe Victoria', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28818', 'Huaquechula', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28819', 'Huauchinango', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28820', 'Huehuetlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28821', 'Huejotzingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28822', 'Hueyapan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28823', 'Hueyotlipan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28824', 'Hueytamalco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28825', 'Huixcolotla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28826', 'Ixcaquixtla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28827', 'Ixtiyucan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28828', 'Izucar', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28829', 'Jolalpan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28830', 'La Ceiba', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28831', 'La Galarza', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28832', 'La Resureccion', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28833', 'Lazaro Cardenas', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28834', 'Libres', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28835', 'Los Ranchos', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28836', 'Los Reyes de Juarez', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28837', 'Malacatepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28838', 'Metlaltoyuca', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28839', 'Miahuatlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28840', 'Mihuacan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28841', 'Momoxpan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28842', 'Moyotzingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28843', 'Nealtican', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28844', 'Necaxa', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28845', 'Nopalucan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28846', 'Ocotitlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28847', 'Ocotlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28848', 'Ocoyucan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28849', 'Oriental', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28850', 'Pahuatlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28851', 'Palmar de Bravo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28852', 'Puebla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28853', 'Quecholac', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28854', 'Raboso', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28855', 'Rafael Lara Grajales', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28856', 'San Gabriel Casa Blanca', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28857', 'San Lucas el Grande', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28858', 'San Salvador el Seco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28859', 'San Sebastian Villanueva', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28860', 'Sanctorum', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28861', 'Santa Maria la Alta', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28862', 'Serdan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28863', 'Soltepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28864', 'Tatoxcac', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28865', 'Tecali', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28866', 'Tecamachalco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28867', 'Tehuacan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28868', 'Tehuitzingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28869', 'Tenango', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28870', 'Tenango de las Flores', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28871', 'Tenextatiloyan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28872', 'Teontepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28873', 'Teopantlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28874', 'Teotlalcingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28875', 'Tepango', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28876', 'Tepatlaxco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28877', 'Tepeaca', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28878', 'Tepeojuma', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28879', 'Tepexi', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28880', 'Tepulco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28881', 'Tetela Morelos', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28882', 'Tetela de Ocampo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28883', 'Teteles', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28884', 'Tetzoyocan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28885', 'Texmelucan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28886', 'Teziutlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28887', 'Tianguismanalco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28888', 'Tlachichuca', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28889', 'Tlacotepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28890', 'Tlacoyalco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28891', 'Tlahuapan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28892', 'Tlaixpan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28893', 'Tlalancaleca', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28894', 'Tlaltenango', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28895', 'Tlanalapan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28896', 'Tlancualpican', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28897', 'Tlanepantla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28898', 'Tlapanala', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28899', 'Tlatlauquitepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28900', 'Tlaxcalancingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28901', 'Tlaxco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28902', 'Tochapan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28903', 'Tochimilco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28904', 'Tochtepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28905', 'Tulcingo', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28906', 'Tuxco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28907', 'Venustiano Carranza', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28908', 'Xalmimilulco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28909', 'Xaltepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28910', 'Xicotepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28911', 'Xiutetelco', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28912', 'Xochiltenango', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28913', 'Xochitlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28914', 'Xonatepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28915', 'Xoxtla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28916', 'Yaonahuac', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28917', 'Yehualtepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28918', 'Zacapechpan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28919', 'Zacapoaxtla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28920', 'Zacatepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28921', 'Zacatlan', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28922', 'Zaragoza', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28923', 'Zinacatepec', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28924', 'Zongozotla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28925', 'Zozutla', '2448', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28926', 'Ajuchitlan', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28927', 'Amazcala', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28928', 'Amealco', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28929', 'Cadereyta', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28930', 'Candiles', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28931', 'Colon', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28932', 'El Colorado', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28933', 'El Pueblito', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28934', 'El Sauz', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28935', 'Ezequiel Montes', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28936', 'Huimilpan', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28937', 'Jalpan', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28938', 'Jauregui', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28939', 'La Canada', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28940', 'La Estancia', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28941', 'La Lira', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28942', 'La Llave', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28943', 'Paso de Mata', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28944', 'Pedro Escobedo', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28945', 'Queretaro', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28946', 'San Jose de los Olvera', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28947', 'San Jose el Alto', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28948', 'San Juan del Rio', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28949', 'San Nicolas', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28950', 'San Pedro Martir', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28951', 'Santa Maria Magdalena', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28952', 'Tequisquiapan', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28953', 'Tlacote el Bajo', '2449', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28954', 'Adolfo Ruiz Cortines', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28955', 'Agua Verde', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28956', 'Ahome', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28957', 'Angostura', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28958', 'Badiraguato', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28959', 'Bagojo', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28960', 'Benito Juarez', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28961', 'Campo Gobierno', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28962', 'Choix', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28963', 'Compuertas', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28964', 'Concordia', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28965', 'Constancia', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28966', 'Cosala', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28967', 'Costa Rica', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28968', 'Culiacan', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28969', 'Culiacancito', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28970', 'El Burrion', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28971', 'El Carrizo', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28972', 'El Diez', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28973', 'El Estero', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28974', 'El Fuerte', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28975', 'El Rosario', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28976', 'El Tamarindo', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28977', 'Eldorado', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28978', 'Escuinapa', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28979', 'Estacion Naranjo', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28980', 'Estancia Bamoa', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28981', 'Gabriel Leyva Solano', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28982', 'Guamuchil', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28983', 'Guasave', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28984', 'Higuera', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28985', 'Isla del Bosque', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28986', 'Jahuara Segundo', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28987', 'Juan Jose Rios', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28988', 'La Cruz', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28989', 'La Palma', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28990', 'La Reforma', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28991', 'La Trinidad', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28992', 'Los Mochis', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28993', 'Mazatlan', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28994', 'Mochicahui', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28995', 'Mocorito', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28996', 'Navolato', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28997', 'Pericos', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28998', 'Pueblos Unidos', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('28999', 'Quila', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29000', 'San Blas', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29001', 'San Ignacio', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29002', 'Sinaloa', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29003', 'Teacapan', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29004', 'Topolobampo', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29005', 'Villa Union', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29006', 'Zapotitlan', '2452', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29007', 'Agua Prieta', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29008', 'Alamos', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29009', 'Altar', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29010', 'Bacobampo', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29011', 'Bacum', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29012', 'Bahia de Kino', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29013', 'Benjamin Hill', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29014', 'Caborca', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29015', 'Campo Sesenta', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29016', 'Cananea', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29017', 'Carbo', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29018', 'Cocorit', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29019', 'Cumpas', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29020', 'Empalme', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29021', 'Esperanza', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29022', 'Esqueda', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29023', 'Etchojoa', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29024', 'Etchoropo', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29025', 'Guaymas', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29026', 'Hermosillo', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29027', 'Huatabampo', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29028', 'Imuris', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29029', 'Juarez', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29030', 'Kino', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29031', 'La Doce', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29032', 'La Union', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29033', 'Moctezuma', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29034', 'Naco', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29035', 'Nacozari', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29036', 'Navajoa', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29037', 'Nogales', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29038', 'Obregon', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29039', 'Pitiquito', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29040', 'Potam', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29041', 'Providencia', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29042', 'Puerto Penasco', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29043', 'Rio Muerto', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29044', 'Sahuaripa', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29045', 'San Jose de Bacum', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29046', 'San Luis Rio Colorado', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29047', 'Sanchez', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29048', 'Santa Ana', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29049', 'Sonoita', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29050', 'Tobarito', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29051', 'Ures', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29052', 'Vicam', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29053', 'Yaqui', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29054', 'Yavaros', '2453', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29055', 'Aquiles Serdan', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29056', 'Ayapa', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29057', 'Balancan', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29058', 'Barra de Santa Ana', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29059', 'Belen', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29060', 'Bosque de Saloya', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29061', 'Buenavista', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29062', 'Campo Magellanes', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29063', 'Cardenas', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29064', 'Chichicapa', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29065', 'Chontalpa', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29066', 'Comalcalco', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29067', 'Cunduacan', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29068', 'El Triunfo', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29069', 'Emiliano Zapata', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29070', 'Fraccionamiento la Selva', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29071', 'Frontera', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29072', 'Huimanguillo', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29073', 'Jalapa', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29074', 'Jalpa', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29075', 'Jonuta', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29076', 'La Curva', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29077', 'La Venta', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29078', 'Luis Gil Perez', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29079', 'Macultepec', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29080', 'Macuspana', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29081', 'Magana', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29082', 'Miguel Hidalgo', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29083', 'Nacajuca', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29084', 'Ocuiltzapotlan', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29085', 'Once de Febrero', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29086', 'Paraiso', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29087', 'Parrilla', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29088', 'Pemex', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29089', 'Playas del Rosario', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29090', 'Rio Viejo', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29091', 'San Carlos', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29092', 'Santa Rosalia', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29093', 'Simon Sarlat', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29094', 'Tacotalpa', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29095', 'Tamulte', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29096', 'Teapa', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29097', 'Tecolutilla', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29098', 'Tenosique', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29099', 'Vicente Guerrero', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29100', 'Villa Aldama', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29101', 'Villahermosa', '2454', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29102', 'Abasolo', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29103', 'Aldama', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29104', 'Altamira', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29105', 'Antiguo Morelos', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29106', 'Camargo', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29107', 'Cuauhtemoc', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29108', 'El Mante', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29109', 'Estacion Manuel', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29110', 'Gonzalez', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29111', 'Graciano Sanchez', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29112', 'Guerrero', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29113', 'Gustavo Diaz Ordaz', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29114', 'Hidalgo', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29115', 'Jaumave', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29116', 'Llerca', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29117', 'Los Guerra', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29118', 'Madero', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29119', 'Matamoros', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29120', 'Mier', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29121', 'Miguel Aleman', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29122', 'Miramar', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29123', 'Nuevo Laredo', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29124', 'Nuevo Progreso', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29125', 'Ocampo', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29126', 'Padilla', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29127', 'Reynosa', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29128', 'Rio Bravo', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29129', 'San Fernando', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29130', 'Santa Engracia', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29131', 'Santander Jimenez', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29132', 'Soto la Marina', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29133', 'Tampico', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29134', 'Tula', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29135', 'Valle Hermoso', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29136', 'Victoria', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29137', 'Xicotencatl', '2455', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29138', 'Ahuashuatepec', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29139', 'Altzayanca', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29140', 'Amaxac', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29141', 'Apetatitlan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29142', 'Apizaco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29143', 'Apizaquito', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29144', 'Atexcatzingo', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29145', 'Axocomanitla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29146', 'Ayometla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29147', 'Benito Juarez', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29148', 'Buen Suceso', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29149', 'Calpulalpan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29150', 'Chiautempan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29151', 'Contla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29152', 'Cuapiaxtla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29153', 'Huactzinco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29154', 'Huamantla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29155', 'Hueyotlipan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29156', 'Huiloac', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29157', 'Ignacio Zaragoza', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29158', 'Ixtacuixtla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29159', 'Ixtenco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29160', 'Mazatecochco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29161', 'Nanacamilpa', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29162', 'Nativitas', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29163', 'Nopalucan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29164', 'Panotla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29165', 'Papalotla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29166', 'Quilehtla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29167', 'Sanctorum', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29168', 'Teacalco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29169', 'Tenancingo', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29170', 'Teolocholco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29171', 'Tepetitla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29172', 'Tepeyanco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29173', 'Tequixquitla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29174', 'Terrenate', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29175', 'Tetla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29176', 'Tetlanohcan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29177', 'Tetlatlahuca', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29178', 'Texcalac', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29179', 'Texoloc', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29180', 'Tlaltelulco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29181', 'Tlaxcala', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29182', 'Tlaxco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29183', 'Tocatlan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29184', 'Totolac', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29185', 'Vicente Guerrero', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29186', 'Villa Alta', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29187', 'Xaloztoc', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29188', 'Xaltocan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29189', 'Xicohtzinco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29190', 'Xicotencatl', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29191', 'Xiloxoxtla', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29192', 'Yauhquemecan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29193', 'Zacatelco', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29194', 'Zacualpan', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29195', 'Zitlaltepec', '2456', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29196', 'Acayucan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29197', 'Actopan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29198', 'Acultzingo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29199', 'Agua Dulce', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29200', 'Alamo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29201', 'Allende', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29202', 'Altamirano', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29203', 'Alto Lucero', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29204', 'Altotonga', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29205', 'Alvarado', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29206', 'Amatlan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29207', 'Anahuac', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29208', 'Anton Lizardo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29209', 'Atzacan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29210', 'Azueta', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29211', 'Banderilla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29212', 'Benito Juarez', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29213', 'Boca del Monte', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29214', 'Boca del Rio', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29215', 'Cabada', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29216', 'Cabezas', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29217', 'Carrillo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29218', 'Castillo de Teayo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29219', 'Catemaco', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29220', 'Cazones', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29221', 'Cerro Azul', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29222', 'Chacaltianguis', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29223', 'Chicontepec', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29224', 'Chinameca', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29225', 'Chinampa', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29226', 'Chocaman', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29227', 'Citlaltepetl', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29228', 'Clara', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29229', 'Coacoatzintla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29230', 'Coacotla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29231', 'Coatepec', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29232', 'Coatzacoalcos', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29233', 'Coatzintla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29234', 'Comoapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29235', 'Cordoba', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29236', 'Corral Nuevo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29237', 'Cosamaloapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29238', 'Cosautlan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29239', 'Coscomatepec', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29240', 'Cosoleacaque', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29241', 'Covarrubias', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29242', 'Coxquihui', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29243', 'Coyutla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29244', 'Cuauhtemoc', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29245', 'Cuautlapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29246', 'Cuichapa', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29247', 'Cuitlahuac', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29248', 'El Castillo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29249', 'El Higo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29250', 'El Naranjito', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29251', 'El Pueblito', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29252', 'El Tejar', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29253', 'Emilio Carranza', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29254', 'Estacion Juanita', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29255', 'Estacion del Idolo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29256', 'Filomeno Mata', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29257', 'Fortin', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29258', 'Gabino Barreda', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29259', 'Guadalupe Victoria', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29260', 'Gutierrez Zamora', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29261', 'Hidalgo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29262', 'Hidalgotitlan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29263', 'Huatusco', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29264', 'Huayacoctla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29265', 'Hueyapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29266', 'Huiloapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29267', 'Ignacio de la Llave', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29268', 'Isla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29269', 'Ixcatepec', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29270', 'Ixhuatlan del Cafe', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29271', 'Ixhuatlan del Sureste', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29272', 'Ixhuatlancillo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29273', 'Ixtaczoquitlan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29274', 'Jalacingo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29275', 'Jalapilla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29276', 'Jaltipan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29277', 'Jamapa', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29278', 'Jesus Carranza', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29279', 'Jilotepec', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29280', 'La Antigua', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29281', 'La Estanzuela', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29282', 'La Pena', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29283', 'La Perla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29284', 'La Poza', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29285', 'Las Amapolas', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29286', 'Las Choapas', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29287', 'Las Vigas', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29288', 'Lerdo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29289', 'Lomas de Barillas', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29290', 'Los Altos', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29291', 'Los Mangos', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29292', 'Maltrata', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29293', 'Mariano Escobedo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29294', 'Martinez', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29295', 'Mecatlan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29296', 'Mecayapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29297', 'Mendoza', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29298', 'Minatitlan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29299', 'Misantla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29300', 'Monte Blanco', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29301', 'Moralillo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29302', 'Motzorongo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29303', 'Mundo Nuevo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29304', 'Nanchital', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29305', 'Naolinco', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29306', 'Naranjos', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29307', 'Nautla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29308', 'Nogales', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29309', 'Oluta', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29310', 'Omealca', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29311', 'Orizaba', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29312', 'Otatitlan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29313', 'Oteapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29314', 'Ozuluama', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29315', 'Pajapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29316', 'Palmira', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29317', 'Panuco', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29318', 'Papantla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29319', 'Paraje Nuevo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29320', 'Paso de Ovejas', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29321', 'Paso del Macho', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29322', 'Paso del Toro', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29323', 'Penuela', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29324', 'Perote', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29325', 'Piedras Negras', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29326', 'Plan de Ayala', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29327', 'Platon Sanchez', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29328', 'Playa Vicente', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29329', 'Potrero Nuevo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29330', 'Potrero del Llano', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29331', 'Poza Rica', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29332', 'Puntilla Aldama', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29333', 'Rafael Delgado', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29334', 'Rafael Lucio', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29335', 'Rinconada', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29336', 'Saltabarranca', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29337', 'San Juan Evangelista', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29338', 'San Marcos', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29339', 'San Rafael', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29340', 'San Roman', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29341', 'Santiago Tuxtla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29342', 'Sayula', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29343', 'Soconusco', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29344', 'Soledad', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29345', 'Soteapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29346', 'Tamalin', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29347', 'Tamiahua', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29348', 'Tantoyuca', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29349', 'Tatahuicapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29350', 'Tecolutla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29351', 'Tempoal', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29352', 'Tenango de Rio Blanco', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29353', 'Teocelo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29354', 'Tepetzintla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29355', 'Tequila', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29356', 'Tetelzingo', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29357', 'Texistepec', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29358', 'Tezonapa', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29359', 'Tierra Blanca', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29360', 'Tihuatlan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29361', 'Tlacojalpan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29362', 'Tlacotalpan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29363', 'Tlaltetela', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29364', 'Tlapacoyan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29365', 'Tocuila', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29366', 'Tomatlan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29367', 'Totolapa', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29368', 'Totula', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29369', 'Tres Valles', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29370', 'Tuxpam', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29371', 'Tuxtla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29372', 'Tuzamapan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29373', 'Union y Progreso', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29374', 'Ursulo Galvan', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29375', 'Valente Diaz', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29376', 'Vega de Alatorre', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29377', 'Veracruz', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29378', 'Xalapa', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29379', 'Xico', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29380', 'Xocotla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29381', 'Yanga', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29382', 'Yecuatla', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29383', 'Zaragoza', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29384', 'Zempoala', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29385', 'Zongolica', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29386', 'Zozocolco', '2457', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29387', 'Acanceh', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29388', 'Akil', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29389', 'Baca', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29390', 'Buctzotz', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29391', 'Cacalchen', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29392', 'Cansahcab', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29393', 'Caucel', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29394', 'Celestun', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29395', 'Cenotillo', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29396', 'Chemax', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29397', 'Chichimila', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29398', 'Chicxulub', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29399', 'Chochola', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29400', 'Cholul', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29401', 'Chumayel', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29402', 'Conkal', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29403', 'Cuzama', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29404', 'Dzan', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29405', 'Dzemul', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29406', 'Dzidzantun', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29407', 'Dzilam Gonzalez', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29408', 'Dzitas', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29409', 'Espita', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29410', 'Halacho', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29411', 'Hocaba', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29412', 'Hoctun', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29413', 'Homun', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29414', 'Huhi', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29415', 'Hunucma', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29416', 'Itzincab', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29417', 'Ixil', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29418', 'Izamal', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29419', 'Kanasin', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29420', 'Kantunil', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29421', 'Kinchil', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29422', 'Mama', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29423', 'Mani', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29424', 'Maxcanu', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29425', 'Merida', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29426', 'Motul', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29427', 'Muna', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29428', 'Opichen', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29429', 'Oxkutzcab', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29430', 'Panaba', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29431', 'Peto', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29432', 'Piste', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29433', 'Progreso', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29434', 'Sacalum', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29435', 'Santa Elena', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29436', 'Seye', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29437', 'Sotuta', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29438', 'Sucila', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29439', 'Tahmek', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29440', 'Teabo', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29441', 'Tecoh', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29442', 'Tekanto', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29443', 'Tekax', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29444', 'Tekit', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29445', 'Telchac', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29446', 'Temax', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29447', 'Temozon', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29448', 'Tetiz', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29449', 'Ticul', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29450', 'Timucuy', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29451', 'Tixkokob', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29452', 'Tixpehual', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29453', 'Tizimin', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29454', 'Tunkas', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29455', 'Tzucacab', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29456', 'Uman', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29457', 'Valladolid', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29458', 'X-Can', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29459', 'Yucatan', '2458', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29460', 'Apozol', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29461', 'Banon', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29462', 'Canitas', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29463', 'Chalchihuites', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29464', 'Concepcion del Oro', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29465', 'Cos', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29466', 'Estrada', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29467', 'Fresnillo', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29468', 'Garcia', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29469', 'Gonzalez Ortega', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29470', 'Guadalupe', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29471', 'Hidalgo', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29472', 'Jalpa', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29473', 'Jerez', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29474', 'Juan Aldama', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29475', 'Juchipila', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29476', 'Loreto', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29477', 'Lourdes', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29478', 'Luis Moya', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29479', 'Miguel Auza', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29480', 'Monte Escobedo', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29481', 'Morelos', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29482', 'Natera', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29483', 'Nieves', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29484', 'Nochistlan', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29485', 'Ojo Caliente', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29486', 'Piedra Gorda', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29487', 'Pinos', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29488', 'Plateros', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29489', 'Pozo de Gamboa', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29490', 'Rio Grande', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29491', 'Sain Alto', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29492', 'Sombrerete', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29493', 'Tabasco', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29494', 'Tacoaleche', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29495', 'Tepechitlan', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29496', 'Teul', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29497', 'Tlaltenango', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29498', 'Toribio', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29499', 'Trancoso', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29500', 'Valparaiso', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29501', 'Victor Rosales', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29502', 'Villa Gonzalez Ortega', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29503', 'Villanueva', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29504', 'Zacatecas', '2459', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29505', 'Tol', '2460', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29506', 'Weno', '2460', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29507', 'Lelu', '2461', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29508', 'Kolonia', '2462', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29509', 'Palikir', '2462', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29510', 'Colonia', '2463', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29511', 'Balti', '2464', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29512', 'Falesti', '2464', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29513', 'Glodeni', '2464', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29514', 'Rascani', '2464', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29515', 'Cahul', '2465', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29516', 'Straseni', '2466', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29517', 'Straseni', '2467', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29518', 'Briceni', '2468', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29519', 'Donduseni', '2468', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29520', 'Edinet', '2468', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29521', 'Ocnita', '2468', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29522', 'Ciadar Lunga', '2469', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29523', 'Comrat', '2469', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29524', 'Vulcanesti', '2469', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29525', 'Basarabeasca', '2470', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29526', 'Cimislia', '2470', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29527', 'Hancesti', '2470', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29528', 'Leova', '2470', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29529', 'Orhei', '2471', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29530', 'Rezina', '2471', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29531', 'Telenesti', '2471', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29532', 'Drochia', '2472', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29533', 'Floresti', '2472', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29534', 'Soroca', '2472', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29535', 'Taraclia', '2473', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29536', 'Causani', '2474', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29537', 'Camenca', '2475', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29538', 'Dnestrovsc', '2475', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29539', 'Dubasari', '2475', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29540', 'Griguriopol', '2475', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29541', 'Rabnita', '2475', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29542', 'Slobozia', '2475', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29543', 'Tighina', '2475', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29544', 'Tiraspol\'', '2475', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29545', 'Calarasi', '2476', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29546', 'Nisporeni', '2476', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29547', 'Ungheni', '2476', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29548', 'Fontvieille', '2477', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29549', 'Monaco-Ville', '2479', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29550', 'Cecerleg', '2481', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29551', 'Olgij', '2482', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29552', 'Bajanhongor', '2483', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29553', 'Bulgan', '2484', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29554', 'Darhan', '2485', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29555', 'Chojbalsan', '2486', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29556', 'Sajnshand', '2487', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29557', 'Mandalgovi', '2488', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29558', 'Altaj', '2489', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29559', 'Chojr', '2490', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29560', 'Ondorhaan', '2491', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29561', 'Hovd', '2492', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29562', 'Moron', '2493', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29563', 'Dalanzadgad', '2494', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29564', 'Erdenet', '2495', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29565', 'Arvajheer', '2496', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29566', 'Suhbaatar', '2497', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29567', 'Zuunharaa', '2497', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29568', 'Baruun-Urt', '2498', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29569', 'Nalajh', '2499', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29570', 'Zuunmod', '2499', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29571', 'Ulaanbaatar', '2500', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29572', 'Ulaangom', '2501', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29573', 'Tosoncengel', '2502', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29574', 'Uliastaj', '2502', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29575', 'Montserrat', '2503', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29576', 'Agadir', '2504', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29577', 'Mohammedia', '2505', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29578', 'ad-Dar-al-Bayda', '2505', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29579', 'Bin Sulayman', '2506', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29580', 'Bir Rashid', '2506', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29581', 'Bu-al-Jad', '2506', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29582', 'Buznika', '2506', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29583', 'Khuribghah', '2506', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29584', 'Sattat', '2506', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29585', 'Wad Zam', '2506', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29586', 'Asfi', '2507', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29587', 'Azimur', '2507', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29588', 'Sidi Binnur', '2507', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29589', 'Sidi Isma\'il', '2507', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29590', 'Yussufiyah', '2507', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29591', 'al-Jadidah', '2507', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29592', 'Fas', '2508', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29593', 'Fes', '2508', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29594', 'Safru', '2508', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29595', 'Ghulimim', '2510', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29596', 'Sidi Ifni', '2510', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29597', 'Tafraut', '2510', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29598', 'Tantan', '2510', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29599', 'Kenitra', '2511', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29600', 'Amalu Ighriban', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29601', 'Azru', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29602', 'Jama\'at-al-Marirt', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29603', 'Khanifrah', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29604', 'Meknes', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29605', 'Midalt', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29606', 'Miknas', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29607', 'Mulay Idris', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29608', 'al-Hajab', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29609', 'ar-Rasidiyah', '2513', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29610', 'Ahfir', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29611', 'Bin Ansar', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29612', 'Birkan', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29613', 'Fijij', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29614', 'Jaradah', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29615', 'Tawrirt', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29616', 'Ujdah', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29617', 'Zayu', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29618', 'al-Arwi', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29619', 'al-Ayun Sidi Malluk', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29620', 'an-Nadur', '2514', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29621', 'Oujda', '2515', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29622', 'Khamissat', '2517', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29623', 'Sakhirat', '2517', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29624', 'Tiflat', '2517', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29625', 'ar-Ribat', '2517', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29626', 'Settat', '2519', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29627', 'Bani Mallal', '2521', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29628', 'Beni Mellal', '2521', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29629', 'Qasbat Tadlah', '2521', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29630', 'Suq Sabt Awlat Nama', '2521', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29631', 'al-Faqih Bin Salah', '2521', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29632', 'Asilah', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29633', 'Finidiq', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29634', 'Martil', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29635', 'Midiq', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29636', 'Shifshawn', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29637', 'Tangier', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29638', 'Tanjah', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29639', 'Tittawin', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29640', 'Titwan', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29641', 'al-\'Ara\'ish', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29642', 'al-Qasr-al-Kabir', '2522', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29643', 'Chibuto', '2527', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29644', 'Chidenguele', '2527', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29645', 'Chokwe', '2527', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29646', 'Chongoene', '2527', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29647', 'Guija', '2527', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29648', 'Macia', '2527', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29649', 'Manjacaze', '2527', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29650', 'Xai-Xai', '2527', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29651', 'Homoine', '2528', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29652', 'Inhambane', '2528', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29653', 'Inharrime', '2528', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29654', 'Jangamo', '2528', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29655', 'Maxixe', '2528', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29656', 'Panda', '2528', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29657', 'Quissico', '2528', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29658', 'Chimoio', '2529', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29659', 'Manica', '2529', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29660', 'Maputo', '2530', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29661', 'Maputo', '2531', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29662', 'Angoche', '2532', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29663', 'Lumbo', '2532', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29664', 'Mocambique', '2532', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29665', 'Nacala', '2532', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29666', 'Nampula', '2532', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29667', 'Cuamba', '2533', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29668', 'Lichinga', '2533', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29669', 'Mandimba', '2533', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29670', 'Maniamba', '2533', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29671', 'Marrupa', '2533', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29672', 'Beira', '2534', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29673', 'Dondo', '2534', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29674', 'Tete', '2535', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29675', 'Zumbo', '2535', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29676', 'Garue', '2536', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29677', 'Mocuba', '2536', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29678', 'Quelimane', '2536', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29679', 'Bogale', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29680', 'Henzada', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29681', 'Kyaiklat', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29682', 'Labutta', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29683', 'Maubin', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29684', 'Moulmeingyun', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29685', 'Myanaung', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29686', 'Pathein', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29687', 'Pyapon', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29688', 'Wakema', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29689', 'Yandoon', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29690', 'Ye', '2537', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29691', 'Bago', '2538', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29692', 'Letpadan', '2538', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29693', 'Nyaunglebin', '2538', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29694', 'Paungde', '2538', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29695', 'Pyay', '2538', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29696', 'Pyu', '2538', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29697', 'Thanatpin', '2538', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29698', 'Tharrawaddy', '2538', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29699', 'Toungoo', '2538', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29700', 'Falam', '2539', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29701', 'Banmo', '2540', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29702', 'Myitkyina', '2540', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29703', 'Loikaw', '2541', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29704', 'Hpa-an', '2542', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29705', 'Allanmyo', '2543', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29706', 'Chauk', '2543', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29707', 'Magway', '2543', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29708', 'Minbu', '2543', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29709', 'Pakokku', '2543', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29710', 'Taungdwingyi', '2543', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29711', 'Thayetmyo', '2543', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29712', 'Yenangyaung', '2543', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29713', 'Kyaukse', '2544', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29714', 'Mandalay', '2544', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29715', 'Maymyo', '2544', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29716', 'Meiktila', '2544', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29717', 'Mogok', '2544', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29718', 'Myingyan', '2544', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29719', 'Pyinmana', '2544', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29720', 'Yamethin', '2544', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29721', 'Kyaikkami', '2545', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29722', 'Kyaikto', '2545', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29723', 'Martaban', '2545', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29724', 'Mawlamyine', '2545', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29725', 'Mudon', '2545', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29726', 'Thaton', '2545', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29727', 'Akyab', '2547', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29728', 'Arakan', '2547', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29729', 'Kalay', '2548', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29730', 'Katha', '2548', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29731', 'Mawlaik', '2548', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29732', 'Monywa', '2548', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29733', 'Sagaing', '2548', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29734', 'Shwebo', '2548', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29735', 'Keng Tung', '2549', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29736', 'Lashio', '2549', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29737', 'Taunggyi', '2549', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29738', 'Dawei', '2550', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29739', 'Mergui', '2550', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29740', 'Kanbe', '2551', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29741', 'Kayan', '2551', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29742', 'Syriam', '2551', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29743', 'Thongwa', '2551', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29744', 'Twante', '2551', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29745', 'Yangon', '2551', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29746', 'Katima Mulilo', '2552', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29747', 'Henties Bay', '2553', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29748', 'Karibib', '2553', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29749', 'Kuisebmond', '2553', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29750', 'Omaruru', '2553', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29751', 'Otjimbingwe', '2553', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29752', 'Swakopmund', '2553', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29753', 'Usakos', '2553', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29754', 'Walvis Bay', '2553', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29755', 'Aranos', '2554', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29756', 'Maltahohe', '2554', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29757', 'Mariental', '2554', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29758', 'Rehoboth', '2554', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29759', 'Bethanien', '2555', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29760', 'Karasburg', '2555', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29761', 'Keetmanshoop', '2555', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29762', 'Luderitz', '2555', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29763', 'Oranjemund', '2555', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29764', 'Warmbad', '2555', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29765', 'Rundu', '2556', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29766', 'Windhoek', '2557', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29767', 'Arandis', '2558', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29768', 'Khorixas', '2558', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29769', 'Opuwo', '2558', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29770', 'Outjo', '2558', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29771', 'Oshikango', '2559', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29772', 'Gobabis', '2560', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29773', 'Leonardville', '2560', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29774', 'Ongandjera', '2561', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29775', 'Ongwediva', '2562', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29776', 'Oshakati', '2562', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29777', 'Ondangwa', '2563', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29778', 'Otavi', '2563', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29779', 'Tsumeb', '2563', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29780', 'Grootfontein', '2564', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29781', 'Okahandja', '2564', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29782', 'Okakarara', '2564', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29783', 'Otjiwarongo', '2564', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29784', 'Yaren', '2565', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29785', 'Banepa', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29786', 'Bhaktapur', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29787', 'Bidur', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29788', 'Bishalter', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29789', 'Dhulikhel', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29790', 'Kathmandu', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29791', 'Kirtipur', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29792', 'Lalitpur', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29793', 'Madhyapur Thimi', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29794', 'Panauti', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29795', 'Tribuvannagar', '2566', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29796', 'Birendranagar', '2567', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29797', 'Gulariya', '2567', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29798', 'Narayan', '2567', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29799', 'Nepalganj', '2567', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29800', 'Surkhet', '2567', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29801', 'Baglung', '2568', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29802', 'Weni', '2568', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29803', 'Byas', '2569', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29804', 'Leknath', '2569', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29805', 'Pokhara', '2569', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29806', 'Prithivinarayan', '2569', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29807', 'Putalibazar', '2569', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29808', 'Waling', '2569', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29809', 'Bhimeshwar', '2570', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29810', 'Jaleshwar', '2570', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29811', 'Janakpur', '2570', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29812', 'Kamalamai', '2570', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29813', 'Malangwa', '2570', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29814', 'Sinduli Marhi', '2570', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29815', 'Jumla', '2571', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29816', 'Biratnagar', '2572', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29817', 'Dhankuta', '2572', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29818', 'Dharan', '2572', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29819', 'Inaruwa', '2572', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29820', 'Itahari', '2572', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29821', 'Khandbari', '2572', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29822', 'Butwal', '2573', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29823', 'Kapilwastu', '2573', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29824', 'Ramgram', '2573', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29825', 'Sidharthanagar', '2573', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29826', 'Tansen', '2573', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29827', 'Wahadurganj', '2573', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29828', 'Amargadhi', '2574', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29829', 'Dashrathchand', '2574', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29830', 'Mahendranagar', '2574', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29831', 'Bhadrapur', '2575', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29832', 'Damak', '2575', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29833', 'Ilam', '2575', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29834', 'Mechinagar', '2575', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29835', 'Bharatpur', '2576', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29836', 'Birganj', '2576', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29837', 'Chitwan', '2576', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29838', 'Gaur', '2576', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29839', 'Hetauda', '2576', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29840', 'Kalaiya', '2576', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29841', 'Ratnanagar', '2576', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29842', 'Salyan', '2577', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29843', 'Tulsipur', '2577', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29844', 'Lahan', '2578', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29845', 'Rajbiraj', '2578', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29846', 'Siraha', '2578', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29847', 'Triyuga', '2578', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29848', 'Dhangadi', '2579', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29849', 'Dipayal', '2579', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29850', 'Tikapur', '2579', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29851', 'Kralendijk', '2580', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29852', 'Curacao', '2581', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29853', 'Willemstad', '2581', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29854', 'The Bottom', '2582', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29855', 'SchipolRijk', '2585', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29856', 'Amstelveen', '2586', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29857', 'Aa en Hunze', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29858', 'Assen', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29859', 'Borger-Odoorn', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29860', 'Coevorden', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29861', 'De Wolden', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29862', 'Den Oever', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29863', 'Emmen', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29864', 'Gasteren', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29865', 'Hoogeveen', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29866', 'Menterwolde', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29867', 'Meppel', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29868', 'Midden-Drenthe', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29869', 'Noordenveld', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29870', 'Stadskanaal', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29871', 'Tynaarlo', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29872', 'Veenoord', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29873', 'Westerveld', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29874', 'Zuidlaren', '2587', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29875', 'Almere', '2588', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29876', 'Dronten', '2588', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29877', 'Lelystad', '2588', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29878', 'Noordoostpolder', '2588', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29879', 'Urk', '2588', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29880', 'Zeewolde', '2588', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29881', 'Achtkarspelen', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29882', 'Ameland', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29883', 'Boarnsterhim', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29884', 'Bolsward', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29885', 'Dantumadeel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29886', 'Dongeradeel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29887', 'Drachten', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29888', 'Ferwerderadiel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29889', 'Franekeradeel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29890', 'Gaasterlan-Sleat', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29891', 'Gorredijk', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29892', 'Harlingen', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29893', 'Heerenveen', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29894', 'Het Bildt', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29895', 'Kollumerland', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29896', 'Leeuwarden', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29897', 'Leeuwarderadeel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29898', 'Lemsterland', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29899', 'Littenseradiel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29900', 'Menaldumadeel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29901', 'Nijefurd', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29902', 'Oostrum', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29903', 'Ooststellingwerf', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29904', 'Opsterland', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29905', 'Schiermonnikoog', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29906', 'Skasterlan', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29907', 'Smallingerland', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29908', 'Sneek', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29909', 'Terschelling', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29910', 'Tytsjerksteradiel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29911', 'Ureterp', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29912', 'Weststellingwerf', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29913', 'Wolvega', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29914', 'Wunseradiel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29915', 'Wymbritseradiel', '2589', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29916', 'Aalten', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29917', 'Angerlo', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29918', 'Apeldoorn', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29919', 'Appeldoorn', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29920', 'Arnhem', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29921', 'Barneveld', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29922', 'Bemmel', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29923', 'Bergh', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29924', 'Beuningen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29925', 'Borculo', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29926', 'Brummen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29927', 'Buren', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29928', 'Culemborg', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29929', 'Delden', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29930', 'Didam', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29931', 'Dieren', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29932', 'Dinxperlo', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29933', 'Dodewaard', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29934', 'Doesburg', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29935', 'Doetinchem', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29936', 'Druten', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29937', 'Duiven', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29938', 'Ede', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29939', 'Eerbeek', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29940', 'Eibergen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29941', 'Elburg', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29942', 'Epe', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29943', 'Ermelo', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29944', 'Geldermalsen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29945', 'Gendringen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29946', 'Giesbeek', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29947', 'Gorssel', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29948', 'Groenlo', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29949', 'Groesbeek', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29950', 'Harderwijk', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29951', 'Hattem', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29952', 'Heerde', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29953', 'Hengelo', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29954', 'Heumen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29955', 'Huisen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29956', 'Hummelo en Keppel', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29957', 'Kesteren', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29958', 'Kootwijkerbroek', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29959', 'Leerdam', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29960', 'Leeuwen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29961', 'Lichtenvoorde', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29962', 'Lingewaal', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29963', 'Lochem', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29964', 'Loppersum', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29965', 'Maasdriel', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29966', 'Malden', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29967', 'Millingen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29968', 'Molenhoek', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29969', 'Neede', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29970', 'Neerijnen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29971', 'Nijkerk', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29972', 'Nijmegen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29973', 'Nunspeet', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29974', 'Oldebroek', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29975', 'Oosterbeek', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29976', 'Overbetuwe', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29977', 'Putten', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29978', 'Renkum', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29979', 'Rheden', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29980', 'Rijnwaarden', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29981', 'Rozendaal', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29982', 'Ruurlo', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29983', 'Scherpenzeel', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29984', 'Steenderen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29985', 'Terborg', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29986', 'Tiel', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29987', 'Twello', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29988', 'Ubbergen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29989', 'Vaassen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29990', 'Varsseveld', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29991', 'Voorst', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29992', 'Vorden', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29993', 'Waardenburg', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29994', 'Wageningen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29995', 'Warmsveld', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29996', 'Wehl', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29997', 'Westervoort', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29998', 'Wijchen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('29999', 'Winterswijk', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30000', 'Wisch', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30001', 'Zaltbommel', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30002', 'Zelhem', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30003', 'Zevenaar', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30004', 'Zutphen', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30005', 's-Heerenberg', '2590', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30006', 'Appingedam', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30007', 'Bedum', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30008', 'Bellingwedde', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30009', 'De Marne', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30010', 'Delfzijl', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30011', 'Eemsmond', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30012', 'Groningen', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30013', 'Grootegast', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30014', 'Haren', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30015', 'Hoogezand-Sappemeer', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30016', 'Leek', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30017', 'Marum', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30018', 'Midwolda', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30019', 'Muntendam', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30020', 'Pekela', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30021', 'Reiderland', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30022', 'Scheemda', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30023', 'Slochteren', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30024', 'Ten Boer', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30025', 'Tolbert', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30026', 'Veendam', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30027', 'Vlagtwedde', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30028', 'Winschoten', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30029', 'Winsum', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30030', 'Zuidhorn', '2591', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30031', 'Ambt Montfort', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30032', 'Arcen en Velden', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30033', 'Beek', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30034', 'Beesel', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30035', 'Bergen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30036', 'Blerick', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30037', 'Brunssum', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30038', 'Echt', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30039', 'Eijsden', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30040', 'Gennep', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30041', 'Gulpen-Wittem', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30042', 'Haelen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30043', 'Heel', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30044', 'Heerlen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30045', 'Helden', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30046', 'Heythuysen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30047', 'Horst', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30048', 'Hunsel', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30049', 'Kerkrade', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30050', 'Kessel', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30051', 'Landgraaf', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30052', 'Maasbracht', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30053', 'Maasbree', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30054', 'Maastricht', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30055', 'Margraten', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30056', 'Meerlo-Wanssum', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30057', 'Meerssen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30058', 'Meijel', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30059', 'Mook en Middelaar', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30060', 'Nederweert', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30061', 'Nuth', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30062', 'Onderbanken', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30063', 'Roerdalen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30064', 'Roermond', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30065', 'Roggel', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30066', 'Roggel en Neer', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30067', 'Schinnen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30068', 'Sevenum', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30069', 'Simpelveld', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30070', 'Sittard', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30071', 'Sittard-Geleen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30072', 'Stein', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30073', 'Stramproy', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30074', 'Susteren', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30075', 'Swalmen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30076', 'Tegelen', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30077', 'Thorn', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30078', 'Vaals', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30079', 'Valkenburg', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30080', 'Venlo', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30081', 'Venray', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30082', 'Vilt Limburg', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30083', 'Voerendaal', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30084', 'Weert', '2592', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30085', '\'s-Hertogenbosch', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30086', 'Aalburg', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30087', 'Alphen-Chaam', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30088', 'Asten', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30089', 'Baarle-Nassau', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30090', 'Bergeijk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30091', 'Bergen op Zoom', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30092', 'Berghem', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30093', 'Bernheze', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30094', 'Bernisse', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30095', 'Best', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30096', 'Bladel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30097', 'Boekel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30098', 'Boxmeer', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30099', 'Boxtel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30100', 'Breda', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30101', 'Budel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30102', 'Cranendonck', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30103', 'Cuijk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30104', 'Den Bosch', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30105', 'Den Dungen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30106', 'Deurne', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30107', 'Dongen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30108', 'Drimmelen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30109', 'Drunen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30110', 'Duizel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30111', 'Eersel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30112', 'Eindhoven', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30113', 'Etten-Leur', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30114', 'Geertruidenberg', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30115', 'Geldrop', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30116', 'Gemert-Bakel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30117', 'Gilze en Rijen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30118', 'Goirle', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30119', 'Grave', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30120', 'Haaren', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30121', 'Halderberge', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30122', 'Heeze-Leende', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30123', 'Heijningen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30124', 'Helmond', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30125', 'Heusden', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30126', 'Hilvarenbeek', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30127', 'Hoeven', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30128', 'Hoogerheide', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30129', 'Kaatsheuvel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30130', 'Korendijk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30131', 'Laarbeek', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30132', 'Landerd', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30133', 'Lith', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30134', 'Loon op Zand', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30135', 'Maarheeze', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30136', 'Maasdonk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30137', 'Mierlo', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30138', 'Mill en Sint Hubert', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30139', 'Moerdijk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30140', 'Nieuwkuijk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30141', 'Nuenen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30142', 'Oirschot', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30143', 'Oisterwijk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30144', 'Oosterhout', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30145', 'Oss', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30146', 'Raamsdonksveer', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30147', 'Ravenstein', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30148', 'Reusel-De Mierden', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30149', 'Roosendaal', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30150', 'Rosmalen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30151', 'Rucphen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30152', 'Schaijk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30153', 'Schijndel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30154', 'Sint Anthonis', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30155', 'Sint Willebrord', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30156', 'Sint-Michielsgestel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30157', 'Sint-Oedenrode', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30158', 'Sleeuwijk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30159', 'Someren', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30160', 'Son en Breugel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30161', 'Steenbergen', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30162', 'Tilburg', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30163', 'Uden', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30164', 'Valkenswaard', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30165', 'Veghel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30166', 'Veldhoven', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30167', 'Vinkel', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30168', 'Vught', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30169', 'Waalre', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30170', 'Waalwijk', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30171', 'Werkendam', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30172', 'Woensdrecht', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30173', 'Woudrichem', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30174', 'Zundert', '2593', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30175', 'Aalsmeer', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30176', 'Alkmaar', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30177', 'Amstelveen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30178', 'Amsterdam', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30179', 'Andijk', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30180', 'Ankeveen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30181', 'Anna Paulowna', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30182', 'Assendelft', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30183', 'Badhoevedorp', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30184', 'Beemster', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30185', 'Bennebroek', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30186', 'Bergen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30187', 'Beverwijk', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30188', 'Blaricum', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30189', 'Bloemendaal', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30190', 'Bovenkarspel', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30191', 'Bussum', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30192', 'Castricum', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30193', 'Den Helder', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30194', 'Diemen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30195', 'Drechterland', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30196', 'Edam-Volendam', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30197', 'Enkhuizen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30198', 'Graft-De Rijp', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30199', 'Haarlem', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30200', 'Haarlemmerliede', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30201', 'Haarlemmermeer', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30202', 'Harenkarspel', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30203', 'Heemskerk', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30204', 'Heemstede', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30205', 'Heerhugowaard', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30206', 'Heiloo', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30207', 'Hillegom', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30208', 'Hilversum', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30209', 'Hoofddorp', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30210', 'Hoorn', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30211', 'Huizen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30212', 'Ijmuiden', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30213', 'Katwijk', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30214', 'Krommenie', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30215', 'Landsmeer', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30216', 'Langedijk', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30217', 'Laren', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30218', 'Loosdrecht', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30219', 'Medemblik', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30220', 'Middenbeemster', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30221', 'Muiden', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30222', 'Naarden', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30223', 'Niedorp', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30224', 'Nieuw-Vennep', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30225', 'Noorder-Koggenland', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30226', 'Obdam', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30227', 'Oostzaan', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30228', 'Opmeer', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30229', 'Oude Meer', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30230', 'Ouder-Amstel', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30231', 'Oudkarspel', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30232', 'Purmerend', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30233', 'Rozenburg', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30234', 'Schagen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30235', 'Schermer', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30236', 'Stede Broec', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30237', 'Texel', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30238', 'Tuitjenhorn', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30239', 'Uitgeest', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30240', 'Uithoorn', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30241', 'Velsen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30242', 'Venhuizen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30243', 'Vijfhuizen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30244', 'Waarland', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30245', 'Waterland', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30246', 'Weesp', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30247', 'Wervershoof', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30248', 'Wester-Koggenland', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30249', 'Westwoud', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30250', 'Wieringen', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30251', 'Wieringermeer', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30252', 'Wognum', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30253', 'Wormer', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30254', 'Wormerland', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30255', 'Wormerveer', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30256', 'Zaandam', '2594', '0.00', '1', '2021-04-06 06:43:48', '2021-04-06 06:43:48', NULL),
('30257', 'Zaanstad', '2594', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30258', 'Zandvoort', '2594', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30259', 'Zeevang', '2594', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30260', 'Zwaag', '2594', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30261', 'Zwanenburg', '2594', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30262', 'Almelo', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30263', 'Bathmen', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30264', 'Borne', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30265', 'Dalfsen', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30266', 'Dedemsvaart', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30267', 'Denekamp', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30268', 'Deventer', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30269', 'Diepenheim', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30270', 'Enschede', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30271', 'Genemuiden', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30272', 'Haaksbergen', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30273', 'Hardenberg', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30274', 'Hasselt', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30275', 'Hellendoorn', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30276', 'Hengelo', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30277', 'Hof van Twente', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30278', 'IJsselmuiden', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30279', 'Kampen', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30280', 'Lemelerveld', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30281', 'Losser', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30282', 'Nieuwleusen', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30283', 'Nijverdal', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30284', 'Oldenzaal', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30285', 'Olst', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30286', 'Ommen', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30287', 'Ootmarsum', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30288', 'Raalte', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30289', 'Rijssen', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30290', 'Staphorst', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30291', 'Steenwijk', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30292', 'Tubbergen', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30293', 'Vriezenveen', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30294', 'Vroomshoop', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30295', 'Weerselo', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30296', 'Wierden', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30297', 'Zwartewaterland', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30298', 'Zwolle', '2595', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30299', 'Abcoude', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30300', 'Amerongen', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30301', 'Amersfoort', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30302', 'Baarn', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30303', 'Benschop', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30304', 'Breukelen', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30305', 'Bunnik', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30306', 'Bunschoten', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30307', 'De Bilt', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30308', 'De Ronde Venen', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30309', 'Den Dolder', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30310', 'Doorn', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30311', 'Driebergen-Rijsenburg', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30312', 'Eemnes', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30313', 'Houten', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30314', 'IJsselstein', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30315', 'Kockengen', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30316', 'Leersum', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30317', 'Leusden', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30318', 'Loenen', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30319', 'Lopik', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30320', 'Maarn', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30321', 'Maarsen', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30322', 'Mijdrecht', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30323', 'Montfoort', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30324', 'Nieuwegein', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30325', 'Nigtevecht', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30326', 'Odijk', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30327', 'Oudewater', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30328', 'Renswoude', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30329', 'Rhenen', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30330', 'Soest', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30331', 'Soesterberg', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30332', 'Utrecht', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30333', 'Veenendaal', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30334', 'Vianen', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30335', 'Wijdemeren', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30336', 'Wijk', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30337', 'Wilnis', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30338', 'Woerden', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30339', 'Woudenberg', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30340', 'Zeist', '2597', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30341', 'Axel', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30342', 'Borsele', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30343', 'Goes', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30344', 'Hontenisse', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30345', 'Hulst', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30346', 'Kapelle', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30347', 'Middelburg', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30348', 'Noord-Beveland', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30349', 'Oostburg', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30350', 'Reimerswaal', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30351', 'Sas van Gent', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30352', 'Schouwen-Duiveland', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30353', 'Sluis-Aardenburg', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30354', 'Terneuzen', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30355', 'Tholen', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30356', 'Veere', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30357', 'Vlissingen', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30358', 'Zierikzee', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30359', 'Zijpe', '2598', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30360', '\'s-Gravendeel', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30361', '\'s-Gravenhage', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30362', '\'s-Gravenzande', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30363', 'Alblasserdam', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30364', 'Albrandswaard', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30365', 'Alkemade', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30366', 'Alphen', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30367', 'Alphen aan den Rijn', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30368', 'Barendrecht', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30369', 'Bergambacht', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30370', 'Bergschenhoek', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30371', 'Berkel en Rodenrijs', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30372', 'Binnenmaas', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30373', 'Bleiswijk', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30374', 'Bodegraven', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30375', 'Boskoop', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30376', 'Brielle', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30377', 'Capelle', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30378', 'Cromstrijen', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30379', 'De Lier', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30380', 'Delft', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30381', 'Dirksland', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30382', 'Dordrecht', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30383', 'Giessenlanden', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30384', 'Goedereede', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30385', 'Gorinchem', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30386', 'Gouda', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30387', 'Graafstroom', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30388', 'Hardinxveld-Giessendam', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30389', 'Heerjansdam', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30390', 'Hellevoetsluis', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30391', 'Hendrik-Ido-Ambacht', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30392', 'Jacobswoude', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30393', 'Katwijk', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30394', 'Kinderdijk', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30395', 'Krimpen', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30396', 'Leiden', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30397', 'Leiderdorp', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30398', 'Leidschendam-Voorburg', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30399', 'Liemeer', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30400', 'Liesveld', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30401', 'Lisse', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30402', 'Maasland', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30403', 'Maassluis', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30404', 'Middelharnis', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30405', 'Monster', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30406', 'Moordrecht', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30407', 'Naaldwijk', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30408', 'Nederlek', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30409', 'Nieuw-Lekkerland', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30410', 'Nieuwekerk aan den IJssel', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30411', 'Nieuwkoop', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30412', 'Noordwijk', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30413', 'Noordwijkerhout', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30414', 'Oegestgeest', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30415', 'Oostflakkee', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30416', 'Oud-Beijerland', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30417', 'Ouderkerk', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30418', 'Papendrecht', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30419', 'Pijnacker-Nootdorp', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30420', 'Reeuwijk', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30421', 'Ridderkerk', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30422', 'Rijnsburg', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30423', 'Rijnwoude', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30424', 'Rijswijk', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30425', 'Rotterdam', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30426', 'Sassenheim', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30427', 'Schiedam', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30428', 'Schipluiden', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30429', 'Schoonhoven', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30430', 'Sliedrecht', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30431', 'Spijkenisse', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30432', 'Strijen', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30433', 'Ter Aar', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30434', 'The Hague', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30435', 'Valkenburg', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30436', 'Vierpolders', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30437', 'Vlaardingen', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30438', 'Vlist', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30439', 'Voorhout', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30440', 'Voorschoten', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30441', 'Waddinxveen', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30442', 'Warmond', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30443', 'Wassenaar', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30444', 'Wateringen', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30445', 'West Maas en Waal', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30446', 'Westvoorne', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30447', 'Zederik', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30448', 'Zevenhuizen-Moerkapelle', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30449', 'Zoetermeer', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30450', 'Zoeterwoude', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30451', 'Zwijndrecht', '2599', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30452', 'Belep', '2600', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30453', 'Fayaoue', '2600', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30454', 'Tadine', '2600', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30455', 'Vao', '2600', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30456', 'We', '2600', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30457', 'Canala', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30458', 'Hienghene', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30459', 'Houailu', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30460', 'Kaala Gomen', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30461', 'Kone', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30462', 'Koumac', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30463', 'Ouegoa', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30464', 'Poindimie', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30465', 'Ponerihouen', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30466', 'Pouebo', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30467', 'Pouembout', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30468', 'Poum', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30469', 'Poya', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30470', 'Touho', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30471', 'Voh', '2601', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30472', 'Bouloupari', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30473', 'Bourail', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30474', 'Dumbea', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30475', 'Farino', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30476', 'La Foa', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30477', 'Moindou', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30478', 'Mont-Dore', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30479', 'Noumea', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30480', 'Paita', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30481', 'Sarramea', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30482', 'Thio', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30483', 'Yate', '2602', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30484', 'Auckland', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30485', 'Helensville', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30486', 'Henderson', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30487', 'Hillsborough', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30488', 'Lynfield', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30489', 'Manukau', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30490', 'Manurewa', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30491', 'Mt. Roskill', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30492', 'North Shore', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30493', 'Onehunga', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30494', 'Orewa', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30495', 'Otahuhu', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30496', 'Panmure', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30497', 'Papakura', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30498', 'Papatoetoe', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30499', 'Ponsonby', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30500', 'Royal Oak', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30501', 'Sandringham', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30502', 'Snells Beach', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30503', 'Takanini', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30504', 'Waiheke', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30505', 'Waitakere', '2604', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30506', 'Amberley', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30507', 'Ashburton', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30508', 'Christchurch', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30509', 'Fairlie', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30510', 'Geraldine', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30511', 'Kaikoura', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30512', 'Leeston', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30513', 'Lyttelton', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30514', 'Oamaru', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30515', 'Rangiora', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30516', 'Temuka', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30517', 'Timaru', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30518', 'Waimate', '2606', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30519', 'Gisborne', '2608', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30520', 'Dannevirke', '2610', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30521', 'Feilding', '2610', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30522', 'Foxton', '2610', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30523', 'Levin', '2610', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30524', 'Marton', '2610', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30525', 'Palmerston North', '2610', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30526', 'Picton', '2610', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30527', 'Taumarunui', '2610', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30528', 'Wanganui', '2610', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30529', 'Blenheim', '2611', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30530', 'Havelock', '2611', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30531', 'Nelson', '2612', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30532', 'Dargaville', '2613', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30533', 'Kaikohe', '2613', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30534', 'Kaitaia', '2613', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30535', 'Kerikeri', '2613', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30536', 'Maungatapere', '2613', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30537', 'Whangarei', '2613', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30538', 'Alexandra', '2614', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30539', 'Balclutha', '2614', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30540', 'Dunedin', '2614', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30541', 'Queenstown', '2614', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30542', 'Wanaka', '2614', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30543', 'Warkworth', '2615', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30544', 'Gore', '2616', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30545', 'Invercargill', '2616', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30546', 'Eltham', '2617', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30547', 'Hawera', '2617', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30548', 'Inglewood', '2617', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30549', 'New Plymouth', '2617', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30550', 'Oakura', '2617', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30551', 'Stratford', '2617', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30552', 'Waitara', '2617', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30553', 'Motueka', '2618', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30554', 'Richmond', '2618', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30555', 'Cambridge', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30556', 'Coromandel', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30557', 'Hamilton', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30558', 'Hillcrest', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30559', 'Huntly', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30560', 'Matamata', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30561', 'Morrinsville', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30562', 'Ngaruawahia', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30563', 'Otorohanga', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30564', 'Paeroa', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30565', 'Pukekohe', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30566', 'Putaruru', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30567', 'Taupo', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30568', 'Te Aroha', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30569', 'Te Awamutu', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30570', 'Te Kuiti', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30571', 'Thames', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30572', 'Tokoroa', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30573', 'Turangi', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30574', 'Waiuku', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30575', 'Whangamata', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30576', 'Whitianga', '2619', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30577', 'Carterton', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30578', 'Kapiti', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30579', 'Lower Hutt', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30580', 'Martinborough', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30581', 'Masterton', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30582', 'Otaki', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30583', 'Paraparaumu', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30584', 'Porirua', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30585', 'Upper Hutt', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30586', 'Wairarapa', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30587', 'Wellington', '2620', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30588', 'Boaco', '2624', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30589', 'Camoapa', '2624', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30590', 'San Lorenzo', '2624', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30591', 'Diriamba', '2625', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30592', 'Dolores', '2625', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30593', 'Jinotepe', '2625', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30594', 'Masatepe', '2625', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30595', 'San Marcos', '2625', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30596', 'Santa Teresa', '2625', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30597', 'Chichigalpa', '2626', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30598', 'Chinandega', '2626', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30599', 'Corinto', '2626', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30600', 'El Viejo', '2626', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30601', 'Puerto Morazan', '2626', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30602', 'Somotillo', '2626', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30603', 'Acoyapa', '2627', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30604', 'Juigalpa', '2627', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30605', 'Santo Domingo', '2627', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30606', 'Santo Tomas', '2627', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30607', 'Villa Sandino', '2627', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30608', 'Condega', '2628', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30609', 'Esteli', '2628', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30610', 'La Trinidad', '2628', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30611', 'Diriomo', '2629', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30612', 'Granada', '2629', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30613', 'Nandaime', '2629', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30614', 'Jinotega', '2630', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30615', 'Wiwili', '2630', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30616', 'El Sauce', '2631', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30617', 'La Paz Centro', '2631', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30618', 'Larreynaga', '2631', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30619', 'Leon', '2631', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30620', 'Nagarote', '2631', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30621', 'Telica', '2631', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30622', 'Somoto', '2632', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30623', 'Managua', '2633', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30624', 'Mateare', '2633', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30625', 'San Rafael del Sur', '2633', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30626', 'Ticuantepe', '2633', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30627', 'Tipitapa', '2633', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30628', 'La Concepcion', '2634', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30629', 'Masaya', '2634', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30630', 'Nandasmo', '2634', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30631', 'Nindiri', '2634', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30632', 'Niquinohomo', '2634', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30633', 'Ciudad Dario', '2635', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30634', 'Esquipulas', '2635', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30635', 'Matagalpa', '2635', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30636', 'Matiguas', '2635', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30637', 'Rio Blanco', '2635', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30638', 'San Isidro', '2635', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30639', 'Sebaco', '2635', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30640', 'Belen', '2638', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30641', 'Rivas', '2638', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30642', 'San Jorge', '2638', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30643', 'San Juan del Sur', '2638', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30644', 'Agadez', '2639', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30645', 'Arlit', '2639', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30646', 'Bilma', '2639', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30647', 'Fachi', '2639', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30648', 'Ingall', '2639', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30649', 'Tchirozerine', '2639', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30650', 'Diffa', '2640', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30651', 'Maine-Soroa', '2640', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30652', 'N\'Guigmi', '2640', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30653', 'Birni N\'Gaoure', '2641', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30654', 'Boboye', '2641', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30655', 'Dogondoutchi', '2641', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30656', 'Dosso', '2641', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30657', 'Gaya', '2641', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30658', 'Loga', '2641', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30659', 'Aguie', '2642', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30660', 'Dakoro', '2642', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30661', 'Gazaoua', '2642', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30662', 'Guidan Roumdji', '2642', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30663', 'Madarounfa', '2642', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30664', 'Maradi', '2642', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30665', 'Mayahi', '2642', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30666', 'Tessaoua', '2642', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30667', 'Tibiri', '2642', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30668', 'Niamey', '2643', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30669', 'Birni N\'Konni', '2644', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30670', 'Bouza', '2644', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30671', 'Illela', '2644', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30672', 'Keita', '2644', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30673', 'Madaoua', '2644', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30674', 'Malbaza\'uzine', '2644', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30675', 'Tahoua', '2644', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30676', 'Tchintabaraden', '2644', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30677', 'Ayorou', '2645', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30678', 'Filingue', '2645', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30679', 'Kollo', '2645', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30680', 'Ouallam', '2645', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30681', 'Say', '2645', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30682', 'Tera', '2645', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30683', 'Tillabery', '2645', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30684', 'Goure', '2646', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30685', 'Kantche', '2646', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30686', 'Magaria', '2646', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30687', 'Matameye', '2646', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30688', 'Mirriah', '2646', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30689', 'Tanout', '2646', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30690', 'Zinder', '2646', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30691', 'Aba', '2647', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30692', 'Amaigbo', '2647', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30693', 'Arochukwu', '2647', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30694', 'Bende', '2647', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30695', 'Ohafia', '2647', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30696', 'Okwe', '2647', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30697', 'Umuahia', '2647', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30698', 'Demsa', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30699', 'Ganye', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30700', 'Girei', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30701', 'Gombi', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30702', 'Jada', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30703', 'Jimeta', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30704', 'Lamurde', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30705', 'Madagala', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30706', 'Maiha', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30707', 'Mubi', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30708', 'Ngurore', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30709', 'Numan', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30710', 'Shelleng', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30711', 'Song', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30712', 'Toungo', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30713', 'Yola', '2649', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30714', 'Aguata', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30715', 'Agulu', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30716', 'Anambra', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30717', 'Awka', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30718', 'Enugu Ukwu', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30719', 'Igbo Ukwu', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30720', 'Ihiala', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30721', 'Nkpor', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30722', 'Nnewi', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30723', 'Obosi', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30724', 'Okija', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30725', 'Okpoko', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30726', 'Onitsha', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30727', 'Ozubulu', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30728', 'Uga', '2651', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30729', 'Alkaleri', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30730', 'Azare', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30731', 'Bauchi', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30732', 'Bogoro', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30733', 'Bununu Dass', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30734', 'Darazo', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30735', 'Gamawa', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30736', 'Ganjuwa', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30737', 'Jamari', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30738', 'Katagum', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30739', 'Misau', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30740', 'Ningi', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30741', 'Tafawa Balewa', '2652', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30742', 'Brass', '2653', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30743', 'Ekeremor', '2653', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30744', 'Nembe', '2653', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30745', 'Yenagoa', '2653', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30746', 'Aliade', '2654', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30747', 'Gboko', '2654', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30748', 'Katsina-Ala', '2654', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30749', 'Makurdi', '2654', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30750', 'Otukpo', '2654', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30751', 'Ukum', '2654', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30752', 'Zaki Biam', '2654', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30753', 'Abadan', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30754', 'Askira', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30755', 'Bama', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30756', 'Biu', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30757', 'Chibok', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30758', 'Damboa', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30759', 'Dikwa', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30760', 'Gamboru', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30761', 'Gubio', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30762', 'Gwoza', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30763', 'Kaga', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30764', 'Kala', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30765', 'Konduga', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30766', 'Kukawa', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30767', 'Mafa', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30768', 'Magumeri', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30769', 'Maiduguri', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30770', 'Marte', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30771', 'Monguno', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30772', 'Ngala', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30773', 'Shani', '2655', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30774', 'Agbor', '2657', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30775', 'Asaba', '2657', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30776', 'Bomadi', '2657', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30777', 'Burutu', '2657', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30778', 'Okpe', '2657', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30779', 'Patani', '2657', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30780', 'Sapele', '2657', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30781', 'Ughelli', '2657', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30782', 'Warri', '2657', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30783', 'Abakaliki', '2658', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30784', 'Afikpo', '2658', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30785', 'Effium', '2658', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30786', 'Ezza', '2658', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30787', 'Ishieke', '2658', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30788', 'Uburu', '2658', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30789', 'Auchi', '2659', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30790', 'Benin', '2659', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30791', 'Ekpoma', '2659', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30792', 'Igarra', '2659', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30793', 'Ikpoba', '2659', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30794', 'Irrua', '2659', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30795', 'Sabongida', '2659', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30796', 'Ubiaja', '2659', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30797', 'Uromi', '2659', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30798', 'Ado', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30799', 'Aramoko', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30800', 'Efon Alaye', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30801', 'Emure', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30802', 'Igbara Odo', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30803', 'Igede', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30804', 'Ijero', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30805', 'Ikere', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30806', 'Ikole', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30807', 'Ilawe', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30808', 'Ipoti', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30809', 'Ise', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30810', 'Ode', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30811', 'Omuo', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30812', 'Osi', '2660', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30813', 'Agwa', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30814', 'Aku', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30815', 'Awgu', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30816', 'Eha Amufu', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30817', 'Enugu', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30818', 'Enugu Ezike', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30819', 'Enugu Ngwo', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30820', 'Ezeagu', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30821', 'Mberubu', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30822', 'Nsukka', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30823', 'Oji', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30824', 'Udi', '2661', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30825', 'Ako', '2662', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30826', 'Deba', '2662', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30827', 'Duku', '2662', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30828', 'Garko', '2662', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30829', 'Gombe', '2662', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30830', 'Kaltungo', '2662', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30831', 'Kumo', '2662', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30832', 'Nafada', '2662', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30833', 'Pindiga', '2662', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30834', 'Aboh', '2663', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30835', 'Etiti', '2663', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30836', 'Ihite', '2663', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30837', 'Nkwerre', '2663', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30838', 'Oguta', '2663', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30839', 'Okigwe', '2663', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30840', 'Owerri', '2663', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30841', 'Babura', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30842', 'Birnin Kudu', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30843', 'Buji', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30844', 'Dutse', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30845', 'Garki', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30846', 'Gumel', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30847', 'Gwaram', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30848', 'Gwiwa', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30849', 'Hadejia', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30850', 'Jahun', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30851', 'Kaugama', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30852', 'Kazaure', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30853', 'Keffin Hausa', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30854', 'Kiyawa', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30855', 'Maigatari', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30856', 'Malammaduri', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30857', 'Ringim', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30858', 'Sule Tankarkar', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30859', 'Taura', '2664', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30860', 'Birnin Gwari', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30861', 'Doka', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30862', 'Giwa', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30863', 'Gwagwada', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30864', 'Hunkuyi', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30865', 'Igabi', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30866', 'Ikara', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30867', 'Jemaa', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30868', 'Kachia', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30869', 'Kaduna', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30870', 'Kafanchan', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30871', 'Kagarko', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30872', 'Kagoro', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30873', 'Kaura', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30874', 'Kudan', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30875', 'Lere', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30876', 'Makarfi', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30877', 'Sabon Birnin Gwari', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30878', 'Sabongari', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30879', 'Sanga', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30880', 'Soba', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30881', 'Tudun Wada', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30882', 'Zangon Katab', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30883', 'Zaria', '2665', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30884', 'Ajingi', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30885', 'Albasu', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30886', 'Bagwai', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30887', 'Bebeji', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30888', 'Bichi', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30889', 'Bunkure', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30890', 'Dambarta', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30891', 'Dawakin Tofe', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30892', 'Fagge', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30893', 'Garko', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30894', 'Garun Mallam', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30895', 'Gaya', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30896', 'Gezawa', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30897', 'Gwarzo', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30898', 'Kabo', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30899', 'Kano', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30900', 'Karaye', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30901', 'Kibiya', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30902', 'Kiru', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30903', 'Kumbotso', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30904', 'Kunchi', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30905', 'Kura', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30906', 'Madobi', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30907', 'Makoda', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30908', 'Nassarawa', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30909', 'Rano', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30910', 'Rimin Gado', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30911', 'Shanono', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30912', 'Sumaila', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30913', 'Takai', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30914', 'Tofa', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30915', 'Tudun Wada', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30916', 'Wudil', '2666', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30917', 'Bakori', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30918', 'Batsari', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30919', 'Bindawa', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30920', 'Cheranchi', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30921', 'Dan Dume', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30922', 'Danja', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30923', 'Daura', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30924', 'Dutsi', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30925', 'Dutsin Ma', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30926', 'Faskari', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30927', 'Funtua', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30928', 'Ingawa', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30929', 'Jibiya', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30930', 'Kangiwa', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30931', 'Kankara', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30932', 'Kankiya', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30933', 'Katsina', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30934', 'Kurfi', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30935', 'Malumfashi', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30936', 'Mani', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30937', 'Mashi', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30938', 'Musawa', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30939', 'Rimi', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30940', 'Sandamu', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30941', 'Zango', '2667', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30942', 'Argungu', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30943', 'Augie', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30944', 'Bagudo', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30945', 'Birnin Kebbi', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30946', 'Birnin Yauri', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30947', 'Bunza', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30948', 'Fakai', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30949', 'Gwandu', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30950', 'Jega', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30951', 'Kalgo', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30952', 'Koko', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30953', 'Maiyema', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30954', 'Sakaba', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30955', 'Shanga', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30956', 'Suru', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30957', 'Wasagu', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30958', 'Zuru', '2668', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30959', 'Ajaokuta', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30960', 'Ankpa', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30961', 'Dekina', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30962', 'Idah', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30963', 'Kabba', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30964', 'Koton-Karifi', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30965', 'Kuroro', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30966', 'Lokoja', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30967', 'Mopa', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30968', 'Ogaminana', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30969', 'Ogori', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30970', 'Okene', '2669', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30971', 'Ajasse', '2670', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30972', 'Ilorin', '2670', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30973', 'Jebba', '2670', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30974', 'Kaiama', '2670', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30975', 'Lafiagi', '2670', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30976', 'Offa', '2670', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30977', 'Pategi', '2670', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30978', 'Apapa', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30979', 'Badagri', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30980', 'Epe', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30981', 'Ibeju', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30982', 'Iganmi', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30983', 'Ikeja', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30984', 'Ikorodu', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30985', 'Lagos', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30986', 'Ojo', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30987', 'Surulere', '2671', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30988', 'Akwanga', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30989', 'Awe', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30990', 'Doma', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30991', 'Keana', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30992', 'Keffi', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30993', 'Lafia', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30994', 'Nassarawa', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30995', 'Obi', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30996', 'Toto', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30997', 'Wamba', '2672', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30998', 'Agale', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('30999', 'Babana', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31000', 'Bida', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31001', 'Bosso', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31002', 'Chanchaga', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31003', 'Gbako', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31004', 'Kontagora', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31005', 'Lapai', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31006', 'Minna', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31007', 'Mokwa', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31008', 'New Bussa', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31009', 'Rijau', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31010', 'Shiroro', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31011', 'Suleja', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31012', 'Wushishi', '2673', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31013', 'Abeokuta', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31014', 'Ado Odo', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31015', 'Agbara', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31016', 'Aiyetoro', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31017', 'Ewekoro', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31018', 'Ifo', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31019', 'Ijebu Igbo', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31020', 'Ijebu Ode', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31021', 'Ikene', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31022', 'Ilaro', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31023', 'Ipokia', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31024', 'Odogbolu', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31025', 'Owode', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31026', 'Sango Ota', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31027', 'Shagamu', '2674', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31028', 'Akure', '2675', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31029', 'Idanre', '2675', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31030', 'Ikare', '2675', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31031', 'Irele', '2675', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31032', 'Odigbo', '2675', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31033', 'Oka', '2675', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31034', 'Okitipupa', '2675', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31035', 'Ondo', '2675', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31036', 'Owo', '2675', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31037', 'Apomu', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31038', 'Ede', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31039', 'Ejigbo', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31040', 'Erin-Oshogbo', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31041', 'Gbongan', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31042', 'Ife', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31043', 'Ifon Osun', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31044', 'Ijesha', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31045', 'Ikire', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31046', 'Ikirun', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31047', 'Ila', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31048', 'Ilesha', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31049', 'Ilobu', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31050', 'Inisa', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31051', 'Iwo', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31052', 'Modakeke', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31053', 'Oke-Mesi', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31054', 'Olorunda', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31055', 'Olupona', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31056', 'Ore', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31057', 'Orolu', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31058', 'Oshogbo', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31059', 'Oyan', '2676', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31060', 'Akinyele', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31061', 'Egbeda', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31062', 'Eruwa', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31063', 'Fiditi', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31064', 'Ibadan', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31065', 'Ibeto', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31066', 'Igbo Ora', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31067', 'Igboho', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31068', 'Iseyin', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31069', 'Kajola', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31070', 'Kishi', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31071', 'Lalupon', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31072', 'Ogbomosho', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31073', 'Ogo', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31074', 'Oke-Iho', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31075', 'Oyo', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31076', 'Shaki', '2677', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31077', 'Barakin', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31078', 'Bassa', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31079', 'Bokkos', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31080', 'Bukuru', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31081', 'Jos', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31082', 'Langtang', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31083', 'Pankshin', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31084', 'Riyom', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31085', 'Shendam', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31086', 'Vom', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31087', 'Wase', '2678', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31088', 'Abonnema', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31089', 'Abua', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31090', 'Ahoada', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31091', 'Bonny', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31092', 'Bugama', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31093', 'Degema', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31094', 'Egbema', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31095', 'Ogu', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31096', 'Okrika', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31097', 'Omoko', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31098', 'Opobo', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31099', 'Oyigbo', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31100', 'Port Harcourt', '2679', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31101', 'Binji', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31102', 'Bodinga', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31103', 'Dange', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31104', 'Gada', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31105', 'Goronyo', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31106', 'Gwadabawa', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31107', 'Illela', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31108', 'Kebbe', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31109', 'Kware', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31110', 'Rabah', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31111', 'Raka', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31112', 'Sabon Birni', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31113', 'Sokoto', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31114', 'Tambawel', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31115', 'Tureta', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31116', 'Wamako', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31117', 'Wurno', '2680', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31118', 'Bali', '2681', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31119', 'Gashaka', '2681', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31120', 'Gassol', '2681', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31121', 'Ibi', '2681', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31122', 'Jalingo', '2681', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31123', 'Lau', '2681', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31124', 'Takum', '2681', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31125', 'Wukari', '2681', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31126', 'Yorro', '2681', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31127', 'Damaturu', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31128', 'Fika', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31129', 'Gashua', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31130', 'Geidam', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31131', 'Gorgoram', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31132', 'Gujba', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31133', 'Gulani', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31134', 'Jakusko', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31135', 'Matsena', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31136', 'Nguru', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31137', 'Potiskum', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31138', 'Yusufari', '2682', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31139', 'Anka', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31140', 'Bungudu', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31141', 'Chafe', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31142', 'Gummi', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31143', 'Gusau', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31144', 'Isa', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31145', 'Kaura Namoda', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31146', 'Kiyawa', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31147', 'Maradun', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31148', 'Maru', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31149', 'Shinkafe', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31150', 'Talata Mafara', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31151', 'Zurmi', '2683', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31152', 'Niue', '2684', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31153', 'Songsong', '2687', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31154', 'Capital Hill', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31155', 'Chalan Kanoa', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31156', 'Dandan', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31157', 'Garapan', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31158', 'Gualo Rai', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31159', 'Kagman', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31160', 'Koblerville', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31161', 'San Antonio', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31162', 'San Jose', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31163', 'San Roque', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31164', 'San Vicente', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31165', 'Susupe', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31166', 'Tanapag', '2688', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31167', 'San Jose', '2689', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31168', 'Asker', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31169', 'Billingstad', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31170', 'Haslum', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31171', 'Hosle', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31172', 'Kjeller', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31173', 'Lillestrom', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31174', 'Lorenskog', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31175', 'Lysaker', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31176', 'LÃƒÂ¸renskog', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31177', 'Rud', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31178', 'Sandvika', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31179', 'Strommen', '2690', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31180', 'Kokstad', '2692', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31181', 'Drammen', '2693', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31182', 'Hokksund', '2693', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31183', 'Honefoss', '2693', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31184', 'Kongsberg', '2693', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31185', 'Lyngdal', '2693', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31186', 'NÃƒÂ¦rsnes', '2693', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31187', 'Vestby', '2693', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31188', 'Baatsfjord', '2694', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31189', 'Hammerfest', '2694', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31190', 'Brumunddal', '2695', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31191', 'Elverum', '2695', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31192', 'Hamar', '2695', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31193', 'Ilseng', '2695', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31194', 'Rena', '2695', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31195', 'Trysil', '2695', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31196', 'Bergen', '2696', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31197', 'HÃƒÂ¸ylandsbygd', '2696', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31198', 'Lonevag', '2696', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31199', 'Straume', '2696', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31200', 'Tysnes', '2696', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31201', 'Voss', '2696', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31202', 'Bodo', '2699', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31203', 'Mosjoen', '2699', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31204', 'Narvik', '2699', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31205', 'Nesna', '2699', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31206', 'Saltdal', '2699', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31207', 'Sortland', '2699', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31208', 'Steigen', '2699', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31209', 'Askim', '2700', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31210', 'Fredrikstad', '2700', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31211', 'Halden', '2700', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31212', 'Hovik', '2700', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31213', 'Moss', '2700', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31214', 'Mysen', '2700', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31215', 'Sarpsborg', '2700', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31216', 'Tistedal', '2700', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31217', 'Lena', '2701', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31218', 'Lillehammer', '2701', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31219', 'Oslo', '2702', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31220', 'Skedsmo', '2702', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31221', 'Skjetten', '2702', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31222', 'Egersund', '2703', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31223', 'Haugesund', '2703', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31224', 'Kleppe', '2703', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31225', 'Sandnes', '2703', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31226', 'Sola', '2703', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31227', 'Stavanger', '2703', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31228', 'Stavern', '2706', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31229', 'Sykkylven', '2707', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31230', 'Notodden', '2708', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31231', 'Skien', '2708', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31232', 'Harstad', '2709', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31233', 'Troms', '2709', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31234', 'TromsÃƒÂ¸', '2709', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31235', 'Horten', '2711', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31236', 'HusÃƒÂ¸ysund', '2711', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31237', 'Larvik', '2711', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31238', 'Rygge', '2711', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31239', 'Sandefjord', '2711', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31240', 'TÃƒÂ¸nsberg', '2711', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31241', 'Salalah', '2714', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31242', 'Azaiba', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31243', 'Bawshar', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31244', 'Madinat Qabus', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31245', 'Masqat', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31246', 'Matrah', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31247', 'Muscat', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31248', 'Muttrah', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31249', 'Qurayyat', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31250', 'Qurm', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31251', 'Ruwi', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31252', 'Wadi Al Kabir', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31253', 'as-Sib', '2715', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31254', 'Khasab', '2716', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31255', 'Rusayl', '2717', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31256', 'Bahla\'', '2719', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31257', 'Nizwa', '2719', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31258', 'Sumayl', '2719', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31259', '\'Ibri', '2720', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31260', 'al-Buraymi', '2720', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31261', 'Al khuwair', '2721', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31262', 'Barkah', '2721', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31263', 'Saham', '2721', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31264', 'Shinas', '2721', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31265', 'Suhar', '2721', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31266', 'al-Khaburah', '2721', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31267', 'al-Masna\'ah', '2721', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31268', 'ar-Rustaq', '2721', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31269', 'as-Suwayq', '2721', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31270', 'Ibra', '2722', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31271', 'Sur', '2722', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31272', 'al-Mudaybi', '2722', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31273', 'Barkhan', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31274', 'Bela', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31275', 'Bhag', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31276', 'Chaman', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31277', 'Chitkan', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31278', 'Dalbandin', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31279', 'Dera Allah Yar', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31280', 'Dera Bugti', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31281', 'Dera Murad Jamali', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31282', 'Dhadar', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31283', 'Duki', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31284', 'Gaddani', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31285', 'Gwadar', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31286', 'Harnai', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31287', 'Hub', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31288', 'Jiwani', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31289', 'Kalat', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31290', 'Kharan', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31291', 'Khuzdar', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31292', 'Kohlu', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31293', 'Loralai', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31294', 'Mach', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31295', 'Mastung', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31296', 'Nushki', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31297', 'Ormara', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31298', 'Pasni', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31299', 'Pishin', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31300', 'Quetta', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31301', 'Sibi', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31302', 'Sohbatpur', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31303', 'Surab', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31304', 'Turbat', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31305', 'Usta Muhammad', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31306', 'Uthal', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31307', 'Wadh', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31308', 'Winder', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31309', 'Zehri', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31310', 'Zhob', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31311', 'Ziarat', '2723', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31312', '\'Abdul Hakim', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31313', 'Ahmadpur East', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31314', 'Ahmadpur Lumma', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31315', 'Ahmadpur Sial', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31316', 'Ahmedabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31317', 'Alipur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31318', 'Alipur Chatha', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31319', 'Arifwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31320', 'Attock', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31321', 'Baddomalhi', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31322', 'Bagh', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31323', 'Bahawalnagar', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31324', 'Bahawalpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31325', 'Bai Pheru', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31326', 'Basirpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31327', 'Begowala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31328', 'Bhakkar', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31329', 'Bhalwal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31330', 'Bhawana', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31331', 'Bhera', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31332', 'Bhopalwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31333', 'Burewala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31334', 'Chak Azam Sahu', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31335', 'Chak Jhumra', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31336', 'Chak Sarwar Shahid', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31337', 'Chakwal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31338', 'Chawinda', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31339', 'Chichawatni', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31340', 'Chiniot', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31341', 'Chishtian Mandi', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31342', 'Choa Saidan Shah', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31343', 'Chuhar Kana', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31344', 'Chunian', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31345', 'Dajal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31346', 'Darya Khan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31347', 'Daska', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31348', 'Daud Khel', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31349', 'Daultala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31350', 'Dera Din Panah', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31351', 'Dera Ghazi Khan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31352', 'Dhanote', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31353', 'Dhonkal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31354', 'Dijkot', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31355', 'Dina', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31356', 'Dinga', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31357', 'Dipalpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31358', 'Dullewala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31359', 'Dunga Bunga', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31360', 'Dunyapur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31361', 'Eminabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31362', 'Faisalabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31363', 'Faqirwali', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31364', 'Faruka', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31365', 'Fateh Jang', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31366', 'Fatehpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31367', 'Fazalpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31368', 'Ferozwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31369', 'Fort Abbas', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31370', 'Garh Maharaja', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31371', 'Ghakar', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31372', 'Ghurgushti', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31373', 'Gojra', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31374', 'Gujar Khan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31375', 'Gujranwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31376', 'Gujrat', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31377', 'Hadali', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31378', 'Hafizabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31379', 'Harnoli', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31380', 'Harunabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31381', 'Hasan Abdal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31382', 'Hasilpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31383', 'Haveli', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31384', 'Hazro', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31385', 'Hujra Shah Muqim', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31386', 'Isa Khel', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31387', 'Jahanian', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31388', 'Jalalpur Bhattian', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31389', 'Jalalpur Jattan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31390', 'Jalalpur Pirwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31391', 'Jalla Jeem', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31392', 'Jamke Chima', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31393', 'Jampur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31394', 'Jand', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31395', 'Jandanwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31396', 'Jandiala Sherkhan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31397', 'Jaranwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31398', 'Jatoi', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31399', 'Jauharabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31400', 'Jhang', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31401', 'Jhawarian', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31402', 'Jhelum', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31403', 'Kabirwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31404', 'Kahna Nau', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31405', 'Kahror Pakka', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31406', 'Kahuta', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31407', 'Kalabagh', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31408', 'Kalaswala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31409', 'Kaleke', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31410', 'Kalur Kot', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31411', 'Kamalia', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31412', 'Kamar Mashani', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31413', 'Kamir', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31414', 'Kamoke', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31415', 'Kamra', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31416', 'Kanganpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31417', 'Karampur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31418', 'Karor Lal Esan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31419', 'Kasur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31420', 'Khairpur Tamewali', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31421', 'Khanewal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31422', 'Khangah Dogran', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31423', 'Khangarh', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31424', 'Khanpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31425', 'Kharian', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31426', 'Khewra', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31427', 'Khundian', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31428', 'Khurianwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31429', 'Khushab', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31430', 'Kot Abdul Malik', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31431', 'Kot Addu', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31432', 'Kot Mithan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31433', 'Kot Moman', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31434', 'Kot Radha Kishan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31435', 'Kot Samaba', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31436', 'Kotli Loharan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31437', 'Kundian', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31438', 'Kunjah', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31439', 'Lahore', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31440', 'Lalamusa', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31441', 'Lalian', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31442', 'Liaqatabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31443', 'Liaqatpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31444', 'Lieah', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31445', 'Liliani', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31446', 'Lodhran', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31447', 'Ludhewala Waraich', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31448', 'Mailsi', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31449', 'Makhdumpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31450', 'Makhdumpur Rashid', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31451', 'Malakwal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31452', 'Mamu Kanjan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31453', 'Mananwala Jodh Singh', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31454', 'Mandi Bahauddin', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31455', 'Mandi Sadiq Ganj', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31456', 'Mangat', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31457', 'Mangla', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31458', 'Mankera', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31459', 'Mian Channun', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31460', 'Miani', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31461', 'Mianwali', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31462', 'Minchinabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31463', 'Mitha Tiwana', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31464', 'Multan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31465', 'Muridke', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31466', 'Murree', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31467', 'Mustafabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31468', 'Muzaffargarh', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31469', 'Nankana Sahib', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31470', 'Narang', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31471', 'Narowal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31472', 'Noorpur Thal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31473', 'Nowshera', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31474', 'Nowshera Virkan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31475', 'Okara', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31476', 'Pakpattan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31477', 'Pasrur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31478', 'Pattoki', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31479', 'Phalia', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31480', 'Phularwan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31481', 'Pind Dadan Khan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31482', 'Pindi Bhattian', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31483', 'Pindi Gheb', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31484', 'Pirmahal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31485', 'Qadirabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31486', 'Qadirpur Ran', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31487', 'Qila Disar Singh', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31488', 'Qila Sobha Singh', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31489', 'Quaidabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31490', 'Rabwah', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31491', 'Rahim Yar Khan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31492', 'Raiwind', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31493', 'Raja Jang', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31494', 'Rajanpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31495', 'Rasulnagar', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31496', 'Rawalpindi', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31497', 'Renala Khurd', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31498', 'Rojhan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31499', 'Saddar Gogera', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31500', 'Sadiqabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31501', 'Safdarabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31502', 'Sahiwal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31503', 'Samasatta', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31504', 'Sambrial', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31505', 'Sammundri', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31506', 'Sangala Hill', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31507', 'Sanjwal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31508', 'Sarai Alamgir', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31509', 'Sarai Sidhu', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31510', 'Sargodha', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31511', 'Shadiwal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31512', 'Shahkot', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31513', 'Shahpur City', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31514', 'Shahpur Saddar', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31515', 'Shakargarh', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31516', 'Sharqpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31517', 'Shehr Sultan', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31518', 'Shekhupura', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31519', 'Shujaabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31520', 'Sialkot', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31521', 'Sillanwali', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31522', 'Sodhra', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31523', 'Sohawa', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31524', 'Sukheke', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31525', 'Talagang', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31526', 'Tandlianwala', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31527', 'Taunsa', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31528', 'Taxila', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31529', 'Tibba Sultanpur', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31530', 'Toba Tek Singh', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31531', 'Tulamba', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31532', 'Uch', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31533', 'Vihari', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31534', 'Wah', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31535', 'Warburton', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31536', 'Wazirabad', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31537', 'Yazman', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31538', 'Zafarwal', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31539', 'Zahir Pir', '2728', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31540', 'Adilpur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31541', 'Badah', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31542', 'Badin', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31543', 'Bagarji', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31544', 'Bakshshapur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31545', 'Bandhi', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31546', 'Berani', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31547', 'Bhan', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31548', 'Bhiria City', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31549', 'Bhiria Road', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31550', 'Bhit Shah', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31551', 'Bozdar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31552', 'Bulri', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31553', 'Chak', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31554', 'Chambar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31555', 'Chohar Jamali', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31556', 'Chor', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31557', 'Dadu', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31558', 'Daharki', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31559', 'Daro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31560', 'Darya Khan Mari', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31561', 'Daulatpur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31562', 'Daur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31563', 'Dhoronaro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31564', 'Digri', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31565', 'Diplo', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31566', 'Dokri', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31567', 'Faqirabad', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31568', 'Gambat', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31569', 'Garello', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31570', 'Garhi Khairo', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31571', 'Garhi Yasin', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31572', 'Gharo', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31573', 'Ghauspur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31574', 'Ghotki', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31575', 'Golarchi', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31576', 'Guddu', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31577', 'Gulistan-E-Jauhar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31578', 'Hala', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31579', 'Hingorja', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31580', 'Hyderabad', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31581', 'Islamkot', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31582', 'Jacobabad', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31583', 'Jam Nawaz Ali', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31584', 'Jam Sahib', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31585', 'Jati', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31586', 'Jhol', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31587', 'Jhudo', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31588', 'Johi', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31589', 'Kadhan', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31590', 'Kambar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31591', 'Kandhra', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31592', 'Kandiari', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31593', 'Kandiaro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31594', 'Karachi', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31595', 'Karampur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31596', 'Kario Ghanwar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31597', 'Karoondi', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31598', 'Kashmor', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31599', 'Kazi Ahmad', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31600', 'Keti Bandar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31601', 'Khadro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31602', 'Khairpur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31603', 'Khairpur Nathan Shah', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31604', 'Khandh Kot', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31605', 'Khanpur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31606', 'Khipro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31607', 'Khoski', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31608', 'Khuhra', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31609', 'Khyber', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31610', 'Kot Diji', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31611', 'Kot Ghulam Mohammad', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31612', 'Kotri', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31613', 'Kumb', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31614', 'Kunri', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31615', 'Lakhi', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31616', 'Larkana', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31617', 'Madeji', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31618', 'Matiari', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31619', 'Matli', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31620', 'Mehar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31621', 'Mehrabpur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31622', 'Miro Khan', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31623', 'Mirpur Bathoro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31624', 'Mirpur Khas', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31625', 'Mirpur Mathelo', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31626', 'Mirpur Sakro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31627', 'Mirwah', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31628', 'Mithi', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31629', 'Moro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31630', 'Nabisar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31631', 'Nasarpur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31632', 'Nasirabad', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31633', 'Naudero', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31634', 'Naukot', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31635', 'Naushahro Firoz', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31636', 'Nawabshah', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31637', 'Oderolal Station', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31638', 'Pacca Chang', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31639', 'Padidan', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31640', 'Pano Aqil', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31641', 'Perumal', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31642', 'Phulji', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31643', 'Pirjo Goth', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31644', 'Piryaloi', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31645', 'Pithoro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31646', 'Radhan', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31647', 'Rajo Khanani', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31648', 'Ranipur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31649', 'Ratodero', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31650', 'Rohri', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31651', 'Rustam', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31652', 'Saeedabad', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31653', 'Sakrand', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31654', 'Samaro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31655', 'Sanghar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31656', 'Sann', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31657', 'Sarhari', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31658', 'Sehwan', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31659', 'Setharja', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31660', 'Shah Dipalli', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31661', 'Shahdadkot', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31662', 'Shahdadpur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31663', 'Shahpur Chakar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31664', 'Shahpur Jahania', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31665', 'Shikarpur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31666', 'Sinjhoro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31667', 'Sita Road', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31668', 'Sobhodero', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31669', 'Sujawal', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31670', 'Sukkur', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31671', 'Talhar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31672', 'Tando Adam', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31673', 'Tando Allah Yar', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31674', 'Tando Bagho', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31675', 'Tando Ghulam Ali', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31676', 'Tando Jam', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31677', 'Tando Jan Mohammad', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31678', 'Tando Mitha Khan', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31679', 'Tando Muhammad Khan', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31680', 'Tangwani', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31681', 'Thano Bula Khan', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31682', 'Thari Mirwah', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31683', 'Tharushah', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31684', 'Thatta', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31685', 'Ther I', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31686', 'Ther I Mohabat', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31687', 'Thul', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31688', 'Ubauro', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31689', 'Umarkot', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31690', 'Warah', '2729', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31691', 'Ulimang', '2730', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31692', 'Airai', '2731', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31693', 'Ngaramash', '2732', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31694', 'Hatohobei', '2733', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31695', 'Kayangel', '2734', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31696', 'Koror', '2735', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31697', 'Meyungs', '2735', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31698', 'Melekeok', '2736', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31699', 'Ngermechau', '2737', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31700', 'Chol', '2738', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31701', 'Ollei', '2739', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31702', 'Oikul', '2740', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31703', 'Ngerkeai', '2741', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31704', 'Imeong', '2742', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31705', 'Ngetkip', '2743', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31706', 'Kloulklubed', '2744', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31707', 'Dongosaru', '2745', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31708', 'Ariha', '2746', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31709', 'Beit Jala', '2748', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31710', 'Dayr-al-Balah', '2749', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31711', 'al-Burayj', '2749', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31712', 'al-Insayrat', '2749', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31713', 'al-Maghazi', '2749', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31714', 'Ghazzah', '2750', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31715', 'Ghazzah', '2751', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31716', 'Janin', '2752', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31717', 'Qabatiyah', '2752', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31718', 'Nabulus', '2754', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31719', 'Qalqilyah', '2755', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31720', 'Rafah', '2756', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31721', 'Tall as-Sultan', '2756', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31722', 'Salfit', '2758', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31723', 'Tubas', '2759', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31724', 'Tulkarm', '2760', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31725', 'Dura', '2761', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31726', 'Halhul', '2761', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31727', 'Yattah', '2761', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31728', 'ad-Dahiriyah', '2761', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31729', 'al-Khalil', '2761', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31730', 'Ma\'ale Adummim', '2762', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31731', 'al-Quds', '2762', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31732', 'Alanje', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31733', 'Bajo Boquete', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31734', 'Boqueron', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31735', 'Bugaba', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31736', 'David', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31737', 'Dolega', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31738', 'Gualaca', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31739', 'Horconcitos', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31740', 'Las Lajas', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31741', 'Puerto Armuelles', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31742', 'Remedios', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31743', 'Rio Sereno', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31744', 'Tole', '2764', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31745', 'Aguadulce', '2765', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31746', 'Anton', '2765', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31747', 'La Pintada', '2765', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31748', 'Nata', '2765', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31749', 'Ola', '2765', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31750', 'Penonome', '2765', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31751', 'Colon', '2766', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31752', 'Miguel de la Borda', '2766', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31753', 'Nuevo Chagres', '2766', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31754', 'Portobelo', '2766', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31755', 'Santa Isabel', '2766', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31756', 'El Real de Santa Maria', '2767', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31757', 'La Palma', '2767', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31758', 'Cirilo Guainora', '2768', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31759', 'Rio Sabalo', '2768', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31760', 'Chitre', '2769', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31761', 'Las Minas', '2769', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31762', 'Los Pozos', '2769', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31763', 'Ocu', '2769', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31764', 'Parita', '2769', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31765', 'Pese', '2769', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31766', 'Santa Maria', '2769', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31767', 'Arraijan', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31768', 'Capira', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31769', 'Chame', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31770', 'Chepo', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31771', 'Chiman', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31772', 'La Chorrera', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31773', 'Panama', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31774', 'San Carlos', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31775', 'San Miguel', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31776', 'San Miguelito', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31777', 'Taboga', '2773', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31778', 'Atalaya', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31779', 'Calobre', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31780', 'Canazas', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31781', 'La Mesa', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31782', 'Las Palmas', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31783', 'Montijo', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31784', 'Rio de Jesus', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31785', 'San Francisco', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31786', 'Santa Fe', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31787', 'Santiago', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31788', 'Sona', '2774', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31789', 'Laiagam', '2778', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31790', 'Porgera', '2778', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31791', 'Wabag', '2778', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31792', 'Kerema', '2780', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31793', 'Finschhafen', '2781', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31794', 'Madang', '2781', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31795', 'Lorengau', '2782', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31796', 'Bulolo', '2784', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31797', 'Lae', '2784', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31798', 'Wau', '2784', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31799', 'Kokoda', '2788', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31800', 'Popondetta', '2788', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31801', 'Vanimo', '2789', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31802', 'Kundiawa', '2790', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31803', 'Bella Vista', '2796', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31804', 'Capitan Bado', '2796', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31805', 'Pedro Juan Caballero', '2796', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31806', 'Asuncion', '2797', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31807', 'Doctor Pedro P. Pena', '2798', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31808', 'Filadelfia', '2798', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31809', 'Marechal Estigarribia', '2798', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31810', 'Menno', '2798', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31811', 'Neuland', '2798', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31812', 'Caaguazu', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31813', 'Carayao', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31814', 'Coronel Oviedo', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31815', 'Doctor Cecilio Baez', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31816', 'Doctor Eulogio Estigarribia', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31817', 'Doctor Juan Manuel Frutos', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31818', 'Jose Ocampos', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31819', 'La Pastoria', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31820', 'Marechal Francisco Solano Lope', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31821', 'Mbutuy', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31822', 'Nueva Londres', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31823', 'Raul Arsenio Oviedo', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31824', 'Repatriacion', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31825', 'San Joaquin', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31826', 'San Jose de los Arroyos', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31827', 'Simon Bolivar', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31828', 'Tres Corrales', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31829', 'Tres de Febrero', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31830', 'Vaqueria', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31831', 'Yhu', '2799', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31832', 'Abai', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31833', 'Buena Vista', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31834', 'Caazapa', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31835', 'Doctor Moises Bertoni', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31836', 'General Higinio Morinigo', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31837', 'Maciel', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31838', 'San Juan Nepomuceno', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31839', 'Tavai', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31840', 'Yegros', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31841', 'Yuty', '2800', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31842', 'Corpus Christi', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31843', 'Curuguaty', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31844', 'General Francisco Alvarez', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31845', 'Itanara', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31846', 'Katuete', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31847', 'La Paloma', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31848', 'Nueva Esperanza', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31849', 'Salto del Guaira', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31850', 'Ygatimi', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31851', 'Ypehu', '2801', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31852', 'Aregua', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31853', 'Capiata', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31854', 'Fernando de la Mora', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31855', 'Guarambare', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31856', 'Ita', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31857', 'Itaugua', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31858', 'Juan Augusto Saldivar', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31859', 'Lambare', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31860', 'Limpio', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31861', 'Luque', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31862', 'Nemby', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31863', 'Nueva Italia', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31864', 'San Antonio', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31865', 'San Lorenzo', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31866', 'Villa Elisa', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31867', 'Villeta', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31868', 'Ypacarai', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31869', 'Ypane', '2802', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31870', 'Belen', '2803', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31871', 'Concepcion', '2803', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31872', 'Horqueta', '2803', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31873', 'Loreto', '2803', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31874', 'San Carlos', '2803', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31875', 'San Lazaro', '2803', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31876', 'Altos', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31877', 'Arroyos y Esteros', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31878', 'Atyra', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31879', 'Caacupe', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31880', 'Caraguatay', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31881', 'Emboscada', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31882', 'Eusebio Ayala', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31883', 'Isla Pucu', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31884', 'Itacurubi de la Cordillera', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31885', 'Juan de Mena', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31886', 'Loma Grande', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31887', 'Mbocayty del Yhaguy', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31888', 'Nueva Colombia', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31889', 'Piribebuy', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31890', 'Primero de Marzo', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31891', 'San Bernardino', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31892', 'San Jose Obrero', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31893', 'Santa Elena', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31894', 'Tobati', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31895', 'Valenzuela', '2804', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31896', 'Borja', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31897', 'Capitan Mauricio Jose Troche', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31898', 'Coronel Martinez', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31899', 'Doctor Botrell', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31900', 'Felix Perez Cardozo', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31901', 'General Eugenio Alejandrino Ga', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31902', 'Independencia', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31903', 'Itape', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31904', 'Iturbe', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31905', 'Jose Fasardi', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31906', 'Mbocayaty', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31907', 'Natalicio Talavera', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31908', 'Numi', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31909', 'Paso Yobai', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31910', 'San Salvador', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31911', 'Villarrica', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31912', 'Yataity', '2805', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31913', 'Alto Vera', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31914', 'Bella Vista', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31915', 'Cambyreta', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31916', 'Capitan Meza', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31917', 'Capitan Miranda', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31918', 'Carlos Antonio Lopez', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31919', 'Carmen del Parana', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31920', 'Coronel Bogado', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31921', 'Edelira', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31922', 'Encarnacion', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31923', 'Fram', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31924', 'General Artigas', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31925', 'General Delgado', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31926', 'Hohenau', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31927', 'Itapua Poty', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31928', 'Jesus', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31929', 'La Paz', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31930', 'Leandro Oviedo', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31931', 'Mayor Otano', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31932', 'Natalio', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31933', 'Nueva Alborada', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31934', 'Obligado', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31935', 'Pirapo', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31936', 'San Cosme y Damian', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31937', 'San Juan del Parana', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31938', 'San Pedro del Parana', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31939', 'San Rafael del Parana', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31940', 'Tomas Romero Pereira', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31941', 'Trinidad', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31942', 'Yatytay', '2806', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31943', 'Ayolas', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31944', 'San Ignacio', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31945', 'San Juan Bautista', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31946', 'San Miguel', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31947', 'San Patricio', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31948', 'Santa Maria', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31949', 'Santa Rosa', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31950', 'Santiago', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31951', 'Villa Florida', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31952', 'Yabebyry', '2807', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31953', 'Alberdi', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31954', 'Cerrito', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31955', 'Desmochados', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31956', 'General Jose Eduvigis Diaz', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31957', 'Guazu Cua', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31958', 'Humaita', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31959', 'Isla Umbu', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31960', 'Laureles', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31961', 'Mayor Jose Dejesus Martinez', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31962', 'Paso de Patria', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31963', 'Pilar', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31964', 'San Juan Bautista de Neembucu', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31965', 'Tacuaras', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31966', 'Villa Franca', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31967', 'Villa Oliva', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31968', 'Villalbin', '2808', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31969', 'Acahay', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31970', 'Caapucu', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31971', 'Carapegua', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31972', 'Escobar', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31973', 'General Bernardino Caballero', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31974', 'La Colmena', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31975', 'Mbuyapey', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31976', 'Paraguari', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31977', 'Pirayu', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31978', 'Quiindy', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31979', 'Quyquyho', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31980', 'San Roque Gonzalez de Santa Cr', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31981', 'Sapucai', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31982', 'Tebicuarymi', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31983', 'Yaguaron', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31984', 'Ybycui', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31985', 'Ybytimi', '2809', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31986', 'Bagua Grande', '2812', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31987', 'Cajaruro', '2812', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31988', 'Chachapoyas', '2812', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31989', 'Jazan', '2812', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31990', 'La Peca', '2812', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31991', 'Ancash', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31992', 'Caraz', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31993', 'Carhuaz', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31994', 'Casma', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31995', 'Chimbote', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31996', 'Choishco', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31997', 'Huallanca', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31998', 'Huaraz', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('31999', 'Huari', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32000', 'Huarmey', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32001', 'Pomabamba', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32002', 'Santa', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32003', 'Yungay', '2813', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32004', 'Abancay', '2814', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32005', 'Andahuaylas', '2814', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32006', 'San Jeronimo', '2814', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32007', 'Talavera', '2814', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32008', 'Acari', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32009', 'Arequipa', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32010', 'Camana', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32011', 'Chivay', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32012', 'Cocachacra', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32013', 'Dean Valdivia', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32014', 'Lluta', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32015', 'Mollendo', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32016', 'Nicolas de Pierola', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32017', 'Orcopampa', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32018', 'Punta de Bombon', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32019', 'Rio Grande', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32020', 'Yura', '2815', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32021', 'Ayacucho', '2816', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32022', 'Ayna', '2816', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32023', 'Coracora', '2816', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32024', 'Huanta', '2816', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32025', 'Puquio', '2816', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32026', 'San Miguel', '2816', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32027', 'Santa Rosa', '2816', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32028', 'Silvia', '2816', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32029', 'Tambo', '2816', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32030', 'Bambamarca', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32031', 'Bellavista', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32032', 'Cajabamba', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32033', 'Cajamarca', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32034', 'Celendin', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32035', 'Chota', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32036', 'Cutervo', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32037', 'Jaen', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32038', 'Pedro Galvez', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32039', 'Pucara', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32040', 'San Ignacio', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32041', 'Santa Cruz', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32042', 'Yonan', '2817', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32043', 'Anta', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32044', 'Calca', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32045', 'Cusco', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32046', 'Espinar', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32047', 'Oropesa', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32048', 'Quillabamba', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32049', 'Santa Ana', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32050', 'Santo Tomas', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32051', 'Sicuani', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32052', 'Urcos', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32053', 'Urubamba', '2818', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32054', 'Huancavelica', '2819', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32055', 'Lircay', '2819', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32056', 'Pampas', '2819', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32057', 'Ambos', '2820', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32058', 'Huanuco', '2820', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32059', 'Jose Crespo y Castillo', '2820', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32060', 'La Union', '2820', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32061', 'Llata', '2820', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32062', 'Rupa-Rupa', '2820', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32063', 'San Miguel de Cauri', '2820', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32064', 'Tingo Maria', '2820', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32065', 'Chincha Alta', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32066', 'Ica', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32067', 'Los Aquijes', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32068', 'Marcona', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32069', 'Nazca', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32070', 'Pachacutec', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32071', 'Palpa', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32072', 'Pisco', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32073', 'Salas', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32074', 'San Andres', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32075', 'San Clemente', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32076', 'San Juan Bautista', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32077', 'Santiago', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32078', 'Subtanjalla', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32079', 'Tupac Amaru Inca', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32080', 'Vista Alegre', '2821', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32081', 'Acobamba', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32082', 'Acolla', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32083', 'Carhuamayo', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32084', 'Chanchamayo', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32085', 'Chupaca', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32086', 'Concepcion', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32087', 'Huancayo', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32088', 'Huasahuasi', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32089', 'Huayucachi', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32090', 'Jauja', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32091', 'Junin', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32092', 'La Oroya', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32093', 'Mazamari', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32094', 'Morococha', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32095', 'Orcotuna', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32096', 'Pangoa', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32097', 'Perene', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32098', 'Pichanaqui', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32099', 'Pilcomayo', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32100', 'San Agustin', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32101', 'San Jeronimo de Tunan', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32102', 'San Pedro de Cajas', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32103', 'San Ramon', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32104', 'Santa Rosa de Saco', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32105', 'Satipo', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32106', 'Sicaya', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32107', 'Tarma', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32108', 'Yauli', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32109', 'Yauya', '2822', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32110', 'Chiclayo', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32111', 'Chongoyape', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32112', 'Eten', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32113', 'Ferrenafe', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32114', 'Illimo', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32115', 'Jayanca', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32116', 'Lagunas', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32117', 'Lambayeque', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32118', 'Manuel Mesones Muro', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32119', 'Mochumi', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32120', 'Monsefu', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32121', 'Morrope', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32122', 'Motupe', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32123', 'Olmos', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32124', 'Oyotun', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32125', 'Picsi', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32126', 'Pimentel', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32127', 'Pueblo Nuevo', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32128', 'Reque', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32129', 'San Jose', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32130', 'Sana', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32131', 'Santa Rosa', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32132', 'Tucume', '2824', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32133', 'Barranca', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32134', 'Contamana', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32135', 'Fernando Lores', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32136', 'Iquitos', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32137', 'Lagunas', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32138', 'Nauta', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32139', 'Paucarpata', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32140', 'Ramon Castilla', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32141', 'Requena', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32142', 'Saquena', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32143', 'Vargas Guerra', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32144', 'Yurimaguas', '2826', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32145', 'Ilo', '2828', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32146', 'Moquegua', '2828', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32147', 'Pacocha', '2828', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32148', 'Torata', '2828', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32149', 'Cerro de Pasco', '2829', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32150', 'Chaupimarca', '2829', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32151', 'Oxapampa', '2829', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32152', 'Paucartambo', '2829', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32153', 'Simon Bolivar', '2829', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32154', 'Tinyahuarco', '2829', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32155', 'Villa Rica', '2829', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32156', 'Yanacancha', '2829', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32157', 'Yanahuanca', '2829', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32158', 'Ayabaca', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32159', 'Bernal', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32160', 'Buenos Aires', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32161', 'Catacaos', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32162', 'Chulucanas', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32163', 'Colan', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32164', 'Cura Mori', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32165', 'El Alto', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32166', 'Huancabamba', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32167', 'Ignacio Escudero', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32168', 'La Arena', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32169', 'La Brea', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32170', 'La Huaca', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32171', 'La Matanza', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32172', 'La Union', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32173', 'Las Lomas', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32174', 'Los Organos', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32175', 'Mancora', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32176', 'Marcavelica', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32177', 'Morropon', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32178', 'Paita', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32179', 'Piura', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32180', 'Querecotillo', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32181', 'Salitral', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32182', 'San Juan de Bigote', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32183', 'Sechura', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32184', 'Sullana', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32185', 'Talara', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32186', 'Tamarindo', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32187', 'Tambo Grande', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32188', 'Vice', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32189', 'Vichayal', '2830', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32190', 'Ayaviri', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32191', 'Azangaro', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32192', 'Desaguadero', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32193', 'Huancane', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32194', 'Ilave', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32195', 'Juli', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32196', 'Juliaca', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32197', 'Lampa', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32198', 'Macusani', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32199', 'Nunoa', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32200', 'Puno', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32201', 'Putina', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32202', 'Santa Lucia', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32203', 'Yanahuara', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32204', 'Yunguyo', '2831', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32205', 'Ilabaya', '2833', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32206', 'Tacna', '2833', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32207', 'Tarata', '2833', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32208', 'Aguas Verdes', '2834', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32209', 'Corrales', '2834', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32210', 'La Cruz', '2834', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32211', 'Papayal', '2834', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32212', 'San Jacinto', '2834', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32213', 'Tumbes', '2834', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32214', 'Zarumilla', '2834', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32215', 'Zorritos', '2834', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32216', 'Campoverde', '2835', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32217', 'Padre Abad', '2835', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32218', 'Pucallpa', '2835', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32219', 'Raymondi', '2835', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32220', 'San Juan', '2836', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32221', 'Albay', '2837', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32222', 'Daet', '2837', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32223', 'Iriga', '2837', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32224', 'Legaspi', '2837', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32225', 'Naga', '2837', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32226', 'Sorsogon', '2837', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32227', 'Bulacan', '2838', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32228', 'Marilao', '2838', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32229', 'Cagayan de Oro', '2839', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32230', 'Santiago', '2839', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32231', 'Solano', '2839', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32232', 'Tuguegarao', '2839', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32233', 'Bislig', '2840', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32234', 'Butuan', '2840', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32235', 'Surigao', '2840', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32236', 'Baguio', '2844', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32237', 'Bangued', '2844', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32238', 'Davao', '2845', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32239', 'Dagupan', '2848', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32240', 'Laoag', '2848', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32241', 'Manaoag', '2848', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32242', 'Mangaldan', '2848', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32243', 'San Fernando', '2848', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32244', 'Urdaneta', '2848', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32245', 'Vigan', '2848', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32246', 'Binan', '2849', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32247', 'Laguna', '2849', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32248', 'Pangil', '2849', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32249', 'San Pedro', '2849', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32250', 'Manila', '2850', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32251', 'Marikina', '2850', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32252', 'Mactan', '2851', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32253', 'Fabryczna', '2861', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32254', 'Bielawa', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32255', 'Bogatynia', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32256', 'Boguszow-Gorce', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32257', 'Boleslawiec', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32258', 'Brzeg Dolny', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32259', 'Bystrzyca Klodzka', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32260', 'Chojnow', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32261', 'Dzierzoniow', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32262', 'Glogow', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32263', 'Gora', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32264', 'Jawor', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32265', 'Jelcz-Laskowice', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32266', 'Jelenia Gora', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32267', 'Kamienna Gora', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32268', 'Klodzko', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32269', 'Kowary', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32270', 'Kudowa-Zdroj', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32271', 'Legnica', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32272', 'Luban', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32273', 'Lubin', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32274', 'Lwowek Slaski', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32275', 'Milicz', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32276', 'Nowa Ruda', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32277', 'Olawa', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32278', 'Olesnica', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32279', 'Piechowice', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32280', 'Pieszyce', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32281', 'Polkowice', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32282', 'Strzegom', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32283', 'Strzelin', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32284', 'Swidnica', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32285', 'Swiebodzice', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32286', 'Sycow', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32287', 'Trzebnica', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32288', 'Walbrzych', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32289', 'Wolow', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32290', 'Wroclaw', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32291', 'Zabkowice Slaskie', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32292', 'Zgorzelec', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32293', 'Ziebice', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32294', 'Zlotoryja', '2862', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32295', 'Hopowo', '2864', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32296', 'Chwaszczyno', '2865', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32297', 'Smigiel', '2866', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32298', 'Jerzmanowice', '2867', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32299', 'Zabierzow', '2867', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32300', 'Aleksandrow Kujawski', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32301', 'Brodnica', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32302', 'Bydgoszcz', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32303', 'Chelmno', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32304', 'Chelmza', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32305', 'Ciechocinek', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32306', 'Golub-Dobrzyn', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32307', 'Grudziadz', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32308', 'Inowroclaw', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32309', 'Janikowo', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32310', 'Koronowo', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32311', 'Kruszwica', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32312', 'Lipno', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32313', 'Mogilno', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32314', 'Naklo nad Notecia', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32315', 'Radziejow', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32316', 'Rypin', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32317', 'Sepolno Krajenskie', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32318', 'Solec Kujawski', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32319', 'Swiecie', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32320', 'Szubin', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32321', 'Torun', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32322', 'Tuchola', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32323', 'Wabrzezno', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32324', 'Wloclawek', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32325', 'Znin', '2868', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32326', 'Aleksandrow Lodzki', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32327', 'Belchatow', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32328', 'Bratoszewice', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32329', 'Brzeziny', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32330', 'Glowno', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32331', 'Koluszki', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32332', 'Konstantynow Lodzki', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32333', 'Kutno', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32334', 'Lask', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32335', 'Leczyca', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32336', 'Lodz', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32337', 'Lowicz', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32338', 'Opoczno', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32339', 'Ozorkow', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32340', 'Pabianice', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32341', 'Piotrkow Trybunalski', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32342', 'Radomsko', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32343', 'Rawa Mazowiecka', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32344', 'Sieradz', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32345', 'Skierniewice', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32346', 'Tomaszow Mazowiecki', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32347', 'Tuszyn', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32348', 'Wielun', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32349', 'Zdunska Wola', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32350', 'Zgierz', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32351', 'Zychlin', '2869', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32352', 'Biala Podlaska', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32353', 'Bilgoraj', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32354', 'Chelm', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32355', 'Deblin', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32356', 'Hrubieszow', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32357', 'Janow Lubelski', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32358', 'Krasnik', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32359', 'Krasnystaw', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32360', 'Leczna', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32361', 'Lubartow', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32362', 'Lublin', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32363', 'Lukow', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32364', 'Miedzyrzec Podlaski', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32365', 'Opole Lubelskie', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32366', 'Parczew', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32367', 'Poniatowa', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32368', 'Pulawy', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32369', 'Radzyn Podlaski', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32370', 'Ryki', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32371', 'Swidnik', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32372', 'Tomaszow Lubelski', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32373', 'Wlodawa', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32374', 'Zamosc', '2870', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32375', 'Drezdenko', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32376', 'Gorzow Wielkopolski', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32377', 'Gubin', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32378', 'Kostrzyn', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32379', 'Kozuchow', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32380', 'Krosno Odrzanskie', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32381', 'Lubsko', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32382', 'Miedzyrzecz', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32383', 'Nowa Sol', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32384', 'Skwierzyna', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32385', 'Slubice', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32386', 'Strzelce Krajenskie', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32387', 'Sulechow', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32388', 'Sulecin', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32389', 'Swiebodzin', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32390', 'Szprotawa', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32391', 'Wschowa', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32392', 'Zagan', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32393', 'Zary', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32394', 'Zielona Gora', '2871', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32395', 'Malomice', '2872', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32396', 'Andrychow', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32397', 'Bochnia', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32398', 'Brzesko', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32399', 'Brzeszcze', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32400', 'Bukowno', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32401', 'Chelmek', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32402', 'Chrzanow', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32403', 'Dabrowa Tarnowska', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32404', 'Gorlice', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32405', 'Kety', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32406', 'Krakow', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32407', 'Krynica', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32408', 'Krzeszowice', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32409', 'Libiaz', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32410', 'Limanowa', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32411', 'Miechow', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32412', 'Myslenice', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32413', 'Nowy Sacz', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32414', 'Nowy Targ', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32415', 'Olkusz', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32416', 'Oswiecim', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32417', 'Poronin', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32418', 'Rabka', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32419', 'Skawina', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32420', 'Stary Sacz', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32421', 'Sucha Beskidzka', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32422', 'Tarnow', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32423', 'Trzebinia', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32424', 'Wadowice', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32425', 'Wieliczka', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32426', 'Wolbrom', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32427', 'Zakopane', '2873', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32428', 'Blonie', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32429', 'Brwinow', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32430', 'Ciechanow', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32431', 'Garwolin', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32432', 'Gora Kalwaria', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32433', 'Gostynin', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32434', 'Grodzisk Mazowiecki', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32435', 'Grojec', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32436', 'Jozefow', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32437', 'Karczew', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32438', 'Kobylka', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32439', 'Konstancin-Jeziorna', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32440', 'Kozienice', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32441', 'Legionowo', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32442', 'Lomianki', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32443', 'Makow Mazowiecki', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32444', 'Marki', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32445', 'Milanowek', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32446', 'Minsk Mazowiecki', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32447', 'Mlawa', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32448', 'Nowy Dwor Mazowiecki', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32449', 'Ostroleka', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32450', 'Ostrow Mazowiecka', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32451', 'Otwock', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32452', 'Piaseczno', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32453', 'Piastow', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32454', 'Pionki', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32455', 'Plock', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32456', 'Plonsk', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32457', 'Pruszkow', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32458', 'Przasnysz', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32459', 'Pultusk', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32460', 'Radom', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32461', 'Siedlce', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32462', 'Sierpc', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32463', 'Sochaczew', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32464', 'Sokolow Podlaski', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32465', 'Sulejowek', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32466', 'Szydlowiec', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32467', 'Warka', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32468', 'Warszawa', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32469', 'Wegrow', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32470', 'Wesola', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32471', 'Wolomin', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32472', 'Wyszkow', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32473', 'Zabki', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32474', 'Zielonka', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32475', 'Zyrardow', '2874', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32476', 'Dlugoteka', '2875', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32477', 'Brzeg', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32478', 'Glubczyce', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32479', 'Glucholazy', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32480', 'Grodkow', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32481', 'Kedzierzyn-Kozle', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32482', 'Kluczbork', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32483', 'Krapkowice', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32484', 'Namyslow', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32485', 'Niemodlin', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32486', 'Nysa', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32487', 'Olesno', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32488', 'Opole', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32489', 'Ozimek', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32490', 'Prudnik', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32491', 'Strzelce Opolskie', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32492', 'Zawadzkie', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32493', 'Zdzieszowice', '2876', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32494', 'Cmielow', '2877', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32495', 'Debica', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32496', 'Jaroslaw', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32497', 'Jaslo', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32498', 'Krosno', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32499', 'Lancut', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32500', 'Lezajsk', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32501', 'Lubaczow', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32502', 'Mielec', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32503', 'Nisko', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32504', 'Nowa Deba', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32505', 'Przemysl', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32506', 'Przeworsk', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32507', 'Ropczyce', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32508', 'Rzeszow', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32509', 'Sanok', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32510', 'Stalowa Wola', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32511', 'Tarnobrzeg', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32512', 'Ustrzyki Dolne', '2878', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32513', 'Augustow', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32514', 'Bialystok', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32515', 'Bielsk Podlaski', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32516', 'Czarna Bialostocka', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32517', 'Grajewo', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32518', 'Hajnowka', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32519', 'Kolno', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32520', 'Lapy', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32521', 'Lomza', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32522', 'Monki', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32523', 'Siemiatycze', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32524', 'Sokolka', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32525', 'Suwalki', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32526', 'Wysokie Mazowieckie', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32527', 'Zambrow', '2879', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32528', 'Bogumilowice', '2880', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32529', 'Bytow', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32530', 'Chojnice', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32531', 'Czersk', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32532', 'Czluchow', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32533', 'Gdansk', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32534', 'Gdynia', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32535', 'Kartuzy', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32536', 'Koscierzyna', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32537', 'Kwidzyn', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32538', 'Lebork', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32539', 'Malbork', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32540', 'Miastko', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32541', 'Nowy Dwor Gdanski', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32542', 'Pruszcz Gdanski', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32543', 'Puck', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32544', 'Reda', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32545', 'Rumia', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32546', 'Slupsk', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32547', 'Sopot', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32548', 'Starogard Gdanski', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32549', 'Sztum', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32550', 'Tczew', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32551', 'Ustka', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32552', 'Wejherowo', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32553', 'Wladyslawowo', '2881', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32554', 'Komorniki', '2882', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32555', 'Steszew', '2882', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32556', 'Raszyn', '2883', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32557', 'Rymanowska', '2884', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32558', 'Glogow Malopolski', '2885', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32559', 'Bedzin', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32560', 'Bielsko-Biala', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32561', 'Bierun', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32562', 'Blachowania', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32563', 'Bytom', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32564', 'Chorzow', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32565', 'Cieszyn', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32566', 'Czechowice-Dziedzice', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32567', 'Czeladz', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32568', 'Czerwionka-Leszczyny', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32569', 'Czestochowa', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32570', 'Dabrowa Gornicza', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32571', 'Gliwice', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32572', 'Jastrzebie-Zdroj', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32573', 'Jaworzno', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32574', 'Kalety', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32575', 'Katowice', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32576', 'Klobuck', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32577', 'Knurow', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32578', 'Laziska Gorne', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32579', 'Ledziny', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32580', 'Lubliniec', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32581', 'Mikolow', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32582', 'Myslowice', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32583', 'Myszkow', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32584', 'Orzesze', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32585', 'Piekary Slaskie', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32586', 'Poreba', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32587', 'Pszczyna', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32588', 'Pszow', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32589', 'Pyskowice', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32590', 'Raciborz', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32591', 'Radlin', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32592', 'Radzionkow', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32593', 'Ruda Slaska', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32594', 'Rybnik', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32595', 'Rydultowy', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32596', 'Siemianowice Slaskie', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32597', 'Skoczow', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32598', 'Sosnowiec', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32599', 'Swietochlowice', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32600', 'Tarnowskie Gory', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32601', 'Tychy', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32602', 'Ustron', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32603', 'Wisla', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32604', 'Wodzislaw Slaski', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32605', 'Wojkowice', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32606', 'Zabrze', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32607', 'Zawiercie', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32608', 'Zory', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32609', 'Zywiec', '2886', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32610', 'Busko-Zdroj', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32611', 'Jedrzejow', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32612', 'Kielce', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32613', 'Konskie', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32614', 'Ostrowiec Swietokrzyski', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32615', 'Pinczow', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32616', 'Polaniec', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32617', 'Sandomierz', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32618', 'Skarzysko-Kamienna', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32619', 'Starachowice', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32620', 'Staszow', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32621', 'Suchedniow', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32622', 'Wloszczowa', '2888', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32623', 'Bartoszyce', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32624', 'Biskupiec', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32625', 'Braniewo', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32626', 'Dobre Miasto', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32627', 'Dzialdowo', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32628', 'Elblag', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32629', 'Elk', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32630', 'Gizycko', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32631', 'Goldap', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32632', 'Ilawa', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32633', 'Ketrzyn', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32634', 'Lidzbark Warminski', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32635', 'Lubawa', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32636', 'Morag', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32637', 'Mragowo', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32638', 'Nidzica', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32639', 'Nowe Miasto Lubawskie', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32640', 'Olecko', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32641', 'Olsztyn', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32642', 'Orneta', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32643', 'Ostroda', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32644', 'Paslek', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32645', 'Pisz', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32646', 'Szczytno', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32647', 'Wegorzewo', '2889', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32648', 'Nadarzyn', '2890', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32649', 'Szemud', '2890', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32650', 'Warsaw', '2890', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32651', 'Goscicino', '2891', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32652', 'Chodziez', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32653', 'Czarnkow', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32654', 'Gniezno', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32655', 'Gostyn', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32656', 'Grodzisk Wielkopolski', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32657', 'Jarocin', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32658', 'Kalisz', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32659', 'Kepno', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32660', 'Kolo', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32661', 'Konin', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32662', 'Koscian', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32663', 'Krotoszyn', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32664', 'Leszno', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32665', 'Lubon', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32666', 'Miedzychod', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32667', 'Mosina', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32668', 'Murowana Goslina', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32669', 'Nowy Tomysl', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32670', 'Oborniki', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32671', 'Opalenica', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32672', 'Ostrow Wielkopolski', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32673', 'Ostrzeszow', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32674', 'Pila', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32675', 'Pleszew', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32676', 'Poznan', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32677', 'Rawicz', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32678', 'Rogozno', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32679', 'Slupca', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32680', 'Srem', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32681', 'Sroda Wielkopolska', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32682', 'Swarzedz', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32683', 'Szamotuly', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32684', 'Trzcianka', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32685', 'Tuliszkow', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32686', 'Turek', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32687', 'Wagrowiec', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32688', 'Wolsztyn', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32689', 'Wronki', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32690', 'Wrzesnia', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32691', 'Zlotow', '2892', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32692', 'Borowa', '2893', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32693', 'Barlinek', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32694', 'Bialogard', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32695', 'Choszczno', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32696', 'Darlowo', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32697', 'Debno', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32698', 'Drawsko Pomorskie', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32699', 'Goleniow', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32700', 'Gryfice', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32701', 'Gryfino', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32702', 'Kamien Pomorski', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32703', 'Kolobrzeg', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32704', 'Koszalin', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32705', 'Lobez', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32706', 'Mysliborz', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32707', 'Nowogard', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32708', 'Polczyn-Zdroj', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32709', 'Police', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32710', 'Pyrzyce', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32711', 'Slawno', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32712', 'Stargard Szczecinski', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32713', 'Swidwin', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32714', 'Swinoujscie', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32715', 'Szczecin', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32716', 'Szczecinek', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32717', 'Trzebiatow', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32718', 'Walcz', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32719', 'Zlocieniec', '2894', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32720', 'Zukowskie', '2895', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32721', 'Tramagal', '2896', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32722', 'Angra', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32723', 'Arrifes', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32724', 'Faja de Baixo', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32725', 'Horta', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32726', 'Lagoa', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32727', 'Ponta Delgada', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32728', 'Praia da Vitoria', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32729', 'Rabo de Peixe', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32730', 'Ribeira Grande', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32731', 'Rosto do Cao', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32732', 'Vila Franca do Campo', '2897', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32733', 'Alcacer do Sal', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32734', 'Aljustrel', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32735', 'Beja', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32736', 'Borba', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32737', 'Caia e Sao Pedro', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32738', 'Campo Maior', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32739', 'Castro Verde', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32740', 'Cercal', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32741', 'Elvas', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32742', 'Estremoz', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32743', 'Evora', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32744', 'Ferreira do Alentejo', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32745', 'Grandola', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32746', 'Montemor-o-Novo', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32747', 'Moura', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32748', 'Odemira', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32749', 'Ponte de Sor', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32750', 'Portalegre', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32751', 'Redondo', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32752', 'Reguengos de Monsaraz', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32753', 'Santiago do Cacem', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32754', 'Santo Andre', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32755', 'Sao Teotonio', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32756', 'Serpa', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32757', 'Sines', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32758', 'Vendas Novas', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32759', 'Vila Nova de Milfontes', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32760', 'Vila Vicosa', '2898', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32761', 'Albufeira', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32762', 'Aljezur', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32763', 'Almancil', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32764', 'Alvor', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32765', 'Armacao de Pera', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32766', 'Boliqueime', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32767', 'Castro Marim', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32768', 'Estombar', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32769', 'Faro', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32770', 'Ferreiras', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32771', 'Guia', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32772', 'Lagoa', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32773', 'Lagos', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32774', 'Loule', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32775', 'Luz', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32776', 'Moncarapacho', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32777', 'Monchique', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32778', 'Monte Gordo', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32779', 'Montenegro', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32780', 'Olhao', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32781', 'Portimao', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32782', 'Quarteira', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32783', 'Santa Barbara de Nexe', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32784', 'Sao Bartolomeu de Messines', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32785', 'Sao Bras de Alportel', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32786', 'Silves', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32787', 'Tavira', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32788', 'Vila Real de Santo Antonio', '2899', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32789', 'Fafe', '2900', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32790', 'Forjaes', '2900', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32791', 'Vianna do Castello', '2900', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32792', 'Abraveses', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32793', 'Aguada de Cima', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32794', 'Agueda', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32795', 'Albergaria-A-Velha', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32796', 'Alcains', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32797', 'Alhadas', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32798', 'Amor', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32799', 'Aradas', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32800', 'Arazede', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32801', 'Arcos', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32802', 'Arganil', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32803', 'Avanca', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32804', 'Aveiro', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32805', 'Batalha', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32806', 'Beduido', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32807', 'Branca', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32808', 'Buarcos', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32809', 'Campo', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32810', 'Cantanhede', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32811', 'Caranguejeira', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32812', 'Castanheira de Pera', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32813', 'Castelo Branco', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32814', 'Castro Daire', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32815', 'Coimbra', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32816', 'Condeixa-A-Nova', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32817', 'Cortegaca', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32818', 'Covilha', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32819', 'Eixo', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32820', 'Esmoriz', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32821', 'Figueira da Foz', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32822', 'Fundao', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32823', 'Gafanha da Encarnacao', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32824', 'Gafanha da Nazare', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32825', 'Guarda', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32826', 'Ilhavo', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32827', 'Lavos', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32828', 'Leiria', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32829', 'Lorvao', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32830', 'Lourical', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32831', 'Lousa', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32832', 'Maceira', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32833', 'Mangualde', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32834', 'Marinha Grande', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32835', 'Mealhada', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32836', 'Mira', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32837', 'Mira de Aire', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32838', 'Miranda do Corvo', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32839', 'Monte Redondo', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32840', 'Nelas', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32841', 'Oia', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32842', 'Oliveira do Bairro', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32843', 'Oliveira do Hospital', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32844', 'Oliveirinha', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32845', 'Ovar', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32846', 'Pampilhosa', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32847', 'Pardilho', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32848', 'Poiares', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32849', 'Pombal', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32850', 'Porto de Mos', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32851', 'Proenca-A-Nova', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32852', 'Rio de Loba', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32853', 'Salreu', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32854', 'Sangalhos', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32855', 'Santa Catarina da Serra', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32856', 'Sao Joao', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32857', 'Sao Pedro do Sul', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32858', 'Satao', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32859', 'Seia', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32860', 'Serta', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32861', 'Soure', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32862', 'Souto da Carpalhosa', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32863', 'Tavarede', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32864', 'Teixoso', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32865', 'Tondela', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32866', 'Tortosendo', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32867', 'Vagos', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32868', 'Valega', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32869', 'Valongo do Vouga', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32870', 'Vieira de Leiria', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32871', 'Viseu', '2901', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32872', 'Camacha', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32873', 'Camara de Lobos', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32874', 'Campanario', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32875', 'Canico', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32876', 'Funchal', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32877', 'Machico', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32878', 'Ponta do Sol', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32879', 'Porto Santo', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32880', 'Ribeira Brava', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32881', 'Santa Cruz', '2907', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32882', 'A Ver-o-Mar', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32883', 'Adaufe', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32884', 'Aguas Santas', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32885', 'Agucadoura', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32886', 'Alfena', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32887', 'Alpendurada e Matos', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32888', 'Amarante', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32889', 'Anta', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32890', 'Antas', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32891', 'Apulia', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32892', 'Arcozelo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32893', 'Areosa', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32894', 'Argoncilhe', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32895', 'Aroes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32896', 'Arrifana', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32897', 'Arvore', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32898', 'Aves', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32899', 'Avintes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32900', 'Baguim do Monte', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32901', 'Baltar', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32902', 'Barcelos', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32903', 'Barrosas', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32904', 'Bougado', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32905', 'Braga', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32906', 'Braganca', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32907', 'Brito', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32908', 'Caldas de Vizela', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32909', 'Caldelas', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32910', 'Calendario', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32911', 'Campo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32912', 'Candoso', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32913', 'Canedo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32914', 'Canelas', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32915', 'Canidelo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32916', 'Carvalhosa', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32917', 'Casteloes de Cepeda', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32918', 'Chaves', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32919', 'Coronado', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32920', 'Couto', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32921', 'Custoias', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32922', 'Darque', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32923', 'Ermesinde', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32924', 'Espinho', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32925', 'Fafe', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32926', 'Fanzeres', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32927', 'Feira', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32928', 'Ferreira', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32929', 'Ferreiros', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32930', 'Fiaes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32931', 'Figueiro', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32932', 'Foz do Sousa', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32933', 'Frazao', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32934', 'Freamunde', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32935', 'Galegos', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32936', 'Gandra', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32937', 'Gemunde', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32938', 'Godim', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32939', 'Gondomar', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32940', 'Grijo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32941', 'Gueifaes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32942', 'Guifoes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32943', 'Guimaraes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32944', 'Gulpilhares', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32945', 'Joane', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32946', 'Jovim', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32947', 'Lamego', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32948', 'Lavra', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32949', 'Leca da Palmeira', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32950', 'Leca do Bailio', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32951', 'Lobao', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32952', 'Lordelo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32953', 'Lourosa', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32954', 'Lustosa', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32955', 'Macedo de Cavaleiros', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32956', 'Macieira de Cambra', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32957', 'Madalena', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32958', 'Maia', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32959', 'Margaride', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32960', 'Marinhas', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32961', 'Matosinhos', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32962', 'Meadela', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32963', 'Meinedo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32964', 'Milheiros', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32965', 'Milheiros de Poiares', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32966', 'Mirandela', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32967', 'Mogadouro', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32968', 'Moreira', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32969', 'Moreira de Conegos', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32970', 'Mozelos', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32971', 'Negrelos', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32972', 'Nogueira', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32973', 'Nogueira da Regedoura', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32974', 'Olival', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32975', 'Oliveira', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32976', 'Oliveira de Azemeis', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32977', 'Oliveira do Douro', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32978', 'Pacos de Brandao', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32979', 'Pacos de Ferreira', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32980', 'Pedroso', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32981', 'Pedroucos', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32982', 'Penafiel', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32983', 'Perafita', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32984', 'Perozinho', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32985', 'Peso da Regua', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32986', 'Ponte', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32987', 'Porto', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32988', 'Povoa de Lanhoso', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32989', 'Povoa de Varzim', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32990', 'Real', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32991', 'Rebordosa', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32992', 'Recarei', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32993', 'Refojos de Basto', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32994', 'Ribeirao', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32995', 'Rio Meao', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32996', 'Rio Tinto', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32997', 'Ronfe', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32998', 'Sande', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('32999', 'Sandim', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33000', 'Santa Cruz do Bispo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33001', 'Santa Maria de Lamas', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33002', 'Santiago da Riba-Ul', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33003', 'Santo Tirso', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33004', 'Sao Felix da Marinha', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33005', 'Sao Joao da Madeira', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33006', 'Sao Joao de Ver', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33007', 'Sao Mamede de Infesta', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33008', 'Sao Pedro da Cova', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33009', 'Sao Pedro de Casteloes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33010', 'Sao Roque', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33011', 'Selho', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33012', 'Senhora da Hora', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33013', 'Seroa', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33014', 'Serzedelo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33015', 'Serzedo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33016', 'Silvalde', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33017', 'Sobrado', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33018', 'Sobreira', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33019', 'Souto', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33020', 'Teloes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33021', 'Urgezes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33022', 'Valadares', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33023', 'Valbom', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33024', 'Vale', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33025', 'Valongo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33026', 'Valpacos', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33027', 'Viana do Castelo', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33028', 'Vila Cha', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33029', 'Vila Frescainha', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33030', 'Vila Nova da Telha', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33031', 'Vila Nova de Famalicao', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33032', 'Vila Nova de Gaia', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33033', 'Vila Praia de Ancora', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33034', 'Vila Real', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33035', 'Vila Verde', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33036', 'Vila de Cucujaes', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33037', 'Vila de Prado', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33038', 'Vila do Conde', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33039', 'Vilar de Andorinho', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33040', 'Vilar do Paraiso', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33041', 'Vilarinho', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33042', 'Vilela', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33043', 'Vizela', '2908', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33044', 'Paivas', '2909', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33045', 'Arecibo', '2910', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33046', 'Barceloneta', '2910', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33047', 'Camuy', '2910', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33048', 'Dorado', '2910', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33049', 'Isabela', '2910', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33050', 'Manati', '2910', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33051', 'Vega Alta', '2910', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33052', 'Vega Baja', '2910', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33053', 'Bayamon', '2911', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33054', 'Catano', '2911', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33055', 'Guaynabo', '2911', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33056', 'Levittown', '2911', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33057', 'Valencia', '2911', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33058', 'Canovanas', '2912', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33059', 'Carolina', '2912', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33060', 'Trujillo Alto', '2912', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33061', 'Florida', '2913', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33062', 'Aibonito', '2914', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33063', 'Arroyo', '2914', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33064', 'Barranquitas', '2914', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33065', 'Cayey', '2914', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33066', 'Coamo', '2914', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33067', 'Corozal', '2914', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33068', 'Guayama', '2914', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33069', 'Juana Diaz', '2914', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33070', 'Aguas Buenas', '2915', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33071', 'Caguas', '2915', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33072', 'Culebra', '2915', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33073', 'Fajardo', '2915', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33074', 'Gurabo', '2915', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33075', 'Humacao', '2915', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33076', 'Juncos', '2915', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33077', 'Rio Grande', '2915', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33078', 'Vieques', '2915', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33079', 'Aguada', '2916', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33080', 'Aguadilla', '2916', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33081', 'Anasco', '2916', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33082', 'Cabo Rojo', '2916', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33083', 'Hormigueros', '2916', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33084', 'Mayaguez', '2916', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33085', 'San German', '2916', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33086', 'San Sebastian', '2916', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33087', 'Adjuntas', '2917', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33088', 'Guanica', '2917', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33089', 'Ponce', '2917', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33090', 'Utuado', '2917', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33091', 'Yauco', '2917', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33092', 'Salinas', '2918', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33093', 'Doha', '2920', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33094', 'Umm Bab', '2921', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33095', 'ad-Dawhah', '2923', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33096', 'al-Ghuwayriyah', '2924', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33097', 'Dukhan', '2925', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33098', 'al-Jumayliyah', '2925', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33099', 'al-Khawr', '2926', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33100', 'Musay\'id', '2927', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33101', 'al-Wakrah', '2927', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33102', 'al-Wukayr', '2927', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33103', 'ar-Rayyan', '2928', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33104', 'ash-Shahaniyah', '2928', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33105', 'ar-Ruways', '2929', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33106', 'Bras-Panon', '2930', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33107', 'Saint-Andre', '2930', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33108', 'Saint-Benoit', '2930', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33109', 'Sainte-Rose', '2930', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33110', 'Salazie', '2930', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33111', 'La Possession', '2931', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33112', 'Le Port', '2931', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33113', 'Saint-Denis', '2931', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33114', 'Sainte-Marie', '2931', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33115', 'Sainte-Suzanne', '2931', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33116', 'L\'Etang-Sale', '2932', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33117', 'Les Aviron', '2932', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33118', 'Les Trois-Bassins', '2932', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33119', 'Saint-Leu', '2932', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33120', 'Saint-Paul', '2932', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33121', 'Cilaos', '2933', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33122', 'Entre-Deux', '2933', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33123', 'Le Tampon', '2933', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33124', 'Petite-Ile', '2933', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33125', 'Saint-Joseph', '2933', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33126', 'Saint-Louis', '2933', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33127', 'Saint-Philippe', '2933', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33128', 'Saint-Pierre', '2933', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33129', 'Abrud', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33130', 'Aiud', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33131', 'Alba Iulia', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33132', 'Albac', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33133', 'Almasu Mare', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33134', 'Arieseni', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33135', 'Avram Iancu', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33136', 'Baia de Aries', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33137', 'Berghin', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33138', 'Bistra', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33139', 'Blaj', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33140', 'Blandiana', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33141', 'Bucium', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33142', 'Calnic', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33143', 'Campeni', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33144', 'Cenade', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33145', 'Cergau', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33146', 'Ceru-Bacainti', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33147', 'Cetatea de Balta', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33148', 'Ciugud', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33149', 'Ciuruleasa', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33150', 'Craciunelu de Jos', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33151', 'Cricau', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33152', 'Cugir', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33153', 'Daia Romana', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33154', 'Dostat', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33155', 'Farau', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33156', 'Galda de Jos', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33157', 'Garbova', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33158', 'Garda de Sus', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33159', 'Hoparta', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33160', 'Horea', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33161', 'Ighiu', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33162', 'Intregalde', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33163', 'Jidvei', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33164', 'Livezile', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33165', 'Lopadea Noua', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33166', 'Lunca Muresului', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33167', 'Lupsa', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33168', 'Metes', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33169', 'Mihalt', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33170', 'Miraslau', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33171', 'Mogos', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33172', 'Noslac', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33173', 'Ocna Mures', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33174', 'Ocolis', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33175', 'Ohaba', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33176', 'Pianu', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33177', 'Poiana Vadului', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33178', 'Ponor', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33179', 'Posaga', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33180', 'Radesti', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33181', 'Ramet', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33182', 'Rimetea', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33183', 'Rosia Montana', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33184', 'Rosia de Secas', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33185', 'Salciua', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33186', 'Salistea', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33187', 'Sancel', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33188', 'Santimbru', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33189', 'Sasciori', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33190', 'Scarisoara', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33191', 'Sebes', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33192', 'Sibot', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33193', 'Sohodol', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33194', 'Sona', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33195', 'Spring', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33196', 'Stremt', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33197', 'Sugag', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33198', 'Teius', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33199', 'Unirea', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33200', 'Vadu Motilor', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33201', 'Valea Lunga', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33202', 'Vidra', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33203', 'Vintu de Jos', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33204', 'Zlatna', '2934', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33205', 'Almas', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33206', 'Apateu', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33207', 'Arad', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33208', 'Archis', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33209', 'Barsa', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33210', 'Barzava', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33211', 'Bata', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33212', 'Beliu', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33213', 'Birchis', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33214', 'Bocsig', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33215', 'Brazii', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33216', 'Buteni', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33217', 'Carand', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33218', 'Cermei', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33219', 'Chisindia', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33220', 'Chisineu Cris', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33221', 'Conop', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33222', 'Covasint', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33223', 'Craiva', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33224', 'Curtici', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33225', 'Dezna', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33226', 'Dieci', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33227', 'Dorgos', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33228', 'Fantanele', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33229', 'Felnac', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33230', 'Ghioroc', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33231', 'Graniceri', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33232', 'Gurahont', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33233', 'Halmagel', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33234', 'Halmagiu', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33235', 'Hasmas', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33236', 'Ignesti', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33237', 'Ineu', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33238', 'Iratosu', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33239', 'Lipova', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33240', 'Livada', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33241', 'Macea', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33242', 'Masca', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33243', 'Moneasa', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33244', 'Nadlac', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33245', 'Olari', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33246', 'Pancota', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33247', 'Paulis', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33248', 'Pecica', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33249', 'Peregu Mare', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33250', 'Petris', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33251', 'Pilu', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33252', 'Plescuta', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33253', 'Sagu', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33254', 'Santana', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33255', 'Savarsin', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33256', 'Sebis', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33257', 'Secusigiu', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33258', 'Seitin', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33259', 'Seleus', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33260', 'Semlac', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33261', 'Sepreus', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33262', 'Sicula', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33263', 'Silindia', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33264', 'Simand', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33265', 'Sintea Mare', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33266', 'Siria', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33267', 'Sistarovat', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33268', 'Socodor', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33269', 'Sofronea', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33270', 'Tarnova', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33271', 'Taut', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33272', 'Varadia de Mures', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33273', 'Varfurile', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33274', 'Vinga', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33275', 'Vladimirescu', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33276', 'Zabrani', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33277', 'Zarand', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33278', 'Zerind', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33279', 'Zimandu Nou', '2935', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33280', 'Albesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33281', 'Albestii-Pamanteni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33282', 'Albota', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33283', 'Aninoasa', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33284', 'Arefu', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33285', 'Babana', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33286', 'Baiculesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33287', 'Balilesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33288', 'Barla', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33289', 'Bascov', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33290', 'Beleti-Negresti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33291', 'Berevoesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33292', 'Bogati', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33293', 'Boteni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33294', 'Botesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33295', 'Bradu', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33296', 'Bradulet', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33297', 'Budeasa', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33298', 'Bughea de Jos', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33299', 'Buzoesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33300', 'Caldararu', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33301', 'Calinesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33302', 'Campulung', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33303', 'Cateasca', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33304', 'Cepari', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33305', 'Cetateni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33306', 'Cicanesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33307', 'Ciofrangeni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33308', 'Ciomagesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33309', 'Cocu', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33310', 'Corbeni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33311', 'Corbi', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33312', 'Cosesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33313', 'Costesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33314', 'Cotmeana', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33315', 'Cuca', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33316', 'Curtea de Arges', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33317', 'Dambovicioara', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33318', 'Darmanesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33319', 'Davidesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33320', 'Dobresti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33321', 'Domnesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33322', 'Draganu', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33323', 'Dragoslavele', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33324', 'Godeni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33325', 'Harsesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33326', 'Hartiesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33327', 'Izvoru', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33328', 'Leordeni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33329', 'Leresti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33330', 'Lunca Corbului', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33331', 'Malureni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33332', 'Maracineni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33333', 'Merisani', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33334', 'Micesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33335', 'Mihaesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33336', 'Mioarele', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33337', 'Mioveni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33338', 'Mirosi', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33339', 'Moraresti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33340', 'Mosoaia', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33341', 'Mozaceni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33342', 'Musatesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33343', 'Negrasi', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33344', 'Nucsoara', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33345', 'Oarja', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33346', 'Pietrosani', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33347', 'Pitesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33348', 'Poenari', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33349', 'Poiana Lacului', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33350', 'Popesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33351', 'Priboieni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33352', 'Ratesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33353', 'Recea', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33354', 'Rociu', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33355', 'Rucar', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33356', 'Salatrucu', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33357', 'Sapata', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33358', 'Schitu-Golesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33359', 'Slobozia', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33360', 'Stalpeni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33361', 'Stefan cel Mare', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33362', 'Stefanesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33363', 'Stoenesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33364', 'Stolnici', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33365', 'Suici', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33366', 'Suseni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33367', 'Teiu', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33368', 'Tigveni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33369', 'Titesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33370', 'Topoloveni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33371', 'Uda', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33372', 'Ungheni', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33373', 'Valea Danului', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33374', 'Valea Iasului', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33375', 'Valea Mare-Pravat', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33376', 'Vedea', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33377', 'Vladesti', '2936', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33378', 'Agas', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33379', 'Ardeoani', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33380', 'Asau', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33381', 'Bacau', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33382', 'Balcani', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33383', 'Barsanesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33384', 'Beresti-Bistrita', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33385', 'Beresti-Tazlau', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33386', 'Berzunti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33387', 'Blagesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33388', 'Bogdanesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33389', 'Brusturoasa', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33390', 'Buhoci', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33391', 'Buhusi', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33392', 'Caiuti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33393', 'Casin', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33394', 'Cleja', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33395', 'Colonesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33396', 'Comanesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33397', 'Corbasca', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33398', 'Cotofanesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33399', 'Damienesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33400', 'Darmanesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33401', 'Dealu Morii', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33402', 'Dofteana', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33403', 'Faraoani', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33404', 'Filipeni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33405', 'Filipesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33406', 'Gaiceana', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33407', 'Garleni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33408', 'Ghimes-Faget', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33409', 'Glavanesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33410', 'Gura Vaii', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33411', 'Helegiu', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33412', 'Hemeius', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33413', 'Horgesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33414', 'Huruesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33415', 'Izvoru Berheciului', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33416', 'Letea Veche', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33417', 'Lipova', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33418', 'Livezi', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33419', 'Luizi-Calugara', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33420', 'Magiresti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33421', 'Magura', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33422', 'Manastirea Casin', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33423', 'Margineni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33424', 'Moinesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33425', 'Motoseni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33426', 'Negri', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33427', 'Nicolae Balcescu', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33428', 'Oituz', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33429', 'Oncesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33430', 'Onesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33431', 'Orbeni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33432', 'Palanca', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33433', 'Pancesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33434', 'Parava', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33435', 'Pargaresti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33436', 'Parincea', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33437', 'Parjol', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33438', 'Plopana', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33439', 'Podu Turcului', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33440', 'Poduri', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33441', 'Racaciuni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33442', 'Rachitoasa', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33443', 'Racova', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33444', 'Rosiori', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33445', 'Sanduleni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33446', 'Sascut', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33447', 'Saucesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33448', 'Scorteni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33449', 'Secuieni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33450', 'Slanic-Moldova', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33451', 'Solont', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33452', 'Stanisesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33453', 'Stefan cel Mare', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33454', 'Strugari', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33455', 'Tamasi', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33456', 'Targu Ocna', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33457', 'Targu-Trotus', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33458', 'Tatarasti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33459', 'Traian', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33460', 'Ungureni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33461', 'Urechesti', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33462', 'Valea Seaca', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33463', 'Vultureni', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33464', 'Zemes', '2937', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33465', 'Abram', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33466', 'Abramut', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33467', 'Alesd', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33468', 'Astileu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33469', 'Auseu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33470', 'Avram Iancu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33471', 'Balc', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33472', 'Batar', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33473', 'Beius', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33474', 'Biharia', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33475', 'Boianu Mare', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33476', 'Borod', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33477', 'Bors', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33478', 'Bratca', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33479', 'Brusturi', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33480', 'Budureasa', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33481', 'Buduslau', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33482', 'Bulz', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33483', 'Buntesti', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33484', 'Cabesti', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33485', 'Campani', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33486', 'Capalna', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33487', 'Carpinet', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33488', 'Cefa', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33489', 'Ceica', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33490', 'Cetariu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33491', 'Cherechiu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33492', 'Chislaz', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33493', 'Ciuhoiu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33494', 'Ciumeghiu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33495', 'Cociuba Mare', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33496', 'Copacel', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33497', 'Cristioru de Jos', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33498', 'Curatele', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33499', 'Curtuiseni', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33500', 'Derna', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33501', 'Diosig', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33502', 'Dobresti', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33503', 'Draganesti', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33504', 'Dragesti', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33505', 'Finis', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33506', 'Girisu de Cris', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33507', 'Hidiselu de Sus', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33508', 'Holod', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33509', 'Husasau de Tinca', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33510', 'Ineu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33511', 'Lazareni', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33512', 'Lazuri de Beius', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33513', 'Lugasu de Jos', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33514', 'Lunca', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33515', 'Madaras', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33516', 'Magesti', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33517', 'Marghita', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33518', 'Nojorid', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33519', 'Nucet', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33520', 'Olcea', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33521', 'Oradea', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33522', 'Osorheiu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33523', 'Pietroasa', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33524', 'Pocola', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33525', 'Pomezeu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33526', 'Popesti', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33527', 'Rabagani', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33528', 'Remetea', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33529', 'Rieni', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33530', 'Rosia', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33531', 'Sacadat', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33532', 'Sacueni', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33533', 'Salacea', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33534', 'Salard', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33535', 'Salonta', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33536', 'Sambata', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33537', 'Sanmartin', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33538', 'Santandrei', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33539', 'Sarbi', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33540', 'Simian', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33541', 'Sinteu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33542', 'Soimi', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33543', 'Spinus', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33544', 'Stei', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33545', 'Suncuius', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33546', 'Suplacu de Barcau', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33547', 'Tarcaia', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33548', 'Tarcea', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33549', 'Tauteu', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33550', 'Tetchea', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33551', 'Tileagd', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33552', 'Tinca', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33553', 'Tulca', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33554', 'Uileacu de Beius', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33555', 'Vadu Crisului', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33556', 'Valea lui Mihai', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33557', 'Varciorog', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33558', 'Vascau', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33559', 'Viisoara', '2938', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33560', 'Beclean', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33561', 'Bistrita', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33562', 'Bistrita Bargaului', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33563', 'Branistea', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33564', 'Budacu de Jos', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33565', 'Budesti', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33566', 'Caianu Mic', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33567', 'Cetate', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33568', 'Chiochis', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33569', 'Chiuza', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33570', 'Ciceu-Giurgesti', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33571', 'Cosbuc', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33572', 'Dumitra', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33573', 'Feldru', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33574', 'Galatii Bistritei', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33575', 'Ilva Mare', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33576', 'Ilva Mica', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33577', 'Josenii Bargaului', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33578', 'Lechinta', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33579', 'Lesu', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33580', 'Livezile', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33581', 'Lunca Ilvei', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33582', 'Magura Ilvei', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33583', 'Maieru', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33584', 'Mariselu', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33585', 'Matei', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33586', 'Micestii de Campie', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33587', 'Milas', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33588', 'Monor', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33589', 'Nasaud', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33590', 'Nimigea', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33591', 'Nuseni', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33592', 'Parva', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33593', 'Petru Rares', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33594', 'Prundu Bargaului', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33595', 'Rebra', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33596', 'Rebrisoara', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33597', 'Rodna', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33598', 'Romuli', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33599', 'Salva', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33600', 'Sangeorz-Bai', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33601', 'Sanmihaiu de Campie', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33602', 'Sant', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33603', 'Sieu', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33604', 'Sieu-Magherus', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33605', 'Sieu-Odorhei', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33606', 'Sieut', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33607', 'Silvasu de Campie', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33608', 'Sintereag', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33609', 'Spermezeu', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33610', 'Tarlisua', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33611', 'Teaca', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33612', 'Telciu', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33613', 'Tiha Bargaului', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33614', 'Uriu', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33615', 'Urmenis', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33616', 'Zagra', '2939', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33617', 'Albesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33618', 'Avrameni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33619', 'Baluseni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33620', 'Botosani', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33621', 'Braesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33622', 'Broscauti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33623', 'Bucecea', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33624', 'Calarasi', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33625', 'Concesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33626', 'Copalau', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33627', 'Cordareni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33628', 'Corlateni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33629', 'Corni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33630', 'Cotusca', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33631', 'Cristesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33632', 'Cristinesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33633', 'Curtesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33634', 'Dangeni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33635', 'Darabani', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33636', 'Dersca', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33637', 'Dobarceni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33638', 'Dorohoi', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33639', 'Draguseni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33640', 'Durnesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33641', 'Flamanzi', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33642', 'Frumusica', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33643', 'George Enescu', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33644', 'Gorbanesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33645', 'Hanesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33646', 'Havarna', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33647', 'Hiliseu-Horia', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33648', 'Hlipiceni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33649', 'Hudesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33650', 'Ibanesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33651', 'Leorda', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33652', 'Lunca', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33653', 'Manoleasa', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33654', 'Mihail Eminescu', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33655', 'Mihaileni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33656', 'Mihalaseni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33657', 'Mileanca', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33658', 'Mitoc', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33659', 'Nicseni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33660', 'Paltinis', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33661', 'Pomarla', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33662', 'Prajeni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33663', 'Rachiti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33664', 'Radauti-Prut', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33665', 'Rauseni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33666', 'Ripiceni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33667', 'Roma', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33668', 'Romanesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33669', 'Santa-Maria', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33670', 'Saveni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33671', 'Sendriceni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33672', 'Stauceni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33673', 'Stefanesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33674', 'Stiubieni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33675', 'Suharau', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33676', 'Sulita', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33677', 'Todireni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33678', 'Trusesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33679', 'Tudora', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33680', 'Ungureni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33681', 'Unteni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33682', 'Vaculesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33683', 'Varfu Campului', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33684', 'Viisoara', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33685', 'Vladeni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33686', 'Vlasinesti', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33687', 'Vorniceni', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33688', 'Vorona', '2940', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33689', 'Baraganul', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33690', 'Bertestii de Jos', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33691', 'Bordei Verde', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33692', 'Braila', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33693', 'Chiscani', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33694', 'Ciocile', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33695', 'Ciresu', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33696', 'Dudesti', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33697', 'Faurei', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33698', 'Frecatei', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33699', 'Galbenu', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33700', 'Gemenele', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33701', 'Gradistea', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33702', 'Gropeni', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33703', 'Ianca', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33704', 'Insuratei', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33705', 'Jirlau', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33706', 'Marasu', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33707', 'Maxineni', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33708', 'Mircea Voda', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33709', 'Movila Miresei', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33710', 'Racovita', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33711', 'Ramnicelu', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33712', 'Romanu', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33713', 'Rosiori', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33714', 'Salcia Tudor', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33715', 'Scortaru Nou', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33716', 'Silistea', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33717', 'Stancuta', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33718', 'Surdila-Gaiseanca', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33719', 'Surdila-Greci', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33720', 'Sutesti', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33721', 'Tichilesti', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33722', 'Traian', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33723', 'Tudor Vladimirescu', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33724', 'Tufesti', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33725', 'Ulmu', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33726', 'Unirea', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33727', 'Vadeni', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33728', 'Victoria', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33729', 'Visani', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33730', 'Viziru', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33731', 'Zavoaia', '2941', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33732', 'Apata', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33733', 'Beclean', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33734', 'Bod', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33735', 'Bran', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33736', 'Brasov', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33737', 'Budila', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33738', 'Bunesti', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33739', 'Cata', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33740', 'Cincu', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33741', 'Codlea', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33742', 'Comana', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33743', 'Cristian', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33744', 'Dumbravita', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33745', 'Fagaras', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33746', 'Feldioara', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33747', 'Fundata', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33748', 'Ghimbav', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33749', 'Halchiu', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33750', 'Harman', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33751', 'Harseni', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33752', 'Hoghiz', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33753', 'Homorod', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33754', 'Jibert', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33755', 'Lisa', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33756', 'Maierus', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33757', 'Mandra', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33758', 'Moeciu', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33759', 'Ormenis', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33760', 'Parau', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33761', 'Poiana Marului', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33762', 'Predeal', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33763', 'Prejmer', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33764', 'Racos', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33765', 'Rasnov', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33766', 'Recea', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33767', 'Rupea', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33768', 'Sacele', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33769', 'Sanpetru', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33770', 'Sercaia', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33771', 'Sinca', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33772', 'Soars', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33773', 'Tarlungeni', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33774', 'Teliu', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33775', 'Ticusul', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33776', 'Ucea', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33777', 'Ungra', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33778', 'Vama Buzaului', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33779', 'Victoria', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33780', 'Vistea', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33781', 'Voila', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33782', 'Vulcan', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33783', 'Zarnesti', '2942', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33784', 'Bucharest', '2943', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33785', 'Bucuresti', '2943', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33786', 'Amaru', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33787', 'Balaceanu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33788', 'Balta Alba', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33789', 'Beceni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33790', 'Berca', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33791', 'Bisoca', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33792', 'Blajani', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33793', 'Boldu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33794', 'Bozioru', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33795', 'Bradeanu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33796', 'Braesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33797', 'Breaza', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33798', 'Buda', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33799', 'Buzau', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33800', 'Calvini', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33801', 'Canesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33802', 'Catina', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33803', 'Cernatesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33804', 'Chiliile', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33805', 'Chiojdu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33806', 'Cilibia', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33807', 'Cislau', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33808', 'Cochirleanca', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33809', 'Colti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33810', 'Constantin Rosetti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33811', 'Costesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33812', 'Cozieni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33813', 'Galbinasi', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33814', 'Gheraseni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33815', 'Ghergheasa', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33816', 'Glodeanu-Silistea', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33817', 'Glodeanul Sarat', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33818', 'Grebanu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33819', 'Gura Teghii', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33820', 'Largu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33821', 'Lopatari', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33822', 'Luciu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33823', 'Magura', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33824', 'Manzalesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33825', 'Maracineni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33826', 'Margaritesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33827', 'Merei', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33828', 'Mihailesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33829', 'Movila Banului', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33830', 'Murgesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33831', 'Naeni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33832', 'Nehoiu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33833', 'Odaile', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33834', 'Padina', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33835', 'Panatau', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33836', 'Pardosi', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33837', 'Parscov', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33838', 'Patarlagele', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33839', 'Pietroasele', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33840', 'Podgoria', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33841', 'Pogoanele', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33842', 'Posta Calnau', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33843', 'Puiesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33844', 'Racoviteni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33845', 'Ramnicelu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33846', 'Ramnicu Sarat', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33847', 'Robeasca', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33848', 'Rusetu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33849', 'Sageata', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33850', 'Sahateni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33851', 'Sapoca', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33852', 'Sarulesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33853', 'Scortoasa', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33854', 'Scutelnici', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33855', 'Siriu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33856', 'Smeeni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33857', 'Stalpu', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33858', 'Tintesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33859', 'Tisau', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33860', 'Topliceni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33861', 'Ulmeni', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33862', 'Vadu Pasii', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33863', 'Valcelele', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33864', 'Valea Ramnicului', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33865', 'Valea Salciei', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33866', 'Vernesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33867', 'Vintila Voda', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33868', 'Viperesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33869', 'Zarnesti', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33870', 'Ziduri', '2944', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33871', 'Alexandru Odobescu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33872', 'Belciugatele', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33873', 'Borcea', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33874', 'Budesti', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33875', 'Calarasi', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33876', 'Cascioarele', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33877', 'Chirnogi', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33878', 'Chiselet', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33879', 'Ciocanesti', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33880', 'Curcani', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33881', 'Cuza Voda', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33882', 'Dichiseni', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33883', 'Dor Marunt', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33884', 'Dorobantu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33885', 'Dragalina', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33886', 'Dragos Voda', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33887', 'Frasinet', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33888', 'Frumusani', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33889', 'Fundeni', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33890', 'Fundulea', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33891', 'Gradistea', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33892', 'Gurbanesti', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33893', 'Ileana', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33894', 'Independenta', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33895', 'Jegalia', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33896', 'Lehliu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33897', 'Lehliu-Gara', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33898', 'Luica', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33899', 'Lupsanu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33900', 'Manastirea', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33901', 'Mitreni', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33902', 'Modelu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33903', 'Nana', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33904', 'Nicolae Balcescu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33905', 'Oltenita', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33906', 'Perisoru', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33907', 'Plataresti', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33908', 'Radovanu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33909', 'Roseti', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33910', 'Sarulesti', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33911', 'Sohatu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33912', 'Soldanu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33913', 'Spantov', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33914', 'Stefan Voda', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33915', 'Stefan cel Mare', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33916', 'Tamadau Mare', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33917', 'Ulmeni', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33918', 'Ulmu', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33919', 'Unirea', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33920', 'Valcelele', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33921', 'Valea Argovei', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33922', 'Vasilati', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33923', 'Vlad Tepes', '2945', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33924', 'Anina', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33925', 'Armenis', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33926', 'Baile Herculane', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33927', 'Bania', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33928', 'Bautar', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33929', 'Berliste', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33930', 'Berzasca', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33931', 'Berzovia', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33932', 'Bocsa', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33933', 'Bolvasnita', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33934', 'Bozovici', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33935', 'Brebu', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33936', 'Brebu Nou', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33937', 'Buchin', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33938', 'Bucosnita', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33939', 'Caransebes', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33940', 'Carasova', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33941', 'Carbunari', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33942', 'Ciclova Romana', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33943', 'Ciuchici', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33944', 'Ciudanovita', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33945', 'Constantin Daicoviciu', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33946', 'Copacele', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33947', 'Cornea', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33948', 'Cornereva', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33949', 'Coronini', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33950', 'Dalboset', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33951', 'Doclin', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33952', 'Dognecea', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33953', 'Domasnea', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33954', 'Eftimie Murgu', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33955', 'Ezeris', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33956', 'Farliug', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33957', 'Forotic', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33958', 'Garnic', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33959', 'Glimboca', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33960', 'Goruia', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33961', 'Gradinari', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33962', 'Iablanita', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33963', 'Lapusnicel', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33964', 'Lapusnicu Mare', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33965', 'Luncavita', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33966', 'Lupac', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33967', 'Marga', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33968', 'Maureni', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33969', 'Mehadia', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33970', 'Mehadica', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33971', 'Moldova Noua', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33972', 'Naidas', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33973', 'Obreja', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33974', 'Ocna de Fier', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33975', 'Oravita', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33976', 'Otelu Rosu', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33977', 'Paltinis', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33978', 'Pojejena', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33979', 'Prigor', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33980', 'Racasdia', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33981', 'Ramna', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33982', 'Resita', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33983', 'Rusca Montana', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33984', 'Sacu', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33985', 'Sasca Montana', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33986', 'Sichevita', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33987', 'Slatina-Timis', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33988', 'Socol', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33989', 'Sopotu Nou', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33990', 'Tarnova', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33991', 'Teregova', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33992', 'Ticvaniu Mare', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33993', 'Toplet', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33994', 'Turnu Ruieni', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33995', 'Valiug', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33996', 'Varadia', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33997', 'Vermes', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33998', 'Vrani', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('33999', 'Zavoi', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34000', 'Zorlentu Mare', '2946', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34001', 'Aghiresu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34002', 'Aiton', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34003', 'Alunis', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34004', 'Apahida', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34005', 'Aschileu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34006', 'Baciu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34007', 'Baisoara', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34008', 'Belis', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34009', 'Bobalna', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34010', 'Bontida', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34011', 'Borsa', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34012', 'Buza', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34013', 'Caianu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34014', 'Calarasi', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34015', 'Calatele', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34016', 'Camarasu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34017', 'Campia Turzii', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34018', 'Capusu Mare', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34019', 'Caseiu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34020', 'Catcau', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34021', 'Catina', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34022', 'Ceanu Mare', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34023', 'Chinteni', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34024', 'Chiuiesti', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34025', 'Ciucea', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34026', 'Ciurila', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34027', 'Cluj-Napoca', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34028', 'Cojocna', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34029', 'Cornesti', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34030', 'Cuzdrioara', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34031', 'Dabaca', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34032', 'Dej', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34033', 'Feleacu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34034', 'Fizesu Gherlii', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34035', 'Floresti', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34036', 'Frata', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34037', 'Garbau', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34038', 'Geaca', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34039', 'Gherla', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34040', 'Gilau', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34041', 'Huedin', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34042', 'Iara', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34043', 'Iclod', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34044', 'Izvoru Crisului', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34045', 'Jichisu de Jos', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34046', 'Jucu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34047', 'Luna', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34048', 'Maguri-Racatau', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34049', 'Manastireni', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34050', 'Margau', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34051', 'Marisel', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34052', 'Mica', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34053', 'Mihai Viteazu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34054', 'Mintiu Gherlii', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34055', 'Mociu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34056', 'Moldovenesti', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34057', 'Palatca', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34058', 'Panticeu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34059', 'Petrestii de Jos', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34060', 'Ploscos', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34061', 'Poieni', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34062', 'Rasca', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34063', 'Recea Cristur', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34064', 'Sacuieu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34065', 'Sancraiu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34066', 'Sandulesti', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34067', 'Sanmartin', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34068', 'Sanpaul', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34069', 'Savadisla', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34070', 'Sic', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34071', 'Suatu', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34072', 'Taga', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34073', 'Tritenii de Jos', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34074', 'Turda', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34075', 'Tureni', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34076', 'Unguras', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34077', 'Vad', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34078', 'Valea Ierii', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34079', 'Viisoara', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34080', 'Vultureni', '2947', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34081', 'Adamclisi', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34082', 'Agigea', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34083', 'Albesti', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34084', 'Aliman', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34085', 'Amzacea', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34086', 'Baneasa', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34087', 'Basarabi', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34088', 'Castelu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34089', 'Cerchezu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34090', 'Cernavoda', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34091', 'Chirnogeni', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34092', 'Ciobanu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34093', 'Ciocarlia', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34094', 'Cobadin', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34095', 'Cogealac', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34096', 'Comana', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34097', 'Constanta', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34098', 'Corbu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34099', 'Costinesti', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34100', 'Crucea', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34101', 'Cumpana', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34102', 'Deleni', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34103', 'Dobromir', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34104', 'Douazeci si Trei August', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34105', 'Dumbraveni', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34106', 'Eforie', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34107', 'Garliciu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34108', 'Ghindaresti', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34109', 'Harsova', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34110', 'Horia', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34111', 'Independenta', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34112', 'Ion Corvin', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34113', 'Istria', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34114', 'Limanu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34115', 'Lipnita', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34116', 'Lumina', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34117', 'Mangalia', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34118', 'Medgidia', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34119', 'Mereni', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34120', 'Mihai Viteazu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34121', 'Mihail Kogalniceanu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34122', 'Mircea Voda', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34123', 'Navodari', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34124', 'Negru Voda', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34125', 'Nicolae Balcescu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34126', 'Oltina', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34127', 'Ostrov', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34128', 'Ovidiu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34129', 'Pantelimon', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34130', 'Pecineaga', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34131', 'Pestera', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34132', 'Poarta Alba', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34133', 'Rasova', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34134', 'Sacele', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34135', 'Saraiu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34136', 'Seimeni', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34137', 'Silistea', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34138', 'Targusor', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34139', 'Techirghiol', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34140', 'Topalu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34141', 'Topraisar', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34142', 'Tortoman', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34143', 'Tuzla', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34144', 'Valu lui Traian', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34145', 'Vulturu', '2948', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34146', 'Aita Mare', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34147', 'Baraolt', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34148', 'Barcani', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34149', 'Batani', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34150', 'Belin', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34151', 'Bodoc', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34152', 'Borosneu Mare', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34153', 'Bradut', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34154', 'Brates', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34155', 'Bretcu', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34156', 'Catalina', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34157', 'Cernat', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34158', 'Chichis', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34159', 'Comandau', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34160', 'Covasna', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34161', 'Dobarlau', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34162', 'Ghelinta', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34163', 'Ghidfalau', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34164', 'Haghig', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34165', 'Ilieni', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34166', 'Intorsura Buzaului', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34167', 'Lemnia', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34168', 'Malnas', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34169', 'Moacsa', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34170', 'Ojdula', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34171', 'Ozun', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34172', 'Poian', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34173', 'Reci', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34174', 'Sanzieni', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34175', 'Sfantu Gheorghe', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34176', 'Sita Buzaului', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34177', 'Targu Secuiesc', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34178', 'Turia', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34179', 'Valcele', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34180', 'Valea Crisului', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34181', 'Valea Mare', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34182', 'Varghis', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34183', 'Zabala', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34184', 'Zagon', '2949', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34185', 'Aninoasa', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34186', 'Baleni', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34187', 'Barbuletu', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34188', 'Bezdead', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34189', 'Bilciuresti', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34190', 'Branesti', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34191', 'Branistea', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34192', 'Brezoaiele', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34193', 'Buciumeni', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34194', 'Bucsani', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34195', 'Butimanu', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34196', 'Candesti', '2950', '0.00', '1', '2021-04-06 06:43:49', '2021-04-06 06:43:49', NULL),
('34197', 'Ciocanesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34198', 'Cobia', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34199', 'Cojasca', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34200', 'Comisani', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34201', 'Contesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34202', 'Corbii Mari', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34203', 'Cornatelu', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34204', 'Cornesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34205', 'Costestii din Vale', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34206', 'Crangurile de Sus', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34207', 'Crevedia', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34208', 'Darmanesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34209', 'Dobra', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34210', 'Doicesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34211', 'Dragodana', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34212', 'Dragomiresti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34213', 'Edera de Jos', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34214', 'Fieni', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34215', 'Finta', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34216', 'Gaesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34217', 'Glodeni', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34218', 'Gura Foii', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34219', 'Gura Ocnitei', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34220', 'Gura Sutii', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34221', 'Hulubesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34222', 'Ion luca Caragiale', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34223', 'Lucieni', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34224', 'Ludesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34225', 'Lunguletu', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34226', 'Malu cu Flori', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34227', 'Manesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34228', 'Matasaru', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34229', 'Mogosani', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34230', 'Moreni', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34231', 'Moroeni', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34232', 'Morteni', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34233', 'Motaeni', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34234', 'Niculesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34235', 'Nucet', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34236', 'Ocnita', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34237', 'Odobesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34238', 'Petresti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34239', 'Pietrosita', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34240', 'Poiana', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34241', 'Potlogi', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34242', 'Produlesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34243', 'Pucheni', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34244', 'Pucioasa', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34245', 'Racari', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34246', 'Razvad', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34247', 'Runcu', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34248', 'Salcioara', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34249', 'Selaru', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34250', 'Slobozia Moara', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34251', 'Sotanga', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34252', 'Targoviste', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34253', 'Tartasesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34254', 'Tatarani', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34255', 'Titu', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34256', 'Uliesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34257', 'Ulmi', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34258', 'Vacaresti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34259', 'Valea Lunga', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34260', 'Valea Mare', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34261', 'Valeni-Dambovita', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34262', 'Varfuri', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34263', 'Visina', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34264', 'Visinesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34265', 'Voinesti', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34266', 'Vulcana Bai', '2950', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34267', 'Afumati', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34268', 'Almajiu', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34269', 'Amarastii de Jos', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34270', 'Amarastii de Sus', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34271', 'Apele Vii', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34272', 'Argetoaia', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34273', 'Bailesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34274', 'Barca', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34275', 'Bechet', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34276', 'Bistret', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34277', 'Botosesti-Paia', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34278', 'Brabova', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34279', 'Bradesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34280', 'Bralostita', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34281', 'Bratovoesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34282', 'Breasta', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34283', 'Bucovat', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34284', 'Bulzesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34285', 'Calafat', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34286', 'Calarasi', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34287', 'Calopar', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34288', 'Caraula', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34289', 'Carpen', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34290', 'Castra-Nova', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34291', 'Celaru', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34292', 'Ceratu', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34293', 'Cernatesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34294', 'Cetate', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34295', 'Cioroiasiu', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34296', 'Ciupercenii Noi', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34297', 'Cosoveni', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34298', 'Cotofenii din Dos', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34299', 'Craiova', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34300', 'Dabuleni', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34301', 'Daneti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34302', 'Desa', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34303', 'Diosti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34304', 'Dobresti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34305', 'Dragotesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34306', 'Dranic', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34307', 'Farcasu', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34308', 'Filiasi', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34309', 'Galicea Mare', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34310', 'Gangiova', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34311', 'Ghercesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34312', 'Gighera', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34313', 'Giubega', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34314', 'Giurgita', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34315', 'Gogosu', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34316', 'Goicea', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34317', 'Goiesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34318', 'Grecesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34319', 'Isalnita', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34320', 'Izvoare', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34321', 'Leu', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34322', 'Lipovu', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34323', 'Macesu de Jos', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34324', 'Macesu de Sus', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34325', 'Maglavit', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34326', 'Malu Mare', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34327', 'Marsani', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34328', 'Melinesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34329', 'Mischii', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34330', 'Motatei', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34331', 'Murgasi', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34332', 'Negoi', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34333', 'Orodel', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34334', 'Ostroveni', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34335', 'Perisor', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34336', 'Pielesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34337', 'Piscu Vechi', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34338', 'Plenita', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34339', 'Podari', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34340', 'Poiana Mare', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34341', 'Predesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34342', 'Radovan', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34343', 'Rastu', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34344', 'Robanesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34345', 'Sadova', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34346', 'Salcuta', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34347', 'Scaesti', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34348', 'Seaca de Camp', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34349', 'Seaca de Padure', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34350', 'Secu', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34351', 'Segarcea', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34352', 'Silistea Crucii', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34353', 'Simnicu de Sus', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34354', 'Sopot', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34355', 'Teasc', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34356', 'Terpezita', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34357', 'Teslui', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34358', 'Tuglui', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34359', 'Unirea', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34360', 'Urzicuta', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34361', 'Valea Stanciului', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34362', 'Vartop', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34363', 'Varvoru', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34364', 'Vela', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34365', 'Verbita', '2951', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34366', 'Balabanesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34367', 'Balasesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34368', 'Baleni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34369', 'Baneasa', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34370', 'Barcea', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34371', 'Beresti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34372', 'Beresti-Sat', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34373', 'Brahasesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34374', 'Branistea', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34375', 'Buciumeni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34376', 'Cavadinesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34377', 'Certesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34378', 'Corni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34379', 'Corod', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34380', 'Cosmesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34381', 'Costache Negri', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34382', 'Cuca', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34383', 'Cudalbi', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34384', 'Draganesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34385', 'Draguseni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34386', 'Fartanesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34387', 'Foltesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34388', 'Frumusita', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34389', 'Fundeni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34390', 'Galati', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34391', 'Ghidigeni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34392', 'Gohor', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34393', 'Grivita', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34394', 'Independenta', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34395', 'Ivesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34396', 'Jorasti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34397', 'Liesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34398', 'Mastacani', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34399', 'Matca', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34400', 'Movileni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34401', 'Munteni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34402', 'Namoloasa', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34403', 'Nicoresti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34404', 'Oancea', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34405', 'Pechea', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34406', 'Piscu', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34407', 'Priponesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34408', 'Rediu', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34409', 'Scanteiesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34410', 'Schela', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34411', 'Sendreni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34412', 'Slobozia-Conachi', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34413', 'Smardan', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34414', 'Smulti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34415', 'Suceveni', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34416', 'Targu Bujor', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34417', 'Tecuci', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34418', 'Tepu', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34419', 'Tudor Vladimirescu', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34420', 'Tulucesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34421', 'Umbraresti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34422', 'Valea Marului', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34423', 'Vanatori', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34424', 'Varlezi', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34425', 'Vladesti', '2952', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34426', 'Adunatii-Copaceni', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34427', 'Baneasa', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34428', 'Bolintin Deal', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34429', 'Bolintinu-din-Vale', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34430', 'Bucsani', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34431', 'Bulbucata', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34432', 'Buturugeni', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34433', 'Calugareni', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34434', 'Clejani', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34435', 'Colibasi', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34436', 'Comana', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34437', 'Crevedia Mare', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34438', 'Daia', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34439', 'Floresti-Stoenesti', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34440', 'Fratesti', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34441', 'Gaiseni', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34442', 'Gaujani', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34443', 'Ghimpati', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34444', 'Giurgiu', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34445', 'Gogosari', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34446', 'Gostinari', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34447', 'Gostinu', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34448', 'Gradinari', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34449', 'Greaca', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34450', 'Hotarele', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34451', 'Iepuresti', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34452', 'Izvoarele', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34453', 'Joita', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34454', 'Letca Noua', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34455', 'Marsa', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34456', 'Mihai Bravu', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34457', 'Mihailesti', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34458', 'Ogrezeni', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34459', 'Oinacu', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34460', 'Prundu', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34461', 'Putineiu', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34462', 'Rasuceni', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34463', 'Roata de Jos', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34464', 'Schitu', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34465', 'Singureni', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34466', 'Slobozia', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34467', 'Stanesti', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34468', 'Stoenesti', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34469', 'Toporu', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34470', 'Ulmi', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34471', 'Valea Dragului', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34472', 'Vanatorii Mici', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34473', 'Varasti', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34474', 'Vedea', '2953', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34475', 'Albeni', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34476', 'Alimpesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34477', 'Aninoasa', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34478', 'Arcani', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34479', 'Baia de Fier', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34480', 'Balanesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34481', 'Balesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34482', 'Balteni', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34483', 'Barbatesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34484', 'Bengesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34485', 'Berlesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34486', 'Bolbosi', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34487', 'Borascu', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34488', 'Branesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34489', 'Bumbesti-Jiu', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34490', 'Bumbesti-Piticu', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34491', 'Bustuchin', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34492', 'Calnic', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34493', 'Capreni', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34494', 'Catunele', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34495', 'Ciuperceni', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34496', 'Crasna', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34497', 'Crusetu', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34498', 'Danciulesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34499', 'Danesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34500', 'Dragotesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34501', 'Dragutesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34502', 'Farcasesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34503', 'Glogova', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34504', 'Godinesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34505', 'Hurezani', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34506', 'Ionesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34507', 'Jupanesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34508', 'Lelesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34509', 'Licuriciu', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34510', 'Logresti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34511', 'Matasari', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34512', 'Motru', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34513', 'Musetesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34514', 'Negomiru', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34515', 'Novaci', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34516', 'Pades', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34517', 'Pestisani', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34518', 'Plopsoru', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34519', 'Polovragi', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34520', 'Prigoria', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34521', 'Rosia de Amaradia', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34522', 'Rovinari', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34523', 'Runcu', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34524', 'Sacelu', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34525', 'Samarinesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34526', 'Saulesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34527', 'Schela', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34528', 'Scoarta', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34529', 'Slivilesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34530', 'Stanesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34531', 'Stejari', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34532', 'Stoina', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34533', 'Tantareni', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34534', 'Targu Carbunesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34535', 'Targu Jiu', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34536', 'Telesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34537', 'Ticleni', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34538', 'Tismana', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34539', 'Turburea', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34540', 'Turceni', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34541', 'Turcinesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34542', 'Urdari', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34543', 'Vagiulesti', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34544', 'Vladimir', '2954', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34545', 'Atid', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34546', 'Avramesti', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34547', 'Baile Tusnad', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34548', 'Balan', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34549', 'Bilbor', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34550', 'Borsec', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34551', 'Bradesti', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34552', 'Capalnita', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34553', 'Carta', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34554', 'Ciucsangeorgiu', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34555', 'Ciumani', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34556', 'Corbu', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34557', 'Corund', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34558', 'Cristuru Secuiesc', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34559', 'Danesti', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34560', 'Darjiu', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34561', 'Dealu', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34562', 'Ditrau', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34563', 'Feliceni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34564', 'Frumoasa', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34565', 'Galautas', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34566', 'Gheorgheni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34567', 'Joseni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34568', 'Lazarea', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34569', 'Lueta', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34570', 'Lunca de Jos', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34571', 'Lunca de Sus', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34572', 'Lupeni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34573', 'Martinis', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34574', 'Meresti', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34575', 'Miercurea-Ciuc', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34576', 'Mihaileni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34577', 'Mugeni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34578', 'Ocland', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34579', 'Odorheiu Secuiesc', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34580', 'Pauleni-Ciuc', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34581', 'Plaiesii-de-Jos', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34582', 'Praid', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34583', 'Remetea', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34584', 'Sacel', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34585', 'Sancraieni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34586', 'Sandominic', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34587', 'Sanmartin', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34588', 'Sansimion', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34589', 'Sarmas', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34590', 'Secuieni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34591', 'Siculeni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34592', 'Simonesti', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34593', 'Subcetate', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34594', 'Suseni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34595', 'Toplita', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34596', 'Tulghes', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34597', 'Tusnad', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34598', 'Ulies', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34599', 'Varsag', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34600', 'Vlahita', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34601', 'Voslobeni', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34602', 'Zetea', '2955', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34603', 'Aninoasa', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34604', 'Bacia', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34605', 'Baia de Cris', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34606', 'Baita', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34607', 'Balsa', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34608', 'Banita', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34609', 'Baru', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34610', 'Batrana', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34611', 'Beriu', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34612', 'Berthelot', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34613', 'Blajeni', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34614', 'Bosorod', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34615', 'Brad', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34616', 'Branisca', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34617', 'Bretea Romana', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34618', 'Buces', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34619', 'Bucuresci', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34620', 'Bulzesti', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34621', 'Bunila', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34622', 'Burjuc', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34623', 'Calan', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34624', 'Carjiti', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34625', 'Cerbal', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34626', 'Certeju de Sus', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34627', 'Criscior', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34628', 'Densus', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34629', 'Deva', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34630', 'Dobra', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34631', 'Geoagiu', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34632', 'Ghelari', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34633', 'Gurasada', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34634', 'Harau', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34635', 'Hateg', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34636', 'Hunedoara', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34637', 'Ilia', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34638', 'Lapugiu de Jos', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34639', 'Lelese', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34640', 'Lunca Cernii de Jos', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34641', 'Luncoiu de Jos', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34642', 'Lupeni', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34643', 'Martinesti', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34644', 'Orastie', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34645', 'Orastioara de Sus', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34646', 'Pestisu Mic', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34647', 'Petrila', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34648', 'Petrosani', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34649', 'Pui', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34650', 'Rachitova', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34651', 'Rapoltu Mare', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34652', 'Rau de Mori', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34653', 'Ribita', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34654', 'Romos', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34655', 'Salasu de Sus', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34656', 'Santamaria Orlea', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34657', 'Sarmizegetusa', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34658', 'Simeria', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34659', 'Soimus', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34660', 'Teliucu Inferior', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34661', 'Tomesti', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34662', 'Toplita', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34663', 'Totesti', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34664', 'Turdas', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34665', 'Uricani', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34666', 'Valisoara', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34667', 'Vata de Jos', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34668', 'Vetel', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34669', 'Vorta', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34670', 'Vulcan', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34671', 'Zam', '2956', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34672', 'Adancata', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34673', 'Albesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34674', 'Alexeni', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34675', 'Amara', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34676', 'Andrasesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34677', 'Armasesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34678', 'Axintele', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34679', 'Balaciu', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34680', 'Barcanesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34681', 'Bordusani', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34682', 'Brazii', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34683', 'Bucu', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34684', 'Cazanesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34685', 'Ciocarlia', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34686', 'Ciochina', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34687', 'Ciulnita', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34688', 'Cocora', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34689', 'Cosambesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34690', 'Cosereni', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34691', 'Dragoesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34692', 'Dridu', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34693', 'Facaeni', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34694', 'Fetesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34695', 'Fierbinti-Targ', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34696', 'Garbovi', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34697', 'Gheorghe Doja', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34698', 'Gheorghe Lazar', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34699', 'Giurgeni', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34700', 'Grindu', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34701', 'Grivita', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34702', 'Ion Roata', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34703', 'Jilavele', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34704', 'Manasia', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34705', 'Mihail Kogalniceanu', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34706', 'Milosesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34707', 'Movila', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34708', 'Movilita', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34709', 'Munteni Buzau', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34710', 'Perieti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34711', 'Reviga', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34712', 'Salcioara', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34713', 'Saveni', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34714', 'Scanteia', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34715', 'Sfantu Gheorghe', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34716', 'Sinesti', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34717', 'Slobozia', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34718', 'Stelnica', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34719', 'Suditi', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34720', 'Tandarei', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34721', 'Urziceni', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34722', 'Valea Ciorii', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34723', 'Valea Macrisului', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34724', 'Vladeni', '2957', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34725', 'Alexandru Ioan Cuza', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34726', 'Andrieseni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34727', 'Aroneanu', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34728', 'Baltati', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34729', 'Barnova', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34730', 'Belcesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34731', 'Bivolari', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34732', 'Braesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34733', 'Butea', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34734', 'Ceplenita', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34735', 'Ciortesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34736', 'Ciurea', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34737', 'Coarnele Caprei', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34738', 'Comarna', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34739', 'Costuleni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34740', 'Cotnari', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34741', 'Cozmesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34742', 'Cristesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34743', 'Cucuteni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34744', 'Dagata', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34745', 'Deleni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34746', 'Dobrovat', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34747', 'Dolhesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34748', 'Dumesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34749', 'Erbiceni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34750', 'Focuri', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34751', 'Golaesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34752', 'Gorban', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34753', 'Grajduri', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34754', 'Gropnita', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34755', 'Grozesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34756', 'Halaucesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34757', 'Harlau', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34758', 'Helesteni Harmaneasa', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34759', 'Holboca', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34760', 'Horlesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34761', 'Iasi', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34762', 'Ipatele', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34763', 'Lespezi', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34764', 'Letcani', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34765', 'Lungani', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34766', 'Madarjac', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34767', 'Mircesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34768', 'Mironeasa', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34769', 'Miroslava', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34770', 'Miroslovesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34771', 'Mogosesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34772', 'Mogosesti-Siret', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34773', 'Mosna', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34774', 'Motca', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34775', 'Movileni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34776', 'Oteleni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34777', 'Pascani', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34778', 'Plugari', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34779', 'Podu Iloaiei', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34780', 'Popesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34781', 'Popricani', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34782', 'Prisacani', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34783', 'Probota', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34784', 'Raducaneni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34785', 'Rediu', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34786', 'Romanesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34787', 'Ruginoasa', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34788', 'Scanteia', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34789', 'Scheia', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34790', 'Schitu-Duca', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34791', 'Scobinti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34792', 'Sinesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34793', 'Sipote', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34794', 'Siretel', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34795', 'Stolniceni-Prajescu', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34796', 'Strunga', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34797', 'Tansa', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34798', 'Targu Gangiulesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34799', 'Tatarusi', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34800', 'Tibana', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34801', 'Tibanesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34802', 'Tiganasi', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34803', 'Todiresti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34804', 'Tomesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34805', 'Trifesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34806', 'Tutora', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34807', 'Ungheni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34808', 'Valea Seaca', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34809', 'Vanatori', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34810', 'Victoria', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34811', 'Vladeni', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34812', 'Voinesti', '2958', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34813', 'Afumati', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34814', 'Balotesti', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34815', 'Berceni', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34816', 'Bragadiru', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34817', 'Branesti', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34818', 'Buftea', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34819', 'Cernica', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34820', 'Chiajna', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34821', 'Chitila', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34822', 'Ciolpani', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34823', 'Ciorogarla', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34824', 'Clinceni', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34825', 'Corbeanca', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34826', 'Cornetu', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34827', 'Darasti-Ilfov', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34828', 'Dascalu', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34829', 'Dobroesti', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34830', 'Domnesti', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34831', 'Dragomiresti-Vale', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34832', 'Ganeasa', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34833', 'Glina', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34834', 'Gradistea', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34835', 'Gruiu', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34836', 'Jilava', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34837', 'Magurele', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34838', 'Moara Vlasiei', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34839', 'Mogosoaia', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34840', 'Nuci', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34841', 'Otopeni', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34842', 'Pantelimon', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34843', 'Peris', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34844', 'Petrachioaia', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34845', 'Popesti-Leordeni', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34846', 'Prim Decembrie', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34847', 'Snagov', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34848', 'Stefanestii de Jos', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34849', 'Tunari', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34850', 'Vidra', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34851', 'Voluntari', '2959', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34852', 'Ardusat', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34853', 'Arinis', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34854', 'Asuaju de Sus', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34855', 'Baia Mare', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34856', 'Baia-Sprie', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34857', 'Baita de sub Codru', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34858', 'Baiut', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34859', 'Barsana', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34860', 'Basesti', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34861', 'Bicaz', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34862', 'Bistra', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34863', 'Bocicoiu Mare', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34864', 'Bogdan Voda', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34865', 'Boiu Mare', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34866', 'Borsa', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34867', 'Botiza', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34868', 'Budesti', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34869', 'Calinesti', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34870', 'Campulung la Tisa', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34871', 'Cavnic', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34872', 'Cernesti', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34873', 'Cicarlau', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34874', 'Copalnic Manastur', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34875', 'Coroieni', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34876', 'Cupseni', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34877', 'Desesti', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34878', 'Dragomiresti', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34879', 'Dumbravita', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34880', 'Farcasa', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34881', 'Giulesti', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34882', 'Grosi', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34883', 'Ieud', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34884', 'Lapus', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34885', 'Leordina', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34886', 'Miresu Mare', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34887', 'Moisei', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34888', 'Oarta de Jos', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34889', 'Ocna Sugatag', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34890', 'Petrova', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34891', 'Poienile Izei', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34892', 'Poienile de sub Munte', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34893', 'Recea', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34894', 'Remetea Chioarului', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34895', 'Remeti', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34896', 'Repedea', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34897', 'Rona de Jos', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34898', 'Rona de Sus', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34899', 'Rozavlea', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34900', 'Ruscova', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34901', 'Sacalaseni', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34902', 'Sacel', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34903', 'Salistea de Sus', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34904', 'Salsig', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34905', 'Sapanta', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34906', 'Sarasau', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34907', 'Sasar', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34908', 'Satulung', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34909', 'Seini', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34910', 'Sighetu Marmatiei', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34911', 'Sisesti', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34912', 'Somcuta Mare', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34913', 'Stramtura', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34914', 'Suciu de Sus', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34915', 'Targu-Lapus', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34916', 'Tautii Margheraus', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34917', 'Ulmeni', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34918', 'Vadu Izei', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34919', 'Valea Chioarului', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34920', 'Vima Mica', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34921', 'Viseu de Jos', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34922', 'Viseu de Sus', '2960', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34923', 'Baclesu', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34924', 'Baia de Arama', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34925', 'Bala', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34926', 'Balacita', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34927', 'Balta', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34928', 'Balvanesti', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34929', 'Breznita Ocol', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34930', 'Breznita-Motru', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34931', 'Brosteni', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34932', 'Burila Mare', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34933', 'Butoiesti', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34934', 'Cazanesti', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34935', 'Ciresu', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34936', 'Corcova', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34937', 'Corlatel', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34938', 'Cujmir', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34939', 'Darvari', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34940', 'Devesel', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34941', 'Drobeta-Turnu Severin', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34942', 'Dubova', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34943', 'Dumbrava', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34944', 'Eselnita', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34945', 'Floresti', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34946', 'Garla Mare', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34947', 'Godeanu', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34948', 'Gogosu', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34949', 'Greci', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34950', 'Grozesti', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34951', 'Gruia', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34952', 'Hinova', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34953', 'Husnicioara', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34954', 'Ilovat', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34955', 'Ilovita', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34956', 'Isverna', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34957', 'Izvoru Barzii', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34958', 'Jiana', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34959', 'Livezile', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34960', 'Malovat', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34961', 'Obarsia Noua', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34962', 'Obarsia-Closani', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34963', 'Oprisor', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34964', 'Orsova', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34965', 'Padina', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34966', 'Patulele', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34967', 'Podeni', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34968', 'Ponoarele', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34969', 'Poroina Mare', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34970', 'Pristol', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34971', 'Prunisor', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34972', 'Punghina', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34973', 'Rogova', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34974', 'Salcia', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34975', 'Simian', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34976', 'Sisesti', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34977', 'Sovarna', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34978', 'Stangaceaua', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34979', 'Strehaia', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34980', 'Svinita', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34981', 'Tamna', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34982', 'Vanatori', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34983', 'Vanju Mare', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34984', 'Vanjulet', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34985', 'Vladaia', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34986', 'Voloiac', '2961', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34987', 'Acatari', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34988', 'Adamus', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34989', 'Albesti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34990', 'Alunis', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34991', 'Apold', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34992', 'Atintis', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34993', 'Bagaciu', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34994', 'Bahnea', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34995', 'Bala', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34996', 'Balauseri', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34997', 'Band', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34998', 'Batos', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('34999', 'Beica de Jos', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35000', 'Bichis', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35001', 'Bogata', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35002', 'Brancovenesti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35003', 'Breaza', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35004', 'Ceuasul-de Campie', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35005', 'Chetani', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35006', 'Chiheru de Jos', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35007', 'Coroisanmartin', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35008', 'Cozma', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35009', 'Craciunesti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35010', 'Craiesti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35011', 'Cristesti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35012', 'Cucerdea', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35013', 'Cuci', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35014', 'Danes', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35015', 'Deda', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35016', 'Eremitu', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35017', 'Ernei', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35018', 'Fantanele', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35019', 'Faragau', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35020', 'Galesti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35021', 'Ganesti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35022', 'Gheorghe Doja', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35023', 'Ghindari', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35024', 'Glodeni', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35025', 'Gornesti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35026', 'Grebenisu de Campie', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35027', 'Gurghiu', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35028', 'Hodac', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35029', 'Hodosa', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35030', 'Ibanesti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35031', 'Iclanzel', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35032', 'Ideciu de Jos', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35033', 'Iernut', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35034', 'Livezeni', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35035', 'Ludus', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35036', 'Lunca', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35037', 'Lunca Bradului', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35038', 'Magherani', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35039', 'Mica', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35040', 'Miercurea Nirajului', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35041', 'Mihesu de Campie', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35042', 'Nades', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35043', 'Neaua', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35044', 'Ogra', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35045', 'Panet', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35046', 'Papiu Ilarian', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35047', 'Pasareni', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35048', 'Petelea', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35049', 'Pogaceaua', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35050', 'Raciu', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35051', 'Rastolita', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35052', 'Reghin', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35053', 'Rusii Munti', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35054', 'Sancraiul-de-Mures', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35055', 'Sangeorg-de Mures', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35056', 'Sangeorgiu-de-Padure', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35057', 'Sanger', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35058', 'Sanpaul', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35059', 'Sanpetru-de-Campie', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35060', 'Santana-de-Mures', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35061', 'Sarmasu', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35062', 'Saschiz', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35063', 'Saulia', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35064', 'Sighisoara', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35065', 'Sincai', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35066', 'Solovastru', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35067', 'Sovata', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35068', 'Stanceni', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35069', 'Suplac', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35070', 'Suseni', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35071', 'Targu-Mures', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35072', 'Tarnaveni', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35073', 'Taureni', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35074', 'Ungheni', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35075', 'Valea Larga', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35076', 'Vanatori', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35077', 'Vargata', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35078', 'Vatava', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35079', 'Vetca', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35080', 'Viisoara', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35081', 'Voivodeni', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35082', 'Zagar', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35083', 'Zau de Campie', '2962', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35084', 'Agapia', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35085', 'Bahna', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35086', 'Baltatesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35087', 'Bara', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35088', 'Bargaoani', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35089', 'Bicaz', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35090', 'Bicaz Chei', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35091', 'Bicazu Ardelean', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35092', 'Bodesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35093', 'Borca', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35094', 'Borlesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35095', 'Botesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35096', 'Bozieni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35097', 'Brusturi-Draganesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35098', 'Candesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35099', 'Ceahlau', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35100', 'Cordun', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35101', 'Costisa', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35102', 'Cracaoani', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35103', 'Damuc', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35104', 'Dobreni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35105', 'Doljesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35106', 'Dragomiresti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35107', 'Dulcesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35108', 'Dumbrava Rosie', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35109', 'Farcasa', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35110', 'Faurei', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35111', 'Garcina', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35112', 'Gheraesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35113', 'Girov', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35114', 'Grinties', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35115', 'Grumazesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35116', 'Hangu', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35117', 'Horia', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35118', 'Icusesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35119', 'Ion Creanga', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35120', 'Margineni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35121', 'Moldoveni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35122', 'Oniceni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35123', 'Pangarati', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35124', 'Pastraveni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35125', 'Petricani', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35126', 'Piatra Neamt', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35127', 'Piatra Soimului', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35128', 'Pipirig', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35129', 'Podoleni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35130', 'Poiana Teiului', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35131', 'Poienari', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35132', 'Raucesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35133', 'Razboieni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35134', 'Rediu', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35135', 'Roman', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35136', 'Romani', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35137', 'Roznov', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35138', 'Sabaoani', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35139', 'Sagna', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35140', 'Savinesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35141', 'Secuieni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35142', 'Stanita', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35143', 'Stefan cel Mare', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35144', 'Tamaseni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35145', 'Tarcau', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35146', 'Targu-Neamt', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35147', 'Tasca', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35148', 'Tazlau', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35149', 'Tibucani', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35150', 'Timisesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35151', 'Trifesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35152', 'Tupilati', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35153', 'Urecheni', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35154', 'Valea Ursului', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35155', 'Vanatori-Neamt', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35156', 'Viisoara', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35157', 'Zanesti', '2963', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35158', 'Babiciu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35159', 'Baldovinesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35160', 'Bals', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35161', 'Barasti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35162', 'Barza', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35163', 'Bobicesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35164', 'Brancoveni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35165', 'Brastavatu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35166', 'Brebeni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35167', 'Bucinisu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35168', 'Caracal', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35169', 'Carlogani', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35170', 'Cezieni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35171', 'Cilieni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35172', 'Colonesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35173', 'Corabia', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35174', 'Corbu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35175', 'Coteana', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35176', 'Crampoaia', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35177', 'Cungrea', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35178', 'Curtisoara', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35179', 'Daneasa', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35180', 'Deveselu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35181', 'Dobretu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35182', 'Dobrosloveni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35183', 'Dobroteasa', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35184', 'Dobrun', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35185', 'Draganesti-Olt', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35186', 'Draghiceni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35187', 'Fagetelu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35188', 'Falcoiu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35189', 'Farcasele', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35190', 'Ganeasa', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35191', 'Garcovu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35192', 'Giuvarasti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35193', 'Gostavatu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35194', 'Gradinari', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35195', 'Grojdibodu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35196', 'Ianca', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35197', 'Iancu Jianu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35198', 'Icoana', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35199', 'Izbiceni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35200', 'Izvoarele', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35201', 'Leleasca', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35202', 'Maruntei', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35203', 'Mihaesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35204', 'Milcov', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35205', 'Morunglav', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35206', 'Movileni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35207', 'Nicolae Titulescu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35208', 'Obarsia', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35209', 'Oboga', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35210', 'Oporelu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35211', 'Optasi', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35212', 'Orlea', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35213', 'Osica de Sus', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35214', 'Parscoveni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35215', 'Perieti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35216', 'Piatra Olt', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35217', 'Plesoiu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35218', 'Poboru', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35219', 'Potcoava', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35220', 'Priseaca', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35221', 'Radomiresti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35222', 'Redea', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35223', 'Rotunda', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35224', 'Rusanesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35225', 'Samburesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35226', 'Scarisoara', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35227', 'Schitu', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35228', 'Scornicesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35229', 'Seaca', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35230', 'Serbanesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35231', 'Slatina', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35232', 'Slatioara', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35233', 'Spineni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35234', 'Sprancenata', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35235', 'Stefan cel Mare', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35236', 'Stoenesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35237', 'Stoicanesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35238', 'Strejesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35239', 'Studina', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35240', 'Tatulesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35241', 'Teslui', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35242', 'Tia Mare', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35243', 'Topana', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35244', 'Traian', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35245', 'Tufeni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35246', 'Urzica', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35247', 'Vadastra', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35248', 'Vadastrita', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35249', 'Valcele', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35250', 'Valea Mare', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35251', 'Valeni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35252', 'Verguleasa', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35253', 'Visina', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35254', 'Vitomiresti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35255', 'Vladila', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35256', 'Voineasa', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35257', 'Vulpeni', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35258', 'Vulturesti', '2964', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35259', 'Adunati', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35260', 'Albesti-Paleologu', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35261', 'Alunis', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35262', 'Apostolache', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35263', 'Aricestii-Rahtivani', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35264', 'Aricestii-Zeletin', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35265', 'Azuga', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35266', 'Baba Ana', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35267', 'Baicoi', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35268', 'Balta Doamnei', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35269', 'Baltesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35270', 'Banesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35271', 'Barcanesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35272', 'Berceni', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35273', 'Bertea', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35274', 'Blejoi', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35275', 'Boldesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35276', 'Boldesti-Scaeni', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35277', 'Brazi', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35278', 'Breaza', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35279', 'Brebu', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35280', 'Bucov', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35281', 'Busteni', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35282', 'Calugareni', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35283', 'Campina', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35284', 'Carbunesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35285', 'Ceptura', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35286', 'Cerasu', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35287', 'Chiojdeanca', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35288', 'Ciorani', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35289', 'Cocorastii-Misli', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35290', 'Colceag', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35291', 'Comarnic', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35292', 'Cornu', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35293', 'Cosminele', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35294', 'Doftana', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35295', 'Draganesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35296', 'Drajna', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35297', 'Dumbrava', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35298', 'Dumbravesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35299', 'Fantanele', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35300', 'Filipestii de Padure', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35301', 'Filipestii de Targ', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35302', 'Floresti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35303', 'Fulga', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35304', 'Gherghita', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35305', 'Gorgota', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35306', 'Gornet', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35307', 'Gornet-Cricov', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35308', 'Gura Vadului', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35309', 'Gura Vitioarei', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35310', 'Iordacheanu', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35311', 'Izvoarele', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35312', 'Jugureni', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35313', 'Lapos', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35314', 'Lipanesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35315', 'Magurele', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35316', 'Magureni', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35317', 'Maneciu', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35318', 'Manesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35319', 'Mizil', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35320', 'Pacureti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35321', 'Paulesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35322', 'Ploiesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35323', 'Plopeni', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35324', 'Plopu', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35325', 'Podenii Noi', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35326', 'Poenarii-Burchi', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35327', 'Poiana Campina', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35328', 'Posesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35329', 'Predeal-Sarari', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35330', 'Provita de Jos', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35331', 'Provita de Sus', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35332', 'Puchenii Mari', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35333', 'Rafov', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35334', 'Salcia', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35335', 'Salciile', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35336', 'Sangeru', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35337', 'Scorteni', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35338', 'Secaria', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35339', 'Sinaia', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35340', 'Sirna', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35341', 'Slanic', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35342', 'Soimari', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35343', 'Sotrile', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35344', 'Starchiojd', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35345', 'Stefesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35346', 'Surani', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35347', 'Talea', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35348', 'Targsorul-Vechi', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35349', 'Tataru', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35350', 'Teisani', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35351', 'Telega', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35352', 'Tinosu', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35353', 'Tomsani', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35354', 'Urlati', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35355', 'Valcanesti', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35356', 'Valea Calugareasca', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35357', 'Valenii de Munte', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35358', 'Varbilau', '2965', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35359', 'Agrij', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35360', 'Almasu', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35361', 'Babeni', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35362', 'Balan', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35363', 'Banisor', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35364', 'Benesat', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35365', 'Bobota', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35366', 'Bocsa', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35367', 'Buciumi', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35368', 'Camar', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35369', 'Carastelec', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35370', 'Cehu Silvaniei', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35371', 'Chiesd', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35372', 'Cizer', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35373', 'Coseiu', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35374', 'Crasna', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35375', 'Creaca', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35376', 'Criseni', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35377', 'Cristolt', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35378', 'Cuzaplac', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35379', 'Dobrin', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35380', 'Dragu', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35381', 'Fildu de Jos', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35382', 'Galgau', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35383', 'Garbou', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35384', 'Halmasd', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35385', 'Hereclean', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35386', 'Hida', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35387', 'Horoatu Crasnei', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35388', 'Ileanda', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35389', 'Ip', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35390', 'Jibou', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35391', 'Letca', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35392', 'Lozna', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35393', 'Maeriste', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35394', 'Marca', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35395', 'Mesesenii de Jos', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35396', 'Mirsid', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35397', 'Napradea', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35398', 'Nusfalau', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35399', 'Periceiu', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35400', 'Plopis', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35401', 'Poiana Blenchii', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35402', 'Romanasi', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35403', 'Rus', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35404', 'Sag', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35405', 'Salatig', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35406', 'Samsud', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35407', 'Sanmihaiul-Almasului', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35408', 'Sarmasag', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35409', 'Simleu Silvaniei', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35410', 'Somes-Odorhei', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35411', 'Surduc', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35412', 'Treznea', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35413', 'Valcau de Jos', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35414', 'Varsolt', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35415', 'Zalau', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35416', 'Zalha', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35417', 'Zimbor', '2966', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35418', 'Agnita', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35419', 'Altina', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35420', 'Apoldu de Jos', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35421', 'Arpasu de Jos', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35422', 'Atel', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35423', 'Avrig', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35424', 'Axente Sever', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35425', 'Barghis', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35426', 'Bazna', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35427', 'Biertan', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35428', 'Blajel', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35429', 'Bradeni', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35430', 'Brateiu', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35431', 'Bruiu', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35432', 'Carta', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35433', 'Cartisoara', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35434', 'Chirpar', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35435', 'Cisnadie', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35436', 'Copsa Mica', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35437', 'Cristian', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35438', 'Darlos', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35439', 'Dumbraveni', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35440', 'Gura Raului', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35441', 'Hoghilag', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35442', 'Iacobeni', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35443', 'Jina', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35444', 'Laslea', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35445', 'Loamnes', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35446', 'Ludos', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35447', 'Marpod', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35448', 'Medias', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35449', 'Merghindeal', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35450', 'Micasasa', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35451', 'Miercurea Sibiului', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35452', 'Mihaileni', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35453', 'Mosna', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35454', 'Nocrich', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35455', 'Ocna Sibiului', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35456', 'Orlat', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35457', 'Pauca', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35458', 'Poiana Sibiului', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35459', 'Poplaca', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35460', 'Porumbacu de Jos', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35461', 'Racovita', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35462', 'Rasinari', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35463', 'Rau Sadului', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35464', 'Rosia', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35465', 'Sadu', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35466', 'Saliste', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35467', 'Seica Mare', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35468', 'Seica Mica', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35469', 'Selimbar', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35470', 'Sibiu', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35471', 'Slimnic', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35472', 'Sura Mare', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35473', 'Sura Mica', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35474', 'Talmaciu', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35475', 'Tarnava', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35476', 'Tilisca', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35477', 'Turnu Rosu', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35478', 'Valea Viilor', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35479', 'Vurpar', '2968', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35480', 'Sondelor', '2969', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35481', 'Adancata', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35482', 'Arbore', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35483', 'Baia', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35484', 'Balcauti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35485', 'Bilca', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35486', 'Bogdanesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35487', 'Boroaia', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35488', 'Bosanci', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35489', 'Botosana', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35490', 'Breaza', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35491', 'Brodina', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35492', 'Brosteni', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35493', 'Bunesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35494', 'Cacica', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35495', 'Cajvana', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35496', 'Calafindesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35497', 'Campulung Moldovenesc', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35498', 'Carlibaba', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35499', 'Ciprian Porumbescu', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35500', 'Cornu Luncii', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35501', 'Crucea', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35502', 'Darmanesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35503', 'Dolhasca', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35504', 'Dolhesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35505', 'Dorna', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35506', 'Dorna Candrenilor', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35507', 'Dornesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35508', 'Dragoesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35509', 'Draguseni', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35510', 'Dumbraveni', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35511', 'Falticeni', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35512', 'Fantanele', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35513', 'Forasti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35514', 'Frasin', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35515', 'Fratautii Noi', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35516', 'Fratautii Vechi', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35517', 'Frumosu', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35518', 'Fundu Moldovei', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35519', 'Galanesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35520', 'Gramesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35521', 'Granicesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35522', 'Gura Humorului', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35523', 'Horodniceni', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35524', 'Horodnicu', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35525', 'Iacobeni', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35526', 'Ipotesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35527', 'Izvoarele Sucevei', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35528', 'Liteni', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35529', 'Malini', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35530', 'Manastirea Homorului', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35531', 'Marginea', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35532', 'Milisauti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35533', 'Mitocu Dragomirnei', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35534', 'Moara', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35535', 'Moldova Sulita', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35536', 'Moldovita', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35537', 'Musenita', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35538', 'Ostra', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35539', 'Paltinoasa', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35540', 'Panaci', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35541', 'Partestii de Jos', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35542', 'Patrauti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35543', 'Poiana Stampei', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35544', 'Pojorata', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35545', 'Preutesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35546', 'Putna', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35547', 'Radaseni', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35548', 'Radauti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35549', 'Rasca', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35550', 'Sadova', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35551', 'Salcea', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35552', 'Saru Dornei', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35553', 'Satu Mare', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35554', 'Scheia', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35555', 'Siminicea', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35556', 'Siret', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35557', 'Slatina', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35558', 'Solca', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35559', 'Straja', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35560', 'Stroiesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35561', 'Stulpicani', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35562', 'Suceava', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35563', 'Sucevita', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35564', 'Todiresti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35565', 'Udesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35566', 'Ulma', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35567', 'Vadu Moldovei', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35568', 'Valea Moldovei', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35569', 'Vama', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35570', 'Vatra Dornei', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35571', 'Vatra Moldovitei', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35572', 'Veresti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35573', 'Vicovu de Jos', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35574', 'Vicovu de Sus', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35575', 'Volovat', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35576', 'Vulturesti', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35577', 'Zamostea', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35578', 'Zvoristea', '2970', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35579', 'Alexandria', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35580', 'Babaita', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35581', 'Balaci', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35582', 'Blejesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35583', 'Bogdana', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35584', 'Botoroaga', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35585', 'Bragadiru', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35586', 'Branceni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35587', 'Bujoreni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35588', 'Bujoru', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35589', 'Buzescu', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35590', 'Calinesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35591', 'Calmatuiu', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35592', 'Cervenia', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35593', 'Ciolanesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35594', 'Ciuperceni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35595', 'Contesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35596', 'Cosmesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35597', 'Crangeni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35598', 'Crangu', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35599', 'Crevenicu', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35600', 'Didesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35601', 'Dobrotesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35602', 'Dracsenei', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35603', 'Draganesti de Vede', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35604', 'Draganesti-Vlasca', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35605', 'Frumoasa', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35606', 'Furculesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35607', 'Galateni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35608', 'Gratia', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35609', 'Islaz', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35610', 'Izvoarele', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35611', 'Lisa', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35612', 'Lita', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35613', 'Lunca', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35614', 'Magura', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35615', 'Maldaeni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35616', 'Marzanesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35617', 'Mavrodin', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35618', 'Mereni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35619', 'Mosteni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35620', 'Nanov', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35621', 'Nasturelu', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35622', 'Necsesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35623', 'Olteni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35624', 'Orbeasca', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35625', 'Peretu', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35626', 'Piatra', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35627', 'Pietrosani', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35628', 'Plopii Slavitesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35629', 'Plosca', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35630', 'Poeni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35631', 'Poroschia', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35632', 'Putineiu', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35633', 'Radoiesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35634', 'Rasmiresti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35635', 'Rosiori de Vede', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35636', 'Saceni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35637', 'Salcia', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35638', 'Sarbeni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35639', 'Scrioastea', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35640', 'Scurtu Mare', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35641', 'Seaca', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35642', 'Segarcea Vale', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35643', 'Sfintesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35644', 'Silistea', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35645', 'Silistea-Gumesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35646', 'Slobozia-Mandra', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35647', 'Smardioasa', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35648', 'Stejaru', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35649', 'Storobaneasa', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35650', 'Suhaia', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35651', 'Talpa', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35652', 'Tatarastii de Jos', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35653', 'Tatarastii de Sus', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35654', 'Tiganesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35655', 'Traian', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35656', 'Trivalea-Mosteni', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35657', 'Troianul', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35658', 'Turnu Magurele', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35659', 'Vartoapele-de-Jos', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35660', 'Vedea', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35661', 'Videle', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35662', 'Viisoara', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35663', 'Vitanesti', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35664', 'Zambreasca', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35665', 'Zimnicea', '2971', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35666', 'Balint', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35667', 'Banloc', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35668', 'Bara', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35669', 'Barna', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35670', 'Beba Veche', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35671', 'Becicherecu Mic', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35672', 'Belint', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35673', 'Bethausen', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35674', 'Biled', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35675', 'Bogda', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35676', 'Boldur', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35677', 'Brestovat', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35678', 'Buzias', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35679', 'Carpinis', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35680', 'Cenad', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35681', 'Cenei', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35682', 'Cheveresu Mare', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35683', 'Ciacova', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35684', 'Comlosu Mare', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35685', 'Costeiu', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35686', 'Criciova', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35687', 'Curtea', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35688', 'Darova', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35689', 'Denta', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35690', 'Deta', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35691', 'Dudestii Vechi', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35692', 'Dumbrava', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35693', 'Dumbravita', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35694', 'Faget', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35695', 'Fardea', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35696', 'Foeni', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35697', 'Gataia', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35698', 'Gavojdia', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35699', 'Ghiroda', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35700', 'Ghizela', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35701', 'Giarmata', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35702', 'Giera', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35703', 'Giroc', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35704', 'Giulvaz', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35705', 'Jamu Mare', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35706', 'Jebel', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35707', 'Jimbolia', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35708', 'Lenauheim', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35709', 'Liebling', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35710', 'Lovrin', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35711', 'Lugoj', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35712', 'Manastiur', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35713', 'Margina', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35714', 'Masloc', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35715', 'Moravita', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35716', 'Mosnita Noua', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35717', 'Nadrag', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35718', 'Nitchidorf', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35719', 'Ohaba Lunga', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35720', 'Ortisoara', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35721', 'Peciu Nou', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35722', 'Periam', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35723', 'Pietroasa', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35724', 'Pischia', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35725', 'Racovita', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35726', 'Recas', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35727', 'Remetea Mare', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35728', 'Sacalaz', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35729', 'Sacosu Turcesc', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35730', 'Sag', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35731', 'Sanandrei', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35732', 'Sanmihaiu Roman', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35733', 'Sannicolaul Mare', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35734', 'Sanpetrul-Mare', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35735', 'Satchinez', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35736', 'Secas', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35737', 'Stiuca', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35738', 'Teremia Mare', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35739', 'Timisoara', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35740', 'Tomesti', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35741', 'Topolovatu Mare', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35742', 'Tormac', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35743', 'Traian Vuia', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35744', 'Uivar', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35745', 'Varias', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35746', 'Victor Vlad Delamarina', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35747', 'Voiteg', '2972', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35748', 'Babadag', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35749', 'Baia', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35750', 'Beidaud', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35751', 'Carcaliu', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35752', 'Casimcea', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35753', 'Ceamurlia de Jos', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35754', 'Ceatalchioi', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35755', 'Cerna', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35756', 'Chilia Veche', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35757', 'Ciucurova', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35758', 'Constantin Rosetti', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35759', 'Crisan', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35760', 'Daeni', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35761', 'Dorobantu', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35762', 'Frecatei', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35763', 'Greci', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35764', 'Grindu', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35765', 'Hamcearca', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35766', 'Horia', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35767', 'Ion Bratianu', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35768', 'Isaccea', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35769', 'Izvoarele', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35770', 'Jijila', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35771', 'Jurilovca', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35772', 'Luncavita', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35773', 'Macin', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35774', 'Mahmudia', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35775', 'Malnas', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35776', 'Mihai Bravu', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35777', 'Mihail Kogalniceanu', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35778', 'Murighiol', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35779', 'Nalbant', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35780', 'Niculitel', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35781', 'Nufaru', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35782', 'Ostrov', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35783', 'Pardina', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35784', 'Peceneaga', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35785', 'Sarichioi', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35786', 'Sfantu Gheorghe', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35787', 'Slava Cercheza', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35788', 'Smardan', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35789', 'Somova', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35790', 'Stejaru', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35791', 'Sulina', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35792', 'Topolog', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35793', 'Tulcea', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35794', 'Turcoaia', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35795', 'Valea Nucarilor', '2973', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35796', 'Alunu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35797', 'Amarasti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35798', 'Babeni', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35799', 'Baile Govora', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35800', 'Baile Olanesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35801', 'Balcesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35802', 'Barbatesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35803', 'Berbesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35804', 'Berislavesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35805', 'Boisoara', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35806', 'Brezoi', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35807', 'Budesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35808', 'Bujoreni', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35809', 'Bunesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35810', 'Caineni', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35811', 'Calimanesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35812', 'Cernisoara', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35813', 'Copaceni', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35814', 'Costesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35815', 'Creteni', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35816', 'Daesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35817', 'Danicei', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35818', 'Dragasani', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35819', 'Dragoesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35820', 'Fartatesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35821', 'Fauresti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35822', 'Francesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35823', 'Galicea', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35824', 'Ghioroiu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35825', 'Glavile', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35826', 'Golesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35827', 'Gradistea', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35828', 'Gusoeni', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35829', 'Horezu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35830', 'Ionesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35831', 'Ladesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35832', 'Lalosu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35833', 'Lapusata', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35834', 'Livezi', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35835', 'Lungesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35836', 'Maciuca', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35837', 'Madulari', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35838', 'Malaia', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35839', 'Maldaresti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35840', 'Mateesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35841', 'Mihaesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35842', 'Milcoiu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35843', 'Muereasca', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35844', 'Nicolae Balcescu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35845', 'Ocnele Mari', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35846', 'Olanu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35847', 'Orlesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35848', 'Otesani', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35849', 'Pausesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35850', 'Pausesti-Maglasi', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35851', 'Perisani', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35852', 'Pesceana', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35853', 'Pietrari', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35854', 'Popesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35855', 'Prundeni', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35856', 'Racovita', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35857', 'Ramnicu Valcea', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35858', 'Roesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35859', 'Rosiile', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35860', 'Runcu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35861', 'Salatrucel', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35862', 'Scundu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35863', 'Sinesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35864', 'Sirineasa', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35865', 'Slatioara', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35866', 'Stanesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35867', 'Stefanesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35868', 'Stoenesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35869', 'Stoilesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35870', 'Stroesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35871', 'Susani', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35872', 'Sutesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35873', 'Tetoiu', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35874', 'Tomsani', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35875', 'Vaideeni', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35876', 'Valea Mare', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35877', 'Vladesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35878', 'Voicesti', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35879', 'Voineasa', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35880', 'Zatreni', '2974', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35881', 'Albesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35882', 'Alexandru Vlahuta', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35883', 'Arsura', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35884', 'Bacani', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35885', 'Bacesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35886', 'Balteni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35887', 'Banca', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35888', 'Barlad', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35889', 'Berezeni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35890', 'Blagesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35891', 'Bogdana', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35892', 'Bogdanesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35893', 'Bogdanita', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35894', 'Botesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35895', 'Bunesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35896', 'Codaesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35897', 'Coroiesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35898', 'Costesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35899', 'Cretesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35900', 'Danesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35901', 'Deleni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35902', 'Delesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35903', 'Dimitrie Cantemir', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35904', 'Dragomiresti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35905', 'Dranceni Sat', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35906', 'Duda', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35907', 'Dumesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35908', 'Epureni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35909', 'Falciu', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35910', 'Gagesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35911', 'Garceni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35912', 'Gherghesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35913', 'Grivita', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35914', 'Hoceni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35915', 'Husi', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35916', 'Iana', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35917', 'Ivanesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35918', 'Ivesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35919', 'Laza', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35920', 'Lipovat', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35921', 'Lunca Banului', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35922', 'Malusteni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35923', 'Miclesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35924', 'Muntenii de Jos', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35925', 'Murgeni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35926', 'Negresti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35927', 'Oltenesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35928', 'Osesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35929', 'Padureni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35930', 'Perieni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35931', 'Pogana', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35932', 'Poienesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35933', 'Puiesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35934', 'Pungesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35935', 'Rebricea', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35936', 'Rosiesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35937', 'Solesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35938', 'Stanilesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35939', 'Stefan cel Mare', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35940', 'Suletea', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35941', 'Tacuta', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35942', 'Tanacu', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35943', 'Tatarani', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35944', 'Todiresti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35945', 'Tutova', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35946', 'Valeni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35947', 'Vaslui', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35948', 'Vetrisoaia', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35949', 'Viisoara', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35950', 'Vinderei', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35951', 'Voinesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35952', 'Vulturesti', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35953', 'Vutcani', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35954', 'Zapodeni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35955', 'Zorleni', '2975', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35956', 'Adjud', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35957', 'Andreiasu de Jos', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35958', 'Balesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35959', 'Barsesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35960', 'Boghesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35961', 'Bolotesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35962', 'Bordesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35963', 'Brosteni', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35964', 'Campineanca', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35965', 'Campuri', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35966', 'Carligele', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35967', 'Chiojdeni', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35968', 'Ciorasti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35969', 'Corbita', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35970', 'Cotesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35971', 'Dumbraveni', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35972', 'Dumitresti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35973', 'Fitionesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35974', 'Focsani', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35975', 'Garoafa', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35976', 'Golesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35977', 'Gugesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35978', 'Gura Calitei', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35979', 'Homocea', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35980', 'Jaristea', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35981', 'Jitia', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35982', 'Maicanesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35983', 'Marasesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35984', 'Mera', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35985', 'Milcovul', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35986', 'Movilita', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35987', 'Nanesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35988', 'Naruja', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35989', 'Nereju', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35990', 'Nistoresti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35991', 'Odobesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35992', 'Paltin', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35993', 'Panciu', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35994', 'Paunesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35995', 'Poiana Cristei', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35996', 'Pufesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35997', 'Racoasa', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35998', 'Reghiu', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('35999', 'Ruginesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36000', 'Sihlea', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36001', 'Slobozia Bradului', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36002', 'Slobozia-Ciorasti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36003', 'Soveja', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36004', 'Straoane', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36005', 'Suraia', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36006', 'Tamboesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36007', 'Tanasoaia', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36008', 'Tataranu', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36009', 'Tifesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36010', 'Tulnici', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36011', 'Urechesti', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36012', 'Valea Sarii', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36013', 'Vanatori', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36014', 'Vartescoiu', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36015', 'Vidra', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36016', 'Vintileasca', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36017', 'Vizantea', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36018', 'Vrancioaia', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36019', 'Vulturu', '2976', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36020', 'Adygejsk', '2977', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36021', 'Enem', '2977', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36022', 'Jablonovskij', '2977', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36023', 'Kamennomostskij', '2977', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36024', 'Majkop', '2977', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36025', 'Tulskij', '2977', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36026', 'Aginskoje', '2978', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36027', 'Alagir', '2979', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36028', 'Ardon', '2979', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36029', 'Beslan', '2979', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36030', 'Digora', '2979', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36031', 'Mozdok', '2979', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36032', 'Vladikavkaz', '2979', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36033', 'Zavodskoj', '2979', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36034', 'Alejsk', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36035', 'Barnaul', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36036', 'Belojarsk', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36037', 'Belokuriha', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36038', 'Bijsk', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36039', 'Blagoveshchenka', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36040', 'Gornjak', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36041', 'Jarovoe', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36042', 'Juzhnyj', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36043', 'Kamen-na-Obi', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36044', 'Novoaltajsk', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36045', 'Novosilikatnyj', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36046', 'Rubcovsk', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36047', 'Sibirskiy', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36048', 'Slavgorod', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36049', 'Talmenka', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36050', 'Zarinsk', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36051', 'Zmeinogorsk', '2980', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36052', 'Arhara', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36053', 'Belogorsk', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36054', 'Blagoveshchensk', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36055', 'Jerofej Pavlovich', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36056', 'Magdagachi', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36057', 'Novoburejskij', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36058', 'Progress', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36059', 'Rajchihinsk', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36060', 'Seryshevo', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36061', 'Shimanovsk', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36062', 'Skovorodino', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36063', 'Svobodnyj', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36064', 'Tynda', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36065', 'Urusha', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36066', 'Zavitinsk', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36067', 'Zeja', '2981', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36068', 'Arhangelsk', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36069', 'Jemca', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36070', 'Jercevo', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36071', 'Kargopol', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36072', 'Konosha', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36073', 'Korjazhma', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36074', 'Kotlas', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36075', 'Kuloj', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36076', 'Maloshujka', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36077', 'Mirnyj', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36078', 'Njandoma', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36079', 'Novodvinsk', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36080', 'Obozjorskij', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36081', 'Oktjabrskij', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36082', 'Onega', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36083', 'Plesetsk', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36084', 'Podjuga', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36085', 'Puksoozero', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36086', 'Samoded', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36087', 'Savinskij', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36088', 'Severodvinsk', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36089', 'Shenkursk', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36090', 'Udimskij', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36091', 'Urdoma', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36092', 'Velsk', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36093', 'Vychegodskij', '2982', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36094', 'Ahtubinsk', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36095', 'Astrahan', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36096', 'Harabali', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36097', 'Kamyzjak', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36098', 'Kapustin Jar', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36099', 'Liman', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36100', 'Narimanov', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36101', 'Verhnij Baskunchak', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36102', 'Volodarskij', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36103', 'Znamensk', '2983', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36104', 'Agidel', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36105', 'Bajmak', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36106', 'Belebej', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36107', 'Beloreck', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36108', 'Birsk', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36109', 'Blagoveshchensk', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36110', 'Chishmy', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36111', 'Davlekanovo', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36112', 'Djurtjuli', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36113', 'Iglino', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36114', 'Ishimbaj', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36115', 'Janaul', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36116', 'Jermolajevo', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36117', 'Kandry', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36118', 'Krasnousolskij', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36119', 'Kumertau', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36120', 'Meleuz', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36121', 'Mezhgorje', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36122', 'Neftekamsk', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36123', 'Oktjabrskij', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36124', 'Oktyabrsky', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36125', 'Prijutovo', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36126', 'Rajevskij', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36127', 'Salavat', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36128', 'Serafimovskij', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36129', 'Sibaj', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36130', 'Sterlitamak', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36131', 'Tujmazy', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36132', 'Uchaly', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36133', 'Ufa', '2984', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36134', 'Aleksejevka', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36135', 'Belgorod', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36136', 'Borisovka', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36137', 'Chernjanka', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36138', 'Grajvoron', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36139', 'Gubkin', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36140', 'Novyj Oskol', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36141', 'Rakitnoe', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36142', 'Razumnoe', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36143', 'Shebekino', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36144', 'Staryj Oskol', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36145', 'Stroitel', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36146', 'Tomarovka', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36147', 'Valujki', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36148', 'Volokonovka', '2985', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36149', 'Belye Berega', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36150', 'Brjansk', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36151', 'Djatkovo', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36152', 'Fokino', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36153', 'Karachev', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36154', 'Kletnja', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36155', 'Klimovo', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36156', 'Klincy', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36157', 'Lokot', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36158', 'Navlja', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36159', 'Novozybkov', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36160', 'Pochjop', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36161', 'Pogar', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36162', 'Selco', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36163', 'Starodub', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36164', 'Surazh', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36165', 'Suzjomka', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36166', 'Trubchjovsk', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36167', 'Unecha', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36168', 'Zhukovka', '2986', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36169', 'Gusinoozjorsk', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36170', 'Kamensk', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36171', 'Kjahta', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36172', 'Novyj Uojan', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36173', 'Onohoj', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36174', 'Selenginsk', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36175', 'Severobajkalsk', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36176', 'Taksimo', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36177', 'Ulan-Ude', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36178', 'Zakamensk', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36179', 'Zarechnyj', '2987', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36180', 'Groznyj', '2988', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36181', 'Gudermes', '2988', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36182', 'Malgobek', '2988', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36183', 'Urus-Martan', '2988', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36184', 'Asha', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36185', 'Bakal', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36186', 'Bazhovo', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36187', 'Berdjaush', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36188', 'Chebarkul', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36189', 'Cheljabinsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36190', 'Chelyabinsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36191', 'Gornjak', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36192', 'Jemanzhelinsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36193', 'Jurjuzan', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36194', 'Juznouralsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36195', 'Karabash', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36196', 'Kartaly', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36197', 'Kasli', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36198', 'Katav-Ivanovsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36199', 'Kopejsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36200', 'Korkino', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36201', 'Krasnogorskij', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36202', 'Kusa', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36203', 'Kyshtym', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36204', 'Lokomotivnyj', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36205', 'Magnitka', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36206', 'Magnitogorsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36207', 'Miass', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36208', 'Minjar', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36209', 'Njazepetrovsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36210', 'Novosineglazovskij', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36211', 'Ozjorsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36212', 'Pervomajskij', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36213', 'Plast', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36214', 'Roza', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36215', 'Satka', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36216', 'Sim', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36217', 'Snezhinsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36218', 'Starokamyshinsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36219', 'Suleja', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36220', 'Trjohgornij', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36221', 'Troick', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36222', 'Ust-Katav', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36223', 'Verhneuralsk', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36224', 'Verhnij Ufalej', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36225', 'Zlatoust', '2989', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36226', 'Atamanovka', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36227', 'Balej', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36228', 'Borzja', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36229', 'Bukachacha', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36230', 'Chernyshevsk', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36231', 'Chita', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36232', 'Darasun', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36233', 'Gornyy', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36234', 'Hilok', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36235', 'Karymskoje', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36236', 'Krasnokamensk', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36237', 'Mogocha', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36238', 'Nerchinsk', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36239', 'Novaja Chara', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36240', 'Novokruchuninskij', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36241', 'Olovjannaja', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36242', 'Pervomajskij', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36243', 'Petrovsk-Zabajkalskij', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36244', 'Sherlovaja Gora', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36245', 'Shilka', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36246', 'Sretensk', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36247', 'Vershino-Darasunskij', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36248', 'Zabajkalsk', '2990', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36249', 'Anadyr', '2991', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36250', 'Bilibino', '2991', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36251', 'Pevek', '2991', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36252', 'Ugolnyje Kopi', '2991', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36253', 'Alatyr', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36254', 'Cheboksary', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36255', 'Civilsk', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36256', 'Ibresi', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36257', 'Jadrin', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36258', 'Kanash', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36259', 'Kozlovka', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36260', 'Kugesy', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36261', 'Mariinskij Posad', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36262', 'Novocheboksarsk', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36263', 'Shumerlja', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36264', 'Vurnary', '2992', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36265', 'Belidzhi', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36266', 'Bujnaksk', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36267', 'Dagestanskije Ogni', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36268', 'Derbent', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36269', 'Hasavjurt', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36270', 'Izberbash', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36271', 'Juzhno-Suhokumsk', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36272', 'Kaspijsk', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36273', 'Kiziljurt', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36274', 'Kizljar', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36275', 'Mahackala', '2993', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36276', 'Tura', '2994', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36277', 'Gorno-Altajsk', '2995', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36278', 'Amursk', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36279', 'Bikin', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36280', 'Chegdomyn', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36281', 'Cherdomyn', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36282', 'Habarovsk', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36283', 'Hor', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36284', 'Jelban', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36285', 'Komsomolsk-na-Amure', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36286', 'Litovko', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36287', 'Nikolajevsk-na-Amure', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36288', 'Ohotsk', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36289', 'Perejaslavka', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36290', 'Solnechnyj', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36291', 'Sovetskaja Gavan', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36292', 'Uglegorsk', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36293', 'Vanino', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36294', 'Vjazemskij', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36295', 'Zavety Iljicha', '2996', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36296', 'Abakan', '2997', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36297', 'Abaza', '2997', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36298', 'Cherjomushki', '2997', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36299', 'Chernogorsk', '2997', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36300', 'Sajanogorsk', '2997', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36301', 'Shira', '2997', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36302', 'Sorsk', '2997', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36303', 'Ust-Abakan', '2997', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36304', 'Belojarskij', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36305', 'Belyj Jar', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36306', 'Fjodorovskij', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36307', 'Hanty-Mansijsk', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36308', 'Igrim', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36309', 'Izluchinsk', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36310', 'Jugorsk', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36311', 'Kogalym', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36312', 'Langepas', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36313', 'Ljantor', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36314', 'Megion', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36315', 'Mezhdurechenskij', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36316', 'Neftejugansk', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36317', 'Nizhnevartovsk', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36318', 'Njagan', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36319', 'Novoagansk', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36320', 'Pojkovskij', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36321', 'Pokachi', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36322', 'Raduzhnyj', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36323', 'Sovetskij', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36324', 'Surgut', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36325', 'Uraj', '2998', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36326', 'Karabulak', '2999', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36327', 'Nazran', '2999', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36328', 'Angarsk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36329', 'Bajkalsk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36330', 'Balagansk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36331', 'Birjusinsk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36332', 'Bodajbo', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36333', 'Bratsk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36334', 'Cheremhovo', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36335', 'Chunskij', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36336', 'Irkutsk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36337', 'Kirensk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36338', 'Kujtun', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36339', 'Mihajlovka', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36340', 'Nizhneudinsk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36341', 'Novaja Igirma', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36342', 'Sajansk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36343', 'Shelehov', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36344', 'Sljudjanka', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36345', 'Svirsk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36346', 'Tajshet', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36347', 'Tulun', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36348', 'Usolje-Sibirskoje', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36349', 'Ust-Ilimsk', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36350', 'Ust-Kut', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36351', 'Vihorevka', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36352', 'Zalari', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36353', 'Zheleznodorozhnyj', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36354', 'Zheleznogorsk-Ilimskij', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36355', 'Zima', '3000', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36356', 'Furmanov', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36357', 'Ivanovo', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36358', 'Jurjevec', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36359', 'Juzha', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36360', 'Kineshma', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36361', 'Kohma', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36362', 'Komsomolsk', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36363', 'Lezhnjovo', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36364', 'Navoloki', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36365', 'Privolzhsk', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36366', 'Puchezh', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36367', 'Rodniki', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36368', 'Shuja', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36369', 'Tejkovo', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36370', 'Vichuga', '3001', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36371', 'Gubkinskij', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36372', 'Korotchajevo', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36373', 'Labytnangi', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36374', 'Muravlenko', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36375', 'Nadym', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36376', 'Nojabrsk', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36377', 'Novyj Urengoj', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36378', 'Pangody', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36379', 'Salehard', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36380', 'Tarko-Sale', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36381', 'Urengoj', '3002', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36382', 'Danilov', '3003', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36383', 'Gavrilov-Jam', '3003', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36384', 'Jaroslavl', '3003', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36385', 'Pereslavl-Zalesskij', '3003', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36386', 'Rostov', '3003', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36387', 'Rybinsk', '3003', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36388', 'Tutajev', '3003', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36389', 'Uglich', '3003', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36390', 'Birakan', '3004', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36391', 'Birobidzhan', '3004', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36392', 'Imeni Telmana', '3004', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36393', 'Izvestkovyj', '3004', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36394', 'Londoko', '3004', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36395', 'Obluchje', '3004', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36396', 'Teploozjorsk', '3004', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36397', 'Baksan', '3005', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36398', 'Chegem Pervyj', '3005', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36399', 'Majskij', '3005', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36400', 'Nalchik', '3005', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36401', 'Nartkala', '3005', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36402', 'Prohladnyj', '3005', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36403', 'Terek', '3005', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36404', 'Tyrnyauz', '3005', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36405', 'Bagrationovsk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36406', 'Baltijsk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36407', 'Chernjahovsk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36408', 'Gurjevsk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36409', 'Gusev', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36410', 'Gvardejsk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36411', 'Kaliningrad', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36412', 'Mamonovo', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36413', 'Neman', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36414', 'Nesterov', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36415', 'Ozjorsk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36416', 'Pionerskij', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36417', 'Sovetsk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36418', 'Svetlogorsk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36419', 'Svetlyj', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36420', 'Zeljenogradsk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36421', 'Znamensk', '3006', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36422', 'Elista', '3007', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36423', 'Gorodovikovsk', '3007', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36424', 'Lagan', '3007', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36425', 'Balabanovo', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36426', 'Belousovo', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36427', 'Borovsk', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36428', 'Jermolino', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36429', 'Kaluga', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36430', 'Kirov', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36431', 'Kondrovo', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36432', 'Kozelsk', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36433', 'Kremenki', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36434', 'Ljudinovo', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36435', 'Malojaroslavec', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36436', 'Obninsk', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36437', 'Sosenskij', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36438', 'Suhinichi', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36439', 'Tarusa', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36440', 'Tovarkovo', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36441', 'Zhukov', '3008', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36442', 'Jelizovo', '3009', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36443', 'Kljuchi', '3009', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36444', 'Mohovaja', '3009', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36445', 'Petropavlovsk-Kamchatskij', '3009', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36446', 'Ust-Kamchatsk', '3009', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36447', 'Viljuchinsk', '3009', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36448', 'Vulkannyj', '3009', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36449', 'Cherkessk', '3010', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36450', 'Karachajevsk', '3010', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36451', 'Ust-Dzheguta', '3010', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36452', 'Belomorsk', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36453', 'Kem', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36454', 'Kondopoga', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36455', 'Kostomuksha', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36456', 'Lahdenpohja', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36457', 'Medvezhjegorsk', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36458', 'Nadvoicy', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36459', 'Olonec', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36460', 'Petrozavodsk', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36461', 'Pitkjaranta', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36462', 'Pudozh', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36463', 'Segezha', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36464', 'Sortavala', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36465', 'Suojarvi', '3011', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36466', 'Anzhero-Sudzhensk', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36467', 'Bachatskij', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36468', 'Belovo', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36469', 'Berjozovskij', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36470', 'Gramoteino', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36471', 'Gurjevsk', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36472', 'Inskoj', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36473', 'Jashkino', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36474', 'Jurga', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36475', 'Kaltan', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36476', 'Kedrovka', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36477', 'Kemerovo', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36478', 'Kiseljovsk', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36479', 'Krasnobrodskij', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36480', 'Leninsk-Kuzneckij', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36481', 'Malinovka', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36482', 'Mariinsk', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36483', 'Mezhdurechensk', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36484', 'Myski', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36485', 'Novokuzneck', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36486', 'Novokuznetsk', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36487', 'Novyj Gorodok', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36488', 'Osinniki', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36489', 'Polsaevo', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36490', 'Prokopjevsk', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36491', 'Promyshlennaja', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36492', 'Promyshlennovskij', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36493', 'Salair', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36494', 'Starobachaty', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36495', 'Tajga', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36496', 'Tajzhina', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36497', 'Tashtagol', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36498', 'Temirtau', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36499', 'Tisul', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36500', 'Tjazhinskij', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36501', 'Topki', '3012', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36502', 'Belaja Holunica', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36503', 'Jaransk', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36504', 'Jurja', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36505', 'Kirov', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36506', 'Kirovo-Chepeck', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36507', 'Kirs', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36508', 'Kotelnich', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36509', 'Ljangasovo', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36510', 'Luza', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36511', 'Malmyzh', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36512', 'Murashi', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36513', 'Nolinsk', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36514', 'Omutninsk', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36515', 'Orichi', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36516', 'Orlov', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36517', 'Pervomajskij', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36518', 'Peskovka', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36519', 'Slobodskoj', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36520', 'Sosnovka', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36521', 'Sovetsk', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36522', 'Urzhum', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36523', 'Vahrushi', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36524', 'Vjatskije Poljany', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36525', 'Zujevka', '3014', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36526', 'Blagoevo', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36527', 'Inta', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36528', 'Jarega', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36529', 'Jeletskij', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36530', 'Jemva', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36531', 'Komsomolskij', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36532', 'Krasnozatonskij', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36533', 'Mikun', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36534', 'Nizhnij Odes', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36535', 'Pechora', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36536', 'Promyshlennyj', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36537', 'Severnyj', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36538', 'Sosnogorsk', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36539', 'Syktyvkar', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36540', 'Troicko-Pechorsk', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36541', 'Uhta', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36542', 'Usinsk', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36543', 'Usogorsk', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36544', 'Vorgashor', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36545', 'Vorkuta', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36546', 'Vuktyl', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36547', 'Zheshart', '3015', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36548', 'Kudymkar', '3016', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36549', 'Palana', '3017', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36550', 'Buj', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36551', 'Galich', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36552', 'Kostroma', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36553', 'Makarjev', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36554', 'Manturovo', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36555', 'Neja', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36556', 'Nerehta', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36557', 'Sharja', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36558', 'Vetluzhskij', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36559', 'Volgorechensk', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36560', 'Zavolzhsk', '3018', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36561', 'Abinsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36562', 'Achujevo', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36563', 'Afipskij', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36564', 'Ahtyrskij', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36565', 'Anapa', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36566', 'Apsheronsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36567', 'Armavir', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36568', 'Belorechensk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36569', 'Gelendzhik', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36570', 'Gorjachi Kljuch', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36571', 'Gulkevichi', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36572', 'Hadyzhensk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36573', 'Ilskij', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36574', 'Jejsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36575', 'Kalinino', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36576', 'Korenovsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36577', 'Krasnodar', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36578', 'Kropotkin', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36579', 'Krymsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36580', 'Kurganinsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36581', 'Labinsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36582', 'Mostovskoj', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36583', 'Neftegorsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36584', 'Novokubansk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36585', 'Novomihajlovskij', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36586', 'Novorossijsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36587', 'Pashkovskij', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36588', 'Primorsko-Ahtarsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36589', 'Psebaj', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36590', 'Slavjansk-na-Kubani', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36591', 'Sochi', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36592', 'Srednjaja Ahtuba', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36593', 'Temrjuk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36594', 'Tihoreck', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36595', 'Timashevsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36596', 'Tuapse', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36597', 'Ust-Labinsk', '3019', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36598', 'Aban', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36599', 'Achinsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36600', 'Artjomovsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36601', 'Berjozovka', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36602', 'Bogotol', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36603', 'Borodino', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36604', 'Divnogorsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36605', 'Dubinino', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36606', 'Igarka', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36607', 'Ilanskij', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36608', 'Jemeljanovo', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36609', 'Jenisejsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36610', 'Kajerkan', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36611', 'Kansk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36612', 'Kedrovyj', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36613', 'Kodinsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36614', 'Krasnojarsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36615', 'Kuragino', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36616', 'Lesosibirsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36617', 'Minusinsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36618', 'Nazarovo', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36619', 'Nizhnjaja Pojma', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36620', 'Norilsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36621', 'Podgornyj', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36622', 'Sharypovo', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36623', 'Shushenskoe', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36624', 'Solnechnyj', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36625', 'Sosnovoborsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36626', 'Talnah', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36627', 'Ujar', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36628', 'Uzhur', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36629', 'Zaozjornyj', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36630', 'Zelenogorsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36631', 'Zheleznogorsk', '3020', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36632', 'Dalmatovo', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36633', 'Kargapolje', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36634', 'Katajsk', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36635', 'Kurgan', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36636', 'Kurtamysh', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36637', 'Makushino', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36638', 'Petuhovo', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36639', 'Shadrinsk', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36640', 'Shumiha', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36641', 'Vargashi', '3022', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36642', 'Dmitriev Lgovskij', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36643', 'Imeni Karla Libknehta', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36644', 'Kurchatov', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36645', 'Kursk', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36646', 'Lgov', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36647', 'Obojan', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36648', 'Rylsk', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36649', 'Shchigry', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36650', 'Shchuchje', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36651', 'Sudzha', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36652', 'Zheleznogorsk', '3023', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36653', 'Boksitogorsk', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36654', 'Dubrovka', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36655', 'Gatchina', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36656', 'Imeni Morozova', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36657', 'Ivangorod', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36658', 'Kingisepp', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36659', 'Kirishi', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36660', 'Kirovsk', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36661', 'Kolpino', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36662', 'Kommunar', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36663', 'Kuzmolovskiy', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36664', 'Lodejnoje Pole', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36665', 'Luga', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36666', 'Nikolskoe', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36667', 'Novaja Ladoga', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36668', 'Otradnoe', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36669', 'Pikaljovo', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36670', 'Podporozhje', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36671', 'Priozjorsk', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36672', 'Sertolovo', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36673', 'Shlisselburg', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36674', 'Siverskij', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36675', 'Sjasstroj', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36676', 'Slancy', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36677', 'Sosnovyj Bor', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36678', 'Svetogorsk', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36679', 'Tihvin', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36680', 'Tosno', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36681', 'Uljanovka', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36682', 'Volhov', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36683', 'Volosovo', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36684', 'Vsevolozhsk', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36685', 'Vyborg', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36686', 'Vyrica', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36687', 'Zarskoje Selo', '3024', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36688', 'Chaplygin', '3025', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36689', 'Dankov', '3025', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36690', 'Dobrinka', '3025', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36691', 'Grjazi', '3025', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36692', 'Jelec', '3025', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36693', 'Lebedjan', '3025', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36694', 'Lipeck', '3025', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36695', 'Usman', '3025', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36696', 'Zadonsk', '3025', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36697', 'Jagodnoje', '3026', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36698', 'Magadan', '3026', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36699', 'Ola', '3026', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36700', 'Omsukchan', '3026', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36701', 'Palatka', '3026', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36702', 'Sinegorje', '3026', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36703', 'Susuman', '3026', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36704', 'Ust-Omchug', '3026', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36705', 'Ardatov', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36706', 'Chamzinka', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36707', 'Insar', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36708', 'Komsomolskij', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36709', 'Kovylkino', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36710', 'Krasnoslobodsk', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36711', 'Luhovka', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36712', 'Romodanovo', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36713', 'Ruzajevka', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36714', 'Saransk', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36715', 'Temnikov', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36716', 'Torbeevo', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36717', 'Zubova Poljana', '3028', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36718', 'Moscow', '3029', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36719', 'Moskva', '3032', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36720', 'Vostochnyj', '3032', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36721', 'Zeljenograd', '3032', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36722', 'Apatity', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36723', 'Gadzhievo', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36724', 'Kandalaksha', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36725', 'Kirovsk', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36726', 'Kola', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36727', 'Kovdor', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36728', 'Monchegorsk', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36729', 'Murmansk', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36730', 'Murmashi', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36731', 'Nikel', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36732', 'Olenegorsk', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36733', 'Ostrovnoj', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36734', 'Poljarnye Zory', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36735', 'Poljarnyj', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36736', 'Revda', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36737', 'Severomorsk', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36738', 'Snezhnogorsk', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36739', 'Zaozjorsk', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36740', 'Zapoljarnyj', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36741', 'Zeljenoborskij', '3033', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36742', 'Narjan-Mar', '3034', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36743', 'Borovichi', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36744', 'Chudovo', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36745', 'Krestcy', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36746', 'Malaja Vishera', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36747', 'Okulovka', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36748', 'Pestovo', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36749', 'Proletarij', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36750', 'Solcy', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36751', 'Staraja Russa', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36752', 'Uglovka', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36753', 'Valdaj', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36754', 'Velikij Novgorod', '3036', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36755', 'Novokusnezk', '3037', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36756', 'Barabinsk', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36757', 'Berdsk', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36758', 'Bolotnoe', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36759', 'Chany', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36760', 'Cherepanovo', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36761', 'Chulym', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36762', 'Iskitim', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36763', 'Karasuk', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36764', 'Kargat', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36765', 'Kochenjovo', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36766', 'Kolcovo', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36767', 'Kolyvan', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36768', 'Krasnoobsk', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36769', 'Krasnozerskoe', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36770', 'Kujbyshev', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36771', 'Kupino', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36772', 'Linjovo', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36773', 'Masljanino', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36774', 'Novosibirsk', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36775', 'Ob', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36776', 'Suzun', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36777', 'Tatarsk', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36778', 'Toguchin', '3038', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36779', 'Bolsherechje', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36780', 'Cherlak', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36781', 'Isilkul', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36782', 'Kalachinsk', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36783', 'Kormilovka', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36784', 'Ljubinskij', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36785', 'Moskaljoni', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36786', 'Muromcevo', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36787', 'Nazyvajevsk', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36788', 'Omsk', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36789', 'Tara', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36790', 'Tavricheskoje', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36791', 'Tjukalinsk', '3039', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36792', 'Abdulino', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36793', 'Buguruslan', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36794', 'Buzuluk', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36795', 'Jasnyj', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36796', 'Komarovskiy', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36797', 'Kuvandyk', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36798', 'Mednogorsk', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36799', 'Novotroick', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36800', 'Orenburg', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36801', 'Orsk', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36802', 'Sol-Ileck', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36803', 'Sorochinsk', '3040', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36804', 'Bolhov', '3041', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36805', 'Gaj', '3041', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36806', 'Livny', '3041', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36807', 'Mcensk', '3041', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36808', 'Orjol', '3041', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36809', 'Znamenka', '3041', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36810', 'Bashmakovo', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36811', 'Bekovo', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36812', 'Belinskiy', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36813', 'Kamenka', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36814', 'Kolyshlej', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36815', 'Kuzneck', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36816', 'Mokshan', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36817', 'Nikolsk', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36818', 'Nizhnij Lomov', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36819', 'Pachelma', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36820', 'Penza', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36821', 'Serdobsk', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36822', 'Sursk', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36823', 'Zarechnyj', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36824', 'Zemetchino', '3042', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36825', 'Aleksandrovsk', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36826', 'Berezniki', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36827', 'Chajkovskij', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36828', 'Chermoz', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36829', 'Chernushka', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36830', 'Chusovoj', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36831', 'Dobrjanka', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36832', 'Gornozavodsk', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36833', 'Gremjachinsk', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36834', 'Gubaha', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36835', 'Jajva', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36836', 'Kizel', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36837', 'Komsomolsky', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36838', 'Krasnokamsk', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36839', 'Krasnovishersk', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36840', 'Kungur', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36841', 'Lysva', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36842', 'Novye Ljady', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36843', 'Nytva', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36844', 'Ocher', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36845', 'Oktjabrskij', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36846', 'Osa', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36847', 'Pashija', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36848', 'Perm', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36849', 'Polazna', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36850', 'Skalnyj', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36851', 'Solikamsk', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36852', 'Ugleuralskij', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36853', 'Uralskij', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36854', 'Usolje', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36855', 'Vereshchagino', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36856', 'Zvjozdnyj', '3043', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36857', 'Arsenjev', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36858', 'Artjom', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36859', 'Artjomovskij', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36860', 'Bolshoj Kamen', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36861', 'Dalnegorsk', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36862', 'Dalnerechensk', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36863', 'Dunaj', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36864', 'Fokino', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36865', 'Jaroslavskij', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36866', 'Kavalerovo', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36867', 'Kirovskiy', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36868', 'Lesozavodsk', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36869', 'Lipovcy', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36870', 'Livadija', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36871', 'Luchegorsk', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36872', 'Nahodka', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36873', 'Novoshahtinskij', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36874', 'Partizansk', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36875', 'Pogranichnyj', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36876', 'Preobrazhenie', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36877', 'Putjatin', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36878', 'Sibircevo', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36879', 'Slavjanka', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36880', 'Spassk-Dalnij', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36881', 'Tavrichanka', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36882', 'Trudovoe', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36883', 'Uglekamensk', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36884', 'Uglovoe', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36885', 'Ussurijsk', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36886', 'Vladivostok', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36887', 'Vrangel', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36888', 'Zavodskoj', '3044', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36889', 'Dedovichi', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36890', 'Dno', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36891', 'Nevel', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36892', 'Novosokolniki', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36893', 'Opochka', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36894', 'Ostrov', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36895', 'Pechory', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36896', 'Porhov', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36897', 'Pskov', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36898', 'Sebezh', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36899', 'Strugi-Krasnye', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36900', 'Velikije Luki', '3045', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36901', 'Kasimov', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36902', 'Korablino', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36903', 'Mihajlov', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36904', 'Novomichurinsk', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36905', 'Rjazan', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36906', 'Rjazhsk', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36907', 'Rybnoje', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36908', 'Sasovo', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36909', 'Shilovo', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36910', 'Skopin', '3047', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36911', 'Ajutinskij', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36912', 'Aksaj', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36913', 'Azov', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36914', 'Batajsk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36915', 'Belaja Kalitva', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36916', 'Cimljansk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36917', 'Doneck', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36918', 'Donskoj', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36919', 'Gigant', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36920', 'Glubokij', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36921', 'Gornjackij', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36922', 'Gukovo', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36923', 'Kamenolomni', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36924', 'Kamensk-Shahtinskij', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36925', 'Konstantinovsk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36926', 'Krasnyj Sulin', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36927', 'Lihovskoj', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36928', 'Majskij', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36929', 'Millerovo', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36930', 'Morozovsk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36931', 'Novocherkassk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36932', 'Novoshahtinsk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36933', 'Proletarsk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36934', 'Rostov', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36935', 'Rostov-na-Donu', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36936', 'Salsk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36937', 'Semikarakorsk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36938', 'Shahty', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36939', 'Sholohovskij', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36940', 'Sinegorskij', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36941', 'Sokolovo', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36942', 'Taganrog', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36943', 'Ust-Doneckij', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36944', 'Volgodonsk', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36945', 'Zernograd', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36946', 'Zhirnov', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36947', 'Zverevo', '3048', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36948', 'Ajhan', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36949', 'Aldan', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36950', 'Cherskij', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36951', 'Chulman', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36952', 'Deputatskij', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36953', 'Jakutsk', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36954', 'Lensk', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36955', 'Marha', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36956', 'Mirnyj', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36957', 'Nerjungri', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36958', 'Njurba', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36959', 'Oljokminsk', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36960', 'Pokrovsk', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36961', 'Sangar', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36962', 'Serebrjanyj Bor', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36963', 'Tiksi', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36964', 'Tommot', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36965', 'Udachnyj', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36966', 'Ust-Nera', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36967', 'Verhojansk', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36968', 'Viljujsk', '3049', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36969', 'Aleksandrovsk-Sahalinskij', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36970', 'Dolinsk', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36971', 'Gornozavodsk', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36972', 'Holmsk', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36973', 'Juzhno-Sahalinsk', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36974', 'Korsakov', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36975', 'Makarov', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36976', 'Nevelsk', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36977', 'Nogliki', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36978', 'Oha', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36979', 'Poronajsk', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36980', 'Shahtjorsk', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36981', 'Tymovskoje', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36982', 'Uglegorsk', '3050', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36983', 'Aleksejevka', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36984', 'Bezenchuk', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36985', 'Chapajevsk', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36986', 'Fjodorovka', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36987', 'Kinel', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36988', 'Mirnyj', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36989', 'Novokujbyshevsk', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36990', 'Novosemejkino', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36991', 'Oktjabrsk', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36992', 'Otradnyj', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36993', 'Pohvistnevo', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36994', 'Povolzhskij', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36995', 'Pribrezhnyj', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36996', 'Roscinskij', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36997', 'Samara', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36998', 'Smyshljaevka', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('36999', 'Suhodol', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37000', 'Syzran', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37001', 'Timashjovo', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37002', 'Toljatti', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37003', 'Zhigulevsk', '3051', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37004', 'Togliatti', '3052', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37005', 'Saint Petersburg', '3053', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37006', 'Sankt Peterburg', '3053', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37007', 'Arkadak', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37008', 'Atkarsk', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37009', 'Balakovo', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37010', 'Balashov', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37011', 'Bazarnyj Karabulak', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37012', 'Dergachi', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37013', 'Engels', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37014', 'Hvalynsk', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37015', 'Jershov', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37016', 'Kalininsk', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37017', 'Krasnoarmejsk', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37018', 'Krasnyj Kut', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37019', 'Marks', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37020', 'Novouzensk', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37021', 'Ozinki', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37022', 'Petrovsk', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37023', 'Privolzhskij', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37024', 'Pugachjov', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37025', 'Rtishchevo', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37026', 'Saratov', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37027', 'Shihany', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37028', 'Stepnoe', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37029', 'Svetlyj', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37030', 'Tatishchevo', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37031', 'Volsk', '3054', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37032', 'Demidov', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37033', 'Desnogorsk', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37034', 'Dorogobuzh', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37035', 'Gagarin', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37036', 'Hislavichi', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37037', 'Jarcevo', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37038', 'Jelnja', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37039', 'Pochinok', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37040', 'Roslavl', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37041', 'Rudnja', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37042', 'Safonovo', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37043', 'Smolensk', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37044', 'Verhnedneprovskij', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37045', 'Vjazma', '3055', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37046', 'Blagodarnyj', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37047', 'Budjonnovsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37048', 'Georgijevsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37049', 'Gorjachevodskij', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37050', 'Inozemcevo', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37051', 'Ipatovo', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37052', 'Izobilnyj', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37053', 'Jessentuki', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37054', 'Kislovodsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37055', 'Lermontov', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37056', 'Mihajlovsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37057', 'Mineralnyje Vody', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37058', 'Neftekumsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37059', 'Nevinnomyssk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37060', 'Novoaleksandrovsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37061', 'Novopavlovsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37062', 'Pjatigorsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37063', 'Solnechnodolsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37064', 'Stavropol', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37065', 'Svetlograd', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37066', 'Svobody', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37067', 'Zeljenokumsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37068', 'Zheleznovodsk', '3056', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37069', 'Alapajevsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37070', 'Aramil', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37071', 'Arti', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37072', 'Artjomovskij', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37073', 'Asbest', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37074', 'Baranchinskij', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37075', 'Belojarskij', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37076', 'Berjozovskij', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37077', 'Bisert', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37078', 'Bogdanovich', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37079', 'Bulanash', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37080', 'Degtjarsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37081', 'Ekaterinburg', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37082', 'Irbit', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37083', 'Ivdel', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37084', 'Izumrud', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37085', 'Jekaterinburg', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37086', 'Kachkanar', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37087', 'Kamensk-Uralskij', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37088', 'Kamyshlov', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37089', 'Karpinsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37090', 'Kirovgrad', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37091', 'Kolcovo', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37092', 'Krasnoturinsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37093', 'Krasnoufimsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37094', 'Krasnouralsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37095', 'Kushva', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37096', 'Lesnoj', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37097', 'Leviha', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37098', 'Lobva', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37099', 'Malysheva', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37100', 'Mihajlovsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37101', 'Monetnyj', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37102', 'Nevjansk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37103', 'Nizhnie Sergi', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37104', 'Nizhnij Tagil', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37105', 'Nizhnjaja Salda', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37106', 'Nizhnjaja Tura', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37107', 'Novaja Ljalja', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37108', 'Novouralsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37109', 'Pervouralsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37110', 'Polevskoj', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37111', 'Pyshma', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37112', 'Pyt-Jah', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37113', 'Reftinskij', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37114', 'Revda', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37115', 'Rezh', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37116', 'Serov', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37117', 'Severouralsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37118', 'Sosva', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37119', 'Sredneuralsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37120', 'Suhoj Log', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37121', 'Svobodnyj', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37122', 'Sysert', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37123', 'Talica', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37124', 'Tavda', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37125', 'Troickij', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37126', 'Turinsk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37127', 'Uralskij', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37128', 'Verhnij Tagil', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37129', 'Verhnjaja Pyshma', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37130', 'Verhnjaja Salda', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37131', 'Verhnjaja Sinyachiha', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37132', 'Verhnjaja Tura', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37133', 'Verhoturje', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37134', 'Volchansk', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37135', 'Yekaterinburg', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37136', 'Zarechnyj', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37137', 'Zjuzelskij', '3057', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37138', 'Dudinka', '3058', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37139', 'Dmitrievka', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37140', 'Inzhavino', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37141', 'Kirsanov', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37142', 'Kotovsk', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37143', 'Michurinsk', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37144', 'Morshansk', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37145', 'Pervomajskij', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37146', 'Rasskazovo', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37147', 'Sosnovka', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37148', 'Tambov', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37149', 'Uvarovo', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37150', 'Zherdevka', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37151', 'Znamenka', '3059', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37152', 'Agryz', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37153', 'Aksubajevo', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37154', 'Aktjubinskij', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37155', 'Aleksejevskoje', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37156', 'Almetjevsk', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37157', 'Arsk', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37158', 'Aznakajevo', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37159', 'Bavly', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37160', 'Bugulma', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37161', 'Buinsk', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37162', 'Chistopol', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37163', 'Dzhalil', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37164', 'Jelabuga', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37165', 'Kamskie Poljany', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37166', 'Kazan', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37167', 'Kukmor', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37168', 'Leninogorsk', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37169', 'Mamadysh', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37170', 'Mendelejevsk', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37171', 'Menzelinsk', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37172', 'Naberezhnyje Chelny', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37173', 'Nizhnekamsk', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37174', 'Niznjaja Maktama', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37175', 'Nurlat', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37176', 'Tetjushi', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37177', 'Urussu', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37178', 'Vasiljevo', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37179', 'Zainsk', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37180', 'Zeljonodolsk', '3060', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37181', 'Bogandinskij', '3061', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37182', 'Borovskij', '3061', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37183', 'Golyshmanovo', '3061', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37184', 'Ishim', '3061', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37185', 'Jalutorovosk', '3061', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37186', 'Tjumen', '3061', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37187', 'Tobolsk', '3061', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37188', 'Vinzili', '3061', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37189', 'Zavodoukovsk', '3061', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37190', 'Asino', '3062', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37191', 'Jaja', '3062', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37192', 'Kolpashevo', '3062', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37193', 'Seversk', '3062', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37194', 'Strezhevoj', '3062', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37195', 'Tomsk', '3062', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37196', 'Agejevo', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37197', 'Aleksin', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37198', 'Beljov', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37199', 'Bogoroditsk', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37200', 'Bolohovo', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37201', 'Donskoj', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37202', 'Dubovka', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37203', 'Jasnogorsk', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37204', 'Jefremov', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37205', 'Kimovsk', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37206', 'Kirejevsk', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37207', 'Kosaja Gora', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37208', 'Leninskij', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37209', 'Lipki', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37210', 'Mendelejevskij', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37211', 'Novomoskovsk', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37212', 'Pervomajskij', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37213', 'Plavsk', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37214', 'Severo-Zadonsk', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37215', 'Shchjokino', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37216', 'Skuratovskij', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37217', 'Sokolniki', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37218', 'Sovetsk', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37219', 'Suvorov', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37220', 'Tovarkovskij', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37221', 'Tula', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37222', 'Uzlovaja', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37223', 'Venjov', '3063', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37224', 'Andreapol', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37225', 'Bezheck', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37226', 'Bologoe', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37227', 'Kaljazin', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37228', 'Kashin', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37229', 'Kimry', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37230', 'Konakovo', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37231', 'Kuvshinovo', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37232', 'Lihoslavl', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37233', 'Maksatiha', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37234', 'Ostashkov', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37235', 'Ozjornyj', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37236', 'Pelidovo', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37237', 'Rameshki', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37238', 'Redkino', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37239', 'Rzhev', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37240', 'Solnechnyj', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37241', 'Starica', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37242', 'Toropec', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37243', 'Torzhok', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37244', 'Tver', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37245', 'Udomlja', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37246', 'Vyshnij Volochok', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37247', 'Zapadnaja Dvina', '3064', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37248', 'Ak-Dovurak', '3065', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37249', 'Kyzyl', '3065', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37250', 'Balezino', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37251', 'Glazov', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37252', 'Igra', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37253', 'Izhevsk', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37254', 'Kambarka', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37255', 'Kez', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37256', 'Kizner', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37257', 'Mozhga', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37258', 'Sarapul', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37259', 'Uva', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37260', 'Votkinsk', '3066', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37261', 'Barysh', '3067', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37262', 'Cherdakly', '3067', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37263', 'Dimitrovgrad', '3067', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37264', 'Inza', '3067', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37265', 'Isheevka', '3067', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37266', 'Novospasskoe', '3067', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37267', 'Novouljanovsk', '3067', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37268', 'Sengilej', '3067', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37269', 'Uljanovsk', '3067', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37270', 'Ust-Ordynskij', '3069', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37271', 'Aleksandrov', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37272', 'Balakirevo', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37273', 'Gorohovec', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37274', 'Gus-Hrustalnyj', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37275', 'Jurjev Polskij', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37276', 'Kameshkovo', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37277', 'Karabanovo', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37278', 'Kirzhach', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37279', 'Kolchugino', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37280', 'Kosterovo', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37281', 'Kovrov', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37282', 'Krasnaja Gorbatka', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37283', 'Krasnyj Oktjabr', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37284', 'Lakinsk', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37285', 'Melenki', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37286', 'Murom', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37287', 'Novovjazniki', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37288', 'Pokrov', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37289', 'Raduzhnyj', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37290', 'Sobinka', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37291', 'Strunino', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37292', 'Sudogda', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37293', 'Suzdal', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37294', 'Vjazniki', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37295', 'Vladimir', '3070', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37296', 'Dubovka', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37297', 'Frolovo', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37298', 'Gorkovskij', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37299', 'Gorodishche', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37300', 'Ilovlja', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37301', 'Jelan', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37302', 'Kalach-na-Donu', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37303', 'Kamyshin', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37304', 'Kotelnikovo', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37305', 'Kotovo', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37306', 'Krasnoslobodsk', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37307', 'Leninsk', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37308', 'Mihajlovka', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37309', 'Nikolajevsk', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37310', 'Nizhny Novgorod', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37311', 'Novoanninskij', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37312', 'Novonikolajevskij', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37313', 'Pallasovka', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37314', 'Petrov Val', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37315', 'Serafimovich', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37316', 'Surovikino', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37317', 'Svetlyj Jar', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37318', 'Urjupinsk', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37319', 'Volgograd', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37320', 'Volzhskij', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37321', 'Zhirnovsk', '3071', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37322', 'Babajevo', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37323', 'Belozjorsk', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37324', 'Cherepovec', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37325', 'Grjazovec', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37326', 'Harovsk', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37327', 'Kaduj', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37328', 'Krasavino', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37329', 'Sheksna', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37330', 'Sokol', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37331', 'Totma', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37332', 'Velikij Ustjug', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37333', 'Vologda', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37334', 'Vytegra', '3072', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37335', 'Anna', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37336', 'Bobrov', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37337', 'Boguchar', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37338', 'Borisoglebsk', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37339', 'Buturlinovka', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37340', 'Ertil', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37341', 'Gribanovskij', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37342', 'Kalach', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37343', 'Kamenka', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37344', 'Kantemirovka', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37345', 'Liski', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37346', 'Novohopjorsk', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37347', 'Novovoronezh', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37348', 'Ostrogozhsk', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37349', 'Pavlovsk', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37350', 'Povorino', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37351', 'Pridonskij', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37352', 'Rossosh', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37353', 'Semiluki', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37354', 'Somovo', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37355', 'Talovaja', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37356', 'Voronezh', '3073', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37357', 'Butare', '3074', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37358', 'Nyanza', '3074', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37359', 'Byumba', '3075', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37360', 'Cyangugu', '3076', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37361', 'Gikongoro', '3077', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37362', 'Gisenyi', '3078', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37363', 'Gitarama', '3079', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37364', 'Kibungo', '3080', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37365', 'Rwamagana', '3080', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37366', 'Kibuye', '3081', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37367', 'Kigali', '3082', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37368', 'Ruhengeri', '3083', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37369', 'Georgetown', '3084', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37370', 'Anse-la-Raye', '3102', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37371', 'Canaries', '3103', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37372', 'Castries', '3104', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37373', 'Choc', '3104', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37374', 'Choiseul', '3105', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37375', 'Dennery', '3106', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37376', 'Laborie', '3108', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37377', 'Micoud', '3109', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37378', 'Soufriere', '3110', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37379', 'Miquelon', '3112', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37380', 'Saint-Pierre', '3113', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37381', 'Biabou', '3114', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37382', 'Byera', '3114', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37383', 'Georgetown', '3114', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37384', 'Dovers', '3115', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37385', 'Hamilton', '3115', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37386', 'Port Elizabeth', '3115', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37387', 'Falelatai', '3120', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37388', 'Mulifanua', '3121', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37389', 'Solosolo', '3122', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37390', 'Safotulafai', '3123', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37391', 'Samalae\'ulu', '3124', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37392', 'A\'opo', '3125', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37393', 'Taga', '3126', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37394', 'Gautavai', '3127', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37395', 'Apia', '3128', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37396', 'Samamea', '3129', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37397', 'Neiafu', '3130', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37398', 'Acquaviva', '3131', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37399', 'Chiesanuova', '3133', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37400', 'Domagnano', '3134', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37401', 'Faetano', '3135', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37402', 'Fiorentino', '3136', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37403', 'Montegiardino', '3137', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37404', 'Serravalle', '3139', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37405', 'Santana', '3141', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37406', 'Neves', '3142', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37407', 'Santo Amaro', '3143', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37408', 'Trindade', '3144', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37409', 'Santo Antonio', '3145', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37410', 'Mahayel', '3147', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37411', 'Abha', '3149', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37412', 'Abu \'Aris', '3149', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37413', 'Khamis Mushayt', '3149', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37414', 'Qal\'at Bishah', '3149', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37415', 'Ha\'il', '3152', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37416', 'Jawf', '3153', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37417', 'Sakakah', '3153', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37418', 'Jizan', '3154', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37419', 'Sabya', '3154', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37420', 'Makkah', '3155', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37421', 'Rabig', '3155', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37422', 'al-Hawiyah', '3155', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37423', 'at-Ta\'if', '3155', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37424', 'Dar\'iyah', '3156', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37425', 'Najran', '3156', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37426', 'Sharurah', '3156', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37427', '\'Unayzah', '3157', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37428', 'Buraydah', '3157', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37429', 'ar-Rass', '3157', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37430', 'Tabuk', '3158', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37431', 'Umm Lajj', '3158', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37432', 'al-Bahah', '3160', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37433', 'Ara\'ar', '3161', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37434', 'Rafha', '3161', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37435', 'Turayf', '3161', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37436', 'al-Qurayyat', '3161', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37437', 'Yanbu', '3162', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37438', 'al-Madinah', '3162', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37439', '\'Afif', '3163', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37440', 'ad-Dawadimi', '3163', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37441', 'ad-Dilam', '3163', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37442', 'al-Kharj', '3163', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37443', 'al-Majma\'ah', '3163', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37444', 'ar-Riyad', '3163', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37445', 'az-Zulfi', '3163', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37446', 'Dakar', '3164', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37447', 'Bambey', '3165', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37448', 'Diourbel', '3165', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37449', 'Mbacke', '3165', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37450', 'Touba', '3165', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37451', 'Diofior', '3166', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37452', 'Fatick', '3166', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37453', 'Foundiougne', '3166', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37454', 'Gossas', '3166', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37455', 'Guinguineo', '3166', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37456', 'Kahone', '3166', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37457', 'Passy', '3166', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37458', 'Sokone', '3166', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37459', 'Gandiaye', '3167', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37460', 'Kaffrine', '3167', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37461', 'Kaolack', '3167', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37462', 'Koungheul', '3167', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37463', 'Medina', '3167', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37464', 'Ndoffane Lagheme', '3167', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37465', 'Nioro du Rip', '3167', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37466', 'Toubakouta', '3167', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37467', 'Dabo', '3168', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37468', 'Goudomp', '3168', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37469', 'Kolda', '3168', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37470', 'Marsassoum', '3168', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37471', 'Medina Gounas', '3168', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37472', 'Sedhiou', '3168', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37473', 'Velingara', '3168', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37474', 'Wassadou', '3168', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37475', 'Dahra', '3169', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37476', 'Kebemer', '3169', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37477', 'Linguere', '3169', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37478', 'Louga', '3169', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37479', 'Dagana', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37480', 'Gollere', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37481', 'Kanel', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37482', 'Matam', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37483', 'Ndioum', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37484', 'Ourossogui', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37485', 'Podor', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37486', 'Richard Toll', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37487', 'Saint-Louis', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37488', 'Semme', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37489', 'Thilogne', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37490', 'Waounde', '3170', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37491', 'Bakel', '3171', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37492', 'Kedougou', '3171', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37493', 'Tambacounda', '3171', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37494', 'Joal-Fadiouth', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37495', 'Kayar', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37496', 'Khombole', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37497', 'Mbour', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37498', 'Meckhe', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37499', 'Nguekhokh', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37500', 'Pout', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37501', 'Thiadiaye', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37502', 'Thies', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37503', 'Tivaouane', '3172', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37504', 'Bignona', '3173', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37505', 'Oussouye', '3173', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37506', 'Thionck-Essyl', '3173', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37507', 'Ziguinchor', '3173', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37508', 'Cascade', '3179', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37509', 'Takamaka', '3180', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37510', 'Mahe', '3181', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37511', 'Biama', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37512', 'Daru', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37513', 'Kailahun', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37514', 'Kenema', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37515', 'Koidu', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37516', 'Koindu', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37517', 'Pendembu', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37518', 'Sefadu', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37519', 'Segbwema', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37520', 'Yengema', '3182', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37521', 'Kabala', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37522', 'Kambia', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37523', 'Lungi', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37524', 'Lunsar', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37525', 'Magburaka', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37526', 'Makeni', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37527', 'Mambolo', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37528', 'Moyamba', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37529', 'Pepel', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37530', 'Port Loko', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37531', 'Yele', '3183', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37532', 'Binkolo', '3184', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37533', 'Bo', '3184', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37534', 'Bonthe', '3184', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37535', 'Bumpe', '3184', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37536', 'Matru', '3184', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37537', 'Pujehun', '3184', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37538', 'Taiama', '3184', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37539', 'Freetown', '3185', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37540', 'York', '3185', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37541', 'Singapore', '3186', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37542', 'Banska Bystrica', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37543', 'Banska Shtiavnica', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37544', 'Brezno', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37545', 'Chierny Balog', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37546', 'Detva', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37547', 'Fil\'akovo', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37548', 'Hnusht\'a', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37549', 'Hrinova', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37550', 'Kremnica', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37551', 'Krupina', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37552', 'Luchenec', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37553', 'Nova Bana', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37554', 'Podbrezova', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37555', 'Poltar', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37556', 'Revuca', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37557', 'Rimavska Sobota', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37558', 'Sliach', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37559', 'Tisovec', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37560', 'Tornal\'a', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37561', 'Vel\'ky Krtish', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37562', 'Vlkanova', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37563', 'Zharnovica', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37564', 'Zhiar', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37565', 'Ziar nad Hronom', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37566', 'Zvolen', '3187', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37567', 'Bernolakovo', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37568', 'Bratislava', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37569', 'Ivanka pri Dunaji', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37570', 'Malacky', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37571', 'Modra', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37572', 'Pezinok', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37573', 'Senec', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37574', 'Shenkvice', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37575', 'Stupava', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37576', 'Svaty Jur', '3188', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37577', 'Chana', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37578', 'Chierna nad Tisou', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37579', 'Dobshina', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37580', 'Gelnica', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37581', 'Kosice', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37582', 'Kral\'ovsky Chlmec', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37583', 'Krompachy', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37584', 'Medzev', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37585', 'Michalovce', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37586', 'Moldava nad Bodvou', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37587', 'Pavlovce nad Uhom', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37588', 'Rozhnava', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37589', 'Sechovce', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37590', 'Smizhany', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37591', 'Sobrance', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37592', 'Strazhske', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37593', 'Trebishov', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37594', 'Vel\'ke Kapushany', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37595', 'Vranov', '3189', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37596', 'Dvory nad Zhitavou', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37597', 'Hurbanovo', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37598', 'Kolarovo', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37599', 'Komarno', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37600', 'Komjatice', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37601', 'Levice', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37602', 'Levocha', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37603', 'Mocenok', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37604', 'Nesvady', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37605', 'Nitra', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37606', 'Nove Zamky', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37607', 'Palarikovo', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37608', 'Shahy', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37609', 'Shal\'a', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37610', 'Shturovo', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37611', 'Shurany', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37612', 'Svodin', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37613', 'Tlmache', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37614', 'Tvrdoshovce', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37615', 'Vrable', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37616', 'Zlate Moravce', '3190', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37617', 'Bardejov', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37618', 'Giraltovce', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37619', 'Humenne', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37620', 'Jarovnice', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37621', 'Kezhmarok', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37622', 'Lipany', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37623', 'Medzilaborce', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37624', 'Podolinec', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37625', 'Poprad', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37626', 'Preshov', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37627', 'Presov', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37628', 'Sabinov', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37629', 'Snina', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37630', 'Spishska Bela', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37631', 'Spishska Nova Ves', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37632', 'Spishske Podhradie', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37633', 'Stara L\'ubovna', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37634', 'Stropkov', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37635', 'Svidnik', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37636', 'Svit', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37637', 'Vel\'ky Sharish', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37638', 'Vysoke Tatry', '3191', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37639', 'Banovce', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37640', 'Belusha', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37641', 'Bojnice', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37642', 'Boshany', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37643', 'Dubnica', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37644', 'Handlova', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37645', 'Ilava', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37646', 'Lednicke Rovne', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37647', 'Lendak', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37648', 'Myjava', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37649', 'Nemshova', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37650', 'Nova Dubnica', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37651', 'Novaky', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37652', 'Nove Mesto', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37653', 'Partizanske', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37654', 'Povazhska Bystrica', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37655', 'Prievidza', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37656', 'Puchov', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37657', 'Stara Tura', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37658', 'Topol\'chany', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37659', 'Trenchianske Teplice', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37660', 'Trenchin', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37661', 'Trencin', '3192', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37662', 'Brezova pod Bradlom', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37663', 'Dunajska Streda', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37664', 'Gabchikovo', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37665', 'Galanta', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37666', 'Gbely', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37667', 'Hlohovec', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37668', 'Holich', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37669', 'Kuty', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37670', 'Leopoldov', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37671', 'Piesht\'any', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37672', 'Piestany', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37673', 'Senica', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37674', 'Sered\'', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37675', 'Shamorin', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37676', 'Shashtin-Strazhe', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37677', 'Shoporna', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37678', 'Skalica', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37679', 'Sladkovichovo', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37680', 'Trnava', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37681', 'Vel\'ke Ul\'any', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37682', 'Vel\'ky Meder', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37683', 'Vrbove', '3193', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37684', 'Bytcha', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37685', 'Chadca', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37686', 'Chierne', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37687', 'Dolny Kubin', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37688', 'Krasno nad Kysucou', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37689', 'Kysucke Nove Mesto', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37690', 'Liptovsky Hradok', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37691', 'Liptovsky Mikulash', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37692', 'Martin', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37693', 'Namestovo', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37694', 'Nizhna', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37695', 'Oshchadnica', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37696', 'Rabcha', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37697', 'Rajec', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37698', 'Rakova', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37699', 'Ruzhomberok', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37700', 'Ruzomberok', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37701', 'Shtiavnik', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37702', 'Skalite', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37703', 'Suchany', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37704', 'Terchova', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37705', 'Trstena', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37706', 'Turany', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37707', 'Turchianske Teplice', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37708', 'Turzovka', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37709', 'Tvrdoshin', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37710', 'Vel\'ke Rovne', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37711', 'Vrutky', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37712', 'Zakamenne', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37713', 'Zhilina', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37714', 'Zilina', '3194', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37715', 'Semic', '3195', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37716', 'Skofljica', '3195', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37717', 'Zelezniki', '3195', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37718', 'Begunje na Gorenjskem', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37719', 'Bistrica ob Trzhichu', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37720', 'Bled', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37721', 'Blejska Dobrava', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37722', 'Bohinjska Bistrica', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37723', 'Britof', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37724', 'Cerklje na Gorenjskem', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37725', 'Golnik', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37726', 'Gorenja Vas', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37727', 'Hrastje', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37728', 'Hrushica', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37729', 'Jesenice', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37730', 'Kokrica', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37731', 'Koroshka Bela', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37732', 'Kranj', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37733', 'Kranjska Gora', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37734', 'Krizhe', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37735', 'Kropa', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37736', 'Lesce', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37737', 'Mlaka pri Kranju', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37738', 'Mojstrana', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37739', 'Preddvor', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37740', 'Predoslje', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37741', 'Pristava', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37742', 'Radovljica', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37743', 'Shenchur', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37744', 'Shkofja Loka', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37745', 'Slovenski Javornik', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37746', 'Spodnja Besnica', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37747', 'Spodnje Gorje', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37748', 'Stara Loka', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37749', 'Sveti Duh', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37750', 'Trzhich', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37751', 'Visoko', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37752', 'Zasip', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37753', 'Zgornje Bitnje', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37754', 'Zhelezniki', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37755', 'Zhiri', '3196', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37756', 'Ajdovshchina', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37757', 'Bilje', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37758', 'Bovec', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37759', 'Branik', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37760', 'Cerkno', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37761', 'Deskle', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37762', 'Idrija', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37763', 'Kanal', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37764', 'Kobarid', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37765', 'Kromberk', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37766', 'Lokavec', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37767', 'Miren', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37768', 'Nova Gorica', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37769', 'Prvachina', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37770', 'Renche', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37771', 'Rozhna Dolina', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37772', 'Shempas', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37773', 'Shempeter', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37774', 'Solkan', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37775', 'Spodnja Idrija', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37776', 'Tolmin', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37777', 'Vipava', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37778', 'Vrtojba', '3197', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37779', 'Chrna na Koroshkem', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37780', 'Dravograd', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37781', 'Legen', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37782', 'Mezhica', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37783', 'Mislinja', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37784', 'Muta', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37785', 'Otishki Vrh', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37786', 'Pameche', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37787', 'Podgorje', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37788', 'Prevalje', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37789', 'Radlje ob Dravi', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37790', 'Ravne', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37791', 'Shmartno pri Slovenj Gradcu', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37792', 'Slovenj Gradec', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37793', 'Vuhred', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37794', 'Vuzenica', '3199', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37795', 'Cerknica', '3200', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37796', 'Ilirska Bistrica', '3200', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37797', 'Pivka', '3200', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37798', 'Postojna', '3200', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37799', 'Rakek', '3200', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37800', 'Stari trg pri Lozhu', '3200', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37801', 'Ankaran', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37802', 'Bertoki', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37803', 'Dekani', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37804', 'Divacha', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37805', 'Hrvatni', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37806', 'Izola', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37807', 'Jagodje', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37808', 'Koper', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37809', 'Lucija', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37810', 'Pareceg', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37811', 'Piran', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37812', 'Pobegi', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37813', 'Portorozh', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37814', 'Prade', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37815', 'Secha', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37816', 'Sezhana', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37817', 'Spodnje Shkofije', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37818', 'Sveti Anton', '3201', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37819', 'Borovnica', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37820', 'Brezovica pri Ljubljani', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37821', 'Dob', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37822', 'Dobrova', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37823', 'Domzhale', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37824', 'Dragomer', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37825', 'Grosuplje', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37826', 'Horjul', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37827', 'Ig', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37828', 'Ivanchna Gorica', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37829', 'Kamnik', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37830', 'Komenda', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37831', 'Lavrica', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37832', 'Litija', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37833', 'Ljubljana', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37834', 'Log pri Brezovici', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37835', 'Logatec', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37836', 'Medvode', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37837', 'Mekinje', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37838', 'Mengesh', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37839', 'Moravche', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37840', 'Notranje', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37841', 'Podgorje', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37842', 'Preserje pri Radomljah', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37843', 'Radomlje', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37844', 'Rovte', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37845', 'Shentvid pri Stichni', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37846', 'Shkofljica', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37847', 'Shmarca', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37848', 'Shmartno pri Litiji', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37849', 'Smarje-Sap', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37850', 'Trzin', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37851', 'Verd', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37852', 'Vir', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37853', 'Vishnja Gora', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37854', 'Vnanje Gorice', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37855', 'Vodice', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37856', 'Vrhnika', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37857', 'Zgornje Pirniche', '3204', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37858', 'Bistrica ob Dravi', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37859', 'Bresternica', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37860', 'Bukovci', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37861', 'Dogoshe', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37862', 'Dornava', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37863', 'Fram', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37864', 'Hotinja Vas', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37865', 'Kamnica', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37866', 'Kidrichevo', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37867', 'Koshaki', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37868', 'Krchevina pri Vurbergu', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37869', 'Lenart', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37870', 'Limbush', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37871', 'Lovrenc na Pohorju', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37872', 'Maribor', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37873', 'Miklavzh na Dravskem Polju', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37874', 'Ormozh', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37875', 'Pekre', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37876', 'Pesnica pri Mariboru', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37877', 'Pobrezhje', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37878', 'Podvinci', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37879', 'Poljchane', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37880', 'Pragersko', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37881', 'Ptuj', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37882', 'Rache', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37883', 'Radizel', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37884', 'Razvanje', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37885', 'Rogoza', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37886', 'Rushe', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37887', 'Selnica ob Dravi', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37888', 'Selnica ob Muri', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37889', 'Shentilj', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37890', 'Skoke', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37891', 'Slovenska Bistrica', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37892', 'Spodnja Polskava', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37893', 'Spodnje Hoche', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37894', 'Spodnji Duplek', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37895', 'Spuhlja', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37896', 'Sredishche ob Dravi', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37897', 'Stojnci', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37898', 'Zgornja Polskava', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37899', 'Zgornje Poljchane', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37900', 'Zgornji Duplek', '3205', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37901', 'Bakovci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37902', 'Beltinci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37903', 'Chernelavci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37904', 'Chrenshovci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37905', 'Dobrovnik', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37906', 'Doklezhovje', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37907', 'Ganchani', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37908', 'Gornja Radgona', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37909', 'Izhakovci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37910', 'Krog', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37911', 'Lendava', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37912', 'Lipovci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37913', 'Ljutomer', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37914', 'Melinci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37915', 'Murska Sobota', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37916', 'Odranci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37917', 'Petishovci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37918', 'Radenci', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37919', 'Rakichan', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37920', 'Turnishche', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37921', 'Velika Polana', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37922', 'Verzej', '3206', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37923', 'Breg pri Polzeli', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37924', 'Celje', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37925', 'Gornji Grad', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37926', 'Gotovlje', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37927', 'Kasaze', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37928', 'Lashko', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37929', 'Ljubechna', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37930', 'Ljubno ob Savinji', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37931', 'Loka pri Zusmu', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37932', 'Lokovica', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37933', 'Mozirje', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37934', 'Naklo', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37935', 'Nazarje', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37936', 'Oplotnica', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37937', 'Petrovche', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37938', 'Polzela', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37939', 'Prebold', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37940', 'Radeche', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37941', 'Ravne', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37942', 'Rimske Toplica', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37943', 'Rogashka Slatina', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37944', 'Rogatec', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37945', 'Sentjernej', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37946', 'Shempeter', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37947', 'Shentjur', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37948', 'Shkale', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37949', 'Shmarje pri Jelshah', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37950', 'Shoshtanj', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37951', 'Shtore', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37952', 'Slovenske Konjice', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37953', 'Topolshica', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37954', 'Trnovlje pri Celju', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37955', 'Velenje', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37956', 'Vitanje', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37957', 'Vojnik', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37958', 'Zabukovica', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37959', 'Zadobrova', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37960', 'Zhalec', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37961', 'Zreche', '3207', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37962', 'Brestanica', '3209', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37963', 'Brezhice', '3209', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37964', 'Krshko', '3209', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37965', 'Leskovac pri Krshkem', '3209', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37966', 'Senovo', '3209', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37967', 'Sevnica', '3209', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37968', 'Dol pri Hrastniku', '3210', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37969', 'Hrastnik', '3210', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37970', 'Izlake', '3210', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37971', 'Kisovec', '3210', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37972', 'Trbovlje', '3210', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37973', 'Zagorje ob Savi', '3210', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37974', 'Adamstown', '3211', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37975', 'Tulagi', '3212', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37976', 'Taro Island', '3213', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37977', 'Honiara', '3214', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37978', 'Buala', '3215', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37979', 'Auki', '3217', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37980', 'Lata', '3219', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37981', 'Gizo', '3220', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37982', 'Baki', '3221', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37983', 'Borama', '3221', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37984', 'Gebilay', '3221', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37985', 'Sayla\'', '3221', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37986', 'Tayeglo', '3222', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37987', 'Xuddur', '3222', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37988', 'Yet', '3222', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37989', 'Muqdisho', '3223', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37990', '\'Alula', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37991', 'Bandarbeyla', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37992', 'Bandarmu\'ayo', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37993', 'Bargal', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37994', 'Bereda', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37995', 'Bosaso', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37996', 'Iskushuban', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37997', 'Qandala', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37998', 'Qardho', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('37999', 'Xafun', '3224', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38000', 'Baydhabo', '3225', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38001', 'Bur Hakkaba', '3225', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38002', 'Dinsor', '3225', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38003', '\'Elbur', '3226', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38004', '\'Eldhere', '3226', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38005', 'Dhusa Marreb', '3226', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38006', 'Bardhere', '3227', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38007', 'Dolaw', '3227', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38008', 'Dujuma', '3227', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38009', 'Garbaharey', '3227', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38010', 'Luq', '3227', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38011', 'Sa\'o', '3227', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38012', 'Wajid', '3227', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38013', 'Bal\'ad', '3228', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38014', 'Beled Weyne', '3228', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38015', 'Bulobarde', '3228', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38016', 'Jalalassi', '3228', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38017', 'Galka\'yo', '3231', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38018', 'Hobyo', '3231', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38019', 'Xarardhere', '3231', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38020', 'Eyl', '3232', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38021', 'Garowe', '3232', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38022', 'Las\'anod', '3232', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38023', '\'Erigabo', '3233', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38024', 'Lasqoray', '3233', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38025', '\'Ek', '3236', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38026', 'Bur\'o', '3236', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38027', 'Odweyne', '3236', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38028', 'Alberton', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38029', 'Alrode', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38030', 'Benmore', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38031', 'Benoni', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38032', 'Boksburg', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38033', 'Booysens', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38034', 'Brakpan', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38035', 'Bronkhorstspruit', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38036', 'Bryanston', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38037', 'Carltonville', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38038', 'Centurion', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38039', 'Cullinan', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38040', 'Dainfern', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38041', 'Edenvale', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38042', 'Ferndale', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38043', 'Fourways', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38044', 'Gardenview', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38045', 'Gauteng', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38046', 'Grant Park', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38047', 'Heidelberg', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38048', 'Isando', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38049', 'Johannesburg', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38050', 'Kelvin', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38051', 'Krugersdorp', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38052', 'Linmeyer', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38053', 'Maraisburg', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38054', 'Midrand', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38055', 'Nigel', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38056', 'Northmead', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38057', 'Petervale', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38058', 'Pinegowrie', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38059', 'Pretoria', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38060', 'Primrose', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38061', 'Randburg', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38062', 'Randfontein', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38063', 'Randvaal', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38064', 'Rivonia', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38065', 'Robertville', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38066', 'Soweto', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38067', 'Springs', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38068', 'Temba', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38069', 'Tembisa', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38070', 'Troyeville', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38071', 'Vanderbijlpark', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38072', 'Vereeniging', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38073', 'Verwoerdburg', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38074', 'Vorna Valley', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38075', 'Wadeville', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38076', 'Westonaria', '3240', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38077', 'Sandton', '3242', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38078', 'Bela-Bela', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38079', 'Dendron', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38080', 'Duiwelskloof', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38081', 'Ellisras', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38082', 'Giyani', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38083', 'Lebowakgomo', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38084', 'Louis Trichardt', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38085', 'Lulekani', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38086', 'Mankweng', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38087', 'Messina', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38088', 'Mogalakwena', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38089', 'Mutale', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38090', 'Nkowakowa', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38091', 'Nylstroom', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38092', 'Phalaborwa', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38093', 'Pietersburg', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38094', 'Polokwane', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38095', 'Soekmekaar', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38096', 'Southdale', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38097', 'Thabazimbi', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38098', 'Thohoyandou', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38099', 'Thulamahashe', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38100', 'Tzaneen', '3244', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38101', 'Botleng', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38102', 'Ekangala', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38103', 'Embalenhle', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38104', 'Emjindini', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38105', 'Empuluzi', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38106', 'Emzinoni', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38107', 'Ermelo', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38108', 'Ethandakukhanja', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38109', 'Groblersdal', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38110', 'Komatipoort', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38111', 'Kriel', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38112', 'KwaZanele', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38113', 'Kwazamokuhle', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38114', 'Lebohang', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38115', 'Marblehall', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38116', 'Mashishing', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38117', 'Mhluzi', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38118', 'Nelspruit', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38119', 'Phola', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38120', 'Sakhile', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38121', 'Secunda', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38122', 'Siyabuswa', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38123', 'Siyathemba', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38124', 'Siyathuthuka', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38125', 'Vukuzakhe', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38126', 'Witbank', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38127', 'Witrivier', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38128', 'eLukwatini', '3245', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38129', 'Parow', '3248', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38130', 'Umtentweni', '3250', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38131', 'ALbatera', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38132', 'Alacant', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38133', 'Alcoi', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38134', 'Almoradi', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38135', 'Altea', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38136', 'Aspe', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38137', 'Benidorm', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38138', 'Benissa', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38139', 'Callosa de Segura', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38140', 'Calp', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38141', 'Cocentaina', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38142', 'Crevillent', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38143', 'Denia', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38144', 'El Campello', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38145', 'Elda', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38146', 'Elx', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38147', 'Guardamar del Segura', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38148', 'Ibi', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38149', 'L\'Alfas del Pi', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38150', 'La Vila Joiosa', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38151', 'Monover', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38152', 'Mutxamel', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38153', 'Novelda', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38154', 'Orihuela', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38155', 'Pedreguer', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38156', 'Pego', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38157', 'Petrer', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38158', 'Pilar de la Horadada', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38159', 'Pinoso', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38160', 'Rojales', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38161', 'Sant Joan d\'Alacant', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38162', 'Sant Vicent del Raspeig', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38163', 'Santa Pola', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38164', 'Sax', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38165', 'Teulada', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38166', 'Torrevieja', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38167', 'Villena', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38168', 'Xabia', '3255', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38169', 'Amurrio', '3256', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38170', 'Llodio', '3256', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38171', 'Vitoria', '3256', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38172', 'Albacete', '3257', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38173', 'Almansa', '3257', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38174', 'Caudete', '3257', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38175', 'Hellin', '3257', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38176', 'La Roda', '3257', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38177', 'Villarrobledo', '3257', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38178', 'Adra', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38179', 'Albox', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38180', 'Almeria', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38181', 'Berja', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38182', 'Cuevas del Almanzora', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38183', 'El Ejido', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38184', 'Huercal de Almeria', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38185', 'Huercal-Overa', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38186', 'Nijar', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38187', 'Roquetas de Mar', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38188', 'Vicar', '3258', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38189', 'Benalmadena', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38190', 'Aller', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38191', 'Aviles', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38192', 'C/ Pena Salon', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38193', 'Cangas del Narcea', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38194', 'Carreno', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38195', 'Castrillon', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38196', 'Corvera de Asturias', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38197', 'Gijon', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38198', 'Gozon', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38199', 'Grado', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38200', 'Langreo', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38201', 'Laviana', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38202', 'Lena', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38203', 'Llanera', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38204', 'Llanes', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38205', 'Mieres', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38206', 'Navia', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38207', 'Oviedo', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38208', 'Pilona', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38209', 'Pravia', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38210', 'San Martin del Rey Aurelio', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38211', 'Siero', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38212', 'Tineo', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38213', 'Valdes', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38214', 'Villaviciosa', '3260', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38215', 'Avila', '3261', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38216', 'Almendralejo', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38217', 'Azuaga', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38218', 'Badajoz', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38219', 'Don Benito', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38220', 'Jerez de los Caballeros', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38221', 'Merida', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38222', 'Montijo', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38223', 'Olivenza', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38224', 'Villafranca de los Barros', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38225', 'Villanueva de la Serena', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38226', 'Zafra', '3262', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38227', 'Alayor-Menorca', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38228', 'Alcudia', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38229', 'Calvia', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38230', 'Capdepera', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38231', 'Ciutadella de Menorca', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38232', 'Eivissa', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38233', 'Felanitx', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38234', 'Inca', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38235', 'Llucmajor', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38236', 'Mahon', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38237', 'Manacor', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38238', 'Marratxi', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38239', 'Palma', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38240', 'Pollenca', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38241', 'Sa Pobla', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38242', 'Sant Antoni de Portmany', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38243', 'Sant Josep de sa Talaia', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38244', 'Santa Eulalia del Rio', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38245', 'Santanyi', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38246', 'Soller', '3263', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38247', 'Abrera', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38248', 'Alella', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38249', 'Arenys de Mar', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38250', 'Argentona', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38251', 'Badalona', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38252', 'Badia del Valles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38253', 'Barbera del Valles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38254', 'Barcelona', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38255', 'Berga', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38256', 'Cabrera de Mar', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38257', 'Caldes de Montbui', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38258', 'Calella', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38259', 'Canet de Mar', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38260', 'Canovelles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38261', 'Cardedeu', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38262', 'Castellar del Valles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38263', 'Castellbisbal', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38264', 'Castelldefels', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38265', 'Cerdanyola', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38266', 'Corbera de Llobregat', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38267', 'Cornella', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38268', 'El Masnou', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38269', 'El Prat de Llobregat', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38270', 'Esparreguera', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38271', 'Esplugues de Llobregat', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38272', 'Gava', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38273', 'Granollers', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38274', 'Igualada', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38275', 'L\'Hospitalet de Llobregat', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38276', 'La Garriga', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38277', 'La Llagosta', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38278', 'Les Franquesas del Valles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38279', 'Llica d\'Amunt', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38280', 'Malgrat de Mar', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38281', 'Manlleu', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38282', 'Manresa', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38283', 'Martorell', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38284', 'Mataro', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38285', 'Molins de Rei', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38286', 'Mollet del Valles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38287', 'Montcada i Reixac', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38288', 'Montgat', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38289', 'Montmelo', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38290', 'Montornes del Valles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38291', 'Olesa de Montserrat', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38292', 'Palau-solita i Plegamans', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38293', 'Palleja', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38294', 'Parets del Valles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38295', 'Piera', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38296', 'Pineda de Mar', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38297', 'Premia de Dalt', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38298', 'Premia de Mar', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38299', 'Ripollet', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38300', 'Rubi', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38301', 'Sabadell', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38302', 'Sant Adria de Besos', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38303', 'Sant Andreu de la Barca', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38304', 'Sant Boi de Llobregat', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38305', 'Sant Celoni', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38306', 'Sant Cugat del Valles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38307', 'Sant Feliu de Llobregat', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38308', 'Sant Joan Despi', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38309', 'Sant Joan de Vilatorrada', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38310', 'Sant Just Desvern', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38311', 'Sant Pere de Ribes', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38312', 'Sant Quirze del Valles', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38313', 'Sant Sadurni d\'Anoia', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38314', 'Sant Vicenc dels Horts', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38315', 'Santa Coloma de Gramenet', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38316', 'Santa Margarida de Montbui', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38317', 'Santa Perpetua de Mogoda', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38318', 'Sitges', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38319', 'Son Servera', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38320', 'Terrassa', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38321', 'Tordera', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38322', 'Torello', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38323', 'Vallirana', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38324', 'Vic', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38325', 'Viladecans', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38326', 'Viladecavalls', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38327', 'Vilafranca del Penedes', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38328', 'Vilanova del Cami', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38329', 'Vilanova i la Geltru', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38330', 'Vilassar del Mar', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38331', 'Bertamirans', '3254', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38332', 'Berriatua', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38333', 'Derio', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38334', 'Elorio', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38335', 'Loiu', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38336', 'Aranda de Duero', '3267', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38337', 'Burgos', '3267', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38338', 'Miranda de Ebro', '3267', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38339', 'Caceres', '3268', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38340', 'Coria', '3268', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38341', 'Miajadas', '3268', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38342', 'Navalmoral de la Mata', '3268', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38343', 'Plasencia', '3268', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38344', 'Talayuela', '3268', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38345', 'Trujillo', '3268', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38346', 'Algeciras', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38347', 'Arcos de la Frontera', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38348', 'Barbate', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38349', 'Cadiz', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38350', 'Chiclana', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38351', 'Chipiona', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38352', 'Conil', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38353', 'El Puerto de Santa Maria', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38354', 'Jerez', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38355', 'Jimena de la Frontera', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38356', 'La Linea', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38357', 'Los Barrios', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38358', 'Medina-Sidonia', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38359', 'Olvera', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38360', 'Puerto Real', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38361', 'Rota', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38362', 'San Fernando', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38363', 'San Roque', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38364', 'Sanlucar de Barrameda', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38365', 'Tarifa', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38366', 'Ubrique', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38367', 'Vejer de la Frontera', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38368', 'Villamartin', '3269', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38369', 'Camargo', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38370', 'Castro-Urdiales', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38371', 'El Astillero', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38372', 'Laredo', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38373', 'Los Corrales de Buelna', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38374', 'Pielagos', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38375', 'Reinosa', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38376', 'San Felices De Buelna', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38377', 'Santa Cruz de Bezana', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38378', 'Santander', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38379', 'Santona', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38380', 'Torrelavega', '3270', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38381', 'Almassora', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38382', 'Benicarlo', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38383', 'Benicassim', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38384', 'Burriana', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38385', 'Castello', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38386', 'L\'Alcora', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38387', 'La Vall d\'Uixo', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38388', 'Nules', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38389', 'Onda', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38390', 'Segorbe', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38391', 'Vila-real', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38392', 'Vinaros', '3271', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38393', 'Barcelona', '3264', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38394', 'Ceuta', '3273', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38395', 'Aguilar de la Frontera', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38396', 'Baena', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38397', 'Bujalance', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38398', 'Cabra', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38399', 'Cordoba', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38400', 'Fernan-Nunez', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38401', 'Fuente Palmera', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38402', 'La Carlota', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38403', 'Lucena', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38404', 'Luque', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38405', 'Montilla', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38406', 'Montoro', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38407', 'Palma del Rio', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38408', 'Penarroya-Pueblonuevo', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38409', 'Pozoblanco', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38410', 'Priego de Cordoba', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38411', 'Puente Genil', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38412', 'Rute', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38413', 'Villanueva de Cordoba', '3281', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38414', 'Cuenca', '3282', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38415', 'Tarancon', '3282', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38416', 'Aduna', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38417', 'Lazakao', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38418', 'Banyoles', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38419', 'Blanes', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38420', 'Empuriabrava', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38421', 'Figueres', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38422', 'Girona', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38423', 'La Bisbal d\'Emporda', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38424', 'Lloret de Mar', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38425', 'Massanet de la Selva', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38426', 'Olot', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38427', 'Palafrugell', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38428', 'Palamos', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38429', 'Ripoll', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38430', 'Roses', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38431', 'Salt', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38432', 'Sant Feliu de Guixols', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38433', 'Santa Coloma de Farners', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38434', 'Torroella de Montgri', '3284', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38435', 'Albolote', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38436', 'Almunecar', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38437', 'Armilla', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38438', 'Atarfe', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38439', 'Baza', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38440', 'Granada', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38441', 'Guadix', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38442', 'Huescar', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38443', 'Huetor Tajar', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38444', 'Huetor Vega', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38445', 'Illora', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38446', 'La Zubia', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38447', 'Las Gabias', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38448', 'Loja', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38449', 'Maracena', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38450', 'Motril', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38451', 'Ogijares', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38452', 'Peligros', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38453', 'Pinos Puente', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38454', 'Salobrena', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38455', 'Santa Fe', '3285', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38456', 'Azuqueca de Henares', '3286', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38457', 'Guadalajara', '3286', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38458', 'Andoain', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38459', 'Anoeta', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38460', 'Arrasate', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38461', 'Azkoitia', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38462', 'Azpeitia', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38463', 'Beasain', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38464', 'Bergara', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38465', 'Donostia', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38466', 'Eibar', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38467', 'Elgoibar', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38468', 'Errenteria', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38469', 'Guipuuzcoa', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38470', 'Hernani', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38471', 'Hondarribia', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38472', 'Irun', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38473', 'Legazpi', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38474', 'Mendaro', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38475', 'Mondragon', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38476', 'Oiartzun', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38477', 'Onati', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38478', 'Ordizia', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38479', 'Oria', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38480', 'Pasaia', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38481', 'Tolosa', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38482', 'Zarautz', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38483', 'Zumaia', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38484', 'Zumarraga', '3287', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38485', 'Aljaraque', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38486', 'Almonte', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38487', 'Ayamonte', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38488', 'Bollullos Par del Condado', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38489', 'Cartaya', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38490', 'Gibraleon', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38491', 'Huelva', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38492', 'Isla Cristina', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38493', 'La Palma del Condado', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38494', 'Lepe', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38495', 'Moguer', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38496', 'Punta Umbria', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38497', 'Valverde del Camino', '3288', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38498', 'Barbastro', '3289', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38499', 'Binefar', '3289', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38500', 'Fraga', '3289', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38501', 'Huesca', '3289', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38502', 'Jaca', '3289', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38503', 'Monzon', '3289', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38504', 'Sabinanigo', '3289', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38505', 'Alcala la Real', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38506', 'Alcaudete', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38507', 'Andujar', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38508', 'Baeza', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38509', 'Bailen', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38510', 'Cazorla', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38511', 'Jaen', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38512', 'Jodar', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38513', 'La Carolina', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38514', 'Linares', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38515', 'Mancha Real', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38516', 'Martos', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38517', 'Mengibar', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38518', 'Torre del Campo', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38519', 'Torredonjimeno', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38520', 'Ubeda', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38521', 'Villacarrillo', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38522', 'Villanueva del Arzobispo', '3290', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38523', 'Astorga', '3293', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38524', 'Bembibre', '3293', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38525', 'La Baneza', '3293', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38526', 'Leon', '3293', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38527', 'Ponferrada', '3293', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38528', 'San Andres del Rabanedo', '3293', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38529', 'Villablino', '3293', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38530', 'Villaquilambre', '3293', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38531', 'Tora', '3295', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38532', 'Balaguer', '3295', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38533', 'La Seu d\'Urgell', '3295', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38534', 'Lleida', '3295', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38535', 'Mollerussa', '3295', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38536', 'Tarrega', '3295', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38537', 'Burela', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38538', 'Cervo', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38539', 'Chantada', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38540', 'Foz', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38541', 'Lugo', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38542', 'Monforte de Lemos', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38543', 'Ribadeo', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38544', 'Sarria', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38545', 'Vilalba', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38546', 'Viveiro', '3296', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38547', 'Alcala de Henares', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38548', 'Alcobendas', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38549', 'Alcorcon', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38550', 'Algete', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38551', 'Alpedrete', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38552', 'Aranjuez', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38553', 'Arganda del Rey', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38554', 'Boadilla del Monte', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38555', 'Ciempozuelos', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38556', 'Collado Villalba', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38557', 'Colmenar Viejo', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38558', 'Coslada', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38559', 'El Escorial', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38560', 'Fuenlabrada', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38561', 'Galapagar', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38562', 'Getafe', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38563', 'Guadarrama', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38564', 'Humanes de Madrid', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38565', 'Las Rozas de Madrid', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38566', 'Leganes', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38567', 'Madrid', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38568', 'Majadahonda', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38569', 'Meco', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38570', 'Mejorada del Campo', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38571', 'Mostoles', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38572', 'Navalcarnero', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38573', 'Parla', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38574', 'Pinto', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38575', 'Pozuelo de Alarcon', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38576', 'Rivas-Vaciamadrid', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38577', 'San Fernando de Henares', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38578', 'San Lorenzo de El Escorial', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38579', 'San Martin de la Vega', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38580', 'San Sebastian de los Reyes', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38581', 'Torrejon de Ardoz', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38582', 'Torrelodones', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38583', 'Tres Cantos', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38584', 'Valdemoro', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38585', 'Velilla de San Antonio', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38586', 'Villanueva de la Canada', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38587', 'Villaviciosa de Odon', '3297', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38588', 'Alhaurin de la Torre', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38589', 'Alhaurin el Grande', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38590', 'Alora', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38591', 'Antequera', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38592', 'Apartado', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38593', 'Archidona', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38594', 'Benalmadena', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38595', 'Cartama', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38596', 'Coin', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38597', 'Estepona', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38598', 'Fuengirola', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38599', 'Malaga', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38600', 'Marbella', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38601', 'Mijas', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38602', 'Nerja', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38603', 'Rincon de la Victoria', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38604', 'Ronda', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38605', 'Torremolinos', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38606', 'Torrox', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38607', 'Velez-Malaga', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38608', 'maro', '3298', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38609', 'Melilla', '3299', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38610', 'Abaran', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38611', 'Aguilas', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38612', 'Alcantarilla', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38613', 'Alhama de Murcia', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38614', 'Archena', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38615', 'Beniel', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38616', 'Bullas', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38617', 'Calasparra', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38618', 'Caravaca de la Cruz', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38619', 'Cartagena', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38620', 'Cehegin', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38621', 'Cieza', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38622', 'Fuente Alamo de Murcia', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38623', 'Jumilla', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38624', 'La Union', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38625', 'Las Torres de Cotillas', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38626', 'Lorca', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38627', 'Los Alcazares', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38628', 'Mazarron', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38629', 'Molina de Segura', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38630', 'Moratella', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38631', 'Mula', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38632', 'Murcia', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38633', 'Puerto Lumbreras', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38634', 'San Javier', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38635', 'San Pedro del Pinatar', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38636', 'Santomera', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38637', 'Torre Pacheco', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38638', 'Torre-Pacheco', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38639', 'Totana', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38640', 'Yecla', '3300', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38641', 'Ansoain', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38642', 'Atarrabia', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38643', 'Baranain', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38644', 'Burlata', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38645', 'Iruna', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38646', 'Lizarra', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38647', 'Navarra', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38648', 'Orkoien', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38649', 'Tafalla', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38650', 'Tudela', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38651', 'Zizur Nagusia', '3301', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38652', 'O Barco de Valdeorras', '3302', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38653', 'O Carballino', '3302', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38654', 'Ourense', '3302', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38655', 'Verin', '3302', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38656', 'Xinzo de Limia', '3302', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38657', 'Guardo', '3304', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38658', 'Palencia', '3304', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38659', 'A Estrada', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38660', 'A Guarda', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38661', 'Baiona', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38662', 'Bueu', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38663', 'Caldas de Reis', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38664', 'Cambados', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38665', 'Cangas', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38666', 'Cangas De Morrazo', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38667', 'Gondomar', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38668', 'Lalin', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38669', 'Marin', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38670', 'Moana', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38671', 'Mos', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38672', 'Nigran', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38673', 'O Grove', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38674', 'O Porrino', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38675', 'Poio', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38676', 'Ponteareas', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38677', 'Pontevedra', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38678', 'Redondela', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38679', 'Salvaterra de Mino', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38680', 'Sanxenxo', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38681', 'Silleda', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38682', 'Tomino', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38683', 'Tui', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38684', 'Vigo', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38685', 'Vilagarcia de Arousa', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38686', 'Vilanova de Arousa', '3305', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38687', 'Bejar', '3306', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38688', 'Ciudad Rodrigo', '3306', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38689', 'Salamanca', '3306', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38690', 'Santa Marta de Tormes', '3306', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38691', 'Cuellar', '3308', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38692', 'Segovia', '3308', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38693', 'Alcala de Guadaira', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38694', 'Alcala del Rio', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38695', 'Arahal', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38696', 'Bormujos', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38697', 'Brenes', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38698', 'Camas', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38699', 'Cantillana', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38700', 'Carmona', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38701', 'Castilleja de la Cuesta', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38702', 'Coria del Rio', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38703', 'Dos Hermanas', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38704', 'Ecija', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38705', 'El Viso del Alcor', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38706', 'Estepa', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38707', 'Gines', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38708', 'Guillena', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38709', 'La Algaba', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38710', 'La Puebla de Cazalla', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38711', 'La Puebla del Rio', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38712', 'La Rinconada', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38713', 'Las Cabezas de San Juan', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38714', 'Lebrija', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38715', 'Lora del Rio', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38716', 'Los Palacios y Villafranca', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38717', 'Mairena del Alcor', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38718', 'Mairena del Aljarafe', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38719', 'Marchena', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38720', 'Moron de la Frontera', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38721', 'Olivares', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38722', 'Osuna', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38723', 'Pilas', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38724', 'San Juan de Aznalfarache', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38725', 'Sanlucar la Mayor', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38726', 'Sevilla', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38727', 'Tocina', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38728', 'Tomares', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38729', 'Utrera', '3309', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38730', 'Soria', '3310', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38731', 'Alcanar', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38732', 'Amposta', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38733', 'Calafell', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38734', 'Cambrils', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38735', 'Deltrebe', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38736', 'El Vendrell', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38737', 'Reus', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38738', 'Salou', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38739', 'Sant Carles de la Rapita', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38740', 'Tarragona', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38741', 'Torredembarra', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38742', 'Tortosa', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38743', 'Valls', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38744', 'Vila-seca', '3311', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38745', 'Tenerife', '3312', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38746', 'Alcaniz', '3313', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38747', 'Teruel', '3313', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38748', 'Consuegra', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38749', 'Illescas', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38750', 'Madridejos', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38751', 'Mora', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38752', 'Pepino', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38753', 'Quintanar de la Orden', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38754', 'Sonseca', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38755', 'Talavera de la Reina', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38756', 'Toledo', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38757', 'Torrijos', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38758', 'Villacanas', '3314', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38759', 'Agullent', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38760', 'Alaquas', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38761', 'Albal', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38762', 'Alberic', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38763', 'Alboraya', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38764', 'Aldaia', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38765', 'Alfafar', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38766', 'Algemesi', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38767', 'Alginet', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38768', 'Alzira', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38769', 'Benaguasil', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38770', 'Benetusser', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38771', 'Benifaio', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38772', 'Beniparrell', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38773', 'Betera', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38774', 'Bunol', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38775', 'Burjassot', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38776', 'Canals', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38777', 'Carcaixent', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38778', 'Carlet', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38779', 'Catarroja', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38780', 'Chiva', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38781', 'Cullera', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38782', 'Elche', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38783', 'Gandia', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38784', 'Godella', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38785', 'L\'Alcudia', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38786', 'L\'Eliana', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38787', 'La Pobla de Vallbona', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38788', 'Lliria', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38789', 'Los Montesinos', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38790', 'Manises', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38791', 'Massamagrell', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38792', 'Meliana', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38793', 'Mislata', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38794', 'Moncada', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38795', 'Oliva', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38796', 'Ontinyent', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38797', 'Paiporta', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38798', 'Paterna', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38799', 'Picanya', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38800', 'Picassent', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38801', 'Pucol', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38802', 'Quart de Poblet', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38803', 'Requena', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38804', 'Riba-roja de Turia', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38805', 'Sagunt', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38806', 'Sedavi', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38807', 'Silla', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38808', 'Sueca', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38809', 'Tavernes Blanques', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38810', 'Tavernes de la Valldigna', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38811', 'Torrent', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38812', 'Utiel', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38813', 'Valencia', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38814', 'Xativa', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38815', 'Xirivella', '3315', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38816', 'Laguna de Duero', '3316', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38817', 'Medina del Campo', '3316', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38818', 'Tordesillas', '3316', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38819', 'Valladolid', '3316', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38820', 'Abadiano', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38821', 'Abanto Zierbena', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38822', 'Amorebieta', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38823', 'Arrigorriaga', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38824', 'Barakaldo', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38825', 'Basauri', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38826', 'Bermeo', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38827', 'Berriz', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38828', 'Bilbao', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38829', 'Durango', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38830', 'Erandio', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38831', 'Ermua', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38832', 'Etxano', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38833', 'Galdakao', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38834', 'Gernika-Lumo', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38835', 'Getxo', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38836', 'Igorre', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38837', 'Leioa', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38838', 'Mungia', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38839', 'Ondarroa', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38840', 'Ortuella', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38841', 'Portugalete', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38842', 'Santurtzi', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38843', 'Sestao', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38844', 'Sopelana', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38845', 'Trapagaran', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38846', 'Zamudio', '3317', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38847', 'Benavente', '3318', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38848', 'Toro', '3318', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38849', 'Zamora', '3318', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38850', 'Calatayud', '3319', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38851', 'Ejea de los Caballeros', '3319', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38852', 'Tarazona', '3319', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38853', 'Utebo', '3319', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38854', 'Zaragoza', '3319', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38855', 'Amparai', '3320', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38856', 'Galmune', '3320', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38857', 'Anuradhapuraya', '3321', '0.00', '1', '2021-04-06 06:43:50', '2025-08-07 19:00:40', NULL),
('38858', 'Badulla', '3322', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38859', 'Bandarawela', '3322', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38860', 'Haputale', '3322', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38861', 'Boralesgamuwa', '3323', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38862', 'Battaramulla', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38863', 'Colombo', '3324', '0.00', '1', '2021-04-06 06:43:50', '2025-08-07 18:53:46', NULL),
('38864', 'Dehiwala-Mount Lavinia', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38865', 'Homagama', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38866', 'Jayawardanapura', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38867', 'Kolonnawa', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38868', 'Kotikawatta', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38869', 'Maharagama', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38870', 'Moratuwa', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38871', 'Mulleriyawa', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38872', 'Ratmalana', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38873', 'Seethawakapura', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38874', 'Sri Jayawardanapura', '3324', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38875', 'Ambalamgoda', '3325', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38876', 'Galla', '3325', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38877', 'Daluguma', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38878', 'Gampaha', '3326', '0.00', '1', '2021-04-06 06:43:50', '2025-08-07 18:54:10', NULL),
('38879', 'Hendala', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38880', 'Jaela', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38881', 'Kandana', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38882', 'Katunayaka', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38883', 'Kelaniya', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38884', 'Migamuwa', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38885', 'Minuwangoda', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38886', 'Peliyagoda', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38887', 'Ragama', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38888', 'Wattala', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38889', 'Welesara', '3326', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38890', 'Hambantota', '3327', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38891', 'Tanggalla', '3327', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38892', 'Beruwala', '3328', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38893', 'Horana', '3328', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38894', 'Kalutara', '3328', '0.00', '1', '2021-04-06 06:43:50', '2025-08-07 18:54:34', NULL),
('38895', 'Keselwatta', '3328', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38896', 'Panadraya', '3328', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38897', 'Kegalla', '3329', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38898', 'Kilinochchi', '3330', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38899', 'Kuliyapitiya', '3331', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38900', 'Kurunegala', '3331', '0.00', '1', '2021-04-06 06:43:50', '2025-08-07 18:56:19', NULL),
('38901', 'Polgahawela', '3331', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38902', 'Eravur', '3332', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38903', 'Katankudi', '3332', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38904', 'Madakalpuwa', '3332', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38905', 'Malwana', '3334', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38906', 'Mannarama', '3335', '0.00', '1', '2021-04-06 06:43:50', '2025-08-07 19:01:56', NULL),
('38907', 'Dambulla', '3336', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38908', 'Matale', '3336', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38909', 'Sigiriya', '3336', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38910', 'Matara', '3337', '0.00', '1', '2021-04-06 06:43:50', '2025-08-07 18:58:29', NULL),
('38911', 'Weligama', '3337', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38912', 'Monaragala', '3338', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38913', 'Wattegama', '3338', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38914', 'Mullaitivu', '3339', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38915', 'Polonnaruwa', '3343', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38916', 'Halawata', '3344', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38917', 'Puttalama', '3344', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38918', 'Balangoda', '3345', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38919', 'Ratnapuraya', '3345', '0.00', '1', '2021-04-06 06:43:50', '2025-08-07 19:00:09', NULL),
('38920', 'Tirikunamalaya', '3347', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38921', 'Querceta', '3348', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38922', 'Vavuniyawa', '3349', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38923', 'Chavakachcheri', '3351', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38924', 'Peduru Tuduwa', '3351', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38925', 'Valvedditturai', '3351', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38926', 'Yapanaya', '3351', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38927', 'Mahara', '3352', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38928', 'Kodok', '3353', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38929', 'Malakal', '3353', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38930', 'Nasir', '3353', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38931', 'ar-Rank', '3353', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38932', 'Juba', '3354', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38933', 'Yei', '3354', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38934', 'Maridi', '3359', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38935', 'Nzara', '3359', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38936', 'Tambura', '3359', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38937', 'Yambio', '3359', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38938', 'Bur', '3362', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38939', 'Aruma', '3363', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38940', 'Halfa al-Jadidah', '3363', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38941', 'Kassala', '3363', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38942', 'Khashm-al-Qirbah', '3363', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38943', 'Wagar', '3363', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38944', 'al-Masnah', '3363', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38945', '\'Atbarah', '3364', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38946', 'Barbar', '3364', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38947', 'Kabushiyah', '3364', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38948', 'Shandi', '3364', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38949', 'ad-Damir', '3364', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38950', 'al-Bawga', '3364', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38951', 'al-Matammah', '3364', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38952', 'Kapoeta', '3368', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38953', 'Torit', '3368', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38954', 'Abu Hijar', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38955', 'Galgani', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38956', 'Hajj \'Abdallah', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38957', 'Karkawj', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38958', 'Mayurnu', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38959', 'Sinjah', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38960', 'Sinnar', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38961', 'Sinnar-at-Tagatu', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38962', 'Umm Shawkah', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38963', 'ad-Dindar', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38964', 'as-Suki', '3369', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38965', 'Mashra ar-Raqq', '3370', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38966', 'Tonj', '3370', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38967', 'Warab', '3370', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38968', 'Bur Sudan', '3372', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38969', 'Gabait', '3372', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38970', 'Sawakin', '3372', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38971', 'Sinkat', '3372', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38972', 'Tawkar', '3372', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38973', 'Rumbik', '3373', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38974', 'Yirol', '3373', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38975', 'Abu \'Usar', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38976', 'Arba\'atun wa \'Ishrun-al-Qurash', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38977', 'Maharaybah', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38978', 'Miallayab', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38979', 'Rufa\'a', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38980', 'Sharafat', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38981', 'Tabat', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38982', 'Tambul', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38983', 'Wad Madani', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38984', 'Wad Rawah', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38985', 'al-Hawsh', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38986', 'al-Hilaliyah', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38987', 'al-Huda', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38988', 'al-Husayhisah', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38989', 'al-Kamilin', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38990', 'al-Karaymat', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38991', 'al-Manaqil', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38992', 'al-Mu\'sadiyah', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38993', 'al-Musallamiyah', '3374', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38994', 'Umm Dawm', '3375', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38995', 'Umm Durman', '3375', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38996', 'al-Khartum', '3375', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38997', 'al-Khartum Bahri', '3375', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38998', 'Doka', '3376', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('38999', 'Qala\'-an-Nahl', '3376', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39000', 'Shuwak', '3376', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39001', 'al-Faw', '3376', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39002', 'al-Hawatah', '3376', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39003', 'al-Qadarif', '3376', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39004', 'Bentiu', '3377', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39005', 'Ler', '3377', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39006', 'Asalaya', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39007', 'Bufi', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39008', 'Gulli', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39009', 'Kinanah', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39010', 'Kusti', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39011', 'Marabba', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39012', 'Rabak', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39013', 'Shabashah', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39014', 'Tandalti', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39015', 'Umm Jarr', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39016', 'Wad-az-Zaki', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39017', 'ad-Duwaym', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39018', 'al-Jazirah', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39019', 'al-Kawah', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39020', 'al-Qutaynah', '3378', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39021', 'ad-Damazin', '3379', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39022', 'al-Kurumuk', '3379', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39023', 'al-Quwaysi', '3379', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39024', 'ar-Rusayris', '3379', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39025', 'Argu', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39026', 'Dalqu', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39027', 'Dunqulah', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39028', 'Kanisah', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39029', 'Karmah-an-Nuzul', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39030', 'Kuraymah', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39031', 'Kurti', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39032', 'Marawi', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39033', 'Tangasi-ar-Ru\'ays', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39034', 'Wadi Halfa', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39035', 'ad-Dabbah', '3380', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39036', 'Brokopondo', '3381', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39037', 'Brownsweg', '3381', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39038', 'Marienburg', '3382', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39039', 'Meerzorg', '3382', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39040', 'Nieuw Amsterdam', '3382', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39041', 'Totness', '3383', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39042', 'Albina', '3384', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39043', 'Moengo', '3384', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39044', 'Nieuw Nickerie', '3385', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39045', 'Wageningen', '3385', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39046', 'Onverwacht', '3386', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39047', 'Paramaribo', '3387', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39048', 'Groningen', '3388', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39049', 'Lelydorp', '3389', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39050', 'Barentsburg', '3390', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39051', 'Hornsund', '3390', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39052', 'Isfjord Radio', '3390', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39053', 'Longyearbyen', '3390', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39054', 'Ny-Alesund', '3390', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39055', 'Bulembu', '3391', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39056', 'Ezulwini', '3391', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39057', 'Mbabane', '3391', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39058', 'Ngwenya', '3391', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39059', 'Pigg\'s Peak', '3391', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39060', 'Big Bend', '3392', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39061', 'Mhlume', '3392', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39062', 'Mpaka', '3392', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39063', 'Nsoko', '3392', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39064', 'Simunye', '3392', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39065', 'Siteki', '3392', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39066', 'Tshaneni', '3392', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39067', 'Bhunya', '3393', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39068', 'Kwaluseni', '3393', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39069', 'Lobamba', '3393', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39070', 'Malkerns', '3393', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39071', 'Mankayane', '3393', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39072', 'Manzini', '3393', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39073', 'Matsapha', '3393', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39074', 'Mhlambanyatsi', '3393', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39075', 'Sidvokodvo', '3393', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39076', 'Hlatikulu', '3394', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39077', 'Hluti', '3394', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39078', 'Kubuta', '3394', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39079', 'Lavumisa', '3394', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39080', 'Nhlangano', '3394', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39081', 'Karlshamn', '3397', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39082', 'Karlskrona', '3397', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39083', 'Ronneby', '3397', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39084', 'Stenungsund', '3398', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39085', 'Avesta', '3399', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39086', 'Borlange', '3399', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39087', 'Falun', '3399', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39088', 'Hedemora', '3399', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39089', 'Ludvika', '3399', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39090', 'Malung', '3399', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39091', 'Bollnas', '3400', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39092', 'Bro', '3400', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39093', 'Gavle', '3400', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39094', 'Hudiksvall', '3400', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39095', 'Sandviken', '3400', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39096', 'Soderhamn', '3400', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39097', 'Skara', '3402', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39098', 'Visby', '3402', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39099', 'Anderstorp', '3403', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39100', 'Falkenberg', '3403', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39101', 'Halmstad', '3403', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39102', 'Ullared', '3403', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39103', 'Varberg', '3403', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39104', 'Farjestaden', '3404', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39105', 'Ostersund', '3404', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39106', 'Gislaved', '3405', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39107', 'Jonkoping', '3405', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39108', 'Nassjo', '3405', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39109', 'Tranas', '3405', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39110', 'Varnamo', '3405', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39111', 'Vetlanda', '3405', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39112', 'Blomstermala', '3406', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39113', 'Kalmar', '3406', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39114', 'Nybro', '3406', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39115', 'Oskarshamn', '3406', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39116', 'Solna', '3406', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39117', 'Torsas', '3406', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39118', 'Vastervik', '3406', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39119', 'Habo', '3407', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39120', 'Limhamn', '3407', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39121', 'Segeltorp', '3407', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39122', 'Svedala', '3407', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39123', 'Ljungby', '3408', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39124', 'Vaxjo', '3408', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39125', 'Boden', '3409', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39126', 'Kiruna', '3409', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39127', 'Lulea', '3409', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39128', 'Pitea', '3409', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39129', 'Askersund', '3410', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39130', 'Karlskoga', '3410', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39131', 'Kumla', '3410', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39132', 'Orebro', '3410', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39133', 'Finspang', '3411', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39134', 'Follinge', '3411', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39135', 'Kisa', '3411', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39136', 'Linkoping', '3411', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39137', 'Mjolby', '3411', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39138', 'Motala', '3411', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39139', 'Norrkoping', '3411', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39140', 'Vadstena', '3411', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39141', 'Skarpovagen', '3412', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39142', 'Angelholm', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39143', 'Arlov', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39144', 'Bastad', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39145', 'Eslov', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39146', 'Hassleholm', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39147', 'Helsingborg', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39148', 'Hjarup', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39149', 'Hoganas', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39150', 'Horby', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39151', 'Jonstorp', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39152', 'Klagstorp', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39153', 'Kristianstad', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39154', 'Landskrona', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39155', 'Lund', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39156', 'Malmo', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39157', 'Skanor', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39158', 'Staffanstorp', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39159', 'Trelleborg', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39160', 'Ystad', '3413', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39161', 'Hillerstorp', '3414', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39162', 'Markaryd', '3414', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39163', 'Smalandsstenar', '3414', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39164', 'Eskilstuna', '3415', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39165', 'Gnesta', '3415', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39166', 'Katrineholm', '3415', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39167', 'Nacka Strand', '3415', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39168', 'Nykoping', '3415', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39169', 'Strangnas', '3415', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39170', 'Vingaker', '3415', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39171', 'Akersberga', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39172', 'Boo', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39173', 'Bromma', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39174', 'Djursholm', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39175', 'Hallstavik', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39176', 'Jarfalla', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39177', 'Johannesfred', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39178', 'Lidingo', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39179', 'Marsta', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39180', 'Norrtalje', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39181', 'Norsborg', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39182', 'Nynashamn', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39183', 'Rosersberg', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39184', 'Sodertalje', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39185', 'Sollentuna', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39186', 'Stockholm', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39187', 'Sundbyberg', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39188', 'Taby', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39189', 'Tumba', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39190', 'Upplands-Vasby', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39191', 'Vallentuna', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39192', 'Vasterhaninge', '3416', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39193', 'Balsta', '3417', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39194', 'Enkoping', '3417', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39195', 'Knivsta', '3417', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39196', 'Skyttorp', '3417', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39197', 'Storvreta', '3417', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39198', 'Uppsala', '3417', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39199', 'Arvika', '3418', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39200', 'Hammaro', '3418', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39201', 'Karlstad', '3418', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39202', 'Kristinehamn', '3418', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39203', 'Skoghall', '3418', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39204', 'Guglingen', '3419', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39205', 'Robertsfors', '3419', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39206', 'Skelleftea', '3419', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39207', 'Umea', '3419', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39208', 'Gothenburg', '3420', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39209', 'Kallered', '3420', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39210', 'Kvanum', '3420', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39211', 'Timmersdala', '3420', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39212', 'Harnosand', '3421', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39213', 'Ornskoldsvik', '3421', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39214', 'Sundsvall', '3421', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39215', 'Arboga', '3422', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39216', 'Fagersta', '3422', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39217', 'Hallstahammar', '3422', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39218', 'Koping', '3422', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39219', 'Sala', '3422', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39220', 'Vasteras', '3422', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39221', 'Aarau', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39222', 'Aarburg', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39223', 'Baden', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39224', 'Bevilard', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39225', 'Bremgarten', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39226', 'Brugg', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39227', 'Buchs', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39228', 'Chevenez', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39229', 'Fislisbach', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39230', 'Granichen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39231', 'Hagglingen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39232', 'Kaiseraugst', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39233', 'Kleindoettingen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39234', 'Klingnau', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39235', 'Kuttigen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39236', 'Lenzburg', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39237', 'Menziken', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39238', 'Mohlin', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39239', 'Mumpf', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39240', 'Muri', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39241', 'Neuenhof', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39242', 'Niederlenz', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39243', 'Niederwangen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39244', 'Niederwil', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39245', 'Oberentfelden', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39246', 'Obersiggenthal', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39247', 'Oftringen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39248', 'Reinach', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39249', 'Rheinfelden', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39250', 'Rosshausern', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39251', 'Rothrist', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39252', 'Rupperswil', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39253', 'Schmitten', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39254', 'Seon', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39255', 'Spreitenbach', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39256', 'Stein', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39257', 'Suhr', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39258', 'Trogen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39259', 'Untersiggenthal', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39260', 'Villmergen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39261', 'Wettingen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39262', 'Windisch', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39263', 'Wohlen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39264', 'Wurenlos', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39265', 'Zofingen', '3424', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39266', 'Aesch', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39267', 'Allschwil', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39268', 'Arlesheim', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39269', 'Binningen', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39270', 'Birsfelden', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39271', 'Bottmingen', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39272', 'Ettingen', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39273', 'Frenkendorf', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39274', 'Gelterkinden', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39275', 'Laufen', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39276', 'Lausen', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39277', 'Liestal', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39278', 'Munchenstein', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39279', 'Muttenz', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39280', 'Oberwil', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39281', 'Pratteln', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39282', 'Reinach', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39283', 'Sissach', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39284', 'Therwil', '3427', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39285', 'Basel', '3428', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39286', 'Riehen', '3428', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39287', 'Belp', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39288', 'Bern', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39289', 'Berne', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39290', 'Biel', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39291', 'Biel-Bienne', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39292', 'Bolligen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39293', 'Burgdorf', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39294', 'Frutigen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39295', 'Heimberg', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39296', 'Herzogenbuchsee', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39297', 'Huttwil', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39298', 'Interlaken', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39299', 'Ittigen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39300', 'Kirchberg', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39301', 'Koniz', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39302', 'Konolfingen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39303', 'Langenthal', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39304', 'Langnau', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39305', 'Lengnau', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39306', 'Lyss', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39307', 'Meiringen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39308', 'Moutier', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39309', 'Munchenbuchsee', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39310', 'Munsingen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39311', 'Muri', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39312', 'Nidau', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39313', 'Orpund', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39314', 'Ostermundingen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39315', 'Pieterlen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39316', 'Saanen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39317', 'Saint-Imier', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39318', 'Sonceboz', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39319', 'Spiez', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39320', 'Steffisburg', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39321', 'Sumiswald', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39322', 'Thun', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39323', 'Uetendorf', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39324', 'Unterseen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39325', 'Urtenen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39326', 'Vechingen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39327', 'Wahlern', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39328', 'Wohlen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39329', 'Worb', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39330', 'Zollikofen', '3429', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39331', 'Bulle', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39332', 'Dudingen', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39333', 'Fribourg', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39334', 'Granges-Paccot', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39335', 'Marly', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39336', 'Muntelier', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39337', 'Murten', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39338', 'Remaufens', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39339', 'Villars-sur-Glane', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39340', 'Villaz-Saint-Pierre', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39341', 'Wunnewil-Flamatt', '3431', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39342', 'Bernex', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39343', 'Carouge', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39344', 'Chene-Bougeries', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39345', 'Chene-Bourg', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39346', 'Collonge-Bellerive', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39347', 'Cologny', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39348', 'Geneva', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39349', 'Geneve', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39350', 'Lancy', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39351', 'Le Grand-Saconnex', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39352', 'Meyrin', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39353', 'Onex', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39354', 'Plan-les-Ouates', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39355', 'Thonex', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39356', 'Vernier', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39357', 'Versoix', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39358', 'Veyrier', '3432', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39359', 'Glarus', '3433', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39360', 'Nafels', '3433', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39361', 'Arosa', '3434', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39362', 'Chur', '3434', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39363', 'Davos', '3434', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39364', 'Domat', '3434', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39365', 'Igis', '3434', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39366', 'Landquart', '3434', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39367', 'Maienfeld', '3434', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39368', 'Sankt Moritz', '3434', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39369', 'Heerbrugg', '3435', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39370', 'Delemont', '3436', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39371', 'Glovelier', '3436', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39372', 'Le Noirmont', '3436', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39373', 'Porrentruy', '3436', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39374', 'Adligenswil', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39375', 'Ballwil', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39376', 'Buchrain', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39377', 'Ebikon', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39378', 'Emmen', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39379', 'Hochdorf', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39380', 'Horw', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39381', 'Kriens', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39382', 'Littau', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39383', 'Luzern', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39384', 'Malters', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39385', 'Meggen', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39386', 'Neuenkirch', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39387', 'Perlern', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39388', 'Rothenburg', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39389', 'Ruswil', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39390', 'Sursee', '3438', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39391', 'Muhen', '3440', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39392', 'Bole', '3441', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39393', 'Boudry', '3441', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39394', 'Colombier', '3441', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39395', 'La Chaux-de-Fonds', '3441', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39396', 'Le Locle', '3441', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39397', 'Neuchatel', '3441', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39398', 'Peseux', '3441', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39399', 'Buochs', '3442', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39400', 'Hergiswil', '3442', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39401', 'Stans', '3442', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39402', 'Stansstad', '3442', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39403', 'Alpnach', '3443', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39404', 'Kerns', '3443', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39405', 'Sachseln', '3443', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39406', 'Sarnen', '3443', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39407', 'Neuhausen', '3445', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39408', 'Schaffhausen', '3445', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39409', 'Altendorf', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39410', 'Arth', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39411', 'Buron', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39412', 'Einsiedeln', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39413', 'Feusisberg', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39414', 'Freienbach', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39415', 'Ingenbohl', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39416', 'Kussnacht', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39417', 'Lachen', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39418', 'Schubelbach', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39419', 'Schwyz', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39420', 'Wangen', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39421', 'Wollerau', '3446', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39422', 'Balsthal', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39423', 'Bellach', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39424', 'Bettlach', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39425', 'Biberist', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39426', 'Derendingen', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39427', 'Dornach', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39428', 'Dulliken', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39429', 'Feldbrunnen', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39430', 'Gerlafingen', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39431', 'Grenchen', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39432', 'Hagendorf', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39433', 'Olten', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39434', 'Schonenwerd', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39435', 'Solothurn', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39436', 'Trimbach', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39437', 'Wangen', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39438', 'Zuchwil', '3447', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39439', 'Aadorf', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39440', 'Amriswil', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39441', 'Arbon', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39442', 'Bischofszell', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39443', 'Felben-Wellhausen', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39444', 'Frauenfeld', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39445', 'Guttingen', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39446', 'Kreuzlingen', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39447', 'Romanshorn', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39448', 'Sirnach', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39449', 'Sulgen', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39450', 'Tagerwilen', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39451', 'Weinfelden', '3448', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39452', 'Ascona', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39453', 'Bellinzona', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39454', 'Biasca', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39455', 'Breganzona', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39456', 'Cadempino', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39457', 'Chiasso', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39458', 'Giubiasco', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39459', 'Locarno', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39460', 'Losone', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39461', 'Lugano', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39462', 'Massagno', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39463', 'Melide', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39464', 'Mendrisio', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39465', 'Mezzovico', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39466', 'Minusio', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39467', 'Porza', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39468', 'Pregassona', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39469', 'Viganello', '3449', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39470', 'Altdorf', '3450', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39471', 'Schattdorf', '3450', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39472', 'Bagnes', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39473', 'Brig-Glis', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39474', 'Collombey-Muraz', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39475', 'Conthey', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39476', 'Evionnaz', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39477', 'Fully', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39478', 'Martigny', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39479', 'Monthey', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39480', 'Naters', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39481', 'Nendaz', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39482', 'Niederwald', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39483', 'Saviese', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39484', 'Sierre', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39485', 'Sion', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39486', 'Visp', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39487', 'Vouvry', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39488', 'Zermatt', '3451', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39489', 'Aigle', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39490', 'Ballaigues', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39491', 'Bex', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39492', 'Blonay', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39493', 'Bussigny', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39494', 'Chavannes', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39495', 'Crissier', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39496', 'Ecublens', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39497', 'Epalinges', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39498', 'Gland', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39499', 'La Tour-de-Peilz', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39500', 'Lausanne', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39501', 'Le Mont-sur-Lausanne', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39502', 'Lucerne', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39503', 'Lutry', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39504', 'Montreux', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39505', 'Morges', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39506', 'Nyon', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39507', 'Ollon', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39508', 'Orbe', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39509', 'Payerne', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39510', 'Prilly', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39511', 'Puidoux', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39512', 'Pully', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39513', 'Renens', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39514', 'Romainmotier', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39515', 'Saint Sulpice', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39516', 'Vevey', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39517', 'Yverdon', '3452', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39518', 'Vauffelin', '3453', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39519', 'Baar', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39520', 'Cham', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39521', 'Hunenberg', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39522', 'Menzingen', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39523', 'Neuheim', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39524', 'Oberageri', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39525', 'Risch', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39526', 'Risch-Rotkreuz', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39527', 'Steinhausen', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39528', 'Unterageri', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39529', 'Zug', '3454', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39530', 'Adliswil', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39531', 'Affoltern', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39532', 'Bachenbulach', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39533', 'Bassersdorf', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39534', 'Birmensdorf', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39535', 'Bubikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39536', 'Bulach', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39537', 'Dielsdorf', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39538', 'Dietikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39539', 'Dietlikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39540', 'Dubendorf', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39541', 'Durnten', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39542', 'Ebmatingen', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39543', 'Egg', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39544', 'Embrach', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39545', 'Erlenbach', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39546', 'Fallanden', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39547', 'Fehraltdorf', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39548', 'Geroldswil', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39549', 'Gossau', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39550', 'Greifensee', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39551', 'Herrliberg', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39552', 'Hinwil', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39553', 'Hombrechtikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39554', 'Horgen', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39555', 'Illnau-Effretikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39556', 'Kilchberg', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39557', 'Kloten', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39558', 'Kusnacht', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39559', 'Langnau', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39560', 'Mannedorf', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39561', 'Maur', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39562', 'Meilen', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39563', 'Neftenbach', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39564', 'Niederhasli', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39565', 'Nurensdorf', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39566', 'Oberengstringen', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39567', 'Oberglatt', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39568', 'Oberrieden', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39569', 'Opfikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39570', 'Pfaffikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39571', 'Rafz', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39572', 'Regensdorf', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39573', 'Richterswil', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39574', 'Rumlang', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39575', 'Ruschlikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39576', 'Ruti', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39577', 'Schlieren', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39578', 'Schwerzenbach', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39579', 'Seuzach', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39580', 'Stafa', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39581', 'Thalwil', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39582', 'Uetikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39583', 'Urdorf', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39584', 'Uster', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39585', 'Volketswil', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39586', 'Wadenswil', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39587', 'Wald', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39588', 'Wallisellen', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39589', 'Wangen-Bruttisellen', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39590', 'Weiningen', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39591', 'Wetzikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39592', 'Winterthur', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39593', 'Zell', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39594', 'Zollikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39595', 'Zumikon', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39596', 'Zurich', '3455', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39597', 'Aleppo', '3456', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39598', 'Dar\'a', '3457', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39599', 'Nawa', '3457', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39600', 'Abu Kamal', '3458', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39601', 'Dayr az-Zawr', '3458', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39602', 'al-Mayadin', '3458', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39603', 'Damascus', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39604', 'Darayya', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39605', 'Duma', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39606', 'Hajar Aswad', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39607', 'Harasta al-Bas', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39608', 'Jaramanah', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39609', 'Kabir-as-Sit', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39610', 'Kesweh', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39611', 'Qatana', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39612', 'Yabrud', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39613', 'al-Qutayfah', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39614', 'an-Nabk', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39615', 'at-Tall', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39616', 'az-Zabadani', '3459', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39617', '\'Afrin', '3460', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39618', '\'Ayn-al-\'Arab', '3460', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39619', 'A\'zaz', '3460', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39620', 'Halab', '3460', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39621', 'Manbij', '3460', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39622', 'al-Bab', '3460', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39623', 'as-Safirah', '3460', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39624', 'Hamah', '3461', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39625', 'Masyaf', '3461', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39626', 'Muhradah', '3461', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39627', 'Salamiyah', '3461', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39628', 'Hims', '3462', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39629', 'Homs', '3462', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39630', 'Tudmur', '3462', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39631', 'al-Qusayr', '3462', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39632', 'ar-Rastan', '3462', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39633', 'Ariha', '3463', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39634', 'Idlib', '3463', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39635', 'Jisr-ash-Shughur', '3463', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39636', 'Ma\'arrat-an-Nu\'man', '3463', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39637', 'Baniyas', '3465', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39638', 'Safita', '3465', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39639', 'Tartus', '3465', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39640', 'Ra\'s-al-\'Ayn', '3466', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39641', 'al-Hasakah', '3466', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39642', 'al-Malikiyah', '3466', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39643', 'al-Qamishli', '3466', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39644', 'Jablah', '3467', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39645', 'Lattakia', '3467', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39646', 'al-Ladhiqiyah', '3467', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39647', 'al-Qunaytirah', '3468', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39648', 'ar-Raqqah', '3469', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39649', 'ath-Thawrah', '3469', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39650', 'as-Suwayda', '3470', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39651', 'Changhua City', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39652', 'Changhwa', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39653', 'Chihu', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39654', 'Erhlin', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39655', 'Hemei', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39656', 'Homei', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39657', 'Hua Tan Hsiang', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39658', 'Huatan Township', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39659', 'Lukang', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39660', 'Peitou', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39661', 'Puyen Hsiang', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39662', 'Tienchung', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39663', 'Yuanlin', '3471', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39664', 'Fenglin', '3477', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39665', 'Hualian', '3477', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39666', 'Yuli', '3477', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39667', 'Ilan', '3478', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39668', 'Lotung', '3478', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39669', 'Suao', '3478', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39670', 'Toucheng', '3478', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39671', 'Kincheng', '3482', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39672', 'Kinhsia', '3482', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39673', 'Kinhu', '3482', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39674', 'Cholan', '3483', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39675', 'Chunan', '3483', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39676', 'Houlung', '3483', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39677', 'Miaoli', '3483', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39678', 'Toufen', '3483', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39679', 'Tunghsiao', '3483', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39680', 'Yuanli', '3483', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39681', 'Zaociao', '3483', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39682', 'Chichi', '3484', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39683', 'Chushan', '3484', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39684', 'Nantou', '3484', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39685', 'Puli', '3484', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39686', 'Tsaotun', '3484', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39687', 'Makung', '3486', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39688', 'Chaochou', '3487', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39689', 'Hengchun', '3487', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39690', 'Pingtung', '3487', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39691', 'Tungkang', '3487', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39692', 'Dali', '3488', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39693', 'South District', '3488', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39694', 'Ta-Ya Shang', '3488', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39695', 'Dali', '3489', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39696', 'South District', '3489', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39697', 'Ta-Ya Shang', '3489', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39698', 'Dali', '3490', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39699', 'South District', '3490', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39700', 'Ta-Ya Shang', '3490', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39701', 'Kuanshan', '3495', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39702', 'Taitung', '3495', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39703', 'Chengkung', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39704', 'Chungli', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39705', 'Kuan Yin', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39706', 'Pate', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39707', 'Pingchen', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39708', 'Ta Yuan', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39709', 'Tachi', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39710', 'Taoyuan', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39711', 'Tungshih', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39712', 'Yangmei', '3496', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39713', 'Wujie', '3497', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39714', 'Hsilo', '3499', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39715', 'Huwei', '3499', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39716', 'Peikang', '3499', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39717', 'Touliu', '3499', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39718', 'Tounan', '3499', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39719', 'Tuku', '3499', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39720', 'Dushanbe', '3500', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39721', 'Khorug', '3501', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39722', 'Murgob', '3501', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39723', 'Garm', '3502', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39724', 'Hisor', '3502', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39725', 'Kofarnihon', '3502', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39726', 'Leninskiy', '3502', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39727', 'Rogun', '3502', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39728', 'Shakhrinau', '3502', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39729', 'Tursunzoda', '3502', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39730', 'Dangara', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39731', 'Farkhor', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39732', 'Jilikul', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39733', 'Khojamaston', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39734', 'Kolhozobod', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39735', 'Kulob', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39736', 'Kumsangir', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39737', 'Moskva', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39738', 'Mu\'minobod', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39739', 'Nurak', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39740', 'Pyanj', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39741', 'Qurgonteppa', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39742', 'Sarband', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39743', 'Shaartuz', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39744', 'Sovetskiy', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39745', 'Vakhsh', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39746', 'Vose', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39747', 'Yovon', '3503', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39748', 'Adrasmon', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39749', 'Asht', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39750', 'Ayni', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39751', 'Buston', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39752', 'Chkalov', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39753', 'Chorku', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39754', 'Gafurov', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39755', 'Ganchi', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39756', 'Isfara', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39757', 'Khujand', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39758', 'Konibodom', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39759', 'Matcha', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39760', 'Nau', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39761', 'Panjakent', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39762', 'Proletarsk', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39763', 'Qayroqqum', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39764', 'Shurob', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39765', 'Taboshar', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39766', 'Uroteppa', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39767', 'Zafarobod', '3504', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39768', 'Arusha', '3505', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39769', 'Dodoma', '3507', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39770', 'Kondoa', '3507', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39771', 'Mpwapwa', '3507', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39772', 'Iringa', '3508', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39773', 'Njombe', '3508', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39774', 'Bukoba', '3509', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39775', 'Bwanga', '3509', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39776', 'Ngara', '3509', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39777', 'Kasulu', '3510', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39778', 'Kigoma', '3510', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39779', 'Uvinza', '3510', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39780', 'Moshi', '3511', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39781', 'Same', '3511', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39782', 'Kilwa Kivinje', '3512', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39783', 'Lindi', '3512', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39784', 'Nachingwea', '3512', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39785', 'Musoma', '3513', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39786', 'Tarime', '3513', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39787', 'Mbeya', '3514', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39788', 'Mwaya', '3514', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39789', 'Tukuyu', '3514', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39790', 'Kilosa', '3515', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39791', 'Mahenge', '3515', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39792', 'Morogoro', '3515', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39793', 'Masasi', '3516', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39794', 'Mikindani', '3516', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39795', 'Mtwara', '3516', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39796', 'Newala', '3516', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39797', 'Magu', '3517', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39798', 'Mwanza', '3517', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39799', 'Nansio', '3517', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39800', 'Sengerama', '3517', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39801', 'Bagamoyo', '3518', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39802', 'Kibaha', '3518', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39803', 'Rufiji', '3518', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39804', 'Utete', '3518', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39805', 'Mpanda', '3519', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39806', 'Sumbawanga', '3519', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39807', 'Songea', '3520', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39808', 'Tunduru', '3520', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39809', 'Kahama', '3521', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39810', 'Maswa', '3521', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39811', 'Mwadui', '3521', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39812', 'Old Shinyanga', '3521', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39813', 'Shinyanga', '3521', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39814', 'Manyoni', '3522', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39815', 'Singida', '3522', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39816', 'Bukene', '3523', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39817', 'Nzega', '3523', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39818', 'Tabora', '3523', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39819', 'Urambo', '3523', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39820', 'Korogwe', '3524', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39821', 'Muheza', '3524', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39822', 'Pangani', '3524', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39823', 'Tanga', '3524', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39824', 'Bangkhen', '3528', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39825', 'Bangkok', '3528', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39826', 'Phatumthanee', '3528', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39827', 'Bang Khla', '3530', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39828', 'Bang Pakong', '3530', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39829', 'Bangpakong', '3530', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39830', 'Chachoengsao', '3530', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39831', 'Phanom Sarakham', '3530', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39832', 'Plaeng Yao', '3530', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39833', 'Bamnet Narong', '3532', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39834', 'Chaiyaphum', '3532', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39835', 'Kaeng Khlo', '3532', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39836', 'Kaset Sombun', '3532', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39837', 'Phu Khieo', '3532', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39838', 'Chanthaburi', '3534', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39839', 'Khlung', '3534', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39840', 'Laem Sing', '3534', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39841', 'Soydow', '3534', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39842', 'Tha Mai', '3534', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39843', 'Chumphon', '3538', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39844', 'Lang Suan', '3538', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39845', 'Huai Mek', '3539', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39846', 'Kalasin', '3539', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39847', 'Kamalasai', '3539', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39848', 'Khao Wong', '3539', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39849', 'Kuchinarai', '3539', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39850', 'Nong Kung Si', '3539', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39851', 'Yang Talat', '3539', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39852', 'Bo Phloi', '3541', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39853', 'Kanchanaburi', '3541', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39854', 'Phanom Thuan', '3541', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39855', 'Tha Maka', '3541', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39856', 'Tha Muang', '3541', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39857', 'Ao Luk', '3543', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39858', 'Krabi', '3543', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39859', 'Lampang', '3545', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39860', 'Thoen', '3545', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39861', 'Lamphun', '3546', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39862', 'Mae Tha', '3546', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39863', 'Pa Sang', '3546', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39864', 'Loei', '3547', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39865', 'Phu Kra Dung', '3547', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39866', 'Wang Saphung', '3547', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39867', 'Mukdahan', '3551', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39868', 'Chiang Klang', '3558', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39869', 'Nan', '3558', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39870', 'Bacho', '3559', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39871', 'Narathiwat', '3559', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39872', 'Rangae', '3559', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39873', 'Sungai Kolok', '3559', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39874', 'Sungai Padi', '3559', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39875', 'Tak Bai', '3559', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39876', 'Bang Bo Thong', '3562', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39877', 'Bang Kruai', '3562', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39878', 'Bang Yai', '3562', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39879', 'Nonthaburi', '3562', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39880', 'Pak Kret', '3562', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39881', 'Sainoi', '3562', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39882', 'Nong Chik', '3564', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39883', 'Pattani', '3564', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39884', 'Sai Buri', '3564', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39885', 'Yaring', '3564', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39886', 'Phangnga', '3565', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39887', 'Phatthalung', '3566', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39888', 'Chiang Kham', '3567', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39889', 'Dok Kham Tai', '3567', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39890', 'Phayao', '3567', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39891', 'Pong', '3567', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39892', 'Chon Daen', '3568', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39893', 'Lom Sak', '3568', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39894', 'Nong Phai', '3568', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39895', 'Phetchabun', '3568', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39896', 'Wichian Buri', '3568', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39897', 'Ban Laem', '3569', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39898', 'Chaam', '3569', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39899', 'Khao Yoi', '3569', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39900', 'Phetchaburi', '3569', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39901', 'Tha Yang', '3569', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39902', 'Bang Mun Nak', '3570', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39903', 'Phichit', '3570', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39904', 'Taphan Hin', '3570', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39905', 'Thap Khlo', '3570', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39906', 'Bang Krathum', '3571', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39907', 'Bang Rakam', '3571', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39908', 'Nakhon Thai', '3571', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39909', 'Phitsanulok', '3571', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39910', 'Den Chai', '3573', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39911', 'Long', '3573', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39912', 'Phrae', '3573', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39913', 'Rong Kwang', '3573', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39914', 'Kathu', '3574', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39915', 'Phuket', '3574', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39916', 'Ranong', '3577', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39917', 'Ban Pong', '3578', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39918', 'Bang Phae', '3578', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39919', 'Chom Bung', '3578', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39920', 'Damnoen Saduak', '3578', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39921', 'Photharam', '3578', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39922', 'Ratchaburi', '3578', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39923', 'Ban Chang', '3579', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39924', 'Klaeng', '3579', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39925', 'Rayong', '3579', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39926', 'Ban Mo', '3586', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39927', 'Kaeng Khoi', '3586', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39928', 'Nong Khae', '3586', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39929', 'Phra Phutthabat', '3586', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39930', 'Saraburi', '3586', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39931', 'Satun', '3587', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39932', 'Hat Yai', '3590', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39933', 'Ranot', '3590', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39934', 'Sadao', '3590', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39935', 'Singha Nakhon', '3590', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39936', 'Songkhla', '3590', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39937', 'Khiri Mat', '3591', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39938', 'Sawankhalok', '3591', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39939', 'Si Satchanalai', '3591', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39940', 'Sukhothai', '3591', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39941', 'Phasat', '3594', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39942', 'Surin', '3594', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39943', 'Ban Tak', '3595', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39944', 'Mae Ramat', '3595', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39945', 'Mae Sot', '3595', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39946', 'Tak', '3595', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39947', 'Huai Yot', '3596', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39948', 'Kantang', '3596', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39949', 'Trang', '3596', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39950', 'Bo Rai', '3597', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39951', 'Trat', '3597', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39952', 'Laplae', '3601', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39953', 'Uttaradit', '3601', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39954', 'Betong', '3602', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39955', 'Yala', '3602', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39956', 'Yasothon', '3603', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39957', 'Guerin Kouka', '3604', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39958', 'Sokode', '3604', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39959', 'Sotouboua', '3604', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39960', 'Tchamba', '3604', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39961', 'Bafilo', '3605', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39962', 'Bassar', '3605', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39963', 'Kande', '3605', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39964', 'Kara', '3605', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39965', 'Kpagouda', '3605', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39966', 'Niamtougou', '3605', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39967', 'Agbelouve', '3606', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39968', 'Aneho', '3606', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39969', 'Lome', '3606', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39970', 'Tabligbo', '3606', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39971', 'Tsevie', '3606', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39972', 'Vogan', '3606', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39973', 'Amlame', '3607', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39974', 'Anie', '3607', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39975', 'Atakpame', '3607', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39976', 'Badou', '3607', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39977', 'Blitta', '3607', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39978', 'Kouve', '3607', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39979', 'Kpalime', '3607', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39980', 'Kpessi', '3607', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39981', 'Notse', '3607', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39982', 'Dapaong', '3608', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39983', 'Mango', '3608', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39984', 'Tandjouare', '3608', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39985', 'Atafu', '3609', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39986', 'Fakaofo', '3610', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39987', 'Nukunonu', '3611', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39988', 'Ohonua', '3612', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39989', 'Pangai', '3613', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39990', 'Hihifo', '3614', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39991', 'Haveloloto', '3615', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39992', 'Mu\'a', '3615', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39993', 'Nuku\'alofa', '3615', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39994', 'Tofoa-Koloua', '3615', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39995', 'Vaini', '3615', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39996', 'Neiafu', '3616', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39997', 'Arima', '3617', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39998', 'Arouca', '3617', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('39999', 'Tacarigua', '3617', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40000', 'Tunapuna', '3617', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40001', 'Carapichaima', '3618', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40002', 'Claxton Bay', '3618', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40003', 'Chaguanas', '3619', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40004', 'Couva', '3620', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40005', 'Tabaquite', '3620', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40006', 'Glencoe', '3622', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40007', 'Siparia', '3631', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40008', 'Scarborough', '3632', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40009', 'Aryanah', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40010', 'Bordj Aalouine', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40011', 'Burj-al-\'Amri', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40012', 'La Soukra', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40013', 'Qal\'at-al-Andalus', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40014', 'Sidi Thabit', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40015', 'Taburbah', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40016', 'Wadi al-Layl', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40017', 'ad-Dandan', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40018', 'al-Battan', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40019', 'al-Jadidah', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40020', 'al-Murnaqiyah', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40021', 'at-Tadaman Dawwar Hishar', '3633', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40022', 'Bajah', '3634', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40023', 'Majaz-al-Bab', '3634', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40024', 'Nafzah', '3634', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40025', 'Quballat', '3634', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40026', 'Tabursuq', '3634', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40027', 'Tastur', '3634', '0.00', '1', '2021-04-06 06:43:50', '2021-04-06 06:43:50', NULL),
('40028', 'Zahrat Madina', '3634', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40029', 'al-Ma\'qulah', '3634', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40030', '\'Awsajah', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40031', 'Binzart', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40032', 'Ghar-al-Milh', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40033', 'Manzil \'Abd-ar-Rahman', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40034', 'Manzil Bu Ruqaybah', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40035', 'Manzil Jamil', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40036', 'Matir', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40037', 'Rafraf', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40038', 'Ras-al-Jabal', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40039', 'Sajanan', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40040', 'Tinjah', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40041', 'al-\'Aliyah', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40042', 'al-Matlin', '3636', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40043', '\'Ayn Darahim', '3641', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40044', 'Bani Matir', '3641', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40045', 'Bu Salim', '3641', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40046', 'Firnanah', '3641', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40047', 'Ghar-ad-Dima\'', '3641', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40048', 'Jundubah', '3641', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40049', 'Tabarqah', '3641', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40050', 'Wadi Maliz', '3641', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40051', 'Bani Khaddash', '3642', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40052', 'Bin Qirdan', '3642', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40053', 'Jarbah Ajim', '3642', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40054', 'Jarbah Hawmat-as-Suq', '3642', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40055', 'Jarbah Midun', '3642', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40056', 'Jarjis', '3642', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40057', 'Madaniyin', '3642', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40058', 'Manubah', '3643', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40059', 'Monastir', '3644', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40060', 'Azimur', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40061', 'Bani Hiyar', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40062', 'Bani Khallad', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40063', 'Bu \'Urqub', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40064', 'Dar \'Alush', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40065', 'Dar Sha\'ban', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40066', 'Hammam-al-Aghzaz', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40067', 'Manzil Bu Zalafah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40068', 'Manzil Hurr', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40069', 'Manzil Tamim', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40070', 'Nabul', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40071', 'Qalibiyah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40072', 'Qurbah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40073', 'Qurbus', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40074', 'Qurunbaliyah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40075', 'Sulayman', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40076', 'Taklisah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40077', 'Tazirkah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40078', 'Zawiyat-al-Jadidi', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40079', 'al-Hammamat', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40080', 'al-Huwariyah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40081', 'al-Ma\'murah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40082', 'al-Middah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40083', 'as-Sama\'ah', '3645', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40084', 'Ghannush', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40085', 'Marath', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40086', 'Matmatat-al-Jadidah', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40087', 'Matmatat-al-Qadimah', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40088', 'Qabis', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40089', 'Sanini an-Nahal', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40090', 'Wadhraf', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40091', 'al-Hammah', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40092', 'al-Matwiyah', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40093', 'az-Zarat', '3646', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40094', 'Qafsah', '3647', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40095', 'Umm-al-\'Arais', '3647', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40096', 'al-Madilah', '3647', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40097', 'al-Mitlawi', '3647', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40098', 'al-Qasr', '3647', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40099', 'al-Qatar', '3647', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40100', 'ar-Rudayyif', '3647', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40101', 'as-Sanad', '3647', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40102', 'Duz', '3648', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40103', 'Jamnah', '3648', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40104', 'Qibili', '3648', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40105', 'Suq-al-Ahad', '3648', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40106', 'al-Qal\'ah', '3648', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40107', '\'Aqarib', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40108', 'Bi\'r Ali Bin Khalifah', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40109', 'Jabinyanah', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40110', 'Manzil Shakir', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40111', 'Qarmadah', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40112', 'Qarqannah', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40113', 'Safaqis', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40114', 'Saqiyat-ad-Dair', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40115', 'Saqiyat-az-Zayt', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40116', 'Sfax', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40117', 'Tinah', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40118', 'al-\'Ayn', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40119', 'al-Hanashah', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40120', 'al-Mahras', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40121', 'as-Sukhayrah', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40122', 'ash-Shayhiyah', '3649', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40123', 'Sfax', '3650', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40124', 'Barqu', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40125', 'Bu \'Aradah', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40126', 'Bu Ruwis', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40127', 'Kasra', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40128', 'Makthar', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40129', 'Qa\'afur', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40130', 'Silyanah', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40131', 'al-\'Arusah', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40132', 'al-Karib', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40133', 'ar-Rawhiyah', '3652', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40134', 'Akkudah', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40135', 'Bu Fishah', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40136', 'Hammam Susah', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40137', 'Harqalah', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40138', 'Masakin', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40139', 'Qusaybat-ath-Thurayat', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40140', 'Sidi Bu \'Ali', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40141', 'Sidi al-Hani', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40142', 'Susah', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40143', 'Zawiyat Susah', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40144', 'al-Masa\'din', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40145', 'al-Qal\'at-al-Kabirah', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40146', 'al-Qal\'at-as-Saghirah', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40147', 'an-Nafidah', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40148', 'az-Zuhur', '3653', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40149', 'Bi\'r-al-Ahmar', '3654', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40150', 'Dhahibah', '3654', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40151', 'Ghumrassin', '3654', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40152', 'Rimadah', '3654', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40153', 'Tatawin', '3654', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40154', 'Daqash', '3655', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40155', 'Hammat-al-Jarid', '3655', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40156', 'Naftah', '3655', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40157', 'Tamaghzah', '3655', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40158', 'Tawzar', '3655', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40159', 'Bardaw', '3656', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40160', 'Ben Arous', '3656', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40161', 'Carthage', '3656', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40162', 'Halq-al-Wadi', '3656', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40163', 'Megrine', '3656', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40164', 'Qartaj', '3656', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40165', 'Sidi Bu Sa\'id', '3656', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40166', 'Tunis', '3656', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40167', 'al-Marsa', '3656', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40168', 'Bi\'r Mashariqah', '3657', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40169', 'Jabal-al-Wust', '3657', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40170', 'Zaghwan', '3657', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40171', 'al-Fahs', '3657', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40172', 'an-Nazur', '3657', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40173', 'az-Zaribah', '3657', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40174', 'Manzil Salim', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40175', 'Nibbar', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40176', 'Qal\'at-as-Sanan', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40177', 'Saqiyat Sidi Yussuf', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40178', 'Tajarwin', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40179', 'ad-Dahmani', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40180', 'al-Jarissah', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40181', 'al-Kaf', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40182', 'al-Qal\'at-al-Khasba\'', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40183', 'al-Qusur', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40184', 'as-Sars', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40185', 'at-Tawiraf', '3658', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40186', 'Awlad ash-Shamakh', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40187', 'Bumirdas', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40188', 'Habirah', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40189', 'Karkar', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40190', 'Mallulash', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40191', 'Qusur-as-Saf', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40192', 'Rajish', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40193', 'Shurban', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40194', 'Sidi \'Ulwan', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40195', 'al-Baradi\'ah', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40196', 'al-Jamm', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40197', 'al-Mahdiyah', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40198', 'as-Sawasi', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40199', 'ash-Shabbah', '3659', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40200', '\'Amirat-al-Fahul', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40201', '\'Amirat-al-Hajjaj', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40202', '\'Amirat-at-Tawazarah', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40203', 'Banan Budar', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40204', 'Banblat wal-Manarah', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40205', 'Bani Hassan', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40206', 'Bu Hajjar', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40207', 'Ghanadah', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40208', 'Jammal', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40209', 'Khunays', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40210', 'Lamtah', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40211', 'Manzil Farsi', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40212', 'Manzil Hayah', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40213', 'Manzil Kamil', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40214', 'Manzil Nur', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40215', 'Qasr Hallal', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40216', 'Qusaybat-al-Madyuni', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40217', 'Sahilin Ma\'atmar', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40218', 'Sayyadah', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40219', 'Sidi \'Amara', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40220', 'Sidi Bin Nur', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40221', 'Tabulbah', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40222', 'Tuzah', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40223', 'Zaramidin', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40224', 'Zawiyat Quntash', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40225', 'al-Baqalitah', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40226', 'al-Masdur', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40227', 'al-Muknin', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40228', 'al-Munastir', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40229', 'al-Wardanin', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40230', 'ash-Sharahil', '3660', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40231', 'Firyanah', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40232', 'Fussanah', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40233', 'Haydrah', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40234', 'Jadliyan', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40235', 'Majal Bal \'Abbas', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40236', 'Sabibah', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40237', 'Subaytilah', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40238', 'Talabat', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40239', 'Talah', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40240', 'al-Qasrayn', '3661', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40241', '\'Ayn Jalulah', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40242', 'Buhajlah', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40243', 'Haffuz', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40244', 'Hajib-al-\'Ayun', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40245', 'Manzil Mahidi', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40246', 'Nasr Allah', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40247', 'al-\'Ala', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40248', 'al-Qayrawan', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40249', 'al-Waslatiyah', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40250', 'as-Subaykhah', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40251', 'ash-Shabikah', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40252', 'ash-Sharardah', '3662', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40253', 'Adana', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40254', 'Aladag', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40255', 'Ceyhan', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40256', 'Feke', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40257', 'Imamoglu', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40258', 'Karaisali', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40259', 'Karatas', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40260', 'Kozan', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40261', 'Pozanti', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40262', 'Saimbeyli', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40263', 'Tufanbeyli', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40264', 'Yumurtalik', '3663', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40265', 'Adiyaman', '3664', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40266', 'Besni', '3664', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40267', 'Celikhan', '3664', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40268', 'Gerger', '3664', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40269', 'Golbasi', '3664', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40270', 'Kahta', '3664', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40271', 'Samsat', '3664', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40272', 'Sincik', '3664', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40273', 'Tut', '3664', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40274', 'Afyonkarahisar', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40275', 'Basmakci', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40276', 'Bayat', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40277', 'Bolvadin', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40278', 'Cay', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40279', 'Dazkiri', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40280', 'Dinar', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40281', 'Emirdag', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40282', 'Evciler', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40283', 'Hocalar', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40284', 'Ihsaniye', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40285', 'Iscehisar', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40286', 'Kiziloren', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40287', 'Sandikli', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40288', 'Sincanli', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40289', 'Suhut', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40290', 'Sultandagi', '3665', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40291', 'Diyadin', '3666', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40292', 'Dogubeyazit', '3666', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40293', 'Eleskirt', '3666', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40294', 'Hamur', '3666', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40295', 'Karakose', '3666', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40296', 'Patnos', '3666', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40297', 'Taslicay', '3666', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40298', 'Tutak', '3666', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40299', 'Agacoren', '3667', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40300', 'Aksaray', '3667', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40301', 'Eskil', '3667', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40302', 'Gulagac', '3667', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40303', 'Guzelyurt', '3667', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40304', 'Ortakoy', '3667', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40305', 'Sariyahsi', '3667', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40306', 'Amasya', '3668', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40307', 'Goynucek', '3668', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40308', 'Gumushacikoy', '3668', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40309', 'Hamamozu', '3668', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40310', 'Merzifon', '3668', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40311', 'Suluova', '3668', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40312', 'Tasova', '3668', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40313', 'Akyurt', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40314', 'Ankara', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40315', 'Ayas', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40316', 'Beypazari', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40317', 'Camlidere', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40318', 'Cubuk', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40319', 'Elmadag', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40320', 'Evren', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40321', 'Gudul', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40322', 'Haymana', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40323', 'Kalecik', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40324', 'Kazan', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40325', 'Kizilcahamam', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40326', 'Nallihan', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40327', 'Polatli', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40328', 'Sereflikochisar', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40329', 'Yenisehir', '3669', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40330', 'Akseki', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40331', 'Alanya', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40332', 'Antalya', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40333', 'Elmali', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40334', 'Finike', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40335', 'Gazipasa', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40336', 'Gundogmus', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40337', 'Ibradi', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40338', 'Kale', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40339', 'Kas', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40340', 'Kemer', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40341', 'Konya', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40342', 'Korkuteli', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40343', 'Kumluca', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40344', 'Manavgat', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40345', 'Serik', '3670', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40346', 'Ardahan', '3671', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40347', 'Damal', '3671', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40348', 'Gole', '3671', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40349', 'Hanak', '3671', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40350', 'Posof', '3671', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40351', 'Ardanuc', '3672', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40352', 'Arhavi', '3672', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40353', 'Artvin', '3672', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40354', 'Borcka', '3672', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40355', 'Hopa', '3672', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40356', 'Murgul', '3672', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40357', 'Savsat', '3672', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40358', 'Yusufeli', '3672', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40359', 'Aydin', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40360', 'Bozdogan', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40361', 'Buharkent', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40362', 'Cine', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40363', 'Didim', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40364', 'Germencik', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40365', 'Incirliova', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40366', 'Karacasu', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40367', 'Karpuzlu', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40368', 'Kocarli', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40369', 'Kosk', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40370', 'Kusadasi', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40371', 'Kuyucak', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40372', 'Nazilli', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40373', 'Soke', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40374', 'Sultanhisar', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40375', 'Yenipazar', '3673', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40376', 'Ayvalik', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40377', 'Balikesir', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40378', 'Balya', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40379', 'Bandirma', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40380', 'Bigadic', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40381', 'Burhaniye', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40382', 'Dursunbey', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40383', 'Edremit', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40384', 'Erdek', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40385', 'Gomec', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40386', 'Gonen', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40387', 'Havran', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40388', 'Ivrindi', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40389', 'Kepsut', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40390', 'Manyas', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40391', 'Marmara', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40392', 'Sakarya', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40393', 'Savastepe', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40394', 'Sindirgi', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40395', 'Susurluk', '3674', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40396', 'Amasra', '3675', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40397', 'Bartin', '3675', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40398', 'Kurucasile', '3675', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40399', 'Ulus', '3675', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40400', 'Batman', '3676', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40401', 'Besiri', '3676', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40402', 'Gercus', '3676', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40403', 'Hasankeyf', '3676', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40404', 'Kozluk', '3676', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40405', 'Sason', '3676', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40406', 'Aydintepe', '3677', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40407', 'Bayburt', '3677', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40408', 'Demirozu', '3677', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40409', 'Bilecik', '3678', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40410', 'Bozuyuk', '3678', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40411', 'Golpazari', '3678', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40412', 'Inhisar', '3678', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40413', 'Osmaneli', '3678', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40414', 'Pazaryeri', '3678', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40415', 'Sogut', '3678', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40416', 'Yenipazar', '3678', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40417', 'Adakli', '3679', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40418', 'Bingol', '3679', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40419', 'Genc', '3679', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40420', 'Karliova', '3679', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40421', 'Kigi', '3679', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40422', 'Solhan', '3679', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40423', 'Yayladere', '3679', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40424', 'Yedisu', '3679', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40425', 'Adilcevaz', '3680', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40426', 'Ahlat', '3680', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40427', 'Bitlis', '3680', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40428', 'Guroymak', '3680', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40429', 'Hizan', '3680', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40430', 'Mutki', '3680', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40431', 'Tatvan', '3680', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40432', 'Akcakoca', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40433', 'Bolu', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40434', 'Dortdivan', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40435', 'Gerede', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40436', 'Goynuk', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40437', 'Kibriscik', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40438', 'Mengen', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40439', 'Mudurnu', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40440', 'Seben', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40441', 'Yenicaga', '3681', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40442', 'Aglasun', '3682', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40443', 'Altinyayla', '3682', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40444', 'Bucak', '3682', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40445', 'Burdur', '3682', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40446', 'Golhisar', '3682', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40447', 'Karamanli', '3682', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40448', 'Kemer', '3682', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40449', 'Tefenni', '3682', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40450', 'Yesilova', '3682', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40451', 'Bursa', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40452', 'Buyukorhan', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40453', 'Gemlik', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40454', 'Gursu', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40455', 'Harmancik', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40456', 'Inegol', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40457', 'Iznik', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40458', 'Karacabey', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40459', 'Keles', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40460', 'Kestel', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40461', 'Mudanya', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40462', 'Mustafakemalpasa', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40463', 'Orhaneli', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40464', 'Orhangazi', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40465', 'Yenisehir', '3683', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40466', 'Ayvacik', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40467', 'Bayramic', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40468', 'Biga', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40469', 'Bozcaada', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40470', 'Can', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40471', 'Canakkale', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40472', 'Eceabat', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40473', 'Ezine', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40474', 'Gelibolu', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40475', 'Gokceada', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40476', 'Lapseki', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40477', 'Yenice', '3684', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40478', 'Atkaracalar', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40479', 'Bayramoren', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40480', 'Cankiri', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40481', 'Cerkes', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40482', 'Eldivan', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40483', 'Ilgaz', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40484', 'Kizilirmak', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40485', 'Korgun', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40486', 'Kursunlu', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40487', 'Orta', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40488', 'Sabanozu', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40489', 'Yaprakli', '3685', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40490', 'Alaca', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40491', 'Bayat', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40492', 'Corum', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40493', 'Dodurga', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40494', 'Iskilip', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40495', 'Kargi', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40496', 'Lacin', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40497', 'Mecitozu', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40498', 'Oguzlar', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40499', 'Ortakoy', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40500', 'Osmancik', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40501', 'Sungurlu', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40502', 'Ugurludag', '3686', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40503', 'Acipayam', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40504', 'Akkoy', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40505', 'Babadag', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40506', 'Baklan', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40507', 'Bekilli', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40508', 'Bozkurt', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40509', 'Buldan', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40510', 'Cardak', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40511', 'Civril', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40512', 'Denizli', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40513', 'Guney', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40514', 'Honaz', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40515', 'Kale', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40516', 'Saraykoy', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40517', 'Serinhisar', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40518', 'Tavas', '3687', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40519', 'Bismil', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40520', 'Cermik', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40521', 'Cinar', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40522', 'Cungus', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40523', 'Dicle', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40524', 'Diyarbakir', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40525', 'Egil', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40526', 'Ergani', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40527', 'Hani', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40528', 'Hazro', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40529', 'Kocakoy', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40530', 'Kulp', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40531', 'Lice', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40532', 'Silvan', '3688', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40533', 'Cumayeri', '3689', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40534', 'Duzce', '3689', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40535', 'Golyaka', '3689', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40536', 'Gumusova', '3689', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40537', 'Kaynasli', '3689', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40538', 'Yigilca', '3689', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40539', 'Edirne', '3690', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40540', 'Enez', '3690', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40541', 'Havsa', '3690', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40542', 'Ipsala', '3690', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40543', 'Kesan', '3690', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40544', 'Lalapasa', '3690', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40545', 'Meric', '3690', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40546', 'Suleoglu', '3690', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40547', 'Uzunkopru', '3690', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40548', 'Agin', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40549', 'Alacakaya', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40550', 'Aricak', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40551', 'Baskil', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40552', 'Elazig', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40553', 'Karakocan', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40554', 'Keban', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40555', 'Kovancilar', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40556', 'Maden', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40557', 'Palu', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40558', 'Sivrice', '3691', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40559', 'Erzincan', '3692', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40560', 'Ilic', '3692', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40561', 'Kemah', '3692', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40562', 'Kemaliye', '3692', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40563', 'Otlukbeli', '3692', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40564', 'Refahiye', '3692', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40565', 'Tercan', '3692', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40566', 'Uzumlu', '3692', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40567', 'Askale', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40568', 'Erzurum', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40569', 'Hinis', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40570', 'Horasan', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40571', 'Ilica', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40572', 'Ispir', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40573', 'Karacoban', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40574', 'Karayazi', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40575', 'Koprukoy', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40576', 'Narman', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40577', 'Oltu', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40578', 'Olur', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40579', 'Pasinler', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40580', 'Pazaryolu', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40581', 'Senkaya', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40582', 'Tekman', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40583', 'Tortum', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40584', 'Uzundere', '3693', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40585', 'Alpu', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40586', 'Beylikova', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40587', 'Cifteler', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40588', 'Eskisehir', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40589', 'Gunyuzu', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40590', 'Han', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40591', 'Inonu', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40592', 'Mahmudiye', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40593', 'Mihalgazi', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40594', 'Mihaliccik', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40595', 'Saricakaya', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40596', 'Seyitgazi', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40597', 'Sivrihisar', '3694', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40598', 'Araban', '3695', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40599', 'Gaziantep', '3695', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40600', 'Islahiye', '3695', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40601', 'Karkamis', '3695', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40602', 'Nizip', '3695', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40603', 'Nurdagi', '3695', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40604', 'Oguzeli', '3695', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40605', 'Sehitkamil', '3695', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40606', 'Yavuzeli', '3695', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40607', 'Aluca', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40608', 'Bulancak', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40609', 'Dereli', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40610', 'Dogankent', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40611', 'Espiye', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40612', 'Eynesil', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40613', 'Giresun', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40614', 'Gorele', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40615', 'Guce', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40616', 'Kesap', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40617', 'Piraziz', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40618', 'Sebinkarahisar', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40619', 'Tirebolu', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40620', 'Yaglidere', '3696', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40621', 'Gumushane', '3697', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40622', 'Kelkit', '3697', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40623', 'Kose', '3697', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40624', 'Kurtun', '3697', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40625', 'Siran', '3697', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40626', 'Torul', '3697', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40627', 'Cukurca', '3698', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40628', 'Hakkari', '3698', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40629', 'Semdinli', '3698', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40630', 'Yuksekova', '3698', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40631', 'Altinozu', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40632', 'Antakya', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40633', 'Belen', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40634', 'Dortyol', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40635', 'Erzin', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40636', 'Hassa', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40637', 'Iskenderun', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40638', 'Kirikhan', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40639', 'Kumlu', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40640', 'Reyhanli', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40641', 'Samandag', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40642', 'Yayladagi', '3699', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40643', 'Anamur', '3700', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40644', 'Aydincik', '3700', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40645', 'Bozyazi', '3700', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40646', 'Erdemli', '3700', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40647', 'Gulnar', '3700', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40648', 'Mersin', '3700', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40649', 'Mut', '3700', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40650', 'Silifke', '3700', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40651', 'Tarsus', '3700', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40652', 'Aralik', '3701', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40653', 'Igdir', '3701', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40654', 'Karakoyunlu', '3701', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40655', 'Tuzluca', '3701', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40656', 'Aksu', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40657', 'Atabey', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40658', 'Egirdir', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40659', 'Gelendost', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40660', 'Gonen', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40661', 'Isparta', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40662', 'Keciborlu', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40663', 'Sarkikaraagac', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40664', 'Senirkent', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40665', 'Sutculer', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40666', 'Uluborlu', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40667', 'Yalvac', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40668', 'Yenisarbademli', '3702', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40669', 'Buyukcekmece', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40670', 'Catalca', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40671', 'Eminonu', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40672', 'Esenler', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40673', 'Istanbul', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40674', 'KadÃ„Â±koy', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40675', 'Sile', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40676', 'Silivri', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40677', 'Sultanbeyli', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40678', 'TopkapÃ„Â±', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40679', 'Tuzla', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40680', 'Umraniye', '3703', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40681', 'Aliaga', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40682', 'Alsancak', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40683', 'Bayindir', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40684', 'Bergama', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40685', 'Beyagac', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40686', 'Bornova', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40687', 'Cesme', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40688', 'Digor', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40689', 'Dikili', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40690', 'Foca', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40691', 'Izmir', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40692', 'Karaburun', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40693', 'Kemalpasa', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40694', 'Kinik', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40695', 'Kiraz', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40696', 'Menderes', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40697', 'Menemen', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40698', 'Merkezi', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40699', 'Mersinli', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40700', 'Odemis', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40701', 'Seferihisar', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40702', 'Selcuk', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40703', 'Tire', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40704', 'Torbali', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40705', 'Urla', '3704', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40706', 'Afsin', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40707', 'Andirin', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40708', 'Caglayancerit', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40709', 'Ekinozu', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40710', 'Elbistan', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40711', 'Goksun', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40712', 'Kahramanmaras', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40713', 'Nurhak', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40714', 'Pazarcik', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40715', 'Turkoglu', '3705', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40716', 'Eflani', '3706', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40717', 'Eskipazar', '3706', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40718', 'Karabuk', '3706', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40719', 'Ovacik', '3706', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40720', 'Safranbolu', '3706', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40721', 'Yenice', '3706', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40722', 'Ayranci', '3707', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40723', 'Basyayla', '3707', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40724', 'Ermenek', '3707', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40725', 'Karaman', '3707', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40726', 'Kazimkarabekir', '3707', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40727', 'Sariveliler', '3707', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40728', 'Akyaka', '3708', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40729', 'Arpacay', '3708', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40730', 'Kagizman', '3708', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40731', 'Kars', '3708', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40732', 'Sarikamis', '3708', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40733', 'Selim', '3708', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40734', 'Susuz', '3708', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40735', 'Karsiyaka', '3709', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40736', 'Abana', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40737', 'Agli', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40738', 'Arac', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40739', 'Azdavay', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40740', 'Bozkurt', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40741', 'Daday', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40742', 'Devrekani', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40743', 'Doganyurt', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40744', 'Hanonu', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40745', 'Ihsangazi', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40746', 'Inebolu', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40747', 'Kastamonu', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40748', 'Kure', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40749', 'Pinarbasi', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40750', 'Senpazar', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40751', 'Seydiler', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40752', 'Taskopru', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40753', 'Tosya', '3710', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40754', 'Akkisla', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40755', 'Bunyan', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40756', 'Develi', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40757', 'Felahiye', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40758', 'Hacilar', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40759', 'Incesu', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40760', 'Kayseri', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40761', 'Ozvatan', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40762', 'Pinarbasi', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40763', 'Sarioglan', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40764', 'Sariz', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40765', 'Talas', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40766', 'Tomarza', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40767', 'Yahyali', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40768', 'Yesilhisar', '3711', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40769', 'Elbeyli', '3712', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40770', 'Kilis', '3712', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40771', 'Musabeyli', '3712', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40772', 'Polateli', '3712', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40773', 'Bahsili', '3713', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40774', 'Baliseyh', '3713', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40775', 'Delice', '3713', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40776', 'Karakecili', '3713', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40777', 'Keskin', '3713', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40778', 'Kirikkale', '3713', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40779', 'Sulakyurt', '3713', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40780', 'Yahsihan', '3713', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40781', 'Babaeski', '3714', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40782', 'Demirkoy', '3714', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40783', 'Kirklareli', '3714', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40784', 'Kofcaz', '3714', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40785', 'Kumkoy', '3714', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40786', 'Luleburgaz', '3714', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40787', 'Pehlivankoy', '3714', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40788', 'Pinarhisar', '3714', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40789', 'Vize', '3714', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40790', 'Akcakent', '3715', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40791', 'Akpinar', '3715', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40792', 'Boztepe', '3715', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40793', 'Kaman', '3715', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40794', 'Kirsehir', '3715', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40795', 'Mucur', '3715', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40796', 'CayÃ„Â±rova', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40797', 'Derince', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40798', 'DilovasÃ„Â±', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40799', 'Gebze', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40800', 'Golcuk', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40801', 'Izmit', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40802', 'Kandira', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40803', 'Karamursel', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40804', 'Kocaeli', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40805', 'Korfez', '3716', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40806', 'Ahirli', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40807', 'Akoren', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40808', 'Aksehir', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40809', 'Altinekin', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40810', 'Beysehir', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40811', 'Bozkir', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40812', 'Cihanbeyli', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40813', 'Cumra', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40814', 'Derbent', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40815', 'Derebucak', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40816', 'Doganhisar', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40817', 'Emirgazi', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40818', 'Eregli', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40819', 'Guneysinir', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40820', 'Hadim', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40821', 'Halkapinar', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40822', 'Huyuk', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40823', 'Ilgin', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40824', 'Kadinhani', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40825', 'Karapinar', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40826', 'Konya', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40827', 'Kulu', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40828', 'Sarayonu', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40829', 'Seydisehir', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40830', 'Taskent', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40831', 'Tuzlukcu', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40832', 'Yalihuyuk', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40833', 'Yunak', '3717', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40834', 'Altinas', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40835', 'Aslanapa', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40836', 'Domanic', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40837', 'Dumlupinar', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40838', 'Emet', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40839', 'Gediz', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40840', 'Kutahya', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40841', 'Pazarlar', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40842', 'Saphane', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40843', 'Simav', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40844', 'Tavsanli', '3718', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40845', 'Lefkosa', '3719', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40846', 'Akcadag', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40847', 'Arapkir', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40848', 'Arguvan', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40849', 'Battalgazi', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40850', 'Darende', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40851', 'Dogansehir', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40852', 'Doganyol', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40853', 'Hekimhan', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40854', 'Kale', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40855', 'Kuluncak', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40856', 'Malatya', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40857', 'Poturge', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40858', 'Yazihan', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40859', 'Yesilyurt', '3720', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40860', 'Ahmetli', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40861', 'Akhisar', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40862', 'Alasehir', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40863', 'Demirci', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40864', 'Golmarmara', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40865', 'Gordes', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40866', 'Kirkagac', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40867', 'Koprubasi', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40868', 'Kula', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40869', 'Manisa', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40870', 'Salihli', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40871', 'Sarigol', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40872', 'Saruhanli', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40873', 'Selendi', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40874', 'Soma', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40875', 'Turgutlu', '3721', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40876', 'Dargecit', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40877', 'Derik', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40878', 'Kiziltepe', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40879', 'Mardin', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40880', 'Mazidagi', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40881', 'Midyat', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40882', 'Nusaybin', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40883', 'Omerli', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40884', 'Savur', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40885', 'Yesilli', '3722', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40886', 'Bodrum', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40887', 'Dalaman', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40888', 'Datca', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40889', 'Fethiye', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40890', 'Kavaklidere', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40891', 'Koycegiz', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40892', 'Marmaris', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40893', 'Milas', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40894', 'Mugla', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40895', 'Ortaca', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40896', 'Ula', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40897', 'Yatagan', '3723', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40898', 'Bulanik', '3724', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40899', 'Haskoy', '3724', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40900', 'Korkut', '3724', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40901', 'Malazgirt', '3724', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40902', 'Mus', '3724', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40903', 'Varto', '3724', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40904', 'Acigol', '3725', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40905', 'Avanos', '3725', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40906', 'Derinkuyu', '3725', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40907', 'Gulsehir', '3725', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40908', 'Hacibektas', '3725', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40909', 'Kozakli', '3725', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40910', 'Nevsehir', '3725', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40911', 'Urgup', '3725', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40912', 'Altunhisar', '3726', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40913', 'Bor', '3726', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40914', 'Nigde', '3726', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40915', 'Ulukisla', '3726', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40916', 'Akkus', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40917', 'Aybasti', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40918', 'Camas', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40919', 'Fatsa', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40920', 'Golkoy', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40921', 'Gulyali', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40922', 'Gurgentepe', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40923', 'Ikizce', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40924', 'Kabaduz', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40925', 'Kabatas', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40926', 'Korgan', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40927', 'Kumru', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40928', 'Mesudiye', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40929', 'Ordu', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40930', 'Persembe', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40931', 'Ulubey', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40932', 'Unye', '3727', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40933', 'Bahce', '3728', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40934', 'Duzici', '3728', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40935', 'Hasanbeyli', '3728', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40936', 'Kadirli', '3728', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40937', 'Osmaniye', '3728', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40938', 'Sumbas', '3728', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40939', 'Toprakkale', '3728', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40940', 'Ardesen', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40941', 'Cayeli', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40942', 'Derepazan', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40943', 'Findikli', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40944', 'Guneysu', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40945', 'Hemsin', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40946', 'Ikizdere', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40947', 'Iyidere', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40948', 'Kalkandere', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40949', 'Pazar', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40950', 'Rize', '3729', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40951', 'Adapazari', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40952', 'Akyazi', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40953', 'Ferizli', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40954', 'Geyve', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40955', 'Hendek', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40956', 'Karapurcek', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40957', 'Karasu', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40958', 'Kaynarca', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40959', 'Kocaali', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40960', 'Pamukova', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40961', 'Sapanca', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40962', 'Sogutlu', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40963', 'Tarakli', '3730', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40964', 'Akcakale', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40965', 'Alacam', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40966', 'Asarcik', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40967', 'Ayvacik', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40968', 'Bafra', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40969', 'Carsamba', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40970', 'Havza', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40971', 'Kavak', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40972', 'Ladik', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40973', 'Mayis 19', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40974', 'Salipazan', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40975', 'Samsun', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40976', 'Tekkekoy', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40977', 'Terme', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40978', 'Vezirkopru', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40979', 'Yakakent', '3731', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40980', 'Birecik', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40981', 'Bozova', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40982', 'Ceylanpinar', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40983', 'Halfeti', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40984', 'Harran', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40985', 'Hilvan', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40986', 'Sanliurfa', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40987', 'Siverek', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40988', 'Suruc', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40989', 'Urfa', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40990', 'Viransehir', '3732', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40991', 'Aydinlar', '3733', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40992', 'Baykan', '3733', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40993', 'Eruh', '3733', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40994', 'Kurtalan', '3733', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40995', 'Pervari', '3733', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40996', 'Siirt', '3733', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40997', 'Sirvan', '3733', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40998', 'Ayancik', '3734', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('40999', 'Boyabat', '3734', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41000', 'Dikmen', '3734', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41001', 'Duragan', '3734', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41002', 'Erfelek', '3734', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41003', 'Gerze', '3734', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41004', 'Sarayduzu', '3734', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41005', 'Sinop', '3734', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41006', 'Turkeli', '3734', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41007', 'Beytussebap', '3735', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41008', 'Cizre', '3735', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41009', 'Guclukonak', '3735', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41010', 'Idil', '3735', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41011', 'Silopi', '3735', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41012', 'Sirnak', '3735', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41013', 'Uludere', '3735', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41014', 'Akincilar', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41015', 'Altinyayla', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41016', 'Divrigi', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41017', 'Dogansar', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41018', 'Gemerek', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41019', 'Golova', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41020', 'Gurun', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41021', 'Hafik', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41022', 'Imranli', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41023', 'Kangal', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41024', 'Koyulhisar', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41025', 'Sarkisla', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41026', 'Sivas', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41027', 'Susehri', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41028', 'Ulas', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41029', 'Yildizeli', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41030', 'Zara', '3736', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41031', 'Cerkezkoy', '3737', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41032', 'Corlu', '3737', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41033', 'Hayrabolu', '3737', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41034', 'Malkara', '3737', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41035', 'Marmaraereglisi', '3737', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41036', 'Muratli', '3737', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41037', 'Saray', '3737', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41038', 'Sarkoy', '3737', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41039', 'Tekirdag', '3737', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41040', 'Almus', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41041', 'Artova', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41042', 'Basciftlik', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41043', 'Erbaa', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41044', 'Niksar', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41045', 'Pazar', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41046', 'Resadiye', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41047', 'Sulusaray', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41048', 'Tokat', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41049', 'Turhal', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41050', 'Yesilyurt', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41051', 'Zile', '3738', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41052', 'Akcaabat', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41053', 'Arakli', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41054', 'Arsin', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41055', 'Besikduzu', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41056', 'Caykara', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41057', 'Dernekpazari', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41058', 'Duzkoy', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41059', 'Hayrat', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41060', 'Koprubasi', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41061', 'Macka', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41062', 'Of', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41063', 'Salpazari', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41064', 'Surmene', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41065', 'Tonya', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41066', 'Trabzon', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41067', 'Vakfikebir', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41068', 'Yomra', '3739', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41069', 'Hozat', '3740', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41070', 'Mazgirt', '3740', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41071', 'Nazimiye', '3740', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41072', 'Ovacik', '3740', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41073', 'Pertek', '3740', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41074', 'Pulumur', '3740', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41075', 'Tunceli', '3740', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41076', 'Banaz', '3741', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41077', 'Esme', '3741', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41078', 'Karahalli', '3741', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41079', 'Sivasli', '3741', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41080', 'Ulubey', '3741', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41081', 'Usak', '3741', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41082', 'Bahcesaray', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41083', 'Baskale', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41084', 'Caldiran', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41085', 'Edremit', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41086', 'Ercis', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41087', 'Gevas', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41088', 'Gurpinar', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41089', 'Muradiye', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41090', 'Ozalp', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41091', 'Saray', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41092', 'Van', '3742', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41093', 'Altinova', '3743', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41094', 'Armutlu', '3743', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41095', 'Ciftlikkoy', '3743', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41096', 'Cinarcik', '3743', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41097', 'Termal', '3743', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41098', 'Yalova', '3743', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41099', 'Akdagmadeni', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41100', 'Aydincik', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41101', 'Bogaziliyan', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41102', 'Candir', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41103', 'Cayiralan', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41104', 'Cekerek', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41105', 'Kadisehri', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41106', 'Saraykent', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41107', 'Sarikaya', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41108', 'Sefaatli', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41109', 'Sorgun', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41110', 'Yenifakili', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41111', 'Yerkoy', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41112', 'Yozgat', '3744', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41113', 'Alapli', '3745', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41114', 'Caycuma', '3745', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41115', 'Devrek', '3745', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41116', 'Eregli', '3745', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41117', 'Gokcebey', '3745', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41118', 'Zonguldak', '3745', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41119', 'Ahchadepe', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41120', 'Annau', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41121', 'Babadayhan', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41122', 'Baherden', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41123', 'Birleshik Pervi', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41124', 'Buzmeyin', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41125', 'Dushak', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41126', 'Gokedepe', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41127', 'Kaka', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41128', 'Miana', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41129', 'Ovaz Jalatay', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41130', 'Saragt', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41131', 'Tecen', '3746', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41132', 'Asgabat', '3747', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41133', 'Adyndaky', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41134', 'Balkanabat', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41135', 'Bekdash', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41136', 'Gasanguli', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41137', 'Gazanjyk', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41138', 'Goturdepe', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41139', 'Gumdag', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41140', 'Jebel', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41141', 'Karakala', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41142', 'Khazar', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41143', 'Serdar', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41144', 'Sharlawuk', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41145', 'Turkmenbasi', '3748', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41146', 'Akdepe', '3749', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41147', 'Boldumsaz', '3749', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41148', 'Dasoguz', '3749', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41149', 'Gubadag', '3749', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41150', 'Kohne Urgenc', '3749', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41151', 'Moskva', '3749', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41152', 'Tagta', '3749', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41153', 'Yilanli', '3749', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41154', 'Darganata', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41155', 'Esenmengli', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41156', 'Farap', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41157', 'Gazojak', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41158', 'Govurdak', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41159', 'Halac', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41160', 'Kerki', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41161', 'Komsomolsk', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41162', 'Mukri', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41163', 'Sayat', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41164', 'Seydi', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41165', 'Turkmenabat', '3750', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41166', 'Bayramali', '3751', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41167', 'Eloten', '3751', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41168', 'Mari', '3751', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41169', 'Murgab', '3751', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41170', 'Sakarchage', '3751', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41171', 'Tagtabazar', '3751', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41172', 'Turkmengala', '3751', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41173', 'Vaiaku', '3754', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41174', 'Tonga', '3755', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41175', 'Lolua', '3756', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41176', 'Kua', '3757', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41177', 'Tanrake', '3758', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41178', 'Savave', '3759', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41179', 'Fangaua', '3760', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41180', 'Asau', '3761', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41181', 'Bombo', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41182', 'Bweyogerere', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41183', 'Entebbe', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41184', 'Jinja-Kawempe', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41185', 'Kajansi', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41186', 'Kalangala', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41187', 'Kampala', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41188', 'Kayunga', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41189', 'Kiboga', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41190', 'Kireka', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41191', 'Kyotera', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41192', 'Lugazi', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41193', 'Lukaya', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41194', 'Luwero', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41195', 'Lyantonde', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41196', 'Masaka', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41197', 'Mityana', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41198', 'Mpigi', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41199', 'Mubende', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41200', 'Mukono', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41201', 'Nakasongola', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41202', 'Namasuba', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41203', 'Njeru', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41204', 'Nkonkonjeru', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41205', 'Rakai', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41206', 'Sembabule', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41207', 'Wakiso', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41208', 'Wobulenzi', '3762', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41209', 'Bugembe', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41210', 'Bugiri', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41211', 'Busembatia', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41212', 'Busia', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41213', 'Buwenge', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41214', 'Iganga', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41215', 'Jinja', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41216', 'Kaberamaido', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41217', 'Kamuli', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41218', 'Kapchorwa', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41219', 'Katakwi', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41220', 'Kumi', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41221', 'Malaba', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41222', 'Mayuge', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41223', 'Mbale', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41224', 'Ngora', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41225', 'Pallisa', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41226', 'Sironko', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41227', 'Soroti', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41228', 'Tororo', '3763', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41229', 'Adjumani', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41230', 'Amudat', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41231', 'Apac', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41232', 'Arua', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41233', 'Gulu', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41234', 'Kaabong', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41235', 'Kitgum', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41236', 'Koboko', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41237', 'Kotido', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41238', 'Lira', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41239', 'Moroto', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41240', 'Moyo', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41241', 'Nakapiripirit', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41242', 'Nebbi', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41243', 'Pader', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41244', 'Paidha', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41245', 'Pakwach', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41246', 'Yumbe', '3764', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41247', 'Bundibugyo', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41248', 'Bushenyi', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41249', 'Fort Portal', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41250', 'Hima', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41251', 'Hoima', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41252', 'Ibanda', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41253', 'Kabale', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41254', 'Kabwohe-Itendero', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41255', 'Kagadi', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41256', 'Kamwenge', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41257', 'Kanungu', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41258', 'Kasese', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41259', 'Katwe', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41260', 'Kibaale', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41261', 'Kigorobya', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41262', 'Kilembe', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41263', 'Kisoro', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41264', 'Kyenjojo', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41265', 'Masindi', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41266', 'Masindi-Port', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41267', 'Mbarara', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41268', 'Muhororo', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41269', 'Ntungamo', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41270', 'Rukungiri', '3765', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41271', 'Cherkasy', '3766', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41272', 'Smila', '3766', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41273', 'Uman\'', '3766', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41274', 'Chernihiv', '3767', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41275', 'Nizhyn', '3767', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41276', 'Pryluky', '3767', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41277', 'Chernivtsi', '3768', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41278', 'Alushta', '3769', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41279', 'Sevastopol', '3769', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41280', 'Dneprodzerzhinsk', '3770', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41281', 'Dnipropetrovsk', '3770', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41282', 'Kryvyy Rih', '3770', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41283', 'Marhanets\'', '3770', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41284', 'Nikopol\'', '3770', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41285', 'Novomoskovs\'k', '3770', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41286', 'Pavlohrad', '3770', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41287', 'Plekhanov', '3770', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41288', 'Zhovti Vody', '3770', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41289', 'Artemivs\'k', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41290', 'Donets\'k', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41291', 'Donetsk', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41292', 'Druzhkivka', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41293', 'Dymytrov', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41294', 'Dzerzhyns\'k', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41295', 'Horlivka', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41296', 'Khartsyz\'k', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41297', 'Kostyantynivka', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41298', 'Kramators\'k', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41299', 'Krasnoarmiys\'k', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41300', 'Makiyivka', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41301', 'Mariupol\'', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41302', 'Shakhtars\'k', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41303', 'Slov\'yans\'k', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41304', 'Snizhne', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41305', 'Torez', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41306', 'Yenakiyeve', '3771', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41307', 'Ivano-Frankivs\'k', '3772', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41308', 'Kalush', '3772', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41309', 'Kolomyya', '3772', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41310', 'Izyum', '3773', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41311', 'Kharkiv', '3773', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41312', 'Lozova', '3773', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41313', 'Volchansk', '3774', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41314', 'Kherson', '3775', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41315', 'Nova Kakhovka', '3775', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41316', 'Geologov', '3776', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41317', 'Kam\'yanets\'-Podil\'s\'kyy', '3776', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41318', 'Khmel\'nyts\'kyy', '3776', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41319', 'Shepetivka', '3776', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41320', 'khmelnitskiy', '3776', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41321', 'Kirovohrad', '3777', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41322', 'Oleksandriya', '3777', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41323', 'Svidlovodsk', '3777', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41324', 'Dzhankoy', '3778', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41325', 'Feodosiya', '3778', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41326', 'Kerch', '3778', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41327', 'Simferopol\'', '3778', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41328', 'Yalta', '3778', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41329', 'Yevpatoriya', '3778', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41330', 'Kiev', '3779', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41331', 'Kyyiv', '3779', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41332', 'Bila Tserkva', '3780', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41333', 'Boryspil\'', '3780', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41334', 'Brovary', '3780', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41335', 'Fastiv', '3780', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41336', 'Chervonohrad', '3781', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41337', 'Drohobych', '3781', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41338', 'L\'viv', '3781', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41339', 'Stryy', '3781', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41340', 'Yavoriv', '3781', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41341', 'Alchevs\'k', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41342', 'Antratsyt', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41343', 'Bryanka', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41344', 'Krasnodon', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41345', 'Krasnyy Luch', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41346', 'Luhans\'k', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41347', 'Luhansk', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41348', 'Lysychans\'k', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41349', 'Pervomays\'k', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41350', 'Roven\'ky', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41351', 'Rubizhne', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41352', 'Stakhanov', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41353', 'Sverdlovs\'k', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41354', 'Syeverodonets\'k', '3782', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41355', 'Mykolayiv', '3783', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41356', 'Pervomays\'k', '3783', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41357', 'Bilhorod-Dnistrovs\'kyy', '3784', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41358', 'Illichivs\'k', '3784', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41359', 'Izmayil', '3784', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41360', 'Odesa', '3784', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41361', 'Odessa', '3785', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41362', 'Komsomol\'s\'k', '3786', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41363', 'Kremenchuh', '3786', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41364', 'Lubny', '3786', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41365', 'Poltava', '3786', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41366', 'Rivne', '3787', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41367', 'Konotop', '3789', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41368', 'Okhtyrka', '3789', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41369', 'Romny', '3789', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41370', 'Shostka', '3789', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41371', 'Sumy', '3789', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41372', 'Ternopil\'', '3790', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41373', 'Kovel\'', '3791', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41374', 'Luts\'k', '3791', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41375', 'Novovolyns\'k', '3791', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41376', 'Vinnitsa', '3792', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41377', 'Vinnytsya', '3792', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41378', 'Mukacheve', '3793', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41379', 'Uzhhorod', '3793', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41380', 'Berdyans\'k', '3794', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41381', 'Enerhodar', '3794', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41382', 'Melitpol\'', '3794', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41383', 'Zaporizhia', '3794', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41384', 'Berdychiv', '3795', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41385', 'Korosten\'', '3795', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41386', 'Novohrad-Volyns\'kyy', '3795', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41387', 'Zhytomyr', '3795', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41388', 'Ajman', '3797', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41389', 'Al Qusais', '3798', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41390', 'Deira', '3798', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41391', 'Dubai', '3798', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41392', 'Jebel Ali', '3798', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41393', 'Sharjah', '3800', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41394', 'Khawr Fakkan', '3803', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41395', 'al-Fujayrah', '3803', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41396', 'Cleveland', '3805', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41397', 'Gilberdyke', '3805', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41398', 'Llanrwst', '3805', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41399', 'Swadlincote', '3805', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41400', 'Turriff', '3805', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41401', 'Westhill', '3806', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41402', 'Oban', '3807', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41403', 'Craigavon', '3808', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41404', 'Barton-le-Clay', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41405', 'Bedford', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41406', 'Biggleswade', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41407', 'Caddington', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41408', 'Flitton', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41409', 'Flitwick', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41410', 'Leighton Buzzard', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41411', 'Marston Moretaine', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41412', 'Sandy', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41413', 'Westoning', '3809', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41414', 'Dundonald', '3810', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41415', 'Holywood', '3810', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41416', 'Berkshire', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41417', 'Bracknell', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41418', 'Littlewick Green', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41419', 'Maidenhead', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41420', 'Newbury', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41421', 'Reading', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41422', 'Sandhurst', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41423', 'Slough', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41424', 'Sunninghill', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41425', 'Twyford', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41426', 'Windsor', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41427', 'Wokingham', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41428', 'Woodley', '3811', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41429', 'Coleshill', '3812', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41430', 'Edgbaston', '3812', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41431', 'Hockley', '3812', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41432', 'Ladywood', '3812', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41433', 'Nechells', '3812', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41434', 'Rubery', '3812', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41435', 'Small Heath', '3812', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41436', 'Angus', '3813', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41437', 'Bridgnorth', '3814', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41438', 'Avon', '3815', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41439', 'Fishponds', '3815', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41440', 'Henleaze', '3815', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41441', 'Thornbury', '3815', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41442', 'Warmley', '3815', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41443', 'Amersham', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41444', 'Aston Clinton', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41445', 'Beaconsfield', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41446', 'Bletchley', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41447', 'Bourne End', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41448', 'Buckingham', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41449', 'High Wycombe', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41450', 'Iver', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41451', 'Marlow', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41452', 'Milton Keynes', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41453', 'Newport Pagnell', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41454', 'Piddington', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41455', 'Princes Risborough', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41456', 'Rowsham', '3816', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41457', 'Cambridge', '3817', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41458', 'Ely', '3817', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41459', 'Huntingdon', '3817', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41460', 'Peterborough', '3817', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41461', 'Cambridge', '3818', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41462', 'Haddenham', '3818', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41463', 'Sawtry', '3818', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41464', 'Wisbech', '3818', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41465', 'Alderley Edge', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41466', 'Altrincham', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41467', 'Betley', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41468', 'Cheadle Gatley', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41469', 'Cheadle Hulme', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41470', 'Crewe', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41471', 'Dukinfield', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41472', 'Holmes Chapel', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41473', 'Hyde', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41474', 'Knuntsford', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41475', 'Knutsford', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41476', 'Lymm', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41477', 'Malpas', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41478', 'Merseyside', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41479', 'Middlewich', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41480', 'Mobberley', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41481', 'Nantwich', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41482', 'Saltney', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41483', 'Sandbach', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41484', 'Stalybridge', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41485', 'Stockport', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41486', 'Tarporley', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41487', 'Timperley', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41488', 'Widnes', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41489', 'Winsford', '3820', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41490', 'Redcar', '3821', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41491', 'Stockton-on-Tees', '3821', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41492', 'Conwy', '3823', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41493', 'Llandudno', '3823', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41494', 'Bude', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41495', 'Camborne', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41496', 'Fowey', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41497', 'Hayle', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41498', 'Helston', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41499', 'Launceston', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41500', 'Liskeard', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41501', 'Looe', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41502', 'Mevegissey', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41503', 'Newquay', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41504', 'Penryn', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41505', 'Penzance', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41506', 'St. Ives', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41507', 'Truro', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41508', 'Wadebridge', '3824', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41509', 'Holbrooks', '3825', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41510', 'Askam-in-Furness', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41511', 'Flookburgh', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41512', 'Grasmere', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41513', 'Kendal', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41514', 'Keswick', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41515', 'Kirkby Stephen', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41516', 'Milnthorpe', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41517', 'Penrith', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41518', 'Ulverston', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41519', 'Windermere', '3827', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41520', 'Denbigh', '3828', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41521', 'Ashbourne', '3829', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41522', 'Buxton', '3829', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41523', 'Chesterfield', '3829', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41524', 'Eckington', '3829', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41525', 'Bakewell', '3830', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41526', 'Belper', '3830', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41527', 'Breaston', '3830', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41528', 'Derby', '3830', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41529', 'Ilkeston', '3830', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41530', 'Matlock', '3830', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41531', 'Ripley', '3830', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41532', 'Axminster', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41533', 'Barnstaple', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41534', 'Beaworthy', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41535', 'Bideford', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41536', 'Bovey Tracey', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41537', 'Braunton', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41538', 'Brixham', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41539', 'Chudleigh', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41540', 'Crediton', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41541', 'Dalwood', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41542', 'Dartmouth', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41543', 'Dawlish', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41544', 'Exeter', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41545', 'Exmouth', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41546', 'Great Torrington', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41547', 'Holsworthy', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41548', 'Kingsbridge', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41549', 'Modbury', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41550', 'Newton Abbot', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41551', 'Okehampton', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41552', 'Plymouth', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41553', 'Plympton', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41554', 'Salcombe', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41555', 'Tiverton', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41556', 'Torquay', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41557', 'Totnes', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41558', 'Winkleigh', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41559', 'Woodburyd', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41560', 'Yelverton', '3831', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41561', 'Didcot', '3833', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41562', 'Beaminster', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41563', 'Blandford Forum', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41564', 'Christchurch', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41565', 'Dorset', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41566', 'Poole', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41567', 'Sherborne', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41568', 'Sturminster Newton', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41569', 'Swanage', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41570', 'Verwood', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41571', 'Wimborne', '3834', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41572', 'Alexandria', '3835', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41573', 'Crook', '3836', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41574', 'Spennymoor', '3836', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41575', 'Abingdon', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41576', 'Accrington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41577', 'Aldershot', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41578', 'Alfreton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41579', 'Altrincham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41580', 'Amersham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41581', 'Andover', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41582', 'Arnold', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41583', 'Ashford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41584', 'Ashington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41585', 'Ashton-in-Makerfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41586', 'Ashton-under-Lyne', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41587', 'Atherton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41588', 'Aylesbury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41589', 'Aylesford-East Malling', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41590', 'Banbury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41591', 'Banstead-Tadworth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41592', 'Barnsley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41593', 'Barnstaple', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41594', 'Barrow-in-Furness', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41595', 'Basildon', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41596', 'Basingstoke', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41597', 'Bath', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41598', 'Batley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41599', 'Bebington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41600', 'Bedford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41601', 'Bedworth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41602', 'Beeston and Stapleford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41603', 'Benfleet', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41604', 'Bentley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41605', 'Berwick-upon-Tweed', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41606', 'Beverley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41607', 'Bexhil', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41608', 'Bicester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41609', 'Bideford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41610', 'Billericay', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41611', 'Billingham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41612', 'Birkenhead', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41613', 'Birmingham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41614', 'Bishop Auckland', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41615', 'Bishop\'s Stortford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41616', 'Blackburn', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41617', 'Blackpool', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41618', 'Bletchley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41619', 'Blyth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41620', 'Bodmin', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41621', 'Bognor Regis', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41622', 'Bolton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41623', 'Bootle', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41624', 'Boston', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41625', 'Bournemouth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41626', 'Bracknell', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41627', 'Bradford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41628', 'Braintree', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41629', 'Bredbury and Romiley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41630', 'Brentwood', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41631', 'Bridgwater', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41632', 'Bridlington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41633', 'Brigg', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41634', 'Brighouse', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41635', 'Brighton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41636', 'Bristol', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41637', 'Broadstairs', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41638', 'Bromley Cross-Bradshaw', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41639', 'Bromsgrove-Catshill', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41640', 'Burgess Hill', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41641', 'Burnley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41642', 'Burntwood', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41643', 'Burton-upon-Trent', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41644', 'Bury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41645', 'Bury Saint Edmunds', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41646', 'Camberley-Frimley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41647', 'Cambourne-Redruth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41648', 'Cambridge', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41649', 'Cannock', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41650', 'Canterbury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41651', 'Canvey Island', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41652', 'Carlisle', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41653', 'Carlton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41654', 'Castleford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41655', 'Caterham and Warlingham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41656', 'Chadderton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41657', 'Chapeltown', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41658', 'Chatham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41659', 'Cheadle and Gatley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41660', 'Chelmsford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41661', 'Cheltenham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41662', 'Chesham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41663', 'Cheshunt', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41664', 'Chessington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41665', 'Chester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41666', 'Chester-le-Street', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41667', 'Chesterfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41668', 'Chichester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41669', 'Chippenham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41670', 'Chipping Sodbury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41671', 'Chorley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41672', 'Christchurch', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41673', 'Clacton-on-Sea', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41674', 'Clay Cross-North Wingfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41675', 'Cleethorpes', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41676', 'Clevedon', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41677', 'Coalville', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41678', 'Colchester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41679', 'Congleton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41680', 'Consett', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41681', 'Corby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41682', 'Coventry', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41683', 'Cramlington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41684', 'Crawley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41685', 'Crosby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41686', 'Crowthorne', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41687', 'Darlington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41688', 'Dartford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41689', 'Darwen', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41690', 'Deal', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41691', 'Denton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41692', 'Derby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41693', 'Dewsbury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41694', 'Doncaster', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41695', 'Dorchester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41696', 'Dover', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41697', 'Droitwich', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41698', 'Dronfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41699', 'Droylsden', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41700', 'Dudley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41701', 'Dunstable', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41702', 'Durham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41703', 'East Grinstead', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41704', 'East Retford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41705', 'Eastbourne', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41706', 'Eastleigh', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41707', 'Eaton Socon-Saint Neots', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41708', 'Eccles', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41709', 'Egham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41710', 'Ellesmere Port', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41711', 'Epsom and Ewell', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41712', 'Esher-Molesey', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41713', 'Eston and South Bank', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41714', 'Exeter', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41715', 'Failsworth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41716', 'Falmouth-Penryn', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41717', 'Fareham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41718', 'Farnborough', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41719', 'Farnham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41720', 'Farnworth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41721', 'Farring', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41722', 'Felixtowe', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41723', 'Felling', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41724', 'Ferndown', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41725', 'Fleetwood', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41726', 'Folkestone', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41727', 'Formby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41728', 'Frome', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41729', 'Fulham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41730', 'Gateshead', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41731', 'Gillingham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41732', 'Glossop', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41733', 'Gloucester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41734', 'Godalming', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41735', 'Golborne', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41736', 'Gosforth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41737', 'Gosport', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41738', 'Grantham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41739', 'Gravesend', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41740', 'Grays', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41741', 'Greasby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41742', 'Great Malvern', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41743', 'Great Sankey', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41744', 'Great Yarmouth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41745', 'Grimsby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41746', 'Guildford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41747', 'Guiseley-Yeadon', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41748', 'Halesowen', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41749', 'Halifax', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41750', 'Harlow', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41751', 'Harpenden', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41752', 'Harrogate', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41753', 'Hartlepool', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41754', 'Hastings', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41755', 'Hatfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41756', 'Hatfield-Stainforth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41757', 'Havant', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41758', 'Haywards Heath', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41759', 'Hazel Grove and Bramhill', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41760', 'Hazlemere', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41761', 'Heanor', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41762', 'Hemel Hempstead', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41763', 'Hereford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41764', 'Herne Bay', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41765', 'Hertford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41766', 'Heswall', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41767', 'Heywood', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41768', 'High Wycombe', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41769', 'Hinckley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41770', 'Hindley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41771', 'Hitchin', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41772', 'Hoddesdon', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41773', 'Holmfirth-Honley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41774', 'Honiton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41775', 'Horsham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41776', 'Houghton-le-Spring', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41777', 'Hove', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41778', 'Hoylake-West Kirby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41779', 'Hucknall', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41780', 'Huddersfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41781', 'Huyton-with-Roby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41782', 'Hyde', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41783', 'Ilfracombe', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41784', 'Ilkeston', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41785', 'Ipswich', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41786', 'Ivybridge', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41787', 'Jarrow', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41788', 'Keighley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41789', 'Kendal', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41790', 'Kenilworth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41791', 'Kettering', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41792', 'Kidderminster', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41793', 'Kidsgrove', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41794', 'King\'s Lynn', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41795', 'Kingsteignton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41796', 'Kingston upon Hull', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41797', 'Kingswood', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41798', 'Kirby in Ashfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41799', 'Kirkby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41800', 'Lancaster', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41801', 'Leamington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41802', 'Leatherhead', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41803', 'Leeds', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41804', 'Leicester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41805', 'Leigh', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41806', 'Leighton Buzzard', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41807', 'Letchworth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41808', 'Lewes', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41809', 'Leyland', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41810', 'Lichfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41811', 'Lincoln', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41812', 'Litherland', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41813', 'Littlehampton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41814', 'Liverpool', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41815', 'Locks Heath', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41816', 'London', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41817', 'Long Benton-Killingworth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41818', 'Long Eaton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41819', 'Loughborough', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41820', 'Loughton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41821', 'Louth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41822', 'Lowestoft', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41823', 'Luton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41824', 'Lyminge', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41825', 'Lytham Saint Anne\'s', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41826', 'Mablethorpe and Sutton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41827', 'Macclesfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41828', 'Maghull-Lydiate', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41829', 'Maidenhead', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41830', 'Maidstone', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41831', 'Manchester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41832', 'Mangotsfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41833', 'Mansfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41834', 'Margate', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41835', 'Matlock', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41836', 'Melton Mowbray', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41837', 'Middlesbrough', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41838', 'Middleton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41839', 'Midsomer Norton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41840', 'Milton Keynes', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41841', 'Morecambe', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41842', 'Morley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41843', 'Nailsea', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41844', 'Nantwich', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41845', 'Nelson', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41846', 'New Addington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41847', 'New Milton-Barton-on-Sea', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41848', 'Newark-on-Trent', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41849', 'Newburn', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41850', 'Newbury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41851', 'Newcastle upon Tyne', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41852', 'Newcastle-under-Lyme', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41853', 'Newport', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41854', 'Newton Abbot', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41855', 'Newton Aycliffe', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41856', 'North Hykeham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41857', 'North Shields', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41858', 'Northallerton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41859', 'Northam', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41860', 'Northampton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41861', 'Northfleet', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41862', 'Northwich', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41863', 'Norwich', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41864', 'Nottingham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41865', 'Nuneaton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41866', 'Oakengates-Donnington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41867', 'Oakham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41868', 'Oldbury-Smethwick', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41869', 'Oldham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41870', 'Ormskirk', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41871', 'Ossett', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41872', 'Oxford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41873', 'Paignton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41874', 'Penzance', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41875', 'Peterborough', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41876', 'Peterlee', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41877', 'Plymouth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41878', 'Pontefract', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41879', 'Poole', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41880', 'Portsmouth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41881', 'Potters Bar', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41882', 'Prescot', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41883', 'Preston', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41884', 'Prestwich', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41885', 'Prestwood', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41886', 'Pudsey', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41887', 'Radcliffe', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41888', 'Ramsgate', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41889', 'Rawtenstall', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41890', 'Rayleigh', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41891', 'Reading', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41892', 'Redcar', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41893', 'Redditch', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41894', 'Reigate', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41895', 'Rochdale', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41896', 'Rochester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41897', 'Rotherham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41898', 'Rottingdean', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41899', 'Royal Tunbridge Wells', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41900', 'Royton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41901', 'Rugby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41902', 'Rugeley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41903', 'Runcorn', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41904', 'Rushden', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41905', 'Ryde', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41906', 'Saint Albans', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41907', 'Saint Austell', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41908', 'Saint Helens', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41909', 'Sale', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41910', 'Salford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41911', 'Salisbury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41912', 'Scarborough', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41913', 'Scunthorpe', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41914', 'Seaham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41915', 'Sevenoaks', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41916', 'Sheffield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41917', 'Shipley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41918', 'Shrewsbury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41919', 'Sidmouth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41920', 'Sittingbourne', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41921', 'Skegness', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41922', 'Skelmersdale', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41923', 'Sleaford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41924', 'Slough', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41925', 'Solihull', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41926', 'Sompting-Lancing', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41927', 'South Shields', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41928', 'Southampton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41929', 'Southend-on-Sea', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41930', 'Southport', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41931', 'Spalding-Pinchbeck', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41932', 'St. Helens', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41933', 'Stafford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41934', 'Staines', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41935', 'Stalybridge', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41936', 'Stamford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41937', 'Stanford le Hope-Corringham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41938', 'Stanley-Annfield Plain', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41939', 'Staveley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41940', 'Stevenage', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41941', 'Stockport', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41942', 'Stockton Heath-Thelwall', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41943', 'Stockton-on-Tees', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41944', 'Stoke-on-Trent', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41945', 'Stourbridge', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41946', 'Stratford-upon-Avon', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41947', 'Stretford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41948', 'Strood', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41949', 'Stubbington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41950', 'Sunbury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41951', 'Sunderland', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41952', 'Sutton Coldfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41953', 'Sutton in Ashfield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41954', 'Swadlincote', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41955', 'Swanley-Hextable', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41956', 'Swindon', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41957', 'Swinton and Pendlebury', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41958', 'Tamworth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41959', 'Taunton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41960', 'Tavistock', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41961', 'Teignmouth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41962', 'Telford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41963', 'Tenbury Wells', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41964', 'Thatcham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41965', 'The Deepings', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41966', 'Thetford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41967', 'Thornaby', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41968', 'Thornton-Cleveleys', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41969', 'Tiverton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41970', 'Tonbridge', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41971', 'Torquay', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41972', 'Totton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41973', 'Trowbridge', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41974', 'Truro', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41975', 'Tyldesley', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41976', 'Urmston', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41977', 'Wakefield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41978', 'Walkden', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41979', 'Wallasey', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41980', 'Wallsend', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41981', 'Walsall', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41982', 'Walton and Weybridge', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41983', 'Warrington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41984', 'Warwick', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41985', 'Washington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41986', 'Waterlooville', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41987', 'Watford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41988', 'Wellingborough', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41989', 'Welwyn Garden City', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41990', 'West Bridgeford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41991', 'West Bromwich', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41992', 'Westhoughton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41993', 'Weston-super-Mare', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41994', 'Weymouth', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41995', 'Whitefield', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41996', 'Whitehaven', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41997', 'Whitley Bay', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41998', 'Wickford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('41999', 'Widnes', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42000', 'Wigan', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42001', 'Wigston', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42002', 'Wilmslow', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42003', 'Wimbourne Minster', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42004', 'Winchester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42005', 'Windsor Berks', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42006', 'Windsor-Eton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42007', 'Winsford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42008', 'Wisbech', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42009', 'Witham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42010', 'Witney', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42011', 'Woking-Byfleet', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42012', 'Wokingham', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42013', 'Wolverhampton', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42014', 'Wolverton-Stony Stratford', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42015', 'Worcester', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42016', 'Worcestershire', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42017', 'Workington', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42018', 'Worksop', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42019', 'Worthing', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42020', 'Yeovil', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42021', 'York', '3842', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42022', 'Barking', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42023', 'Basildon', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42024', 'Brentwood', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42025', 'Cambrridge', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42026', 'Canvey Island', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42027', 'Chelmsford', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42028', 'Clacton-on-Sea', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42029', 'Colchester', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42030', 'Dagenham', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42031', 'Dunmow', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42032', 'Epping', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42033', 'Essex', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42034', 'Grays', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42035', 'Harlow', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42036', 'Ilford', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42037', 'Ingatestone', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42038', 'Leigh on Sea', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42039', 'Rainham', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42040', 'Romford', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42041', 'Saffron Walden', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42042', 'Stansted', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42043', 'Wickford', '3843', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42044', 'Ballinamallard', '3844', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42045', 'Kirkcaldy', '3845', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42046', 'Ewloe', '3846', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42047', 'Greenfield', '3846', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42048', 'Imperial Wharf', '3847', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42049', 'Kirton-in-Lindsey', '3848', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42050', 'Berkeley', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42051', 'Cheltenham', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42052', 'Churchham', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42053', 'Cirencester', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42054', 'East Kilbride', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42055', 'Gloucester', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42056', 'Lechlade', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42057', 'Lydney', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42058', 'Moreton in Marsh', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42059', 'Stroud', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42060', 'Tewkesbury', '3849', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42061', 'Blackwood', '3850', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42062', 'Blaenavon', '3850', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42063', 'Newport', '3850', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42064', 'Tredegar', '3850', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42065', 'Aldershot', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42066', 'Alton', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42067', 'Andover', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42068', 'Bordon', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42069', 'Botley', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42070', 'Fareham', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42071', 'Farnborough', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42072', 'Fleet', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42073', 'Fordingbridge', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42074', 'Havant', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42075', 'Hayling Island', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42076', 'Hook', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42077', 'Isle of wight', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42078', 'Liphook', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42079', 'Longparish', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42080', 'Old Bishopstoke', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42081', 'Petersfield', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42082', 'Portsmouth', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42083', 'Ringwood', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42084', 'Romsey', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42085', 'South Harting', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42086', 'Southampton', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42087', 'Waterlooville', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42088', 'West Wellow', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42089', 'Winchester', '3851', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42090', 'Lymington', '3852', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42091', 'Pennington', '3852', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42092', 'Southampton', '3852', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42093', 'Kington', '3853', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42094', 'Ledbury', '3853', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42095', 'Leominster', '3853', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42096', 'Saint Albans', '3853', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42097', 'Barnet', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42098', 'Bishops Stortford', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42099', 'Borehamwood', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42100', 'Brookmans Park', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42101', 'Bushey', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42102', 'Cheshunt', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42103', 'Cuffley', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42104', 'Elstree', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42105', 'Hemel Hempstead', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42106', 'Hertfordshire', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42107', 'Kings Langley', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42108', 'Much Hadham', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42109', 'Radlett', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42110', 'Rickmansworth', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42111', 'Royston', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42112', 'Stevenage', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42113', 'Waltham Cross', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42114', 'Watford', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42115', 'Welwyn', '3854', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42116', 'Newmarket', '3858', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42117', 'Ashford', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42118', 'Beckenham', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42119', 'Bromley', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42120', 'Brookland', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42121', 'Charing', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42122', 'Chatam', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42123', 'Crayford', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42124', 'Edenbridge', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42125', 'Erith', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42126', 'Faversham', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42127', 'Five Oak Green', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42128', 'Folkestone', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42129', 'Gillingham', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42130', 'Gravesend', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42131', 'Hartlip', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42132', 'Hayes', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42133', 'Herne Bay', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42134', 'Hythe', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42135', 'Lenham', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42136', 'Maidstone', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42137', 'Minster', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42138', 'New Romney', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42139', 'Orpington', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42140', 'Paddock Wood', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42141', 'Royal Tunbridge Wells', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42142', 'Sandwich', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42143', 'Sheerness', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42144', 'Sidcup', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42145', 'Sittingbourne', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42146', 'Staplehurst', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42147', 'Tunbridge Wells', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42148', 'West Malling', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42149', 'Westerham', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42150', 'Whitstable', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42151', 'canterbury', '3859', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42152', 'Ayrshire', '3860', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42153', 'Airdrie', '3861', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42154', 'Glasgow', '3861', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42155', 'Accrington', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42156', 'Blackburn', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42157', 'Blackpool', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42158', 'Burnley', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42159', 'Clayton-Le-Moors', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42160', 'Cleveleys', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42161', 'Darwen', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42162', 'Gisburn', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42163', 'Glasgow', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42164', 'Greater Manchester', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42165', 'Hamilton', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42166', 'Kirkby Lonsdale', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42167', 'Leyland', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42168', 'Littleborough', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42169', 'Lytham St Annes', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42170', 'Nelson', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42171', 'Oldham', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42172', 'Out Rawcliffe', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42173', 'Padiham', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42174', 'Preston', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42175', 'Rochdale', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42176', 'Rossendale', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42177', 'Tarleton', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42178', 'Todmorden', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42179', 'West Lancashire', '3862', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42180', 'Coalville', '3863', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42181', 'Fleckney', '3863', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42182', 'Leicester', '3863', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42183', 'Loughborough', '3863', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42184', 'Lutterworth', '3863', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42185', 'Market Harborough', '3863', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42186', 'Tur Langton', '3863', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42187', 'Alford', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42188', 'Bourne', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42189', 'Casewick', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42190', 'Digby', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42191', 'Gainsborough', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42192', 'Grimsby', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42193', 'Immingham', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42194', 'Laceby', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42195', 'Lincoln', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42196', 'Louth', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42197', 'Market Deeping', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42198', 'Market Rasen', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42199', 'Spalding', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42200', 'Spilsby', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42201', 'Swinderby', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42202', 'Thurlby', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42203', 'Witham St Hughs', '3864', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42204', 'Llanymynech', '3865', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42205', 'Abbeywood', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42206', 'Aldgate', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42207', 'Alperton', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42208', 'Castledawson', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42209', 'Edmonton', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42210', 'Enfield', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42211', 'Forest Gate', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42212', 'Greenwich', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42213', 'Hainault', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42214', 'Hampstead', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42215', 'Harrow Weald', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42216', 'Hendon', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42217', 'Kensington', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42218', 'Leyton', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42219', 'London', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42220', 'Magherafelt', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42221', 'Mill Hill', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42222', 'Southwark', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42223', 'Suffolk', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42224', 'Sulham', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42225', 'Victoria', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42226', 'Walthamstow', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42227', 'Wandsworth', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42228', 'Wembley', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42229', 'Wimbledon', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42230', 'Woolwich', '3866', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42231', 'Ludlow', '3867', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42232', 'Manchester', '3868', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42233', 'Prestwich', '3868', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42234', 'Salford', '3868', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42235', 'Swinton', '3868', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42236', 'Worsley', '3868', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42237', 'Mayfair', '3869', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42238', 'Southport', '3870', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42239', 'Brentford', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42240', 'Brimsdown', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42241', 'Drayton', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42242', 'Edgware', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42243', 'Feltham', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42244', 'Greenford', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42245', 'Hampton', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42246', 'Harmondsworth', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42247', 'Harrow', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42248', 'Hayes', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42249', 'Isleworth', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42250', 'Northolt', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42251', 'Northwood', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42252', 'Perivale', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42253', 'Pinner', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42254', 'Ruislip', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42255', 'Ruislip Manor', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42256', 'South Harrow', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42257', 'Southall', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42258', 'Staines', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42259', 'Stamore', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42260', 'Stanmore', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42261', 'Stanwell', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42262', 'Sunbury', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42263', 'Teddington', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42264', 'Twickenham', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42265', 'Uxbridge', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42266', 'Watford', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42267', 'Wembley', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42268', 'West Drayton', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42269', 'Wraysbury', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42270', 'hounslow', '3872', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42271', 'Mildenhall', '3873', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42272', 'Abergavenny', '3874', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42273', 'Monmouth', '3874', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42274', 'Attleborough', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42275', 'Bacton', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42276', 'Briston', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42277', 'Dereham', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42278', 'Diss', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42279', 'Downham Market', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42280', 'Fakenham', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42281', 'Garboldisham', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42282', 'Gayton', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42283', 'Glandford', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42284', 'Great Yarmouth', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42285', 'Heacham', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42286', 'Hopton', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42287', 'Kings Lynn', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42288', 'Little Cressingham', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42289', 'Norwich', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42290', 'Sheringham', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42291', 'Thetford', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42292', 'Trunch', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42293', 'Winordhan', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42294', 'Wymondham', '3876', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42295', 'Daventry', '3879', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42296', 'Irthlingborough', '3879', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42297', 'Middleton Cheney', '3879', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42298', 'Oundle', '3879', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42299', 'Towcester', '3879', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42300', 'Welford', '3879', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42301', 'Wellingborough', '3879', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42302', 'Woodford Halse', '3879', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42303', 'Brackley', '3880', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42304', 'Desborough', '3880', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42305', 'weedon', '3880', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42306', 'Bedlington', '3882', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42307', 'Corbridge', '3882', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42308', 'Cramlington', '3882', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42309', 'Morpeth', '3882', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42310', 'Northumberland', '3882', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42311', 'Ponteland', '3882', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42312', 'Wooler', '3882', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42313', 'Burton Joyce', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42314', 'Cotgraves', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42315', 'Gonalston', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42316', 'Mansfield', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42317', 'Newark', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42318', 'Nottingham', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42319', 'Pennyfoot Street', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42320', 'Sandiacre', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42321', 'Southwell', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42322', 'Whatton', '3883', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42323', 'Bampton', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42324', 'Banbury', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42325', 'Bicester', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42326', 'Blewbury', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42327', 'Cheltenham', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42328', 'Chipping Norton', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42329', 'Drayton', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42330', 'Eynsham', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42331', 'Farringdon', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42332', 'Henely on Thames', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42333', 'Henley-on-Thames', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42334', 'Oxford', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42335', 'Shenington', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42336', 'Thame', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42337', 'Wantage', '3884', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42338', 'Builth Wells', '3885', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42339', 'Knighton', '3885', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42340', 'Llanbrynmair', '3885', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42341', 'New town', '3885', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42342', 'Newtown', '3885', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42343', 'Rhaeadr', '3885', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42344', 'Welshpool', '3885', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42345', 'Hill of Fearn', '3886', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42346', 'Shoreham', '3887', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42347', 'Sark', '3888', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42348', 'Aberdeen', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42349', 'Alloa', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42350', 'Alness', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42351', 'Annan', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42352', 'Arbroath', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42353', 'Ardrossan', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42354', 'Armadale', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42355', 'Ayr', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42356', 'Bathgate', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42357', 'Blairgowrie', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42358', 'Blantyre-Hamilton', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42359', 'Boness', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42360', 'Bonnybridge', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42361', 'Broxburn', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42362', 'Broxham', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42363', 'Buckhaven', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42364', 'Burntisland', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42365', 'Carluke', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42366', 'Carnoustie', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42367', 'Coatbridge', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42368', 'Cowdenbeath', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42369', 'Cumbernauld', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42370', 'Cumnock', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42371', 'Cupar', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42372', 'Dalbeattie', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42373', 'Dalkeith', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42374', 'Dingwall', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42375', 'Dumbarton', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42376', 'Dumfries', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42377', 'Dundee', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42378', 'Dunfermline', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42379', 'Dunoon', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42380', 'East Kilbride', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42381', 'Edimburah', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42382', 'Edinburgh', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42383', 'Elgin', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42384', 'Ellon', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42385', 'Erskine', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42386', 'Falkirk', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42387', 'Forfar', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42388', 'Forres', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42389', 'Fort William', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42390', 'Fraserburgh', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42391', 'Galashiels', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42392', 'Galston-Newmilns', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42393', 'Girvan', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42394', 'Glasgow', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42395', 'Glenrothes', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42396', 'Greengairs', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42397', 'Greenock', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42398', 'Haddington', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42399', 'Hawick', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42400', 'Helensburgh', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42401', 'Insch', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42402', 'Inverkeithing-Dalgety Bay', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42403', 'Inverness', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42404', 'Inverurie', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42405', 'Irvine', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42406', 'Isle of Lewis', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42407', 'Kilmarnock', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42408', 'Kilsyth', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42409', 'Kilwinning', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42410', 'Kirkcaldy', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42411', 'Kirkintilloch-Lenzie', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42412', 'Kirkwall', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42413', 'Lanark', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42414', 'Largs', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42415', 'Larkhall', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42416', 'Lerwick', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42417', 'Linlithgow', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42418', 'Livingston', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42419', 'Loanhead', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42420', 'Montrose', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42421', 'Motherwell', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42422', 'Nairn', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42423', 'Newtown Saint Boswells', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42424', 'Paisley', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42425', 'Penicuik', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42426', 'Perth', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42427', 'Peterhead', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42428', 'Saint Andrews', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42429', 'Selkirkshire', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42430', 'Shotts', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42431', 'Stirling', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42432', 'Stonehaven', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42433', 'Stornoway', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42434', 'Stranraer', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42435', 'Tranent', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42436', 'Troon', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42437', 'Whitburn', '3889', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42438', 'Bishops Castle', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42439', 'Bridgnorth', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42440', 'Bucknell', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42441', 'Drayton', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42442', 'Greete', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42443', 'Hinstock', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42444', 'Jackfield', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42445', 'Ludlow', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42446', 'Much Wenlock', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42447', 'Oswestry', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42448', 'Ryton', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42449', 'Shifnal', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42450', 'Shrewsbury', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42451', 'Telford', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42452', 'Whitchurch', '3891', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42453', 'Bath', '3892', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42454', 'Brent Knoll', '3892', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42455', 'Castle Cary', '3892', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42456', 'Shepton Mallet', '3892', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42457', 'Somerset', '3892', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42458', 'Taunton', '3892', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42459', 'Wedmore', '3892', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42460', 'Wellington', '3892', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42461', 'Weston-super-Mare', '3892', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42462', 'Burton-on-Trent', '3897', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42463', 'Hednesford', '3897', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42464', 'Stoke on Trent', '3897', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42465', 'Stone', '3897', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42466', 'Strabane', '3898', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42467', 'Bury St Edmunds', '3899', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42468', 'Felixstowe', '3899', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42469', 'Haverhill', '3899', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42470', 'Leiston', '3899', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42471', 'Lowestoft', '3899', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42472', 'Stowmarket', '3899', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42473', 'Sudbury', '3899', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42474', 'Woodbridge', '3899', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42475', 'Ashtead', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42476', 'Bagshot', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42477', 'Betchworth', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42478', 'Bletchingley', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42479', 'Carshalton', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42480', 'Chertsey', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42481', 'Claygate', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42482', 'Croydon', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42483', 'Dorking', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42484', 'Effingham', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42485', 'Epsom', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42486', 'Farnham', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42487', 'Haslemere', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42488', 'Kingston Upon Thames', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42489', 'Leatherhead', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42490', 'Mitcham', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42491', 'New Malden', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42492', 'Redhill', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42493', 'Richmond', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42494', 'Salfords', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42495', 'Shepperton', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42496', 'Stoneleigh', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42497', 'Surbiton', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42498', 'Surrey', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42499', 'Tadworth', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42500', 'Walton on Thames', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42501', 'West Molesey', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42502', 'Wisley', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42503', 'Woking', '3900', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42504', 'Brighton', '3901', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42505', 'Henfield', '3901', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42506', 'Sussex', '3901', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42507', 'Worthing', '3901', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42508', 'Twickenham', '3902', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42509', 'Omagh', '3904', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42510', 'Santaquin', '3905', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42511', 'Aberdare', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42512', 'Aberystwyth', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42513', 'Barry', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42514', 'Brecon', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42515', 'Bridgend', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42516', 'Brynmawr', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42517', 'Caernarfon', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42518', 'Caerphily', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42519', 'Caldicot', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42520', 'Cardiff', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42521', 'Carmarthen', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42522', 'Colwyn Bay', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42523', 'Connahs Quay', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42524', 'Cwmbran', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42525', 'Dolgellau', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42526', 'Ebbw Vale', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42527', 'Gaerwen', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42528', 'Gwynedd', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42529', 'Haverfordwest', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42530', 'Isle of Anglesey', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42531', 'Islwyn', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42532', 'Llandrindod Wells', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42533', 'Llanelli', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42534', 'Llangefni', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42535', 'Maesteg', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42536', 'Merthyr Tydfil', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42537', 'Mold', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42538', 'Mountain Ash-Abercynon', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42539', 'Neath', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42540', 'Newport', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42541', 'Pembrokeshire', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42542', 'Penarth', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42543', 'Pencader', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42544', 'Pontypool', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42545', 'Pontypridd', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42546', 'Port Talbot', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42547', 'Queensferry', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42548', 'Rhondda', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42549', 'Rhyl', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42550', 'Ruthin', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42551', 'Shotton-Hawarden', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42552', 'St. Asaph', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42553', 'Swansea', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42554', 'West Glamorgan', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42555', 'Wrexham', '3906', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42556', 'Alcester', '3907', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42557', 'Coventry', '3907', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42558', 'Henley in Arden', '3907', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42559', 'Nuneaton', '3907', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42560', 'Pershore', '3907', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42561', 'Southam', '3907', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42562', 'Warwick', '3907', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42563', 'Whissendine', '3912', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42564', 'Amesbury', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42565', 'Bradford on Avon', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42566', 'Calne', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42567', 'Chippenham', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42568', 'Corsham', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42569', 'Cosham', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42570', 'Devizes', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42571', 'Downton', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42572', 'Malmesbury', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42573', 'Marlborough', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42574', 'Melksham', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42575', 'Pewsey', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42576', 'Salisbury', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42577', 'Southwick', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42578', 'Swindon', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42579', 'Warminster', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42580', 'Westbury', '3913', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42581', 'Winnersh', '3914', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42582', 'Evesham', '3915', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42583', 'Hartlebury', '3915', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42584', 'Kidderminster', '3915', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42585', 'Pershore', '3915', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42586', 'Redditch', '3915', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42587', 'Worcester', '3915', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42588', 'Caergwrle', '3916', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42589', 'Ruabon', '3916', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42590', 'Neuffen', '3917', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42591', 'Beverley', '3918', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42592', 'Malton', '3918', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42593', 'Mexborough', '3918', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42594', 'Alabaster', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42595', 'Albertville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42596', 'Alexander City', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42597', 'Anniston', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42598', 'Arab', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42599', 'Ashville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42600', 'Athens', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42601', 'Atmore', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42602', 'Auburn', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42603', 'Bessemer', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42604', 'Birmingham', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42605', 'Capshaw', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42606', 'Center Point', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42607', 'Childersburg', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42608', 'Cullman', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42609', 'Daleville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42610', 'Daphne', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42611', 'Decatur', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42612', 'Dothan', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42613', 'Enterprise', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42614', 'Eufaula', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42615', 'Fairfield', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42616', 'Fairhope', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42617', 'Florence', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42618', 'Fort Payne', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42619', 'Gadsden', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42620', 'Grand Bay', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42621', 'Grove Hill', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42622', 'Guntersville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42623', 'Hampton Cove', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42624', 'Hanceville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42625', 'Hartselle', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42626', 'Headland', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42627', 'Helena', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42628', 'Hodges', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42629', 'Homewood', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42630', 'Hoover', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42631', 'Hueytown', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42632', 'Huntsville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42633', 'Jacksonville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42634', 'Jasper', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42635', 'Leeds', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42636', 'Luverne', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42637', 'Madison', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42638', 'Mobile', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42639', 'Montgomery', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42640', 'Mountain Brook', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42641', 'Muscle Shoals', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42642', 'Northport', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42643', 'Notasulga', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42644', 'Opelika', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42645', 'Oxford', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42646', 'Ozark', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42647', 'Pelham', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42648', 'Pell City', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42649', 'Pennsylvania', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42650', 'Phenix City', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42651', 'Prattville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42652', 'Prichard', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42653', 'Ramer', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42654', 'Roanoke', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42655', 'Saraland', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42656', 'Scottsboro', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42657', 'Selma', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42658', 'Sheffield', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42659', 'Smiths', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42660', 'Sumiton', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42661', 'Sylacauga', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42662', 'Talladega', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42663', 'Thomasville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42664', 'Trafford', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42665', 'Troy', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42666', 'Trussville', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42667', 'Tuscaloosa', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42668', 'Tuskegee', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42669', 'Vestavia Hills', '3919', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42670', 'Anchorage', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42671', 'Barrow', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42672', 'Bethel', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42673', 'College', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42674', 'Fairbanks', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42675', 'Homer', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42676', 'Juneau', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42677', 'Kenai', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42678', 'Ketchikan', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42679', 'Kodiak', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42680', 'Nome', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42681', 'Palmer', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42682', 'Sitka', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42683', 'Soldotna', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42684', 'Sterling', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42685', 'Unalaska', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42686', 'Valdez', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42687', 'Wasilla', '3920', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42688', 'Apache Junction', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42689', 'Avondale', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42690', 'Bisbee', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42691', 'Bouse', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42692', 'Bullhead City', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42693', 'Carefree', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42694', 'Casa Grande', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42695', 'Casas Adobes', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42696', 'Chandler', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42697', 'Clarkdale', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42698', 'Cottonwood', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42699', 'Douglas', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42700', 'Drexel Heights', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42701', 'El Mirage', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42702', 'Flagstaff', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42703', 'Florence', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42704', 'Flowing Wells', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42705', 'Fort Mohave', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42706', 'Fortuna Foothills', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42707', 'Fountain Hills', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42708', 'Gilbert', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42709', 'Glendale', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42710', 'Globe', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42711', 'Goodyear', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42712', 'Green Valley', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42713', 'Kingman', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42714', 'Lake Havasu City', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42715', 'Laveen', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42716', 'Litchfield Park', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42717', 'Marana', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42718', 'Mesa', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42719', 'New Kingman-Butler', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42720', 'Nogales', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42721', 'Oracle', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42722', 'Oro Valley', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42723', 'Paradise Valley', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42724', 'Parker', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42725', 'Payson', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42726', 'Peoria', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42727', 'Phoenix', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42728', 'Pine', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42729', 'Pinetop', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42730', 'Prescott', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42731', 'Prescott Valley', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42732', 'Quartzsite', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42733', 'Queen Creek', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42734', 'Rio Rico', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42735', 'Safford', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42736', 'San Luis', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42737', 'Scottsdale', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42738', 'Sedona', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42739', 'Sierra Vista', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42740', 'Sierra Vista Southeast', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42741', 'Sun City', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42742', 'Sun City West', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42743', 'Surprise', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42744', 'Tempe', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42745', 'Tombstone', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42746', 'Tucson', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42747', 'Winslow', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42748', 'Yuma', '3921', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42749', 'Alexander', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42750', 'Arkadelphia', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42751', 'Batesville', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42752', 'Bella Vista', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42753', 'Benton', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42754', 'Bentonville', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42755', 'Berryville', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42756', 'Blytheville', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42757', 'Cabot', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42758', 'Camden', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42759', 'Cherry Valley', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42760', 'Conway', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42761', 'Corning', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42762', 'El Dorado', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42763', 'Fayetteville', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42764', 'Forrest City', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42765', 'Fort Smith', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42766', 'Harrison', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42767', 'Hope', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42768', 'Hot Springs', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42769', 'Jacksonville', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42770', 'Jonesboro', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42771', 'Lake City', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42772', 'Little Rock', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42773', 'Magnolia', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42774', 'Mount Vernon', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42775', 'Mountain Home', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42776', 'Norfork', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42777', 'North Little Rock', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42778', 'Paragould', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42779', 'Piggott', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42780', 'Pine Bluff', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42781', 'Pocahontas', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42782', 'Prescott', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42783', 'Quitman', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42784', 'Rogers', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42785', 'Russellville', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42786', 'Searcy', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42787', 'Sheridan', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42788', 'Sherwood', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42789', 'Siloam Springs', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42790', 'Springdale', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42791', 'Stuttgart', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42792', 'Texarkana', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42793', 'Van Buren', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42794', 'Ward', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42795', 'West Helena', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42796', 'West Memphis', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42797', 'Wynne', '3922', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42798', 'Acton', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42799', 'Adelanto', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42800', 'Agoura Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42801', 'Aguanga', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42802', 'Alameda', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42803', 'Alamo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42804', 'Albany', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42805', 'Alhambra', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42806', 'Aliso Viejo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42807', 'Alondra Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42808', 'Alpine', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42809', 'Alta Loma', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42810', 'Altadena', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42811', 'American Canyon', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42812', 'Anaheim', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42813', 'Anderson', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42814', 'Antelope', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42815', 'Antioch', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42816', 'Apple Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42817', 'Aptos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42818', 'Arcadia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42819', 'Arcata', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42820', 'Arden-Arcade', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42821', 'Arroyo Grande', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42822', 'Artesia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42823', 'Arvin', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42824', 'Ashland', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42825', 'Atascadero', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42826', 'Atwater', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42827', 'Auburn', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42828', 'Avalon', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42829', 'Avenal', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42830', 'Avocado Heights', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42831', 'Azusa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42832', 'Bakersfield', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42833', 'Baldwin Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42834', 'Banning', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42835', 'Barstow', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42836', 'Bay Point', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42837', 'Baywood-Los Osos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42838', 'Bear Valley Springs', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42839', 'Beaumont', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42840', 'Bell', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42841', 'Bell Gardens', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42842', 'Bellflower', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42843', 'Belmont', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42844', 'Ben Lomond', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42845', 'Benicia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42846', 'Berkeley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42847', 'Beverly Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42848', 'Big Bear Lake', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42849', 'Bloomington', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42850', 'Blythe', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42851', 'Bonita', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42852', 'Bostonia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42853', 'Brawley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42854', 'Brea', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42855', 'Brentwood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42856', 'Brisbane', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42857', 'Brookdale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42858', 'Buena Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42859', 'Burbank', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42860', 'Burlingame', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42861', 'Burnham', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42862', 'Byron', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42863', 'Calabasas', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42864', 'Calexico', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42865', 'California City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42866', 'Camarillo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42867', 'Cameron Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42868', 'Camino', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42869', 'Camp Pendleton North', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42870', 'Camp Pendleton South', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42871', 'Campbell', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42872', 'Canoga Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42873', 'Canyon Lake', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42874', 'Capitola', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42875', 'Carlsbad', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42876', 'Carmel', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42877', 'Carmel Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42878', 'Carmichael', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42879', 'Carpinteria', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42880', 'Carson', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42881', 'Casa de Oro-Mount Helix', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42882', 'Castaic', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42883', 'Castro Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42884', 'Cathedral City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42885', 'Cayucos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42886', 'Ceres', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42887', 'Cerritos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42888', 'Charter Oak', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42889', 'Chatsworth', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42890', 'Cherryland', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42891', 'Chico', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42892', 'Chino', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42893', 'Chino Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42894', 'Chula Vista', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42895', 'Citrus', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42896', 'Citrus Heights', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42897', 'City of Commerce', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42898', 'City of Industry', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42899', 'Claremont', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42900', 'Clearlake', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42901', 'Clovis', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42902', 'Coachella', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42903', 'Coalinga', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42904', 'Colfax', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42905', 'Colton', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42906', 'Colusa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42907', 'Commerce', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42908', 'Compton', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42909', 'Concord', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42910', 'Corcoran', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42911', 'Corning', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42912', 'Corona', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42913', 'Coronado', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42914', 'Corte Madera', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42915', 'Costa Mesa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42916', 'Cotati', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42917', 'Cottonwood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42918', 'Country Club', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42919', 'Covina', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42920', 'Crestline', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42921', 'Cudahy', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42922', 'Culver City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42923', 'Cupertino', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42924', 'Cypress', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42925', 'Daly City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42926', 'Dana Point', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42927', 'Danville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42928', 'Davis', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42929', 'Del Mar', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42930', 'Delano', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42931', 'Desert Hot Springs', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42932', 'Diamond Bar', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42933', 'Dinuba', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42934', 'Dixon', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42935', 'Downey', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42936', 'Duarte', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42937', 'Dublin', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42938', 'East Foothills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42939', 'East Hemet', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42940', 'East La Mirada', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42941', 'East Palo Alto', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42942', 'East San Gabriel', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42943', 'El Cajon', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42944', 'El Centro', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42945', 'El Cerrito', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42946', 'El Granada', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42947', 'El Monte', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42948', 'El Paso de Robles', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42949', 'El Segundo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42950', 'El Sobrante', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42951', 'Elk Grove', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42952', 'Emeryville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42953', 'Encinitas', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42954', 'Encino', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42955', 'Escondido', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42956', 'Etna', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42957', 'Eureka', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42958', 'Exeter', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42959', 'Fair Oaks', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42960', 'Fairfax', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42961', 'Fairfield', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42962', 'Fairview', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42963', 'Fallbrook', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42964', 'Ferndale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42965', 'Fillmore', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42966', 'Florence-Graham', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42967', 'Florin', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42968', 'Folsom', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42969', 'Fontana', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42970', 'Foothill Farms', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42971', 'Foothill Ranch', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42972', 'Forestville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42973', 'Fort Bragg', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42974', 'Fortuna', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42975', 'Foster City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42976', 'Fountain Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42977', 'Freedom', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42978', 'Fremont', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42979', 'Fresno', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42980', 'Fullerton', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42981', 'Galt', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42982', 'Garberville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42983', 'Garden Acres', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42984', 'Garden Grove', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42985', 'Gardena', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42986', 'Georgetown', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42987', 'Gilroy', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42988', 'Glen Avon', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42989', 'Glendale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42990', 'Glendora', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42991', 'Goleta', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42992', 'Gonzales', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42993', 'Granada Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42994', 'Grand Terrace', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42995', 'Grass Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42996', 'Greenfield', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42997', 'Grover Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42998', 'Gualala', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('42999', 'Guerneville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43000', 'Hacienda Heights', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43001', 'Half Moon Bay', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43002', 'Hanford', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43003', 'Harbor City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43004', 'Hawaiian Gardens', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43005', 'Hawthorne', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43006', 'Hayward', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43007', 'Hemet', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43008', 'Hercules', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43009', 'Hermosa Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43010', 'Hesperia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43011', 'Highland', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43012', 'Hillsborough', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43013', 'Hollister', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43014', 'Hollywood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43015', 'Huntington Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43016', 'Huntington Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43017', 'Idyllwild', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43018', 'Imperial Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43019', 'Indio', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43020', 'Industry', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43021', 'Inglewood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43022', 'Irvine', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43023', 'Irwindale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43024', 'Isla Vista', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43025', 'Jackson', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43026', 'Jamul', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43027', 'La Canada Flintridge', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43028', 'La Crescenta-Montrose', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43029', 'La Habra', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43030', 'La Jolla', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43031', 'La Mesa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43032', 'La Mirada', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43033', 'La Palma', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43034', 'La Presa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43035', 'La Puente', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43036', 'La Quinta', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43037', 'La Riviera', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43038', 'La Verne', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43039', 'LaVerne', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43040', 'Ladera Ranch', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43041', 'Lafayette', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43042', 'Laguna', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43043', 'Laguna Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43044', 'Laguna Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43045', 'Laguna Niguel', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43046', 'Lake Elsinore', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43047', 'Lake Forest', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43048', 'Lakeside', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43049', 'Lakewood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43050', 'Lamont', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43051', 'Lancaster', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43052', 'Larkspur', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43053', 'Lawndale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43054', 'Laytonville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43055', 'Lemon Grove', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43056', 'Lemoore', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43057', 'Lennox', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43058', 'Linda', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43059', 'Lindsay', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43060', 'Live Oak', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43061', 'Livermore', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43062', 'Livingston', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43063', 'Lodi', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43064', 'Loma Linda', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43065', 'Lomita', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43066', 'Lompoc', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43067', 'Long Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43068', 'Los Alamitos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43069', 'Los Altos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43070', 'Los Angeles', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43071', 'Los Angeles East', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43072', 'Los Banos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43073', 'Los Gatos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43074', 'Los Olivos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43075', 'Lynwood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43076', 'MacKinleyville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43077', 'Madera', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43078', 'Magalia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43079', 'Malibu', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43080', 'Mammoth Lakes', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43081', 'Manhattan Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43082', 'Manteca', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43083', 'Marina', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43084', 'Marina del Rey', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43085', 'Mariposa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43086', 'Marshall', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43087', 'Martinez', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43088', 'Marysville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43089', 'Maywood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43090', 'Menlo Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43091', 'Merced', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43092', 'Middletown', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43093', 'Midway City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43094', 'Mill Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43095', 'Millbrae', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43096', 'Milpitas', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43097', 'Mira Loma', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43098', 'Miranda', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43099', 'Mission Viejo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43100', 'Modesto', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43101', 'Monclair', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43102', 'Monrovia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43103', 'Montara', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43104', 'Montclair', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43105', 'Montebello', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43106', 'Montecito', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43107', 'Monterey', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43108', 'Monterey Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43109', 'Moorpark', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43110', 'Moraga Town', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43111', 'Moreno Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43112', 'Morgan Hill', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43113', 'Morro Bay', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43114', 'Moss Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43115', 'Mount Shasta', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43116', 'Mountain View', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43117', 'Murrieta', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43118', 'N. Hollywood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43119', 'Napa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43120', 'National City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43121', 'Nevada City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43122', 'Newark', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43123', 'Newport Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43124', 'Norco', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43125', 'North Auburn', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43126', 'North Fair Oaks', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43127', 'North Fork', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43128', 'North Highlands', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43129', 'North Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43130', 'North Hollywood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43131', 'Northridge', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43132', 'Norwalk', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43133', 'Novato', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43134', 'Nuevo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43135', 'Oak View', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43136', 'Oakdale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43137', 'Oakhurst', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43138', 'Oakland', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43139', 'Oakley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43140', 'Oceanside', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43141', 'Oildale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43142', 'Ojai', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43143', 'Olivehurst', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43144', 'Ontario', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43145', 'Orange', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43146', 'Orangevale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43147', 'Orcutt', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43148', 'Oregon House', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43149', 'Orinda', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43150', 'Oroville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43151', 'Oxnard', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43152', 'Pacific Grove', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43153', 'Pacific Palisades', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43154', 'Pacifica', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43155', 'Pacoima', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43156', 'Pajaro', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43157', 'Palm Desert', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43158', 'Palm Springs', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43159', 'Palmdale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43160', 'Palo Alto', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43161', 'Palos Verdes Estates', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43162', 'Pamona', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43163', 'Panorama City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43164', 'Paradise', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43165', 'Paramount', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43166', 'Parkway-South Sacramento', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43167', 'Parlier', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43168', 'Pasadena', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43169', 'Patterson', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43170', 'Pedley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43171', 'Perris', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43172', 'Petaluma', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43173', 'Pico Rivera', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43174', 'Piedmont', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43175', 'Pinole', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43176', 'Pismo Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43177', 'Pittsburg', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43178', 'Placentia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43179', 'Placerville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43180', 'Playa del Rey', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43181', 'Pleasant Hill', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43182', 'Pleasanton', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43183', 'Plymouth', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43184', 'Point Reyes Station', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43185', 'Pollock Pines', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43186', 'Pomona', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43187', 'Port Costa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43188', 'Port Hueneme', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43189', 'Porterville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43190', 'Poway', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43191', 'Quartz Hill', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43192', 'Ramona', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43193', 'Rancho Cordova', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43194', 'Rancho Cucamonga', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43195', 'Rancho Dominguez', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43196', 'Rancho Mirage', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43197', 'Rancho Murieta', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43198', 'Rancho Palos Verdes', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43199', 'Rancho San Diego', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43200', 'Rancho Santa Margarita', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43201', 'Red Bluff', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43202', 'Redding', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43203', 'Redlands', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43204', 'Redondo Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43205', 'Redway', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43206', 'Redwood City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43207', 'Reedley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43208', 'Reseda', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43209', 'Rialto', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43210', 'Richmond', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43211', 'Ridgecrest', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43212', 'Rio Linda', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43213', 'Rio Nido', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43214', 'Rio del Mar', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43215', 'Riverbank', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43216', 'Riverside', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43217', 'Rocklin', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43218', 'Rohnert Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43219', 'Rolling Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43220', 'Rosamond', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43221', 'Roseland', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43222', 'Rosemead', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43223', 'Rosemont', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43224', 'Roseville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43225', 'Rossmoor', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43226', 'Rowland Heights', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43227', 'Rubidoux', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43228', 'Sacramento', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43229', 'Salinas', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43230', 'San Anselmo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43231', 'San Bernardino', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43232', 'San Bruno', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43233', 'San Buenaventura', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43234', 'San Carlos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43235', 'San Clemente', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43236', 'San Diego', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43237', 'San Dimas', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43238', 'San Fernando', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43239', 'San Francisco', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43240', 'San Gabriel', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43241', 'San Jacinto', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43242', 'San Jose', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43243', 'San Juan Capistrano', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43244', 'San Leandro', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43245', 'San Lorenzo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43246', 'San Luis Obispo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43247', 'San Marcos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43248', 'San Marino', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43249', 'San Mateo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43250', 'San Pablo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43251', 'San Pedro', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43252', 'San Rafael', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43253', 'San Ramon', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43254', 'San Ysidro', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43255', 'Sanger', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43256', 'Santa Ana', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43257', 'Santa Barbara', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43258', 'Santa Clara', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43259', 'Santa Clarita', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43260', 'Santa Cruz', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43261', 'Santa Fe Springs', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43262', 'Santa Maria', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43263', 'Santa Monica', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43264', 'Santa Paula', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43265', 'Santa Rosa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43266', 'Santa Ynez', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43267', 'Santee', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43268', 'Saratoga', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43269', 'Sausalito', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43270', 'Scotts Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43271', 'Seal Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43272', 'Seaside', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43273', 'Sebastopol', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43274', 'Selma', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43275', 'Shafter', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43276', 'Sherman Oaks', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43277', 'Sierra Madre', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43278', 'Signal Hill', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43279', 'Simi Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43280', 'Solana Beach', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43281', 'Soledad', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43282', 'Solvang', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43283', 'Sonoma', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43284', 'Sonora', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43285', 'Soquel', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43286', 'South El Monte', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43287', 'South Gate', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43288', 'South Lake Tahoe', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43289', 'South Pasadena', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43290', 'South San Francisco', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43291', 'South San Jose Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43292', 'South Whittier', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43293', 'South Yuba City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43294', 'Spring Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43295', 'St. Helena', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43296', 'Stanford', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43297', 'Stanton', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43298', 'Stevenson Ranch', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43299', 'Stockton', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43300', 'Strathmore', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43301', 'Studio City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43302', 'Suisun City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43303', 'Sun City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43304', 'Sun Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43305', 'Sunland', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43306', 'Sunnyvale', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43307', 'Susanville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43308', 'Sutter', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43309', 'Sylmar', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43310', 'Tahoe City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43311', 'Tamalpais-Homestead Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43312', 'Tarzana', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43313', 'Tehachapi', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43314', 'Temecula', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43315', 'Temple City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43316', 'Thousand Oaks', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43317', 'Tiburon', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43318', 'Topanga', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43319', 'Torrance', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43320', 'Trabuco Canyon', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43321', 'Tracy', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43322', 'Trinidad', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43323', 'Trona', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43324', 'Truckee', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43325', 'Tujunga', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43326', 'Tulare', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43327', 'Turlock', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43328', 'Tustin', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43329', 'Tustin Foothills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43330', 'Twentynine Palms', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43331', 'Twentynine Palms Base', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43332', 'Ukiah', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43333', 'Union City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43334', 'Upland', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43335', 'Vacaville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43336', 'Valencia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43337', 'Valinda', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43338', 'Valle Vista', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43339', 'Vallejo', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43340', 'Valley Center', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43341', 'Valley Glen', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43342', 'Valley Village', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43343', 'Van Nuys', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43344', 'Vandenberg Air Force Base', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43345', 'Venice', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43346', 'Ventura', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43347', 'Vernon', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43348', 'Victorville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43349', 'View Park-Windsor Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43350', 'Vincent', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43351', 'Visalia', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43352', 'Vista', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43353', 'Walnut', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43354', 'Walnut Creek', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43355', 'Walnut Park', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43356', 'Wasco', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43357', 'Waterford', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43358', 'Watsonville', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43359', 'West Athens', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43360', 'West Carson', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43361', 'West Covina', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43362', 'West Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43363', 'West Hollywood', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43364', 'West Puente Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43365', 'West Sacramento', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43366', 'West Whittier-Los Nietos', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43367', 'Westlake Village', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43368', 'Westminster', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43369', 'Westmont', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43370', 'Whittier', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43371', 'Wildomar', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43372', 'Willits', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43373', 'Willowbrook', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43374', 'Wilmington', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43375', 'Windsor', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43376', 'Woodland', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43377', 'Woodland Hills', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43378', 'Yorba Linda', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43379', 'Yreka', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43380', 'Yuba City', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43381', 'Yucaipa', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43382', 'Yucca Valley', '3924', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43383', 'Air Force Academy', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43384', 'Alamosa', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43385', 'Applewood', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43386', 'Arvada', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43387', 'Aspen', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43388', 'Aurora', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43389', 'Avon', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43390', 'Basalt', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43391', 'Bellvue', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43392', 'Black Forest', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43393', 'Boulder', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43394', 'Brighton', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43395', 'Broomfield', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43396', 'Canon City', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43397', 'Carbondale', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43398', 'Castle Rock', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43399', 'Castlewood', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43400', 'Centennial', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43401', 'Cimarron Hills', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43402', 'Clifton', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43403', 'Colorado Springs', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43404', 'Columbine', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43405', 'Commerce City', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43406', 'Cortez', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43407', 'Crawford', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43408', 'Denver', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43409', 'Durango', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43410', 'Edwards', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43411', 'Elizabeth', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43412', 'Englewood', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43413', 'Estes Park', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43414', 'Evergreen', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43415', 'Federal Heights', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43416', 'Fort Carson', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43417', 'Fort Collins', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43418', 'Fort Morgan', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43419', 'Fountain', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43420', 'Golden', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43421', 'Grand Junction', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43422', 'Greeley', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43423', 'Greenwood Village', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43424', 'Gunbarrel', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43425', 'Highlands Ranch', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43426', 'Holly', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43427', 'Ken Caryl', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43428', 'Lafayette', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43429', 'Lakewood', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43430', 'Littleton', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43431', 'Longmont', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43432', 'Louisville', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43433', 'Loveland', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43434', 'Lyons', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43435', 'Montrose', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43436', 'Monument', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43437', 'Nederland', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43438', 'Niwot', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43439', 'Northglenn', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43440', 'Pagosa Springs', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43441', 'Parker', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43442', 'Penrose', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43443', 'Peyton', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43444', 'Pueblo', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43445', 'Redlands', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43446', 'Ridgway', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43447', 'Rifle', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43448', 'Rocky Ford', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43449', 'Sanford', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43450', 'Security-Widefield', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43451', 'Sherrelwood', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43452', 'Silver Cliff', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43453', 'Snowmass Village', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43454', 'Southglenn', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43455', 'Steamboat Springs', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43456', 'Sterling', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43457', 'Superior', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43458', 'Telluride', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43459', 'Thornton', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43460', 'Vail', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43461', 'Welby', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43462', 'Westcliffe', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43463', 'Westminster', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43464', 'Wheat Ridge', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43465', 'Woodland Park', '3926', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43466', 'Ansonia', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43467', 'Avon', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43468', 'Bethel', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43469', 'Bethlehem', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43470', 'Bloomfield', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43471', 'Branford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43472', 'Bridgeport', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43473', 'Bristol', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43474', 'Canaan', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43475', 'Canton', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43476', 'Central Manchester', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43477', 'Cheshire', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43478', 'Colchester', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43479', 'Conning Towers-Nautilus Park', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43480', 'Coscob', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43481', 'Cranbury', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43482', 'Cromwell', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43483', 'Danbury', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43484', 'Darien', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43485', 'Dayville', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43486', 'Derby', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43487', 'East Hartford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43488', 'East Haven', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43489', 'Ellington', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43490', 'Enfield', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43491', 'Fairfield', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43492', 'Farmington', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43493', 'Glastonbury', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43494', 'Greens Farms', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43495', 'Greenwich', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43496', 'Groton', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43497', 'Guilford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43498', 'Haddam', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43499', 'Hamden', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43500', 'Hartford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43501', 'Harwinton', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43502', 'Lakeville', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43503', 'Lyme', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43504', 'Madison', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43505', 'Manchester', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43506', 'Meriden', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43507', 'Middletown', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43508', 'Milford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43509', 'Monroe', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43510', 'Mystic', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43511', 'Naugatuck', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43512', 'New Britain', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43513', 'New Canaan', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43514', 'New Hartford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43515', 'New Haven', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43516', 'New London', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43517', 'New Milford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43518', 'New Town', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43519', 'Newington', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43520', 'North Haven', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43521', 'North Stonington', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43522', 'Norwalk', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43523', 'Norwich', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43524', 'Old Saybrook', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43525', 'Oneco', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43526', 'Orange', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43527', 'Pawcatuck', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43528', 'Plainville', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43529', 'Portland', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43530', 'Putnam', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43531', 'Riverside', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43532', 'Rocky Hill', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43533', 'Rowayton', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43534', 'Sandy Hook', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43535', 'Seymour', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43536', 'Sharon', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43537', 'Shelton', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43538', 'South Windsor', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43539', 'Southington', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43540', 'Southport', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43541', 'Stamford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43542', 'Sterling', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43543', 'Storrs', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43544', 'Stratford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43545', 'Suffield', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43546', 'Taftville', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43547', 'Terryville', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43548', 'Tolland', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43549', 'Torrington', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43550', 'Trumbull', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43551', 'Vernon', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43552', 'Wallingford Center', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43553', 'Waterbury', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43554', 'Watertown', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43555', 'West Hartford', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43556', 'West Haven', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43557', 'Weston', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43558', 'Westport', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43559', 'Wethersfield', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43560', 'Willimantic', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43561', 'Wilton', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43562', 'Windsor', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43563', 'Windsor Locks', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43564', 'Winsted', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43565', 'Woodbury', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43566', 'Woodstock', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43567', 'pomfret', '3927', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43568', 'Bear', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43569', 'Brookside', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43570', 'Claymont', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43571', 'Dover', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43572', 'Dover Base Housing', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43573', 'Edgemoor', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43574', 'Elsmere', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43575', 'Georgetown', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43576', 'Greenville', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43577', 'Middletown', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43578', 'Milford', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43579', 'Milton', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43580', 'Newark', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43581', 'Pike Creek', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43582', 'Seaford', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43583', 'Smyrna', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43584', 'Stanton', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43585', 'Talleyville', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43586', 'Wilmington', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43587', 'Wilmington Manor', '3928', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43588', 'Alachua', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43589', 'Altamonte Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43590', 'Apopka', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43591', 'Atlantic Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43592', 'Auburndale', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43593', 'Aventura', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43594', 'Avon Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43595', 'Azalea Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43596', 'Bal Harbour', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43597', 'Bartow', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43598', 'Bayonet Point', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43599', 'Bayshore Gardens', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43600', 'Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43601', 'Bellair-Meadowbrook Terrace', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43602', 'Belle Glade', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43603', 'Bellview', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43604', 'Beverly Hills', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43605', 'Bloomingdale', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43606', 'Boca Raton', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43607', 'Boca del Mar', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43608', 'Bonita Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43609', 'Boynton Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43610', 'Bradenton', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43611', 'Brandon', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43612', 'Brent', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43613', 'Brooksville', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43614', 'Brownsville', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43615', 'Buena Ventura Lakes', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43616', 'Bunnell', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43617', 'Callaway', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43618', 'Cape Coral', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43619', 'Carol City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43620', 'Casselberry', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43621', 'Catalina Foothills', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43622', 'Celebration', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43623', 'Century Village', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43624', 'Citrus Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43625', 'Clearwater', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43626', 'Clermont', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43627', 'Cocoa', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43628', 'Cocoa Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43629', 'Coconut Creek', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43630', 'Coconut Grove', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43631', 'Conway', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43632', 'Cooper City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43633', 'Coral Gables', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43634', 'Coral Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43635', 'Coral Terrace', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43636', 'Cortlandt Manor', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43637', 'Country Club', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43638', 'Crestview', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43639', 'Crystal River', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43640', 'Cutler', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43641', 'Cutler Ridge', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43642', 'Cypress Gardens', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43643', 'Cypress Lake', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43644', 'Dania', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43645', 'Dania Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43646', 'Davie', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43647', 'Daytona Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43648', 'De Bary', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43649', 'De Funiak Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43650', 'De Land', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43651', 'Debary', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43652', 'Deer Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43653', 'Deerfield Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43654', 'Del Rio', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43655', 'Delray Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43656', 'Deltona', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43657', 'Destin', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43658', 'Doctor Phillips', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43659', 'Dora', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43660', 'Doral', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43661', 'Dundee', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43662', 'Dunedin', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43663', 'East Lake', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43664', 'Edgewater', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43665', 'Eglin Air Force Base', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43666', 'Egypt Lake-Leto', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43667', 'Elfers', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43668', 'Englewood', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43669', 'Ensley', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43670', 'Eustis', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43671', 'Fairview Shores', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43672', 'Fern Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43673', 'Fernandina Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43674', 'Ferry Pass', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43675', 'Flagler Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43676', 'Floral City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43677', 'Florida City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43678', 'Florida Ridge', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43679', 'Forest City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43680', 'Fort Lauderdale', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43681', 'Fort Myers', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43682', 'Fort Myers Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43683', 'Fort Pierce', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43684', 'Fort Walton Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43685', 'Freeport', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43686', 'Fruitville', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43687', 'Ft. Lauderdale', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43688', 'Gainesville', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43689', 'Gladeview', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43690', 'Glenvar Heights', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43691', 'Golden Gate', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43692', 'Golden Glades', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43693', 'Goldenrod', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43694', 'Greater Carrollwood', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43695', 'Greater Northdale', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43696', 'Green Cove Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43697', 'Greenacres', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43698', 'Gulf Gate Estates', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43699', 'Gulfport', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43700', 'Haines City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43701', 'Hallandale', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43702', 'Hallandale Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43703', 'Hammocks', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43704', 'Hamptons at Boca Raton', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43705', 'Havana', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43706', 'Hialeah', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43707', 'Hialeah Gardens', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43708', 'Highpoint', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43709', 'Hobe Sound', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43710', 'Holiday', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43711', 'Holly Hill', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43712', 'Hollywood', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43713', 'Homestead', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43714', 'Homosassa', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43715', 'Hudson', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43716', 'Immokalee', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43717', 'Inverness', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43718', 'Iona', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43719', 'Ives Estates', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43720', 'Jacksonville', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43721', 'Jacksonville Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43722', 'Jasmine Estates', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43723', 'Jensen Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43724', 'Jupiter', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43725', 'Kendale Lakes', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43726', 'Kendall', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43727', 'Kendall West', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43728', 'Key Biscayne', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43729', 'Key Largo', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43730', 'Key West', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43731', 'Kings Point', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43732', 'Kissimmee', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43733', 'Lady Lake', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43734', 'Lake Alfred', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43735', 'Lake City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43736', 'Lake Lucerne', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43737', 'Lake Magdalene', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43738', 'Lake Mary', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43739', 'Lake Placid', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43740', 'Lake Wales', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43741', 'Lake Worth', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43742', 'Lakeland', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43743', 'Lakeland Highlands', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43744', 'Lakeside', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43745', 'Land O\'Lakes', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43746', 'Largo', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43747', 'Lauderdale Lakes', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43748', 'Lauderhill', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43749', 'Laurel', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43750', 'Lecanto', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43751', 'Leesburg', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43752', 'Lehigh Acres', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43753', 'Leisure City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43754', 'Lighthouse Point', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43755', 'Lockhart', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43756', 'Longwood', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43757', 'Loxahatchee', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43758', 'Lutz', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43759', 'Lynn Haven', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43760', 'Madison', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43761', 'Maitland', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43762', 'Mango', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43763', 'Marathon', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43764', 'Marco', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43765', 'Margate', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43766', 'Medley', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43767', 'Melbourne', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43768', 'Merritt Island', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43769', 'Miami', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43770', 'Miami Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43771', 'Miami Gardens', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43772', 'Miami Lakes', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43773', 'Miami Shores', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43774', 'Miami Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43775', 'Micco', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43776', 'Milton', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43777', 'Mims', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43778', 'Miramar', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43779', 'Mulberry', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43780', 'Myrtle Grove', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43781', 'Naples', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43782', 'Naples Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43783', 'Naranja', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43784', 'New Port Richey', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43785', 'New Port Richey East', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43786', 'New Smyrna Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43787', 'Niceville', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43788', 'Nokomis', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43789', 'Norland', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43790', 'North Andrews Gardens', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43791', 'North Fort Myers', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43792', 'North Lauderdale', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43793', 'North Miami', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43794', 'North Miami Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43795', 'North Naples', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43796', 'North Palm Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43797', 'North Port', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43798', 'Oak Ridge', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43799', 'Oakland Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43800', 'Ocala', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43801', 'Ocoee', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43802', 'Ojus', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43803', 'Okeechobee', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43804', 'Oldsmar', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43805', 'Olympia Heights', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43806', 'Opa-locka', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43807', 'Orange City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43808', 'Orange Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43809', 'Orlando', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43810', 'Ormond Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43811', 'Ormond-by-the-Sea', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43812', 'Osprey', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43813', 'Oviedo', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43814', 'Palatka', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43815', 'Palm Bay', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43816', 'Palm Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43817', 'Palm Beach Gardens', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43818', 'Palm City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43819', 'Palm Coast', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43820', 'Palm Harbor', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43821', 'Palm River-Clair Mel', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43822', 'Palm Valley', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43823', 'Palmetto', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43824', 'Palmetto Estates', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43825', 'Panama City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43826', 'Parkland', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43827', 'Pembroke Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43828', 'Pembroke Pines', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43829', 'Pensacola', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43830', 'Perrine', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43831', 'Pine Castle', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43832', 'Pine Hills', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43833', 'Pinellas Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43834', 'Pinewood', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43835', 'Plant City', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43836', 'Plantation', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43837', 'Pompano Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43838', 'Pompano Beach Highlands', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43839', 'Ponte Vedra', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43840', 'Port Charlotte', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43841', 'Port Orange', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43842', 'Port Saint John', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43843', 'Port Saint Lucie', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43844', 'Punta Gorda', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43845', 'Quincy', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43846', 'Redington Shores', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43847', 'Richmond Heights', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43848', 'Richmond West', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43849', 'Riverview', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43850', 'Riviera Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43851', 'Rockledge', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43852', 'Royal Palm Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43853', 'Safety Harbor', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43854', 'Saint Augustine', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43855', 'Saint Cloud', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43856', 'Saint Petersburg', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43857', 'Saint Petersburg Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43858', 'San Carlos Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43859', 'Sandalfoot Cove', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43860', 'Sanford', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43861', 'Sanibel', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43862', 'Sarasota', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43863', 'Sarasota Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43864', 'Satellite Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43865', 'Scott Lake', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43866', 'Sebastian', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43867', 'Seminole', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43868', 'Shalimar', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43869', 'South Bradenton', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43870', 'South Daytona', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43871', 'South Miami', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43872', 'South Miami Heights', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43873', 'South Patrick Shores', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43874', 'South Venice', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43875', 'Spring Hill', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43876', 'Stuart', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43877', 'Sun City Center', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43878', 'Sunny Isles', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43879', 'Sunrise', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43880', 'Sunset', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43881', 'Sweetwater', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43882', 'Tallahassee', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43883', 'Tamarac', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43884', 'Tamiami', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43885', 'Tampa', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43886', 'Tarpon Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43887', 'Temple Terrace', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43888', 'The Crossings', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43889', 'The Hammocks', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43890', 'Titusville', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43891', 'Town\'n\'Country', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43892', 'University', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43893', 'University Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43894', 'Valrico', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43895', 'Venice', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43896', 'Vero Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43897', 'Vero Beach South', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43898', 'Villas', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43899', 'Warrington', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43900', 'Wekiva Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43901', 'Wellington', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43902', 'Wesley Chapel', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43903', 'West Little River', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43904', 'West Palm Beach', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43905', 'West Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43906', 'West Pensacola', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43907', 'West and East Lealman', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43908', 'Westchester', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43909', 'Weston', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43910', 'Westview', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43911', 'Westwood Lakes', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43912', 'Wilton Manors', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43913', 'Windermere', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43914', 'Winston', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43915', 'Winter Garden', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43916', 'Winter Haven', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43917', 'Winter Park', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43918', 'Winter Springs', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43919', 'Wright', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43920', 'Yeehaw Junction', '3930', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43921', 'Acworth', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43922', 'Adel', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43923', 'Albany', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43924', 'Alma', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43925', 'Alpharetta', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43926', 'Americus', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43927', 'Athens', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43928', 'Athens-Clarke', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43929', 'Atlanta', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43930', 'Auburn', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43931', 'Augusta-Richmond', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43932', 'Austell', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43933', 'Bainbridge', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43934', 'Barnesville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43935', 'Belvedere Park', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43936', 'Bogart', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43937', 'Bowdon', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43938', 'Braselton', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43939', 'Brunswick', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43940', 'Buford', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43941', 'Byron', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43942', 'Cairo', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43943', 'Calhoun', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43944', 'Candler-MacAfee', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43945', 'Canton', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43946', 'Carrollton', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43947', 'Cartersville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43948', 'Chamblee', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43949', 'Clarkston', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43950', 'Cochran', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43951', 'College Park', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43952', 'Columbus', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43953', 'Comer', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43954', 'Conley', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43955', 'Conyers', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43956', 'Cordele', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43957', 'Covington', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43958', 'Culloden', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43959', 'Cumming', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43960', 'Dacula', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43961', 'Dahlonega', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43962', 'Dallas', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43963', 'Dalton', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43964', 'Decatur', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43965', 'Dewy Rose', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43966', 'Doraville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43967', 'Douglas', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43968', 'Douglasville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43969', 'Druid Hills', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43970', 'Dublin', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43971', 'Duluth', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43972', 'Dunwoody', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43973', 'East Point', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43974', 'Elberton', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43975', 'Ellenwood', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43976', 'Ellijay', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43977', 'Evans', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43978', 'Fairmount', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43979', 'Fayetteville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43980', 'Flowery Branch', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43981', 'Folkston', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43982', 'Forest Park', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43983', 'Fort Benning South', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43984', 'Fort Gordon', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43985', 'Fort Stewart', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43986', 'Fort Valley', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43987', 'Foxborough', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43988', 'Gaines School', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43989', 'Gainesville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43990', 'Glennville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43991', 'Gresham Park', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43992', 'Griffin', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43993', 'Grovetown', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43994', 'Hampton', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43995', 'Hartwell', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43996', 'Hinesville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43997', 'Jackson', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43998', 'Jonesboro', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('43999', 'Kennesaw', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44000', 'Kingsland', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44001', 'LaGrange', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44002', 'Lawrenceville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44003', 'Lilburn', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44004', 'Lithia Springs', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44005', 'Lithonia', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44006', 'Locust Grove', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44007', 'Loganville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44008', 'Louisville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44009', 'Mableton', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44010', 'Macon', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44011', 'Madison', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44012', 'Marietta', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44013', 'Martinez', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44014', 'McDonough', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44015', 'Milledgeville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44016', 'Monroe', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44017', 'Morrow', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44018', 'Moultrie', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44019', 'Mountain', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44020', 'Mountain Park', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44021', 'Newnan', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44022', 'Norcross', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44023', 'North Atlanta', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44024', 'North Decatur', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44025', 'North Druid Hills', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44026', 'Oakwood', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44027', 'Panthersville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44028', 'Peachtree City', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44029', 'Powder Springs', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44030', 'Redan', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44031', 'Rex', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44032', 'Riverdale', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44033', 'Rome', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44034', 'Rossville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44035', 'Roswell', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44036', 'Saint Marys', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44037', 'Saint Simons', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44038', 'Sandy Springs', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44039', 'Savannah', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44040', 'Scottdale', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44041', 'Sharpsburg', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44042', 'Smyrna', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44043', 'Snellville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44044', 'Sparks', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44045', 'Statesboro', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44046', 'Stockbridge', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44047', 'Stone Mountain', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44048', 'Suwanee', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44049', 'Thomasville', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44050', 'Tifton', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44051', 'Tucker', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44052', 'Tybee Island', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44053', 'Union City', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44054', 'Valdosta', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44055', 'Vidalia', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44056', 'Villa Rica', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44057', 'Warner Robins', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44058', 'Waycross', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44059', 'Wilmington Island', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44060', 'Winder', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44061', 'Woodbine', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44062', 'Woodstock', '3931', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44063', 'Ahuimanu', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44064', 'Aiea', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44065', 'Aliamanu', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44066', 'Ewa Beach', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44067', 'Haiku', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44068', 'Halawa', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44069', 'Hanalei', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44070', 'Hilo', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44071', 'Holualoa', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44072', 'Honolulu', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44073', 'Kahului', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44074', 'Kailua', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44075', 'Kalaheo', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44076', 'Kamuela', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44077', 'Kaneohe', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44078', 'Kaneohe Station', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44079', 'Kapaa', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44080', 'Kapolei', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44081', 'Kihei', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44082', 'Kula', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44083', 'Lahaina', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44084', 'Lanai City', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44085', 'Lihue', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44086', 'Makaha', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44087', 'Makakilo City', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44088', 'Makawao', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44089', 'Mi-Wuk Village', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44090', 'Mililani Town', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44091', 'Naalehu', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44092', 'Nanakuli', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44093', 'Pahoa', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44094', 'Pearl City', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44095', 'Schofield Barracks', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44096', 'Wahiawa', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44097', 'Waialua', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44098', 'Waianae', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44099', 'Wailuku', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44100', 'Waimalu', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44101', 'Waipahu', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44102', 'Waipio', '3932', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44103', 'Blackfoot', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44104', 'Boise', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44105', 'Boise City', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44106', 'Boulder Hill', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44107', 'Burley', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44108', 'Caldwell', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44109', 'Coeur d\'Alene', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44110', 'Eagle', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44111', 'Garden City', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44112', 'Idaho Falls', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44113', 'Lewiston', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44114', 'Meridian', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44115', 'Moscow', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44116', 'Mountain Home', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44117', 'Nampa', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44118', 'Payette', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44119', 'Pocatello', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44120', 'Post Falls', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44121', 'Preston', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44122', 'Rexburg', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44123', 'Rigby', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44124', 'Sandpoint', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44125', 'Troy', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44126', 'Twin Falls', '3933', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44127', 'Addison', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44128', 'Algonquin', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44129', 'Alsip', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44130', 'Alton', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44131', 'Arlington Heights', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44132', 'Aurora', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44133', 'Bannockburn', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44134', 'Barrington', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44135', 'Bartlett', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44136', 'Batavia', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44137', 'Beach Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44138', 'Beardstown', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44139', 'Bedford Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44140', 'Belleville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44141', 'Bellwood', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44142', 'Belvidere', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44143', 'Bensenville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44144', 'Berwyn', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44145', 'Bloomingdale', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44146', 'Bloomington', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44147', 'Blue Island', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44148', 'Boling Brook', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44149', 'Bolingbrook', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44150', 'Bourbonnais', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44151', 'Bradley', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44152', 'Breese', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44153', 'Bridgeview', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44154', 'Brimfield', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44155', 'Broadview', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44156', 'Brookfield', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44157', 'Buffalo Grove', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44158', 'Burbank', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44159', 'Burr Ridge', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44160', 'Cahokia', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44161', 'Calumet City', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44162', 'Canton', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44163', 'Carbondale', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44164', 'Carlinville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44165', 'Carol Stream', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44166', 'Carpentersville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44167', 'Carthage', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44168', 'Cary', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44169', 'Centralia', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44170', 'Champaign', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44171', 'Channahon', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44172', 'Charleston', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44173', 'Chicago', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44174', 'Chicago Heights', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44175', 'Chicago Ridge', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44176', 'Cicero', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44177', 'Coal City', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44178', 'Collinsville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44179', 'Congerville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44180', 'Country Club Hills', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44181', 'Crest Hill', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44182', 'Crestwood', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44183', 'Crystal Lake', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44184', 'Danville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44185', 'Darien', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44186', 'DeKalb', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44187', 'Decatur', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44188', 'Deerfield', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44189', 'Des Plaines', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44190', 'Dixon', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44191', 'Dolton', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44192', 'Downers Grove', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44193', 'Earlville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44194', 'East Dundee', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44195', 'East Moline', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44196', 'East Peoria', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44197', 'East Saint Louis', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44198', 'Edwardsville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44199', 'Effingham', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44200', 'Elburn', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44201', 'Elgin', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44202', 'Elk Grove', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44203', 'Elk Grove Village', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44204', 'Elmhurst', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44205', 'Elmwood Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44206', 'Evanston', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44207', 'Evergreen Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44208', 'Fairview Heights', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44209', 'Flossmoor', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44210', 'Forest Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44211', 'Frankfort', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44212', 'Franklin Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44213', 'Freeport', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44214', 'Galena', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44215', 'Galesburg', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44216', 'Geneva', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44217', 'Genoa', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44218', 'Glen Carbon', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44219', 'Glen Ellyn', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44220', 'Glencoe', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44221', 'Glendale Heights', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44222', 'Glenview', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44223', 'Godfrey', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44224', 'Goodings Grove', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44225', 'Granite City', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44226', 'Grayslake', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44227', 'Gurnee', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44228', 'Hamilton', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44229', 'Hampshire', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44230', 'Hanover Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44231', 'Harvard', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44232', 'Harvey', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44233', 'Hawthorn Woods', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44234', 'Hazel Crest', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44235', 'Herrin', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44236', 'Hickory Hills', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44237', 'Highland Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44238', 'Hinsdale', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44239', 'Hoffman Estates', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44240', 'Homewood', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44241', 'Huntley', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44242', 'Illinois City', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44243', 'Ingleside', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44244', 'Itasca', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44245', 'Jacksonville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44246', 'Johnston City', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44247', 'Joliet', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44248', 'Justice', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44249', 'Kankakee', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44250', 'Kenilworth', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44251', 'Kewanee', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44252', 'La Grange', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44253', 'La Grange Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44254', 'La Salle', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44255', 'Lake Bluff', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44256', 'Lake Forest', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44257', 'Lake Zurich', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44258', 'Lake in the Hills', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44259', 'Lansing', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44260', 'Lemont', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44261', 'Libertyville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44262', 'Lincoln', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44263', 'Lincolnwood', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44264', 'Lindenhurst', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44265', 'Lindenwood', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44266', 'Lisle', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44267', 'Lockport', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44268', 'Lombard', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44269', 'Long Grove', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44270', 'Loves Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44271', 'Lyons', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44272', 'MacHenry', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44273', 'Machesney Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44274', 'Macomb', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44275', 'Marion', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44276', 'Markham', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44277', 'Marshall', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44278', 'Martinsville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44279', 'Maryville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44280', 'Matteson', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44281', 'Mattoon', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44282', 'Maywood', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44283', 'McHenry', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44284', 'Melrose Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44285', 'Midlothian', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44286', 'Milan', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44287', 'Minooka', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44288', 'Mokena', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44289', 'Moline', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44290', 'Momence', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44291', 'Montgomery', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44292', 'Monticello', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44293', 'Morris', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44294', 'Morton', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44295', 'Morton Grove', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44296', 'Mossville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44297', 'Mount Prospect', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44298', 'Mount Vernon', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44299', 'Mount Zion', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44300', 'Mundelein', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44301', 'Naperville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44302', 'New Lenox', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44303', 'Niles', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44304', 'Normal', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44305', 'Norridge', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44306', 'North Aurora', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44307', 'North Chicago', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44308', 'Northbrook', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44309', 'Northfield', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44310', 'Northlake', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44311', 'O\'Fallon', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44312', 'Oak Forest', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44313', 'Oak Lawn', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44314', 'Oak Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44315', 'Oakbrook', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44316', 'Oakwood', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44317', 'Olney', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44318', 'Orland Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44319', 'Osco', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44320', 'Ottawa', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44321', 'Palatine', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44322', 'Palos Heights', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44323', 'Palos Hills', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44324', 'Park Forest', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44325', 'Park Ridge', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44326', 'Pekin', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44327', 'Peoria', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44328', 'Peru', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44329', 'Plainfield', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44330', 'Pontiac', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44331', 'Princeton', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44332', 'Prospect Heights', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44333', 'Quincy', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44334', 'Ramsey', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44335', 'Rantoul', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44336', 'Richmond', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44337', 'Richton Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44338', 'River Forest', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44339', 'Riverdale', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44340', 'Rochelle', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44341', 'Rock Island', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44342', 'Rockford', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44343', 'Rolling Meadows', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44344', 'Romeoville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44345', 'Roscoe', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44346', 'Roselle', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44347', 'Round Lake Beach', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44348', 'Saint Charles', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44349', 'Sauget', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44350', 'Sauk Village', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44351', 'Schaumburg', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44352', 'Schiller Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44353', 'Shumway', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44354', 'Skokie', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44355', 'South Elgin', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44356', 'South Holland', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44357', 'Spring Valley', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44358', 'Springfield', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44359', 'Sterling', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44360', 'Streamwood', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44361', 'Streator', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44362', 'Swansea', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44363', 'Sycamore', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44364', 'Taylorville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44365', 'Tinley Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44366', 'Trenton', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44367', 'Urbana', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44368', 'Ursa', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44369', 'Vernon Hills', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44370', 'Villa Park', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44371', 'Walnut', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44372', 'Warrenville', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44373', 'Washington', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44374', 'Waukegan', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44375', 'West Chicago', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44376', 'West Dundee', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44377', 'Westchester', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44378', 'Western Springs', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44379', 'Westmont', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44380', 'Wheaton', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44381', 'Wheeling', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44382', 'Willowbrook', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44383', 'Wilmette', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44384', 'Winnebago', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44385', 'Winnetka', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44386', 'Wood Dale', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44387', 'Wood River', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44388', 'Woodridge', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44389', 'Woodstock', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44390', 'Worth', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44391', 'Zion', '3934', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44392', 'Albion', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44393', 'Anderson', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44394', 'Angola', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44395', 'Auburn', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44396', 'Bedford', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44397', 'Beech Grove', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44398', 'Bloomington', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44399', 'Brownsburg', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44400', 'Carmel', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44401', 'Cedar Lake', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44402', 'Chesterton', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44403', 'Clarksville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44404', 'Columbus', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44405', 'Connersville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44406', 'Crawfordsville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44407', 'Crown Point', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44408', 'Dyer', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44409', 'East Chicago', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44410', 'Elkhart', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44411', 'Evansville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44412', 'Fishers', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44413', 'Fort Wayne', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44414', 'Frankfort', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44415', 'Franklin', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44416', 'Gary', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44417', 'Goshen', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44418', 'Gosport', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44419', 'Granger', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44420', 'Greenfield', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44421', 'Greensburg', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44422', 'Greenwood', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44423', 'Griffith', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44424', 'Hammond', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44425', 'Helmsburg', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44426', 'Highland', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44427', 'Hobart', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44428', 'Huntington', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44429', 'Indianapolis', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44430', 'Jasper', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44431', 'Jeffersonville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44432', 'Knightstown', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44433', 'Kokomo', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44434', 'La Porte', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44435', 'Lafayette', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44436', 'Lake Station', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44437', 'Lawrence', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44438', 'Lebanon', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44439', 'Liberty', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44440', 'Logansport', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44441', 'Madison', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44442', 'Marion', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44443', 'Martinsville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44444', 'Merrillville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44445', 'Michigan City', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44446', 'Mishawaka', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44447', 'Muncie', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44448', 'Munster', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44449', 'N. Albany', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44450', 'Nashville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44451', 'New Albany', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44452', 'New Castle', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44453', 'New Haven', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44454', 'New Trenton', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44455', 'Noblesville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44456', 'North Vernon', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44457', 'Osceola', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44458', 'Peru', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44459', 'Plainfield', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44460', 'Plymouth', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44461', 'Poland', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44462', 'Portage', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44463', 'Richmond', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44464', 'Rising Sun', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44465', 'Roanoke', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44466', 'Rockport', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44467', 'Schererville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44468', 'Scottsburg', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44469', 'Seymour', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44470', 'Shelbyville', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44471', 'South Bend', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44472', 'Speedway', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44473', 'St. John', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44474', 'Terre Haute', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44475', 'Thorntown', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44476', 'Tippecanoe', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44477', 'Troy', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44478', 'Valparaiso', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44479', 'Vermont', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44480', 'Vincennes', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44481', 'Wabash', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44482', 'Warsaw', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44483', 'Washington', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44484', 'West Lafayette', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44485', 'Williams', '3935', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44486', 'Altoona', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44487', 'Ames', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44488', 'Ankeny', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44489', 'Bettendorf', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44490', 'Boone', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44491', 'Burlington', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44492', 'Carroll', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44493', 'Cedar Falls', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44494', 'Cedar Rapids', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44495', 'Clarinda', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44496', 'Clinton', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44497', 'Clive', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44498', 'Coralville', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44499', 'Council Bluffs', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44500', 'Davenport', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44501', 'Des Moines', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44502', 'Dubuque', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44503', 'Eldridge', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44504', 'Elkader', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44505', 'Essex', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44506', 'Fairfield', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44507', 'Fayette', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44508', 'Fort Dodge', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44509', 'Fort Madison', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44510', 'Harlan', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44511', 'Indianola', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44512', 'Iowa City', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44513', 'Kalona', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44514', 'Keokuk', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44515', 'Marion', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44516', 'Marshalltown', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44517', 'Mason City', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44518', 'Muscatine', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44519', 'Newton', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44520', 'Orange City', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44521', 'Oskaloosa', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44522', 'Ottumwa', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44523', 'Pella', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44524', 'Sioux City', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44525', 'Spencer', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44526', 'Storm Lake', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44527', 'Urbandale', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44528', 'Waterloo', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44529', 'West Des Moines', '3936', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44530', 'Arkansas City', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44531', 'Atchison', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44532', 'Coffeyville', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44533', 'Derby', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44534', 'Dodge City', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44535', 'El Dorado', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44536', 'Elk City', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44537', 'Emporia', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44538', 'Fort Riley North', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44539', 'Garden City', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44540', 'Great Bend', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44541', 'Hays', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44542', 'Hutchinson', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44543', 'Independence', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44544', 'Junction City', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44545', 'Kansas City', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44546', 'Kingman', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44547', 'Lawrence', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44548', 'Leavenworth', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44549', 'Leawood', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44550', 'Lenexa', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44551', 'Liberal', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44552', 'MacPherson', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44553', 'Manhattan', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44554', 'Merriam', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44555', 'Minneapolis', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44556', 'Moscow', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44557', 'Moundridge', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44558', 'Nashville', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44559', 'Newton', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44560', 'Olathe', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44561', 'Ottawa', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44562', 'Overland Park', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44563', 'Parsons', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44564', 'Pittsburg', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44565', 'Prairie Village', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44566', 'Rose Hill', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44567', 'Salina', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44568', 'Shawnee', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44569', 'Topeka', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44570', 'Wichita', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44571', 'Winfield', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44572', 'tecumseh', '3937', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44573', 'Albany', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44574', 'Ashland', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44575', 'Bardstown', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44576', 'Berea', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44577', 'Bowling Green', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44578', 'Campbellsville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44579', 'Catlettsburg', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44580', 'Covington', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44581', 'Crescent Springs', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44582', 'Danville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44583', 'Dawson Springs', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44584', 'Eastview', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44585', 'Eddyville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44586', 'Elizabethtown', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44587', 'Erlanger', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44588', 'Evarts', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44589', 'Fern Creek', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44590', 'Florence', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44591', 'Fort Campbell North', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44592', 'Fort Knox', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44593', 'Fort Mitchell', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44594', 'Fort Thomas', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44595', 'Frankfort', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44596', 'Georgetown', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44597', 'Glasgow', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44598', 'Grays Knob', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44599', 'Henderson', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44600', 'Highview', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44601', 'Hopkinsville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44602', 'Independence', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44603', 'Jeffersontown', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44604', 'Lawrenceburg', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44605', 'Lebanon', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44606', 'Lexington', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44607', 'Lexington-Fayette', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44608', 'Louisville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44609', 'Madisonville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44610', 'Marion', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44611', 'Mayfield', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44612', 'Maysville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44613', 'Middlesborough', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44614', 'Murray', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44615', 'Nebo', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44616', 'Newburg', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44617', 'Newport', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44618', 'Nicholasville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44619', 'Okolona', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44620', 'Olive Hill', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44621', 'Owensboro', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44622', 'Paducah', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44623', 'Paris', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44624', 'Pikeville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44625', 'Pleasure Ridge Park', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44626', 'Queens', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44627', 'Radcliff', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44628', 'Richmond', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44629', 'Saint Dennis', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44630', 'Saint Matthews', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44631', 'Scottsville', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44632', 'Shively', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44633', 'Somerset', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44634', 'South Shore', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44635', 'Tollesboro', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44636', 'Valley Station', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44637', 'Wallins Creek', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44638', 'Walton', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44639', 'Winchester', '3938', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44640', 'Abbeville', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44641', 'Alexandria', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44642', 'Amite', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44643', 'Baker', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44644', 'Bastrop', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44645', 'Baton Rouge', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44646', 'Bayou Cane', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44647', 'Bogalusa', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44648', 'Bossier City', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44649', 'Broussard', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44650', 'Calhoun', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44651', 'Chalmette', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44652', 'Covington', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44653', 'Crowley', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44654', 'De Ridder', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44655', 'Delcambre', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44656', 'Denham Springs', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44657', 'Estelle', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44658', 'Eunice', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44659', 'Fort Polk South', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44660', 'Franklin', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44661', 'French Settlement', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44662', 'Garyville', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44663', 'Geismar', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44664', 'Gretna', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44665', 'Hammond', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44666', 'Harahan', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44667', 'Harvey', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44668', 'Houma', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44669', 'Independence', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44670', 'Jefferson', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44671', 'Jennings', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44672', 'Kenner', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44673', 'Lafayette', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44674', 'Lake Charles', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44675', 'Laplace', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44676', 'Mandeville', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44677', 'Marrero', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44678', 'Merrydale', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44679', 'Metairie', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44680', 'Minden', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44681', 'Monroe', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44682', 'Morgan City', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44683', 'Natchitoches', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44684', 'New Iberia', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44685', 'New Orleans', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44686', 'Opelousas', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44687', 'Pineville', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44688', 'Pioneer', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44689', 'Prairieville', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44690', 'River Ridge', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44691', 'Ruston', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44692', 'Saint Amant', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44693', 'Saint Martinville', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44694', 'Shenandoah', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44695', 'Shreveport', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44696', 'Slidell', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44697', 'Sulphur', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44698', 'Terrytown', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44699', 'Thibodaux', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44700', 'Timberlane', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44701', 'Vinton', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44702', 'Waggaman', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44703', 'West Monroe', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44704', 'Westwego', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44705', 'Zachary', '3939', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44706', 'Manchester', '3940', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44707', 'Washington', '3940', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44708', 'Auburn', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44709', 'Augusta', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44710', 'Bangor', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44711', 'Bath', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44712', 'Biddeford', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44713', 'Brunswick', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44714', 'Cornish', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44715', 'Dover-Foxcroft', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44716', 'Ellsworth', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44717', 'Etna', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44718', 'Freeport', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44719', 'Gorham', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44720', 'Greene', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44721', 'Harmony', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44722', 'Lewiston', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44723', 'Liberty', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44724', 'Limerick', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44725', 'Lyman', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44726', 'Maine', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44727', 'New Gloucester', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44728', 'Norridgewock', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44729', 'North Yarmouth', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44730', 'Old Town', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44731', 'Orono', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44732', 'Portland', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44733', 'Presque Isle', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44734', 'Saco', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44735', 'Sanford', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44736', 'Scarborough', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44737', 'South Portland', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44738', 'Spruce Head', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44739', 'Thomaston', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44740', 'Waldoboro', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44741', 'Waterville', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44742', 'West Buxton', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44743', 'Westbrook', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44744', 'Whitefield', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44745', 'Windham', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44746', 'Yarmouth', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44747', 'York Harbor', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44748', 'stockton springs', '3941', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44749', 'Aberdeen', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44750', 'Accokeek', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44751', 'Adelphi', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44752', 'Andrews Air Force Base', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44753', 'Annapolis', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44754', 'Arbutus', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44755', 'Arnold', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44756', 'Aspen Hill', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44757', 'Baltimore', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44758', 'Bel Air North', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44759', 'Bel Air South', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44760', 'Beltsville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44761', 'Berlin', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44762', 'Bethesda', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44763', 'Bladensburg', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44764', 'Boonsboro', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44765', 'Bowie', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44766', 'Brookeville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44767', 'Brooklandville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44768', 'Brooklyn Park', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44769', 'Burtonsville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44770', 'Calverton', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44771', 'Cambridge', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44772', 'Camp Springs', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44773', 'Capitol Heights', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44774', 'Carney', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44775', 'Catonsville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44776', 'Chestertown', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44777', 'Chillum', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44778', 'Clarksburg', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44779', 'Clarksville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44780', 'Clinton', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44781', 'Cockeysville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44782', 'Colesville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44783', 'College Park', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44784', 'Columbia', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44785', 'Cooksville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44786', 'Coral Hills', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44787', 'Crofton', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44788', 'Cumberland', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44789', 'Damascus', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44790', 'Darlington', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44791', 'District Heights', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44792', 'Dundalk', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44793', 'East Riverdale', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44794', 'Easton', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44795', 'Edgemere', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44796', 'Edgewood', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44797', 'Eldersburg', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44798', 'Elkridge', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44799', 'Elkton', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44800', 'Ellicott City', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44801', 'Essex', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44802', 'Fairland', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44803', 'Ferndale', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44804', 'Forest Hill', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44805', 'Forestville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44806', 'Fort Meade', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44807', 'Fort Washington', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44808', 'Frederick', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44809', 'Fredrick', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44810', 'Friendly', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44811', 'Gaithersburg', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44812', 'Germantown', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44813', 'Glen Burnie', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44814', 'Glenn Dale', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44815', 'Greater Landover', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44816', 'Greater Upper Marlboro', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44817', 'Green Haven', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44818', 'Green Valley', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44819', 'Greenbelt', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44820', 'Hagerstown', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44821', 'Hanover', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44822', 'Harmans', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44823', 'Havre de Grace', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44824', 'Hillandale', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44825', 'Hillcrest Heights', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44826', 'Hunt Valley', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44827', 'Hurlock', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44828', 'Hyattsville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44829', 'Ijamsville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44830', 'Jefferson', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44831', 'Jessup', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44832', 'Joppatowne', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44833', 'Kettering', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44834', 'Lake Shore', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44835', 'Langley Park', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44836', 'Lanham', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44837', 'Lanham-Seabrook', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44838', 'Lansdowne-Baltimore Highlands', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44839', 'Largo', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44840', 'Laurel', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44841', 'Lexington Park', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44842', 'Lochearn', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44843', 'Lutherville-Timonium', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44844', 'Marriottsville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44845', 'Maryland City', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44846', 'Mays Chapel', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44847', 'Middle River', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44848', 'Milford Mill', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44849', 'Millersville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44850', 'Mitchellville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44851', 'Montgomery Village', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44852', 'National Harbor', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44853', 'New Carrollton', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44854', 'North Bethesda', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44855', 'North Laurel', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44856', 'North Potomac', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44857', 'Odenton', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44858', 'Olney', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44859', 'Overlea', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44860', 'Owings Mills', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44861', 'Oxon Hill-Glassmanor', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44862', 'Parkville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44863', 'Parole', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44864', 'Pasadena', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44865', 'Perry Hall', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44866', 'Pikesville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44867', 'Poolesville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44868', 'Potomac', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44869', 'Randallstown', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44870', 'Redland', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44871', 'Reisterstown', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44872', 'Riviera Beach', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44873', 'Rockville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44874', 'Rosaryville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44875', 'Rosedale', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44876', 'Rossville', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44877', 'Saint Charles', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44878', 'Salisbury', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44879', 'Sandy Spring', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44880', 'Savage Guilford', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44881', 'Severn', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44882', 'Severna Park', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44883', 'Silver Spring', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44884', 'Snow Hill', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44885', 'South Gate', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44886', 'South Laurel', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44887', 'Suitland-Silver Hill', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44888', 'Takoma Park', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44889', 'Temple Hill', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44890', 'Thurmont', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44891', 'Timonium', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44892', 'Towson', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44893', 'Upper Marlboro', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44894', 'Waldorf', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44895', 'Walker Mill', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44896', 'Washington Grove', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44897', 'Westminster', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44898', 'Wheaton-Glenmont', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44899', 'White Oak', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44900', 'Windsor Mill', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44901', 'Woodlawn', '3942', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44902', 'Abington', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44903', 'Acton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44904', 'Agawam', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44905', 'Amesbury', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44906', 'Amherst Center', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44907', 'Arlington', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44908', 'Ashland', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44909', 'Athol', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44910', 'Attleboro', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44911', 'Barnstable Town', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44912', 'Baxboro', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44913', 'Becket', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44914', 'Bedford', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44915', 'Belmont', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44916', 'Beverly', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44917', 'Billerica', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44918', 'Boston', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44919', 'Boylston', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44920', 'Braintree', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44921', 'Brockton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44922', 'Brookfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44923', 'Brookline', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44924', 'Burlington', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44925', 'Cambridge', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44926', 'Canton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44927', 'Charlestown', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44928', 'Chelmsford', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44929', 'Chelsea', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44930', 'Chicopee', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44931', 'Clinton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44932', 'Concord', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44933', 'Danvers', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44934', 'Dedham', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44935', 'Devens', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44936', 'Devenscrest', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44937', 'Duxbury', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44938', 'Easthampton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44939', 'Everett', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44940', 'Fairhaven', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44941', 'Fall River', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44942', 'Fitchburg', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44943', 'Florence', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44944', 'Framingham', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44945', 'Franklin', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44946', 'Gardner', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44947', 'Gloucester', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44948', 'Great Barrington', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44949', 'Greenfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44950', 'Groton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44951', 'Hadley', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44952', 'Harvard', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44953', 'Haverhill', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44954', 'Hingham', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44955', 'Holbrook', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44956', 'Holliston', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44957', 'Holyoke', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44958', 'Hopedale', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44959', 'Housatonic', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44960', 'Hubbardston', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44961', 'Hudson', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44962', 'Hull', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44963', 'Hyannis', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44964', 'Ipswich', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44965', 'Jamaica Plain', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44966', 'Lawrence', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44967', 'Lee', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44968', 'Lenox', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44969', 'Leominster', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44970', 'Lexington', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44971', 'Longmeadow', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44972', 'Lowell', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44973', 'Lynn', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44974', 'Lynnfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44975', 'Malden', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44976', 'Manchester', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44977', 'Marblehead', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44978', 'Marion', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44979', 'Marlborough', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44980', 'Marshfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44981', 'Massachusetts', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44982', 'Maynard', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44983', 'Medfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44984', 'Medford', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44985', 'Medway', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44986', 'Melrose', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44987', 'Methuen', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44988', 'Middleboro', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44989', 'Milford', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44990', 'Milton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44991', 'Monson', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44992', 'Montague', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44993', 'Nantucket', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44994', 'Natick', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44995', 'Needham', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44996', 'New Bedford', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44997', 'Newburyport', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44998', 'Newton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('44999', 'North Adams', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45000', 'North Andover', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45001', 'North Attleborough Center', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45002', 'North Easton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45003', 'Northampton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45004', 'Northborough', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45005', 'Norwood', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45006', 'Orleans', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45007', 'Peabody', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45008', 'Pepperell', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45009', 'Pittsfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45010', 'Plainfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45011', 'Plymouth', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45012', 'Provincetown', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45013', 'Quincy', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45014', 'Randolph', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45015', 'Reading', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45016', 'Rehoboth', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45017', 'Revere', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45018', 'Rockland', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45019', 'Rockport', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45020', 'Roslindale', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45021', 'Salem', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45022', 'Saugus', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45023', 'Scituate', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45024', 'Seekonk', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45025', 'Shelburne Falls', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45026', 'Sherborn', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45027', 'Shrewsbury', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45028', 'Somerset', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45029', 'Somerville', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45030', 'South Boston', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45031', 'South Deerfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45032', 'South Hadley', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45033', 'South Lee', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45034', 'South Yarmouth', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45035', 'Southborough', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45036', 'Southbridge', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45037', 'Southwick', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45038', 'Springfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45039', 'Stoneham', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45040', 'Sturbridge', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45041', 'Swampscott', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45042', 'Swansea', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45043', 'Taunton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45044', 'Tewksbury', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45045', 'Three Rivers', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45046', 'Truro', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45047', 'Upton', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45048', 'Vineyard Haven', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45049', 'Wakefield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45050', 'Waltham', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45051', 'Ware', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45052', 'Wareham', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45053', 'Watertown', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45054', 'Wayland', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45055', 'Webster', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45056', 'Wellesley', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45057', 'Wellesley Hills', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45058', 'West Concord', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45059', 'West Roxbury', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45060', 'West Springfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45061', 'West Yarmouth', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45062', 'Westborough', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45063', 'Westfield', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45064', 'Westford', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45065', 'Weston', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45066', 'Weymouth', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45067', 'Wilbraham', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45068', 'Wilmington', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45069', 'Winchester', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45070', 'Winthrop', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45071', 'Woburn', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45072', 'Worcester', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45073', 'Yarmouthport', '3943', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45074', 'Adrian', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45075', 'Albion', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45076', 'Allegan', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45077', 'Allen Park', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45078', 'Alma', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45079', 'Alpena', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45080', 'Ann Arbor', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45081', 'Attica', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45082', 'Auburn Hills', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45083', 'Battle Creek', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45084', 'Bay City', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45085', 'Beecher', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45086', 'Belleville', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45087', 'Benton Harbor', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45088', 'Berkley', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45089', 'Beverly Hills', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45090', 'Big Rapids', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45091', 'Birmingham', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45092', 'Bloomfield Hills', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45093', 'Bloomfield Township', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45094', 'Boyne City', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45095', 'Brighton', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45096', 'Burt', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45097', 'Burton', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45098', 'Cadillac', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45099', 'Canton', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45100', 'Charlotte', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45101', 'Chesterfield', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45102', 'Clarkston', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45103', 'Clawson', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45104', 'Clinton', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45105', 'Commerce', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45106', 'Comstock Park', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45107', 'Coopersville', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45108', 'Cornell', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45109', 'Cutlerville', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45110', 'Davisburg', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45111', 'Dearborn', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45112', 'Dearborn Heights', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45113', 'Delton', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45114', 'Detroit', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45115', 'Dexter', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45116', 'Dowagiac', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45117', 'East Grand Rapids', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45118', 'East Lansing', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45119', 'Eastpointe', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45120', 'Ecorse', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45121', 'Escanaba', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45122', 'Evart', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45123', 'Fair Haven', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45124', 'Fairgrove', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45125', 'Farmington', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45126', 'Farmington Hills', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45127', 'Fenton', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45128', 'Ferndale', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45129', 'Flint', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45130', 'Forest Hills', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45131', 'Fowlerville', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45132', 'Frankenmuth', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45133', 'Fraser', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45134', 'Fremont', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45135', 'Fruitport', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45136', 'Garden City', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45137', 'Goodrich', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45138', 'Grand Blanc', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45139', 'Grand Haven', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45140', 'Grand Rapids', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45141', 'Grandville', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45142', 'Grosse Ile', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45143', 'Grosse Pointe Farms', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45144', 'Grosse Pointe Park', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45145', 'Grosse Pointe Woods', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45146', 'Gwinn', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45147', 'Hamtramck', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45148', 'Hancock', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45149', 'Harper Woods', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45150', 'Harrison', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45151', 'Haslett', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45152', 'Hazel Park', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45153', 'Highland Park', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45154', 'Holland', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45155', 'Holly', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45156', 'Holt', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45157', 'Houghton', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45158', 'Hudsonville', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45159', 'Huntington Woods', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45160', 'Imlay', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45161', 'Inkster', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45162', 'Jackon', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45163', 'Jackson', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45164', 'Jenison', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45165', 'Kalamazoo', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45166', 'Kalkaska', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45167', 'Kentwood', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45168', 'Kingsford', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45169', 'Lansing', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45170', 'Lapeer', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45171', 'Lincoln Park', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45172', 'Litchfield', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45173', 'Livonia', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45174', 'Ludington', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45175', 'Macomb', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45176', 'Madison Heights', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45177', 'Manistee', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45178', 'Marquette', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45179', 'Marysville', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45180', 'Melvindale', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45181', 'Midland', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45182', 'Monroe', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45183', 'Mount Clemens', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45184', 'Mount Morris', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45185', 'Mount Pleasant', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45186', 'Mt. Pleasant', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45187', 'Muskegon', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45188', 'Muskegon Heights', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45189', 'New Hudson', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45190', 'Newaygo', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45191', 'Niles', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45192', 'Northview', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45193', 'Northville', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45194', 'Norton Shores', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45195', 'Novi', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45196', 'Oak Park', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45197', 'Okemos', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45198', 'Oscoda', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45199', 'Owosso', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45200', 'Oxford', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45201', 'Petoskey', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45202', 'Pinckney', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45203', 'Plymouth Township', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45204', 'Pontiac', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45205', 'Port Huron', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45206', 'Portage', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45207', 'Redford', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45208', 'Reese', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45209', 'River Rouge', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45210', 'Riverview', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45211', 'Rochester Hills', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45212', 'Rockford', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45213', 'Romeo', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45214', 'Romulus', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45215', 'Roseville', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45216', 'Royal Oak', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45217', 'Saginaw', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45218', 'Saginaw Township North', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45219', 'Saginaw Township South', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45220', 'Saint Clair Shores', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45221', 'Saint Louis', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45222', 'Saline', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45223', 'Saugatuck', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45224', 'Sault Sainte Marie', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45225', 'Schoolcraft', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45226', 'Shelby', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45227', 'Southfield', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45228', 'Southgate', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45229', 'Sterling Heights', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45230', 'Sturgis', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45231', 'Taylor', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45232', 'Traverse City', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45233', 'Trenton', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45234', 'Troy', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45235', 'Walker', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45236', 'Walled Lake', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45237', 'Warren', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45238', 'Waterford', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45239', 'Waverly', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45240', 'Wayne', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45241', 'West Bloomfield Township', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45242', 'Westland', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45243', 'White Lake', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45244', 'Whitmore Lake', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45245', 'Williamston', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45246', 'Wixom', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45247', 'Woodhaven', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45248', 'Wyandotte', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45249', 'Wyoming', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45250', 'Ypsilanti', '3945', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45251', 'Albert Lea', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45252', 'Alger', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45253', 'Andover', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45254', 'Annandale', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45255', 'Anoka', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45256', 'Apple Valley', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45257', 'Austin', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45258', 'Baxter', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45259', 'Bemidji', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45260', 'Blaine', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45261', 'Blomkest', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45262', 'Bloomington', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45263', 'Blue Earth', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45264', 'Brainerd', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45265', 'Brooklyn Center', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45266', 'Brooklyn Park', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45267', 'Burnsville', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45268', 'Champlin', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45269', 'Chanhassen', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45270', 'Chaska', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45271', 'Chatfield', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45272', 'Circle Pines', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45273', 'Cloquet', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45274', 'Cokato', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45275', 'Columbia Heights', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45276', 'Coon Rapids', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45277', 'Cottage Grove', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45278', 'Crystal', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45279', 'Duluth', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45280', 'Eagan', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45281', 'East Bethel', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45282', 'Eden Prairie', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45283', 'Edina', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45284', 'Elk River', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45285', 'Ely', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45286', 'Fairmont', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45287', 'Faribault', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45288', 'Farmington', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45289', 'Fergus Falls', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45290', 'Frazee', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45291', 'Fridley', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45292', 'Golden Valley', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45293', 'Grand Rapids', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45294', 'Ham Lake', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45295', 'Hamel', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45296', 'Hastings', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45297', 'Hibbing', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45298', 'Hopkins', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45299', 'Houston', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45300', 'Hutchinson', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45301', 'Inver Grove Heights', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45302', 'Isanti', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45303', 'LaCrescent', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45304', 'Lakeville', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45305', 'Le Sueur', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45306', 'Lino Lakes', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45307', 'Litchfield', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45308', 'Mankato', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45309', 'Maple Grove', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45310', 'Maplewood', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45311', 'Marshall', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45312', 'Mendota Heights', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45313', 'Minneapolis', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45314', 'Minnetonka', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45315', 'Moorhead', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45316', 'Mounds View', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45317', 'Nelson', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45318', 'New Brighton', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45319', 'New Hope', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45320', 'New Ulm', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45321', 'North Mankato', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45322', 'North Saint Paul', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45323', 'Northfield', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45324', 'Oakdale', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45325', 'Onamia', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45326', 'Owatonna', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45327', 'Pequot Lakes', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45328', 'Plymouth', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45329', 'Prior Lake', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45330', 'Ramsey', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45331', 'Red Wing', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45332', 'Renville', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45333', 'Richfield', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45334', 'Robbinsdale', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45335', 'Rochester', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45336', 'Rosemount', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45337', 'Roseville', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45338', 'Royalton', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45339', 'Saint Cloud', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45340', 'Saint Louis Park', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45341', 'Saint Michael', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45342', 'Saint Paul', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45343', 'Saint Peter', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45344', 'Sauk Rapids', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45345', 'Savage', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45346', 'Shakopee', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45347', 'Shoreview', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45348', 'South Saint Paul', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45349', 'St. Paul', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45350', 'Stewartville', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45351', 'Stillwater', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45352', 'Vadnais Heights', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45353', 'Waconia', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45354', 'Wadena', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45355', 'West Saint Paul', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45356', 'White Bear Lake', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45357', 'Willmar', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45358', 'Winona', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45359', 'Woodbury', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45360', 'Worthington', '3946', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45361', 'Bay Saint Louis', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45362', 'Biloxi', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45363', 'Brandon', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45364', 'Brookhaven', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45365', 'Byhalia', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45366', 'Byram', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45367', 'Canton', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45368', 'Clarksdale', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45369', 'Cleveland', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45370', 'Clinton', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45371', 'Columbus', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45372', 'Corinth', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45373', 'Diamondhead', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45374', 'Gautier', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45375', 'Greenville', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45376', 'Greenwood', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45377', 'Grenada', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45378', 'Gulfport', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45379', 'Hattiesburg', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45380', 'Hernando', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45381', 'Horn Lake', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45382', 'Indianola', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45383', 'Jackson', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45384', 'Laurel', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45385', 'Long Beach', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45386', 'Lucedale', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45387', 'MacComb', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45388', 'Madison', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45389', 'Magnolia', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45390', 'Meridian', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45391', 'Michigan City', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45392', 'Moselle', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45393', 'Moss Point', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45394', 'Natchez', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45395', 'Ocean Springs', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45396', 'Olive Branch', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45397', 'Orange Grove', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45398', 'Oxford', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45399', 'Pascagoula', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45400', 'Pearl', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45401', 'Pelahatchie', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45402', 'Picayune', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45403', 'Quitman', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45404', 'Ridgeland', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45405', 'Senatobia', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45406', 'Southaven', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45407', 'Southhaven', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45408', 'Starkville', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45409', 'Tupelo', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45410', 'Utica', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45411', 'Vicksburg', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45412', 'Yazoo City', '3947', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45413', 'Affton', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45414', 'Annapolis', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45415', 'Arnold', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45416', 'Ballwin', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45417', 'Belgique', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45418', 'Bellefontaine Neighbors', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45419', 'Belton', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45420', 'Berkeley', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45421', 'Blue Springs', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45422', 'Branson', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45423', 'Bridgeton', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45424', 'Brighton', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45425', 'California', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45426', 'Camdenton', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45427', 'Cape Girardeau', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45428', 'Carthage', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45429', 'Chaffee', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45430', 'Chesterfield', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45431', 'Chillicothe', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45432', 'Clayton', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45433', 'Clever', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45434', 'Columbia', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45435', 'Concord', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45436', 'Crestwood', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45437', 'Creve Coeur', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45438', 'Desloge', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45439', 'Dora', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45440', 'Earth City', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45441', 'Excelsior Springs', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45442', 'Farmington', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45443', 'Fenton', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45444', 'Ferguson', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45445', 'Florissant', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45446', 'Forsyth', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45447', 'Fort Leonard Wood', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45448', 'Fulton', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45449', 'Gladstone', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45450', 'Grain Valley', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45451', 'Grandview', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45452', 'Gravois Mills', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45453', 'Hannibal', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45454', 'Harrisonville', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45455', 'Hazelwood', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45456', 'High Ridge', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45457', 'Independence', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45458', 'Jackson', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45459', 'Jefferson City', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45460', 'Jennings', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45461', 'Joplin', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45462', 'Kansas City', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45463', 'Kennett', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45464', 'Kirksville', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45465', 'Kirkwood', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45466', 'Kissee Mills', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45467', 'Lamar', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45468', 'Lebanon', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45469', 'Lees Summit', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45470', 'Lemay', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45471', 'Liberty', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45472', 'Lone Jack', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45473', 'Marshall', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45474', 'Maryland Heights', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45475', 'Maryville', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45476', 'Mehlville', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45477', 'Mexico', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45478', 'Moberly', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45479', 'Murphy', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45480', 'Nixa', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45481', 'O\'Fallon', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45482', 'Oakville', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45483', 'Overland', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45484', 'Pacific', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45485', 'Park Hills', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45486', 'Parkville', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45487', 'Peculiar', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45488', 'Poplar Bluff', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45489', 'Raytown', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45490', 'Richmond Heights', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45491', 'Rolla', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45492', 'Saint Ann', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45493', 'Saint Charles', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45494', 'Saint Clair', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45495', 'Saint Joseph', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45496', 'Saint Louis', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45497', 'Saint Peters', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45498', 'Sappington', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45499', 'Sedalia', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45500', 'Sikeston', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45501', 'Spanish Lake', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45502', 'Springfield', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45503', 'St. Louis', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45504', 'Steelville', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45505', 'Sunrise Beach', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45506', 'Town and Country', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45507', 'Trimble', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45508', 'Troy', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45509', 'University City', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45510', 'Warrensburg', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45511', 'Washington', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45512', 'Webb City', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45513', 'Webster Groves', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45514', 'Wentzville', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45515', 'West Plains', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45516', 'Wildwood', '3948', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45517', 'Anaconda-Deer Lodge County', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45518', 'Arlee', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45519', 'Belgrade', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45520', 'Billings', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45521', 'Bozeman', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45522', 'Butte', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45523', 'Butte-Silver Bow', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45524', 'Great Falls', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45525', 'Hamilton', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45526', 'Havre', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45527', 'Helena', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45528', 'Helena Valley Southeast', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45529', 'Helena Valley West Central', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45530', 'Kalispell', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45531', 'Lame Deer', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45532', 'Laurel', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45533', 'Lewistown', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45534', 'Livingston', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45535', 'Malmstrom Air Force Base', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45536', 'Manhattan', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45537', 'Miles City', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45538', 'Missoula', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45539', 'Orchard Homes', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45540', 'Pablo', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45541', 'Polson', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45542', 'Roberts', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45543', 'Ryegate', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45544', 'Sidney', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45545', 'Stevensville', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45546', 'Whitefish', '3949', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45547', 'Beatrice', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45548', 'Bellevue', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45549', 'Central City', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45550', 'Columbus', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45551', 'Cozad', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45552', 'Creighton', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45553', 'Fremont', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45554', 'Gering', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45555', 'Grand Island', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45556', 'Hastings', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45557', 'Homer', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45558', 'Keamey', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45559', 'Kearney', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45560', 'La Vista', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45561', 'Lexington', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45562', 'Lincoln', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45563', 'McCook', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45564', 'Norfolk', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45565', 'North Platte', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45566', 'Offutt Air Force Base West', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45567', 'Ogallala', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45568', 'Omaha', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45569', 'Papillion', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45570', 'Scottsbluff', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45571', 'South Sioux City', '3950', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45572', 'Boulder City', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45573', 'Carson City', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45574', 'Elko', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45575', 'Goldfield', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45576', 'Henderson', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45577', 'Las Vegas', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45578', 'Laughlin', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45579', 'Lovelock', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45580', 'Mesquite', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45581', 'Nellis Air Force Base', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45582', 'North Las Vegas', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45583', 'Pahrump', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45584', 'Paradise', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45585', 'Reno', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45586', 'Sparks', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45587', 'Spring Valley', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45588', 'Sun Valley', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45589', 'Sunrise Manor', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45590', 'Winchester', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45591', 'Winnemucca', '3951', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45592', 'Akron', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45593', 'Alledonia', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45594', 'Alliance', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45595', 'Amherst', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45596', 'Apple Creek', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45597', 'Archbold', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45598', 'Ashland', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45599', 'Ashtabula', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45600', 'Athens', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45601', 'Atwater', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45602', 'Aurora', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45603', 'Austintown', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45604', 'Avon Lake', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45605', 'Barberton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45606', 'Batavia', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45607', 'Bay Village', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45608', 'Beachwood', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45609', 'Beavercreek', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45610', 'Bedford', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45611', 'Bedford Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45612', 'Bellaire', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45613', 'Bellefontaine', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45614', 'Bellevue', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45615', 'Berea', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45616', 'Bexley', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45617', 'Blacklick', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45618', 'Blacklick Estates', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45619', 'Blanchester', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45620', 'Blue Ash', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45621', 'Boardman', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45622', 'Bowling Green', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45623', 'Brecksville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45624', 'Bridgetown North', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45625', 'Bristolville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45626', 'Broadview Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45627', 'Brook Park', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45628', 'Brooklyn', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45629', 'Brunswick', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45630', 'Bryan', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45631', 'Bucyrus', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45632', 'Burton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45633', 'Cambridge', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45634', 'Campbell', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45635', 'Canal Winchester', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45636', 'Canton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45637', 'Carlisle', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45638', 'Celina', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45639', 'Centerville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45640', 'Chagrin Falls', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45641', 'Chardon', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45642', 'Cheshire', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45643', 'Chillicothe', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45644', 'Chippewa Lake', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45645', 'Cincinnati', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45646', 'Circleville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45647', 'Cleveland', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45648', 'Cleveland Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45649', 'Columbus', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45650', 'Conneaut', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45651', 'Coshocton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45652', 'Cuyahoga Falls', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45653', 'Dayton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45654', 'Defiance', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45655', 'Delaware', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45656', 'Dover', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45657', 'Dublin', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45658', 'East Cleveland', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45659', 'East Liverpool', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45660', 'Eastlake', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45661', 'Elyria', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45662', 'Englewood', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45663', 'Euclid', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45664', 'Fairborn', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45665', 'Fairfield', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45666', 'Fairview Park', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45667', 'Findlay', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45668', 'Finneytown', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45669', 'Forest Park', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45670', 'Fort MacKinley', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45671', 'Fostoria', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45672', 'Fremont', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45673', 'Gahanna', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45674', 'Galion', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45675', 'Garfield Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45676', 'Girard', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45677', 'Glenwillow', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45678', 'Green', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45679', 'Greenville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45680', 'Grove City', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45681', 'Hamilton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45682', 'Harrison', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45683', 'Hilliard', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45684', 'Hiram', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45685', 'Holland', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45686', 'Huber Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45687', 'Hudson', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45688', 'Ironton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45689', 'Kent', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45690', 'Kettering', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45691', 'Kidron', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45692', 'Lakewood', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45693', 'Lancaster', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45694', 'Lebanon', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45695', 'Lewis Center', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45696', 'Lima', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45697', 'Lincoln Village', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45698', 'Lorain', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45699', 'Loveland', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45700', 'Lyndhurst', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45701', 'Macedonia', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45702', 'Madison', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45703', 'Maineville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45704', 'Mansfield', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45705', 'Maple Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45706', 'Marietta', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45707', 'Marion', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45708', 'Marysville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45709', 'Mason', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45710', 'Massillon', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45711', 'Maumee', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45712', 'Mayfield Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45713', 'Medina', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45714', 'Mentor', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45715', 'Miamisburg', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45716', 'Middleburg Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45717', 'Middletown', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45718', 'Milford', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45719', 'Millbury', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45720', 'Mineral City', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45721', 'Minster', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45722', 'Mount Gilead', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45723', 'Mount Vernon', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45724', 'Nelsonville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45725', 'New Albany', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45726', 'New Philadelphia', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45727', 'Newark', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45728', 'Niles', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45729', 'North Canton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45730', 'North College Hill', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45731', 'North Lewisburg', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45732', 'North Olmsted', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45733', 'North Ridgeville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45734', 'North Royalton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45735', 'Northbrook', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45736', 'Northfield', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45737', 'Northview', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45738', 'Norton', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45739', 'Norwalk', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45740', 'Norwood', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45741', 'Oberlin', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45742', 'Ohio', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45743', 'Oregon', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45744', 'Overlook-Page Manor', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45745', 'Oxford', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45746', 'Painesville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45747', 'Parma', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45748', 'Parma Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45749', 'Peninsula', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45750', 'Perrysburg', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45751', 'Pickerington', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45752', 'Piqua', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45753', 'Portage Lakes', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45754', 'Portsmouth', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45755', 'Powell', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45756', 'Ravenna', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45757', 'Reading', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45758', 'Reynoldsburg', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45759', 'Rittman', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45760', 'Riverside', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45761', 'Rocky River', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45762', 'Rossford', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45763', 'Salem', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45764', 'Sandusky', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45765', 'Seven Hills', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45766', 'Seville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45767', 'Shaker Heights', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45768', 'Sharonville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45769', 'Sheffield Lake', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45770', 'Shelby', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45771', 'Sidney', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45772', 'Solon', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45773', 'South Euclid', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45774', 'Springdale', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45775', 'Springfield', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45776', 'Steubenville', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45777', 'Stow', '3959', '0.00', '1', '2021-04-06 06:43:51', '2021-04-06 06:43:51', NULL),
('45778', 'Streetsboro', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45779', 'Strongsville', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45780', 'Struthers', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45781', 'Sylvania', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45782', 'Tallmadge', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45783', 'Tiffin', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45784', 'Toledo', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45785', 'Trotwood', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45786', 'Troy', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45787', 'Twinsburg', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45788', 'University Heights', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45789', 'Upper Arlington', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45790', 'Urbana', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45791', 'Valley Glen', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45792', 'Van Wert', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45793', 'Vandalia', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45794', 'Vermilion', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45795', 'Wadsworth', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45796', 'Warren', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45797', 'Warrensville Heights', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45798', 'Washington', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45799', 'Waverly', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45800', 'West Carrollton City', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45801', 'West Chester', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45802', 'Westerville', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45803', 'Westlake', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45804', 'White Oak', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45805', 'Whitehall', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45806', 'Wickliffe', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45807', 'Willoughby', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45808', 'Willowick', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45809', 'Wilmington', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45810', 'Winesburg', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45811', 'Wooster', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45812', 'Worthington', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45813', 'Xenia', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45814', 'Yellow Springs', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45815', 'Youngstown', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45816', 'Zanesville', '3959', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45817', 'Ada', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45818', 'Altus', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45819', 'Ardmore', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45820', 'Bartlesville', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45821', 'Bethany', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45822', 'Bixby', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45823', 'Broken Arrow', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45824', 'Catoosa', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45825', 'Chickasha', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45826', 'Choctaw', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45827', 'Claremore', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45828', 'Del City', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45829', 'Duncan', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45830', 'Durant', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45831', 'Edmond', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45832', 'El Reno', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45833', 'Elk City', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45834', 'Enid', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45835', 'Fort Sill', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45836', 'Grove', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45837', 'Guthrie', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45838', 'Heavener', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45839', 'Hugo', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45840', 'Lawton', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45841', 'Lindsay', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45842', 'MacAlester', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45843', 'Miami', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45844', 'Midwest City', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45845', 'Moore', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45846', 'Morrison', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45847', 'Muskogee', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45848', 'Mustang', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45849', 'Norman', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45850', 'Oklahoma City', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45851', 'Okmulgee', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45852', 'Owasso', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45853', 'Pawnee', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45854', 'Ponca City', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45855', 'Rattan', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45856', 'Sand Springs', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45857', 'Sapulpa', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45858', 'Shawnee', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45859', 'Stillwater', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45860', 'Sulphur', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45861', 'Tahlequah', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45862', 'The Village', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45863', 'Tulsa', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45864', 'Weatherford', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45865', 'Welch', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45866', 'Woodward', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45867', 'Yukon', '3960', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45868', 'Point Edward', '3961', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45869', 'Woodbridge', '3961', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45870', 'Albany', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45871', 'Aloha', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45872', 'Altamont', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45873', 'Arleta', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45874', 'Ashland', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45875', 'Astoria', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45876', 'Baker City', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45877', 'Beaverton', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45878', 'Bend', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45879', 'Canby', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45880', 'Cave Junction', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45881', 'Cedar Hills', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45882', 'Cedar Mill', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45883', 'Central Point', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45884', 'City of The Dalles', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45885', 'Coos Bay', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45886', 'Corvallis', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45887', 'Creswell', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45888', 'Dallas', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45889', 'Donald', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45890', 'Eugene', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45891', 'Forest Grove', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45892', 'Four Corners', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45893', 'Gladstone', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45894', 'Glide', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45895', 'Grants Pass', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45896', 'Gresham', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45897', 'Hayesville', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45898', 'Hazelwood', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45899', 'Hermiston', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45900', 'Hillsboro', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45901', 'Hood River', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45902', 'Hubbard', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45903', 'John Day', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45904', 'Jordan Valley', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45905', 'Keizer', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45906', 'Klamath Falls', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45907', 'La Grande', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45908', 'Lake Oswego', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45909', 'Lebanon', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45910', 'Lincoln', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45911', 'MacMinnville', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45912', 'Medford', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45913', 'Milwaukie', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45914', 'Newberg', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45915', 'Newport', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45916', 'North Bend', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45917', 'OBrien', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45918', 'Oak Grove', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45919', 'Oatfield', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45920', 'Ontario', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45921', 'Oregon City', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45922', 'Pendleton', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45923', 'Portland', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45924', 'Redmond', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45925', 'Riddle', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45926', 'River Road', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45927', 'Roseburg', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45928', 'Salem', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45929', 'Sherwood', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45930', 'Springfield', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45931', 'Sublimity', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45932', 'Sutherlin', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45933', 'Talent', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45934', 'Tigard', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45935', 'Troutdale', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45936', 'Tualatin', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45937', 'Turner', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45938', 'Vaughn', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45939', 'West Linn', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45940', 'Wilsonville', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45941', 'Woodburn', '3962', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45942', 'Akron', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45943', 'Aliquippa', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45944', 'Allentown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45945', 'Altoona', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45946', 'Ambler', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45947', 'Amityville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45948', 'Ardmore', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45949', 'Audubon', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45950', 'Back Mountain', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45951', 'Baldwin', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45952', 'Bangor', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45953', 'Beaver Falls', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45954', 'Belle Vernon', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45955', 'Bensalem', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45956', 'Berwick', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45957', 'Berwyn', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45958', 'Bethel Park', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45959', 'Bethlehem', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45960', 'Bloomsburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45961', 'Boyertown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45962', 'Bradford', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45963', 'Brentwood', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45964', 'Bridgeport', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45965', 'Bristol', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45966', 'Brockway', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45967', 'Broomall', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45968', 'Bushkill', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45969', 'Butler', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45970', 'Camp Hill', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45971', 'Canonsburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45972', 'Carbondale', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45973', 'Carlisle', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45974', 'Carnegie', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45975', 'Carnot Moon', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45976', 'Chambersburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45977', 'Chester', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45978', 'Chester Springs', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45979', 'Clarks Summit', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45980', 'Coatesville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45981', 'Colonial Park', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45982', 'Columbia', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45983', 'Conshohocken', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45984', 'Coraopolis', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45985', 'Corry', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45986', 'Cranberry Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45987', 'Cresco', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45988', 'Croydon', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45989', 'Dallas', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45990', 'Dallastown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45991', 'Darby', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45992', 'Darby Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45993', 'Downingtown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45994', 'Drexel Hill', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45995', 'Duncansville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45996', 'Dunmore', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45997', 'East Norriton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45998', 'East Stroudsburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('45999', 'Easton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46000', 'Economy', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46001', 'Edinboro', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46002', 'Elizabethtown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46003', 'Elkins Park', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46004', 'Emmaus', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46005', 'Ephrata', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46006', 'Erdenheim', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46007', 'Erie', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46008', 'Erwinna', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46009', 'Exton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46010', 'Feasterville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46011', 'Folcroft', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46012', 'Franklin', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46013', 'Franklin Park', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46014', 'Frederick', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46015', 'Fullerton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46016', 'Furlong', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46017', 'Gettysburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46018', 'Gibsonia', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46019', 'Glenside', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46020', 'Gordonville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46021', 'Greensburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46022', 'Gwynedd', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46023', 'Hampden Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46024', 'Hanover', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46025', 'Harleysville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46026', 'Harrisburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46027', 'Harrison Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46028', 'Hatboro', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46029', 'Haverford', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46030', 'Havertown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46031', 'Hazleton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46032', 'Hermitage', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46033', 'Hershey', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46034', 'Hollidaysburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46035', 'Horsham', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46036', 'Huntingdon Valley', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46037', 'Indiana', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46038', 'Irvine', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46039', 'Ivyland', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46040', 'Jeannette', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46041', 'Jefferson', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46042', 'Jenkintown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46043', 'Johnstown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46044', 'Kempton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46045', 'Kennett Square', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46046', 'King of Prussia', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46047', 'Kingston', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46048', 'Kutztown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46049', 'Lafayette Hill', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46050', 'Lancaster', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46051', 'Landenberg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46052', 'Langhorne', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46053', 'Lansdale', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46054', 'Lansdowne', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46055', 'Lansford', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46056', 'Laurys Station', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46057', 'Lebanon', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46058', 'Lehighton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46059', 'Levittown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46060', 'Lincoln University', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46061', 'Linesville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46062', 'Linwood', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46063', 'Lower Burrell', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46064', 'Lower Merion', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46065', 'MacCandless Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46066', 'MacKeesport', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46067', 'Malvern', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46068', 'Meadville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46069', 'Mechanicsburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46070', 'Media', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46071', 'Merion Station', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46072', 'Middleburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46073', 'Mifflinville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46074', 'Milanville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46075', 'Milford', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46076', 'Millersburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46077', 'Monessen', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46078', 'Moscow', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46079', 'Mount Carmel', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46080', 'Mount Lebanon', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46081', 'Mountville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46082', 'Munhall', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46083', 'Municipality of Monroeville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46084', 'Municipality of Murrysville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46085', 'N. Charleroi', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46086', 'Nanticoke', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46087', 'Narberth', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46088', 'Natrona Heights', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46089', 'Nazareth', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46090', 'Nether Providence Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46091', 'New Buffalo', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46092', 'New Carlisle', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46093', 'New Castle', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46094', 'New Cumberland', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46095', 'New Hope', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46096', 'New Kensington', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46097', 'Newton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46098', 'Newtown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46099', 'Newville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46100', 'Norristown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46101', 'North East', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46102', 'North Versailles', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46103', 'North Wales', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46104', 'Oaks', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46105', 'Oil City', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46106', 'Olyphant', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46107', 'Orrtanna', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46108', 'Orwigsburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46109', 'Oxford', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46110', 'Paoli', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46111', 'Parksburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46112', 'Penn Hills', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46113', 'Philadelphia', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46114', 'Phildelphia', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46115', 'Phoenixville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46116', 'Pipersville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46117', 'Pittsburgh', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46118', 'Pleasantville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46119', 'Plum', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46120', 'Pocono Summit', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46121', 'Pottstown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46122', 'Pottsville', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46123', 'Primos', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46124', 'Progress', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46125', 'Prospect', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46126', 'Quakertown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46127', 'Radnor Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46128', 'Reading', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46129', 'Robinson Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46130', 'Roseto', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46131', 'Ross Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46132', 'Royersford', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46133', 'Saint Marys', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46134', 'Sarver', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46135', 'Saxonburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46136', 'Scott Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46137', 'Scranton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46138', 'Seward', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46139', 'Sewickley', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46140', 'Shaler Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46141', 'Sharon', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46142', 'Shermans Dale', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46143', 'Somerset', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46144', 'Souderton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46145', 'South Park Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46146', 'Southampton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46147', 'Springfield', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46148', 'State College', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46149', 'Strasburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46150', 'Sunbury', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46151', 'Susquehanna', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46152', 'Swissvale', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46153', 'Tamaqua', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46154', 'Taylor', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46155', 'Telford', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46156', 'Trevose', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46157', 'Turtle Creek', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46158', 'Tyrone', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46159', 'Uniontown', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46160', 'Upper Darby', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46161', 'Upper Providence Township', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46162', 'Upper Saint Clair', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46163', 'Vanderbilt', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46164', 'Warminster', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46165', 'Warren', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46166', 'Warrendale', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46167', 'Washington', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46168', 'Waterford', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46169', 'Waverly', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46170', 'Wayne', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46171', 'Waynesboro', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46172', 'West Chester', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46173', 'West Mifflin', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46174', 'West Norriton', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46175', 'West Point', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46176', 'Wexford', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46177', 'Whitehall', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46178', 'Wilcox', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46179', 'Wilkes-Barre', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46180', 'Wilkinsburg', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46181', 'Williamsport', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46182', 'Willow Grove', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46183', 'Womelsdorf', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46184', 'Woodlyn', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46185', 'Woolrich', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46186', 'Wyncote', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46187', 'Wyndmoor', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46188', 'Wynnewood', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46189', 'Yardley', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46190', 'Yeadon', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46191', 'York', '3963', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46192', 'Ramey', '3964', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46193', 'Adamsville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46194', 'Alcoa', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46195', 'Antioch', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46196', 'Arlington', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46197', 'Athens', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46198', 'Bartlett', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46199', 'Bell Buckle', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46200', 'Bloomingdale', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46201', 'Blountville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46202', 'Brentwood', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46203', 'Bristol', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46204', 'Brownsville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46205', 'Burns', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46206', 'Chattanooga', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46207', 'Clarksville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46208', 'Cleveland', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46209', 'Collierville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46210', 'Columbia', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46211', 'Cookeville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46212', 'Cornersville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46213', 'Crossville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46214', 'Dayton', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46215', 'Dickson', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46216', 'Dyersburg', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46217', 'East Brainerd', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46218', 'East Ridge', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46219', 'Elizabethton', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46220', 'Farragut', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46221', 'Franklin', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46222', 'Gainesboro', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46223', 'Gallatin', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46224', 'Gatlinburg', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46225', 'Germantown', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46226', 'Goodlettsville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46227', 'Greeneville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46228', 'Hendersonville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46229', 'Hixson', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46230', 'Jackson', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46231', 'Johnson City', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46232', 'Kingsport', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46233', 'Knoxville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46234', 'Kodak', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46235', 'La Vergne', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46236', 'Lawrenceburg', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46237', 'Lebanon', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46238', 'Lenoir City', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46239', 'Lewisburg', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46240', 'MacMinnville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46241', 'Maryville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46242', 'Memphis', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46243', 'Middle Valley', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46244', 'Millington', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46245', 'Morristown', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46246', 'Mulberry', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46247', 'Murfreesboro', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46248', 'Nashville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46249', 'Oak Ridge', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46250', 'Ooltewah', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46251', 'Pinson', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46252', 'Red Bank', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46253', 'Selmer', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46254', 'Sevierville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46255', 'Shelbyville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46256', 'Smithville', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46257', 'Smyrna', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46258', 'Spring City', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46259', 'Springfield', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46260', 'Tazewell', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46261', 'Trenton', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46262', 'Tullahoma', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46263', 'Union City', '3969', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46264', 'Abilene', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46265', 'Addison', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46266', 'Alamo', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46267', 'Aldine', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46268', 'Alice', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46269', 'Allen', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46270', 'Alvin', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46271', 'Amarillo', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46272', 'Anderson Mill', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46273', 'Andrews', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46274', 'Angleton', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46275', 'Argyle', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46276', 'Arlington', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46277', 'Aspermont', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46278', 'Atascocita', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46279', 'Athens', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46280', 'Austin', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46281', 'Austinn', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46282', 'Azle', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46283', 'Balch Springs', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46284', 'Barry', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46285', 'Bay City', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46286', 'Baytown', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46287', 'Beaumont', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46288', 'Bedford', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46289', 'Beeville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46290', 'Bellaire', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46291', 'Belton', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46292', 'Benbrook', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46293', 'Big Spring', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46294', 'Bluff Dale', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46295', 'Boerne', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46296', 'Borger', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46297', 'Breckenridge', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46298', 'Brenham', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46299', 'Brownfield', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46300', 'Brownsville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46301', 'Brownwood', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46302', 'Bryan', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46303', 'Buda', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46304', 'Burkburnett', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46305', 'Burleson', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46306', 'Campbell', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46307', 'Canyon', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46308', 'Canyon Lake', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46309', 'Carrollton', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46310', 'Cat Spring', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46311', 'Cedar Hill', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46312', 'Cedar Park', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46313', 'Celina', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46314', 'Center', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46315', 'Channelview', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46316', 'City of Dallas', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46317', 'Cleburne', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46318', 'Cloverleaf', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46319', 'Clute', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46320', 'College Station', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46321', 'Colleyville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46322', 'Columbus', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46323', 'Comanche', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46324', 'Conroe', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46325', 'Converse', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46326', 'Coppell', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46327', 'Copperas Cove', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46328', 'Corinth', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46329', 'Corpus Christi', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46330', 'Corsicana', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46331', 'Cotulla', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46332', 'Crandall', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46333', 'Cypress', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46334', 'Dallas', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46335', 'Dayton', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46336', 'DeSoto', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46337', 'Deer Park', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46338', 'Del Rio', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46339', 'Denison', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46340', 'Denton', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46341', 'Dickinson', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46342', 'Donna', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46343', 'Dumas', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46344', 'Duncanville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46345', 'Eagle Pass', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46346', 'Edinburg', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46347', 'El Campo', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46348', 'El Paso', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46349', 'Elmendorf', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46350', 'Ennis', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46351', 'Euless', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46352', 'Fairfield', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46353', 'Farmers Branch', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46354', 'Flower Mound', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46355', 'Forest Hill', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46356', 'Forney', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46357', 'Fort Bliss', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46358', 'Fort Hood', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46359', 'Fort Worth', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46360', 'Freeport', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46361', 'Friendswood', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46362', 'Frisco', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46363', 'Gainesville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46364', 'Galena Park', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46365', 'Galveston', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46366', 'Garland', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46367', 'Gatesville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46368', 'Georgetown', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46369', 'Grand Prairie', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46370', 'Grandview', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46371', 'Grapeland', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46372', 'Grapevine', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46373', 'Greenville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46374', 'Gregory', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46375', 'Groves', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46376', 'Haltom City', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46377', 'Harker Heights', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46378', 'Harlingen', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46379', 'Henderson', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46380', 'Hereford', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46381', 'Hewitt', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46382', 'Highland Village', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46383', 'Hillsboro', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46384', 'Houston', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46385', 'Humble', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46386', 'Huntsville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46387', 'Hurst', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46388', 'Ingleside', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46389', 'Irving', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46390', 'Jacksonville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46391', 'Jefferson', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46392', 'Jollyville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46393', 'Justin', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46394', 'Katy', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46395', 'Kaufman', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46396', 'Keller', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46397', 'Kemah', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46398', 'Kemp', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46399', 'Kerrville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46400', 'Kilgore', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46401', 'Killeen', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46402', 'Kingsville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46403', 'Kingwood', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46404', 'La Marque', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46405', 'La Porte', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46406', 'Lackland Air Force Base', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46407', 'Lago Vista', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46408', 'Lake Jackson', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46409', 'Lamesa', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46410', 'Lampasas', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46411', 'Lancaster', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46412', 'Laredo', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46413', 'League City', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46414', 'Leon Valley', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46415', 'Levelland', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46416', 'Lewisville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46417', 'Liberty Hill', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46418', 'Lindsay', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46419', 'Little Elm', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46420', 'Live Oak', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46421', 'Llano', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46422', 'Lockhart', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46423', 'Longview', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46424', 'Lubbock', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46425', 'Lufkin', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46426', 'Lumberton', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46427', 'MacAllen', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46428', 'MacKinney', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46429', 'Magnolia', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46430', 'Malakoff', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46431', 'Mansfield', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46432', 'Marshall', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46433', 'McAllen', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46434', 'McKinney', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46435', 'Medina', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46436', 'Mercedes', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46437', 'Mesquite', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46438', 'Midland', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46439', 'Mineral Wells', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46440', 'Mission', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46441', 'Mission Bend', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46442', 'Missouri City', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46443', 'Montgomery', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46444', 'Mount Pleasant', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46445', 'Murphy', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46446', 'Nacogdoches', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46447', 'Nederland', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46448', 'New Braunfels', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46449', 'New Caney', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46450', 'North Richland Hills', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46451', 'North Zulch', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46452', 'Odessa', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46453', 'Orange', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46454', 'Ovalo', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46455', 'Palestine', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46456', 'Pampa', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46457', 'Paris', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46458', 'Pasadena', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46459', 'Pearland', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46460', 'Pecan Grove', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46461', 'Pecos', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46462', 'Pflugerville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46463', 'Pharr', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46464', 'Pinehurst', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46465', 'Plainview', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46466', 'Plano', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46467', 'Pontotoc', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46468', 'Port Arthur', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46469', 'Port Lavaca', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46470', 'Port Neches', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46471', 'Portland', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46472', 'Pottsboro', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46473', 'Princeton', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46474', 'Richardson', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46475', 'Richmond', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46476', 'Rio Grande City', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46477', 'Robstown', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46478', 'Rockport', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46479', 'Rockwall', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46480', 'Roma', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46481', 'Rosenberg', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46482', 'Round Rock', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46483', 'Rowlett', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46484', 'Royse City', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46485', 'Sachse', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46486', 'Saginaw', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46487', 'San Angelo', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46488', 'San Antonio', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46489', 'San Benito', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46490', 'San Juan', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46491', 'San Marcos', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46492', 'Santa Fe', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46493', 'Schertz', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46494', 'Seabrook', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46495', 'Seagoville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46496', 'Seguin', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46497', 'Sherman', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46498', 'Slaton', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46499', 'Smithville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46500', 'Snyder', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46501', 'Socorro', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46502', 'South Houston', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46503', 'South Padre Island', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46504', 'Southlake', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46505', 'Spring', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46506', 'Stafford', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46507', 'Stephenville', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46508', 'Strawn', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46509', 'Sugar Land', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46510', 'Sulphur Springs', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46511', 'Sweetwater', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46512', 'Taylor', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46513', 'Temple', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46514', 'Terrell', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46515', 'Texarkana', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46516', 'Texas City', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46517', 'The Colony', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46518', 'The Woodlands', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46519', 'Tomball', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46520', 'Tyler', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46521', 'Universal City', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46522', 'University Park', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46523', 'Uvalde', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46524', 'Vernon', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46525', 'Victoria', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46526', 'Vidor', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46527', 'Waco', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46528', 'Watauga', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46529', 'Waxahachie', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46530', 'Weatherford', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46531', 'Weslaco', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46532', 'West Odessa', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46533', 'West University Place', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46534', 'White Settlement', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46535', 'Wichita Falls', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46536', 'Winnsboro', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46537', 'Woodway', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46538', 'Wylie', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46539', 'Yoakum', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46540', 'austinn', '3970', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46541', 'Bedford Kentucky', '3971', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46542', 'Alpine', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46543', 'American Fork', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46544', 'Bluffdale', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46545', 'Bountiful', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46546', 'Brigham City', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46547', 'Canyon Rim', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46548', 'Castle Dale', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46549', 'Cedar City', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46550', 'Centerville', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46551', 'Clearfield', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46552', 'Clinton', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46553', 'Cottonwood Heights', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46554', 'Cottonwood West', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46555', 'Draper', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46556', 'East Millcreek', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46557', 'Farmington', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46558', 'Holladay-Cottonwood', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46559', 'Ivins', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46560', 'Kaysville', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46561', 'Kearns', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46562', 'Layton', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46563', 'Lehi', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46564', 'Logan', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46565', 'Magna', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46566', 'Mapleton', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46567', 'Midvale', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46568', 'Millcreek', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46569', 'Moab', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46570', 'Monticello', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46571', 'Murray', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46572', 'North Logan', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46573', 'North Ogden', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46574', 'Ogden', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46575', 'Orem', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46576', 'Panguitch', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46577', 'Park City', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46578', 'Payson', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46579', 'Pleasant Grove', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46580', 'Provo', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46581', 'Riverton', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46582', 'Roy', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46583', 'Saint George', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46584', 'Salt Lake City', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46585', 'Sandy', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46586', 'Santaquin', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46587', 'South Jordan', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46588', 'South Ogden', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46589', 'South Salt Lake', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46590', 'Spanish Fork', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46591', 'Springville', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46592', 'Taylorsville', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46593', 'Tooele', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46594', 'Tremonton', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46595', 'Union', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46596', 'Washington', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46597', 'West Jordan', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46598', 'West Valley City', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46599', 'Woods Cross', '3972', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46600', 'Barre', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46601', 'Bennington', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46602', 'Brattleboro', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46603', 'Bristol', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46604', 'Burlington', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46605', 'Cabot', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46606', 'Colchester', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46607', 'Danville', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46608', 'Dorset', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46609', 'Dummerston', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46610', 'East Corinth', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46611', 'East Fairfield', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46612', 'East Randolph', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46613', 'Essex', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46614', 'Essex Junction', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46615', 'Grand Isle', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46616', 'Hartford', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46617', 'Jericho', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46618', 'Manchester', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46619', 'Manchester Center', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46620', 'Middlebury', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46621', 'Milton', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46622', 'Montpelier', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46623', 'Putney', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46624', 'Randolph', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46625', 'Rochester', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46626', 'Rutland', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46627', 'Saint Albans', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46628', 'Saint Johnsbury', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46629', 'Saxtons River', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46630', 'South Burlington', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46631', 'South Strafford', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46632', 'Springfield', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46633', 'Townshend', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46634', 'Tunbridge', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46635', 'Van', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46636', 'Vernon', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46637', 'Wallingford', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46638', 'Watisfield', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46639', 'West Brookfield', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46640', 'West Charleston', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46641', 'West Newbury', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46642', 'Williston', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46643', 'Winooski', '3973', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46644', 'Abingdon', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46645', 'Alexandria', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46646', 'Annandale', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46647', 'Arlington', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46648', 'Ashburn', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46649', 'Ashland', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46650', 'Aylett', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46651', 'Bailey\'s Crossroads', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46652', 'Blacksburg', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46653', 'Bland', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46654', 'Bluefield', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46655', 'Bon Air', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46656', 'Bristol', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46657', 'Burke', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46658', 'Cave Spring', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46659', 'Centreville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46660', 'Chantilly', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46661', 'Charlottesville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46662', 'Chesapeake', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46663', 'Chester', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46664', 'Christiansburg', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46665', 'Churchville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46666', 'Clifton', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46667', 'Colonial Heights', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46668', 'Culloden', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46669', 'Dale City', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46670', 'Danville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46671', 'Dublin', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46672', 'Eagle Rock', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46673', 'East Highland Park', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46674', 'Faber', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46675', 'Fairfax', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46676', 'Falls Church', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46677', 'Fishersville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46678', 'Fort Hunt', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46679', 'Fort Valley', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46680', 'Franconia', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46681', 'Franklin', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46682', 'Fredericksburg', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46683', 'Front Royal', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46684', 'Gainesville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46685', 'Glen Allen', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46686', 'Gloucester', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46687', 'Goochland', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46688', 'Great Falls', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46689', 'Groveton', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46690', 'Hampton', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46691', 'Harrisonburg', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46692', 'Henrico', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46693', 'Herndon', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46694', 'Highland Springs', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46695', 'Hollins', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46696', 'Hopewell', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46697', 'Hybla Valley', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46698', 'Idylwood', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46699', 'Irvington', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46700', 'Jamesville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46701', 'Jefferson', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46702', 'Keen Mountain', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46703', 'Keswick', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46704', 'Lake Ridge', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46705', 'Lakeside', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46706', 'Laurel', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46707', 'Leesburg', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46708', 'Lincolnia', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46709', 'Lorton', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46710', 'Lynchburg', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46711', 'MacLean', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46712', 'Madison', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46713', 'Madison Heights', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46714', 'Manassas', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46715', 'Marion', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46716', 'Martinsville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46717', 'Mclean', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46718', 'Mechanicsville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46719', 'Melfa', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46720', 'Midlothian', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46721', 'Montclair', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46722', 'Montross', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46723', 'Mount Vernon', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46724', 'Newington', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46725', 'Newport News', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46726', 'Norfolk', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46727', 'North Springfield', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46728', 'Oakton', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46729', 'Orange', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46730', 'Petersburg', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46731', 'Poquoson', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46732', 'Portsmouth', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46733', 'Radford', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46734', 'Reston', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46735', 'Richmond', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46736', 'Roanoke', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46737', 'Rose Hill', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46738', 'Salem', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46739', 'Seaford', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46740', 'South Boston', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46741', 'Springfield', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46742', 'Stafford', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46743', 'Staffordshire', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46744', 'Staunton', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46745', 'Sterling', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46746', 'Suffolk', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46747', 'Sugarland Run', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46748', 'Tappahannock', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46749', 'Timberlake', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46750', 'Triangle', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46751', 'Tuckahoe', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46752', 'Tysons Corner', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46753', 'Vienna', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46754', 'Virginia Beach', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46755', 'Warrenton', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46756', 'Washington', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46757', 'Waterford', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46758', 'Waynesboro', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46759', 'West Springfield', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46760', 'Williamsburg', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46761', 'Winchester', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46762', 'Wolf Trap', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46763', 'Woodbridge', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46764', 'Wytheville', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46765', 'Yorktown', '3974', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46766', 'Aberdeen', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46767', 'Airway Heights', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46768', 'Alderwood Manor', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46769', 'Anacortes', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46770', 'Arlington', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46771', 'Auburn', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46772', 'Bainbridge Island', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46773', 'Battle Ground', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46774', 'Bellevue', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46775', 'Bellingham', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46776', 'Bingen', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46777', 'Blaine', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46778', 'Bothell', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46779', 'Bremerton', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46780', 'Bryn Mawr-Skyway', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46781', 'Buckley', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46782', 'Burien', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46783', 'Burlington', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46784', 'Camano Island', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46785', 'Camas', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46786', 'Cascade-Fairwood', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46787', 'Centralia', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46788', 'Chehalis', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46789', 'Cheney', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46790', 'Clear Lake', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46791', 'Colbert', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46792', 'Cottage Lake', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46793', 'Covington-Sawyer-Wilderness', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46794', 'Des Moines', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46795', 'Duvall', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46796', 'East Hill-Meridian', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46797', 'East Renton Highlands', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46798', 'East Wenatchee Bench', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46799', 'Eastsound', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46800', 'Eatonville', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46801', 'Edgewood-North Hill', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46802', 'Edmonds', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46803', 'Elk Plain', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46804', 'Ellensburg', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46805', 'Enumclaw', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46806', 'Esperance', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46807', 'Everett', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46808', 'Evergreen', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46809', 'Fairchild', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46810', 'Federal Way', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46811', 'Ferndale', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46812', 'Fircrest', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46813', 'Ford', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46814', 'Fort Lewis', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46815', 'Friday Harbor', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46816', 'Gig Harbor', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46817', 'Graham', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46818', 'Harbour Pointe', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46819', 'Inglewood-Finn Hill', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46820', 'Issaquah', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46821', 'Kelso', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46822', 'Kenmore', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46823', 'Kennewick', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46824', 'Kent', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46825', 'Kingsgate', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46826', 'Kirkland', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46827', 'Lacey', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46828', 'Lake Serene-North Lynnwood', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46829', 'Lakeland North', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46830', 'Lakeland South', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46831', 'Lakewood', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46832', 'Longview', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46833', 'Lynnwood', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46834', 'Martha Lake', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46835', 'Marysville', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46836', 'Mercer Island', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46837', 'Minnehaha', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46838', 'Monroe', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46839', 'Moses Lake', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46840', 'Mossyrock', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46841', 'Mount Vernon', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46842', 'Mountlake Terrace', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46843', 'Mukilteo', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46844', 'Newport Hills', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46845', 'North City-Ridgecrest', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46846', 'North Creek', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46847', 'North Marysville', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46848', 'Oak Harbor', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46849', 'Ocean Shores', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46850', 'Olympia', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46851', 'Opportunity', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46852', 'Orchards South', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46853', 'Orting', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46854', 'Paine Field-Lake Stickney', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46855', 'Parkland', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46856', 'Pasco', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46857', 'Picnic Point-North Lynnwood', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46858', 'Pine Lake', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46859', 'Port Angeles', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46860', 'Port Hadlock', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46861', 'Port Ludlow', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46862', 'Port Orchard', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46863', 'Poulsbo', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46864', 'Pullman', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46865', 'Puyallup', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46866', 'Redmond', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46867', 'Renton', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46868', 'Republic', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46869', 'Richland', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46870', 'Riverton-Boulevard Park', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46871', 'Sahalee', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46872', 'Salmon Creek', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46873', 'Sammamish', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46874', 'SeaTac', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46875', 'Seattle', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46876', 'Seattle Hill-Silver Firs', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46877', 'Sedro Woolley', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46878', 'Shelton', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46879', 'Shoreline', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46880', 'Silverdale', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46881', 'Snohomish', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46882', 'South Hill', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46883', 'South Prairie', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46884', 'South Seattle', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46885', 'Spanaway', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46886', 'Spokane', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46887', 'Sumas', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46888', 'Sumner', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46889', 'Sunnyside', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46890', 'Tacoma', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46891', 'Tukwila', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46892', 'Tumwater', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46893', 'University Place', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46894', 'Vancouver', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46895', 'Vashon', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46896', 'Walla Walla', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46897', 'Washougal', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46898', 'Wenatchee', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46899', 'West Lake Stevens', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46900', 'White Center', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46901', 'White Salmon', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46902', 'White Swan', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46903', 'Woodinville', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46904', 'Yakima', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46905', 'Yelm', '3975', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46906', 'Adams', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46907', 'Allouez', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46908', 'Appleton', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46909', 'Ashland', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46910', 'Ashwaubenon', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46911', 'Baraboo', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46912', 'Beaver Dam', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46913', 'Beloit', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46914', 'Brookfield', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46915', 'Brown Deer', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46916', 'Burlington', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46917', 'Caledonia', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46918', 'Carter', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46919', 'Cedarburg', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46920', 'Chippewa Falls', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46921', 'Cudahy', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46922', 'De Pere', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46923', 'Deer Park', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46924', 'Delafield', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46925', 'Eau Claire', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46926', 'Elkhorn', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46927', 'Elroy', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46928', 'Fitchburg', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46929', 'Fond du Lac', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46930', 'Fort Atkinson', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46931', 'Franklin', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46932', 'Galesville', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46933', 'Germantown', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46934', 'Glen Flora', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46935', 'Glendale', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46936', 'Goodman', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46937', 'Grafton', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46938', 'Green Bay', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46939', 'Greendale', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46940', 'Greenfield', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46941', 'Hartford', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46942', 'Hartland', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46943', 'Howard', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46944', 'Hudson', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46945', 'Janesville', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46946', 'Jefferson', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46947', 'Junction City', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46948', 'Kaukauna', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46949', 'Kenosha', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46950', 'Kiel', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46951', 'Kohler', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46952', 'La Crosse', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46953', 'Little Chute', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46954', 'Madison', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46955', 'Manitowoc', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46956', 'Marinette', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46957', 'Marshfield', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46958', 'Medford', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46959', 'Menasha', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46960', 'Menomonee Falls', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46961', 'Menomonie', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46962', 'Mequon', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46963', 'Merrill', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46964', 'Middleton', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46965', 'Milwaukee', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46966', 'Mineral Point', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46967', 'Monroe', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46968', 'Mount Pleasant', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46969', 'Mukwonago', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46970', 'Muskego', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46971', 'Neenah', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46972', 'New Berlin', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46973', 'New Richmond', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46974', 'Oak Creek', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46975', 'Oconomowoc', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46976', 'Onalaska', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46977', 'Orfordville', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46978', 'Oshkosh', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46979', 'Pigeon Falls', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46980', 'Platteville', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46981', 'Pleasant Prairie', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46982', 'Plover', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46983', 'Port Washington', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46984', 'Portage', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46985', 'Pound', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46986', 'Racine', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46987', 'Reedsburg', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46988', 'Rhinelander', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46989', 'River Falls', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46990', 'Saint Francis', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46991', 'Sheboygan', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46992', 'Shorewood', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46993', 'South Milwaukee', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46994', 'Spring Valley', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46995', 'Stevens Point', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46996', 'Stoughton', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46997', 'Strum', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46998', 'Sturtevant', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('46999', 'Sun Prairie', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47000', 'Superior', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47001', 'Three Lakes', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47002', 'Tomah', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47003', 'Two Rivers', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47004', 'Washington Island', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47005', 'Waterford', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47006', 'Watertown', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47007', 'Waukesha', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47008', 'Waupun', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47009', 'Wausau', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47010', 'Wautoma', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47011', 'Wauwatosa', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47012', 'West Allis', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47013', 'West Bend', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47014', 'Weston', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47015', 'Whitefish Bay', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47016', 'Whitewater', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47017', 'Wisconsin Rapids', '3977', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47018', 'Buffalo', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47019', 'Casper', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47020', 'Cheyenne', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47021', 'Cody', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47022', 'Douglas', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47023', 'Evanston', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47024', 'Gillette', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47025', 'Green River', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47026', 'Jackson', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47027', 'Lander', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47028', 'Laramie', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47029', 'Powell', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47030', 'Rawlins', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47031', 'Riverton', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47032', 'Rock Springs', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47033', 'Sheridan', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47034', 'Torrington', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47035', 'Worland', '3978', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47036', 'Artigas', '3980', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47037', 'Bella Union', '3980', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47038', 'Camino Maldonado', '3981', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47039', 'Canelones', '3981', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47040', 'Ciudad de la Costa', '3981', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47041', 'Juan Antonio Artigas', '3981', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47042', 'Las Piedras', '3981', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47043', 'Pando', '3981', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47044', 'Paso de Carrasco', '3981', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47045', 'Progreso', '3981', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47046', 'Santa Lucia', '3981', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47047', 'Carmelo', '3983', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47048', 'Colonia', '3983', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47049', 'Juan Lacaze', '3983', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47050', 'Nueva Helvecia', '3983', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47051', 'Durazno', '3984', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47052', 'Florida', '3985', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47053', 'Trinidad', '3986', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47054', 'Minas', '3987', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47055', 'Maldonado', '3988', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47056', 'San Carlos', '3988', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47057', 'La Paz', '3989', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47058', 'Montevideo', '3989', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47059', 'Paysandu', '3990', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47060', 'Rivera', '3992', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47061', 'Chuy', '3993', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47062', 'Rocha', '3993', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47063', 'Salto', '3994', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47064', 'Dolores', '3996', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47065', 'Mercedes', '3996', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47066', 'Paso de los Toros', '3997', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47067', 'Tacuarembo', '3997', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47068', 'Ahunabayev', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47069', 'Andijon', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47070', 'Asaka', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47071', 'Boz', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47072', 'Hakkulobod', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47073', 'Hocaobod', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47074', 'Honobod', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47075', 'Ilyichevsk', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47076', 'Karabagis', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47077', 'Kurgontepa', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47078', 'Marhomat', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47079', 'Pahtaobod', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47080', 'Paytug', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47081', 'Sahrihan', '3999', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47082', 'Buhoro', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47083', 'Cangeldi', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47084', 'Galaosiye', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47085', 'Gazli', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47086', 'Gijduvon', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47087', 'Kizilravbe', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47088', 'Kogon', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47089', 'Korakul', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47090', 'Korovulbazar', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47091', 'Kukca', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47092', 'Olot', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47093', 'Oyokkuduk', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47094', 'Romitan', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47095', 'Safirkon', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47096', 'Vobkent', '4000', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47097', 'Cizah', '4002', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47098', 'Dustlik', '4002', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47099', 'Gagarin', '4002', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47100', 'Gallaorol', '4002', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47101', 'Marcanbulok', '4002', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47102', 'Pahtakor', '4002', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47103', 'Ulyanovo', '4002', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47104', 'Zomin', '4002', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47105', 'Altyarik', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47106', 'Avval', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47107', 'Besarik', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47108', 'Fargona', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47109', 'Hamza', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47110', 'Kirgili', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47111', 'Kukon', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47112', 'Kuva', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47113', 'Kuvasoy', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47114', 'Margilon', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47115', 'Rapkan', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47116', 'Riston', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47117', 'Toslok', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47118', 'Yaypan', '4003', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47119', 'Drujba', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47120', 'Gurlan', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47121', 'Hazorasp', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47122', 'Heva', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47123', 'Honko', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47124', 'Kuskupir', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47125', 'Mesekli', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47126', 'Sovot', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47127', 'Turpokkala', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47128', 'Urgenc', '4004', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47129', 'Beskent', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47130', 'Ceynau', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47131', 'Cirakci', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47132', 'Dehkanobod', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47133', 'Dinau', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47134', 'Guzor', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47135', 'Kallig', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47136', 'Kamasi', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47137', 'Karabag', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47138', 'Karsi', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47139', 'Kasbi', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47140', 'Kitob', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47141', 'Koson', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47142', 'Madaniyat', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47143', 'Maydayap', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47144', 'Maymanak', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47145', 'Muborak', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47146', 'Oktyabrskiy', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47147', 'Sahrisabz', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47148', 'Talimarcon', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47149', 'Urtacim', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47150', 'Yakkabog', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47151', 'Yaninison', '4005', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47152', 'Beruni', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47153', 'Buston', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47154', 'Cimboy', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47155', 'Halkobod', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47156', 'Hucayli', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47157', 'Karauzyak', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47158', 'Kegayli', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47159', 'Kizketken', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47160', 'Kozokdaryo', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47161', 'Kungirot', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47162', 'Mangit', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47163', 'Muynok', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47164', 'Nukus', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47165', 'Tahiatos', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47166', 'Tahtakupir', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47167', 'Turtkul', '4006', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47168', 'Aytim', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47169', 'Besbulok', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47170', 'Cartak', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47171', 'Cingeldi', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47172', 'Cust', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47173', 'Gozgon', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47174', 'Iskavat', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47175', 'Kalkuduk', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47176', 'Konimeh', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47177', 'Kosonsoy', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47178', 'Minbulok', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47179', 'Namangan', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47180', 'Nurota', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47181', 'Pop', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47182', 'Tomdibulok', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47183', 'Tosbulok', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47184', 'Turakurgon', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47185', 'Uckurgon', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47186', 'Unhoyat', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47187', 'Uyci', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47188', 'Uzunkuduk', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47189', 'Yanikurgon', '4007', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47190', 'Karmana', '4008', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47191', 'Kiziltepa', '4008', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47192', 'Navoi', '4008', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47193', 'Uckuduk', '4008', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47194', 'Zarafson', '4008', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47195', 'Bulungur', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47196', 'Camboy', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47197', 'Carhin', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47198', 'Celak', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47199', 'Cuma', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47200', 'Dahbed', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47201', 'Istihon', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47202', 'Kattakurgon', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47203', 'Kusrobod', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47204', 'Nurobod', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47205', 'Oktos', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47206', 'Paysanba', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47207', 'Samarkand', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47208', 'Superfosfatniy', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47209', 'Urgut', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47210', 'Yanirobod', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47211', 'Ziadin', '4009', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47212', 'Baht', '4010', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47213', 'Guliston', '4010', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47214', 'Hovos', '4010', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47215', 'Sirdare', '4010', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47216', 'Sirin', '4010', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47217', 'Yaniyer', '4010', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47218', 'Akkurgon', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47219', 'Boysun', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47220', 'Carkurgon', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47221', 'Denau', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47222', 'Kumkurgon', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47223', 'Paskurd', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47224', 'Sargun', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47225', 'Sariasiya', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47226', 'Serobod', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47227', 'Surci', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47228', 'Termiz', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47229', 'Zan', '4011', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47230', 'Almazar', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47231', 'Angren', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47232', 'Bekobod', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47233', 'Bektemir', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47234', 'Buka', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47235', 'Cinoz', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47236', 'Circik', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47237', 'Gazalkent', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47238', 'Iskandar', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47239', 'Keles', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47240', 'Kibray', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47241', 'Krasnogorskiy', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47242', 'Kuyluk', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47243', 'Ohangaron', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47244', 'Olmalik', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47245', 'Parkent', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47246', 'Pskent', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47247', 'Salar', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47248', 'Soldatski', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47249', 'Tashkent', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47250', 'Toskent', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47251', 'Tuytepa', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47252', 'Urtaaul', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47253', 'Yaniobod', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47254', 'Yaniyul', '4012', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47255', 'Lakatoro', '4013', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47256', 'Norsup', '4013', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47257', 'Longana', '4014', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47258', 'Luganville', '4015', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47259', 'Port Olry', '4015', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47260', 'Vila', '4016', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47261', 'Isangel', '4017', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47262', 'Sola', '4018', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47263', 'Puerto Ayacucho', '4020', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47264', 'Anaco', '4021', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47265', 'Barcelona', '4021', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47266', 'Cantaura', '4021', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47267', 'El Tigre', '4021', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47268', 'Puerto la Cruz', '4021', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47269', 'San Jose de Guanipa', '4021', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47270', 'Guasdualito', '4022', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47271', 'San Fernando', '4022', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47272', 'Cagua', '4023', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47273', 'El Limon', '4023', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47274', 'La Victoria', '4023', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47275', 'Las Teyerias', '4023', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47276', 'Maracay', '4023', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47277', 'Palo Negro', '4023', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47278', 'San Mateo', '4023', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47279', 'Turmero', '4023', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47280', 'Villa de Cura', '4023', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47281', 'Barinas', '4024', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47282', 'Barinitas', '4024', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47283', 'Ciudad Bolivar', '4025', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47284', 'Ciudad Guayana', '4025', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47285', 'Upata', '4025', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47286', 'Goaigoaza', '4026', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47287', 'Guacara', '4026', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47288', 'Guigue', '4026', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47289', 'Mariara', '4026', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47290', 'Moron', '4026', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47291', 'Puerto Cabello', '4026', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47292', 'San Joaquin', '4026', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47293', 'Tacarigua', '4026', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47294', 'Valencia', '4026', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47295', 'San Carlos', '4027', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47296', 'Tinaquillo', '4027', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47297', 'Coro', '4030', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47298', 'Punta Cardon', '4030', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47299', 'Punto Fijo', '4030', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47300', 'Altagracia de Orituco', '4031', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47301', 'Calabozo', '4031', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47302', 'San Juan de los Morros', '4031', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47303', 'Valle de la Pascua', '4031', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47304', 'Zaraza', '4031', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47305', 'Barquisimeto', '4032', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47306', 'Cabudare', '4032', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47307', 'Carora', '4032', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47308', 'El Tocuyo', '4032', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47309', 'Los Rastrojos', '4032', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47310', 'Quibor', '4032', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47311', 'Ejido', '4033', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47312', 'El Vigia', '4033', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47313', 'Merida', '4033', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47314', 'Baruta', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47315', 'Carrizal', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47316', 'Catia La Mar', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47317', 'Caucaguita', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47318', 'Chacao', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47319', 'Charallave', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47320', 'Cua', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47321', 'El Cafetal', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47322', 'El Hatillo', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47323', 'Filas de Mariche', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47324', 'Guarenas', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47325', 'Guatire', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47326', 'La Dolorita', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47327', 'Los Dos Caminos', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47328', 'Los Teques', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47329', 'Ocumare del Tuy', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47330', 'Petare', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47331', 'San Antonio de los Altos', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47332', 'Santa Teresa', '4034', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47333', 'Maturin', '4035', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47334', 'Acarigua', '4037', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47335', 'Araure', '4037', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47336', 'Guanare', '4037', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47337', 'Villa Bruzual', '4037', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47338', 'Carupano', '4038', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47339', 'Cumana', '4038', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47340', 'La Fria', '4039', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47341', 'Rubio', '4039', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47342', 'San Antonio del Tachira', '4039', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47343', 'San Cristobal', '4039', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47344', 'San Juan de Colon', '4039', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47345', 'Tariba', '4039', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47346', 'Trujillo', '4040', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47347', 'Valera', '4040', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47348', 'Caraballeda', '4041', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47349', 'La Guaira', '4041', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47350', 'Maiquetia', '4041', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47351', 'Chivacoa', '4042', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47352', 'Nirgua', '4042', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47353', 'San Felipe', '4042', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47354', 'Yaritagua', '4042', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47355', 'Bachaquero', '4043', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47356', 'Cabimas', '4043', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47357', 'Ciudad Ojeda', '4043', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47358', 'Lagunillas', '4043', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47359', 'Machiques', '4043', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47360', 'Maracaibo', '4043', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47361', 'San Carlos del Zulia', '4043', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47362', 'Santa Rita', '4043', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47363', 'Villa del Rosario', '4043', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47364', 'Ha noi', '4053', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47365', 'Hoang Mai', '4053', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47366', 'Lang Ha', '4053', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47367', 'Settlement', '4064', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47368', 'East End-Long Look', '4066', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47369', 'Road Town', '4066', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47370', 'West End', '4066', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47371', 'Kolia', '4070', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47372', 'Mala\'e', '4070', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47373', 'Ono', '4070', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47374', 'Poi', '4070', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47375', 'Tamana', '4070', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47376', 'Taoa', '4070', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47377', 'Tuatafa', '4070', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47378', 'Vele', '4070', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47379', 'Fiua', '4071', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47380', 'Leava', '4071', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47381', 'Nuku', '4071', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47382', 'Tavai', '4071', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47383', 'Toloke', '4071', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47384', 'Vaisei', '4071', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47385', 'Ahoa', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47386', 'Aka Aka', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47387', 'Alele', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47388', 'Falaleu', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47389', 'Gahi', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47390', 'Haafuasia', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47391', 'Haatofo', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47392', 'Halalo', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47393', 'Kolopopo', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47394', 'Lavegahau', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47395', 'Liku', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47396', 'Mala\'e', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47397', 'Malaefoou', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47398', 'Mata\'Utu', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47399', 'Teesi', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47400', 'Tepa', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47401', 'Utuofa', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47402', 'Vailala', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47403', 'Vaimalau', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47404', 'Vaitupu', '4072', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47405', 'ad-Dakhlah', '4074', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47406', 'al-\'Ayun', '4075', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47407', 'as-Samarah', '4076', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47408', '\'Adan', '4077', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47409', 'Aden', '4077', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47410', 'Ahwar', '4078', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47411', 'Ja\'ar', '4078', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47412', 'Zinjibar', '4078', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47413', 'Dhamar', '4079', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47414', 'Shaqra\'', '4080', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47415', 'al-Mukalla', '4080', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47416', 'ash-Shahir', '4080', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47417', 'Hajjah', '4081', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47418', 'Hodaidah', '4082', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47419', 'Dhi Sufal', '4083', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47420', 'Ibb', '4083', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47421', 'Jiblah', '4083', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47422', 'Qa\'tabah', '4083', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47423', 'Yarim', '4083', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47424', 'Tuban', '4084', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47425', 'Ma\'rib', '4085', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47426', 'Sa\'dah', '4087', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47427', '\'Amran', '4088', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47428', 'Sahar', '4088', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47429', 'Sanaa', '4088', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47430', 'Sayyan', '4088', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47431', '\'Ataq', '4089', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47432', 'Habban', '4089', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47433', 'Taiz', '4089', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47434', 'Ta\'izz', '4090', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47435', 'al-Mukha', '4090', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47436', 'Raydah', '4091', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47437', 'al-Bayda', '4091', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47438', 'Bajil', '4092', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47439', 'Bayt-al-Faqih', '4092', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47440', 'Zabid', '4092', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47441', 'al-Hudaydah', '4092', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47442', 'al-Marawi\'ah', '4092', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47443', 'az-Zaydiyah', '4092', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47444', 'al-Hazm', '4093', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47445', 'al-Ghaydah', '4094', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47446', 'Mahwit', '4095', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47447', 'Nikshic', '4098', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47448', 'Pljevlja', '4098', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47449', 'Podgorica', '4098', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47450', 'Ulcinj', '4098', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47451', 'Gjakove', '4100', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47452', 'Novi Banovci', '4100', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47453', 'Senta', '4100', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47454', 'Serbia', '4100', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47455', 'Uzice', '4100', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47456', 'Ada', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47457', 'Alibunar', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47458', 'Apatin', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47459', 'Bach', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47460', 'Bachka Palanka', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47461', 'Bachka Petrovac', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47462', 'Bachka Topola', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47463', 'Bachki Jarak', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47464', 'Banacki Karlovac', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47465', 'Bechej', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47466', 'Bela Crkva', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47467', 'Beochin', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47468', 'Choka', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47469', 'Churug', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47470', 'Crvenka', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47471', 'Futog', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47472', 'Indhija', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47473', 'Irig', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47474', 'Kac', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47475', 'Kanjizha', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47476', 'Kikinda', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47477', 'Kovachica', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47478', 'Kovin', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47479', 'Kula', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47480', 'Mol', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47481', 'Nova Pazova', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47482', 'Novi Bechej', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47483', 'Novi Knezhevac', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47484', 'Novi Sad', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47485', 'Odzhaci', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47486', 'Pacarak', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47487', 'Palic', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47488', 'Panchevo', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47489', 'Petrovaradin', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47490', 'Ruma', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47491', 'Senta', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47492', 'Shid', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47493', 'Sivac', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47494', 'Sombor', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47495', 'Srbobran', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47496', 'Sremska Kamenica', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47497', 'Sremska Mitrovica', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47498', 'Sremski Karlovci', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47499', 'Stara Pazova', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47500', 'Subotica', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47501', 'Temerin', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47502', 'Veternik', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47503', 'Vrbas', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47504', 'Vrshac', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47505', 'Zhabalj', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47506', 'Zhitishte', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47507', 'Zrenjanin', '4101', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47508', 'Kabwe', '4102', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47509', 'Kapiri Mposhi', '4102', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47510', 'Mkushi', '4102', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47511', 'Mumbwa', '4102', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47512', 'Serenje', '4102', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47513', 'Chambishi', '4103', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47514', 'Chililabombwe', '4103', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47515', 'Chingola', '4103', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47516', 'Kalulushi', '4103', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47517', 'Kitwe', '4103', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47518', 'Luanshya', '4103', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47519', 'Mpongwe', '4103', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47520', 'Mufulira', '4103', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47521', 'Ndola', '4103', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47522', 'Chipata', '4104', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47523', 'Katete', '4104', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47524', 'Lundazi', '4104', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47525', 'Petauke', '4104', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47526', 'Mansa', '4105', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47527', 'Mwansabombwe', '4105', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47528', 'Nchelenge', '4105', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47529', 'Samfya', '4105', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47530', 'Chilanga', '4106', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47531', 'Kafue', '4106', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47532', 'Lusaka', '4106', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47533', 'Kalengwa', '4107', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47534', 'Kansanshi', '4107', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47535', 'Mwinilunga', '4107', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47536', 'Solwezi', '4107', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47537', 'Zambezi', '4107', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47538', 'Chinsali', '4108', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47539', 'Isoka', '4108', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47540', 'Kasama', '4108', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47541', 'Mbala', '4108', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47542', 'Mpika', '4108', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47543', 'Choma', '4109', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47544', 'Itezhi-Tezhi', '4109', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47545', 'Kalomo', '4109', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47546', 'Livingstone', '4109', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47547', 'Maamba', '4109', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47548', 'Mazabuka', '4109', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47549', 'Monze', '4109', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47550', 'Nakambala', '4109', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47551', 'Siavonga', '4109', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47552', 'Kalabo', '4110', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47553', 'Kaoma', '4110', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47554', 'Limulunga', '4110', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47555', 'Mongu', '4110', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47556', 'Senanga', '4110', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47557', 'Sesheke', '4110', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47558', 'Bulawayo', '4111', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47559', 'Chitungwiza', '4112', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47560', 'Harare', '4112', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47561', 'Chimanimani', '4113', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47562', 'Chipinge', '4113', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47563', 'Mutare', '4113', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47564', 'Nyanga', '4113', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47565', 'Rusape', '4113', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47566', 'Sakubva', '4113', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47567', 'Chiredzi', '4117', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47568', 'Gaths', '4117', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47569', 'Masvingo', '4117', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47570', 'Chivhu', '4120', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47571', 'Gweru', '4120', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47572', 'Kwekwe', '4120', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47573', 'Mvuma', '4120', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47574', 'Redcliffe', '4120', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47575', 'Shurugwi', '4120', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47576', 'Zvishavane', '4120', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47577', 'Manchester', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47578', 'Nashua', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47579', 'Concord', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47580', 'Derry', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47581', 'Dover', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47582', 'Rochester', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47583', 'Salem', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47584', 'Merrimack', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47585', 'Hudson', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47586', 'Londonderry', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47587', 'Keene', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47588', 'Bedford', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47589', 'Portsmouth', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47590', 'Goffstown', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47591', 'Laconia', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47592', 'Hampton', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47593', 'Milford', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47594', 'Durham', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47595', 'Exeter', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47596', 'Windham', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47597', 'Hooksett', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47598', 'Claremont', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47599', 'Lebanon', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47600', 'Pelham', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47601', 'Somersworth', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47602', 'Hanover', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47603', 'Amherst', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47604', 'Raymond', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47605', 'Conway', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47606', 'Berlin', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47607', 'Newmarket', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47608', 'Weare', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47609', 'Seabrook', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47610', 'Barrington', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47611', 'Hampstead', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47612', 'Franklin', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47613', 'Litchfield', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47614', 'Hollis', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47615', 'Plaistow', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47616', 'Bow', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47617', 'Belmont', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47618', 'Stratham', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47619', 'Swanzey', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47620', 'Gilford', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47621', 'Pembroke', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47622', 'Plymouth', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47623', 'Farmington', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47624', 'Atkinson', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47625', 'Newport', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47626', 'Epping', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47627', 'Peterborough', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47628', 'Wolfeboro', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47629', 'Meredith', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47630', 'Kingston', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47631', 'Rindge', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47632', 'Hillsborough', '3952', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47633', 'Newark', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47634', 'Jersey City', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47635', 'Paterson', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47636', 'Elizabeth', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47637', 'Edison', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47638', 'Woodbridge', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47639', 'Lakewood', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47640', 'Toms River', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47641', 'Hamilton', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47642', 'Trenton', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47643', 'Clifton', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47644', 'Camden', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47645', 'Brick', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47646', 'Cherry Hill', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47647', 'Passaic', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47648', 'Middletown', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47649', 'Union City', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47650', 'Old Bridge', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47651', 'Gloucester Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47652', 'East Orange', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47653', 'Bayonne', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47654', 'Franklin', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47655', 'North Bergen', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47656', 'Vineland', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47657', 'Union', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47658', 'Piscataway', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47659', 'New Brunswick', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47660', 'Jackson', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47661', 'Wayne', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47662', 'Irvington', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47663', 'Parsippany-Troy Hills', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47664', 'Howell', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47665', 'Perth Amboy', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47666', 'Hoboken', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47667', 'Plainfield', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47668', 'West New York', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47669', 'Washington Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47670', 'East Brunswick', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47671', 'Bloomfield', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47672', 'West Orange', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47673', 'Evesham', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47674', 'Bridgewater', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47675', 'South Brunswick', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47676', 'Egg Harbor', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47677', 'Manchester', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47678', 'Hackensack', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47679', 'Sayreville', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47680', 'Mount Laurel', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47681', 'Berkeley', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47682', 'North Brunswick', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47683', 'Kearny', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47684', 'Linden', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47685', 'Marlboro', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47686', 'Teaneck', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47687', 'Atlantic City', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47688', 'Winslow', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47689', 'Monroe', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47690', 'Manalapan', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47691', 'Hillsborough', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47692', 'Montclair', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47693', 'Galloway', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47694', 'Freehold Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47695', 'Monroe Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47696', 'Belleville', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47697', 'Pennsauken', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47698', 'Ewing', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47699', 'Fort Lee', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47700', 'Lawrence', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47701', 'Fair Lawn', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47702', 'Willingboro', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47703', 'Long Branch', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47704', 'Deptford', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47705', 'Garfield', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47706', 'Westfield', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47707', 'City of Orange', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47708', 'Livingston', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47709', 'Voorhees', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47710', 'Princeton', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47711', 'Millville', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47712', 'Nutley', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47713', 'Mount Olive', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47714', 'Neptune', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47715', 'Pemberton Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47716', 'Lacey', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47717', 'Rahway', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47718', 'Ocean Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47719', 'East Windsor', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47720', 'West Windsor', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47721', 'Englewood', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47722', 'Bergenfield', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47723', 'Bernards Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47724', 'Stafford Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47725', 'Hamilton Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47726', 'Paramus', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47727', 'Wall', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47728', 'Mahwah', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47729', 'West Milford', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47730', 'Randolph', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47731', 'Bridgeton', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47732', 'Ridgewood', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47733', 'Rockaway Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47734', 'Lodi', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47735', 'Vernon', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47736', 'Maplewood', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47737', 'Cliffside Park', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47738', 'Scotch Plains', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47739', 'South Plainfield', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47740', 'Roxbury', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47741', 'Medford', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47742', 'Plainsboro', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47743', 'Lower Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47744', 'Carteret', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47745', 'Cranford', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47746', 'Burlington Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47747', 'Morris Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47748', 'Montgomery', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47749', 'Raritan Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47750', 'North Plainfield', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47751', 'West Deptford', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47752', 'Montville', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47753', 'Summit', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47754', 'Hillside', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47755', 'Jefferson', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47756', 'Roselle', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47757', 'Barnegat', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47758', 'Moorestown', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47759', 'Lyndhurst', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47760', 'Hazlet', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47761', 'Pleasantville', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47762', 'Millburn', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47763', 'Little Egg Harbor', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47764', 'Sparta', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47765', 'Palisades Park', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47766', 'Elmwood Park', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47767', 'Maple Shade', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47768', 'Middle Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47769', 'Hawthorne', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47770', 'Glassboro', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47771', 'Washington Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47772', 'Morristown', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47773', 'Point Pleasant', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47774', 'Aberdeen', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47775', 'Dover', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47776', 'Rutherford', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47777', 'Tinton Falls', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47778', 'Lindenwold', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47779', 'Dumont', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47780', 'Hopewell Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47781', 'Delran', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47782', 'Franklin Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47783', 'Holmdel', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47784', 'Wyckoff', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47785', 'Denville', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47786', 'New Milford', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47787', 'Secaucus', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47788', 'South Orange Village', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47789', 'Readington', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47790', 'Asbury Park', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47791', 'South River', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47792', 'Madison', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47793', 'Springfield', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47794', 'Cinnaminson', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47795', 'Pequannock', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47796', 'North Arlington', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47797', 'Warren', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47798', 'Mantua', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47799', 'Hopatcong', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47800', 'Phillipsburg', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47801', 'Hammonton', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47802', 'Clark', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47803', 'Haddon Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47804', 'Tenafly', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47805', 'Ramsey', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47806', 'Branchburg', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47807', 'Little Falls', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47808', 'Highland Park', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47809', 'Collingswood', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47810', 'Fairview', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47811', 'Hanover', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47812', 'Saddle Brook', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47813', 'Robbinsville', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47814', 'Middlesex', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47815', 'Harrison', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47816', 'Metuchen', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47817', 'Clinton Township', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47818', 'Pennsville', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47819', 'Verona', '3953', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47820', 'Albuquerque', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47821', 'Las Cruces', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47822', 'Rio Rancho', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47823', 'Santa Fe', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47824', 'Roswell', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47825', 'Farmington', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47826', 'South Valley', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47827', 'Clovis', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47828', 'Hobbs', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47829', 'Alamogordo', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47830', 'Carlsbad', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47831', 'Gallup', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47832', 'Deming', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47833', 'Los Lunas', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47834', 'Chaparral', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47835', 'Sunland Park', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47836', 'Las Vegas', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47837', 'Portales', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47838', 'Los Alamos', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47839', 'North Valley', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47840', 'Artesia', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47841', 'Lovington', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47842', 'Silver City', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47843', 'Espanola', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47844', 'Anthony', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47845', 'Grants', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47846', 'Socorro', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47847', 'Corrales', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47848', 'Bernalillo', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47849', 'Shiprock', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47850', 'Bloomfield', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47851', 'Ruidoso', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47852', 'Kirtland', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47853', 'Belen', '3955', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47854', 'Airmont', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47855', 'Albany', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47856', 'Alden', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47857', 'Amherst', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47858', 'Amityville', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47859', 'Amsterdam', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47860', 'Arcadia', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47861', 'Auburn', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47862', 'Aurora', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47863', 'Babylon', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47864', 'Baldwinsville', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47865', 'Ballston', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47866', 'Batavia', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47867', 'Bath', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47868', 'Beacon', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47869', 'Bedford', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47870', 'Beekman', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47871', 'Bethlehem', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47872', 'Binghamton', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47873', 'Blooming Grove', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47874', 'Briarcliff Manor', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47875', 'Brighton', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47876', 'Brockport', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47877', 'Brookhaven', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47878', 'Brunswick', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47879', 'Buffalo', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47880', 'Camillus', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47881', 'Canandaigua', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47882', 'Canton', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47883', 'Carmel', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47884', 'Catskill', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47885', 'Cheektowaga', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47886', 'Chenango', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47887', 'Chester', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47888', 'Chestnut Ridge', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47889', 'Chili', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47890', 'Cicero', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47891', 'Clarence', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47892', 'Clarkstown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47893', 'Clay', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47894', 'Clifton Park', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47895', 'Cohoes', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47896', 'Colonie', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47897', 'Corning', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47898', 'Cornwall', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47899', 'Cortland', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47900', 'Cortlandt', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47901', 'Crawford', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47902', 'Croton-on-Hudson', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47903', 'Depew', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47904', 'DeWitt (De Witt)', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47905', 'Dobbs Ferry', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47906', 'Dryden', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47907', 'Dunkirk', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47908', 'East Fishkill', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47909', 'East Greenbush', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47910', 'East Hampton', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47911', 'East Hills', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47912', 'East Rockaway', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47913', 'Eastchester', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47914', 'Elma', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47915', 'Elmira', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47916', 'Endicott', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47917', 'Esopus', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47918', 'Evans', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47919', 'Fallsburg', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47920', 'Farmingdale', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47921', 'Farmington', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47922', 'Fishkill', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47923', 'Floral Park', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47924', 'Fredonia', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47925', 'Freeport', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47926', 'Fulton', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47927', 'Garden City', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47928', 'Gates', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47929', 'Geddes', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47930', 'Geneseo', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47931', 'Geneva', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47932', 'German Flatts', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47933', 'Glen Cove', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47934', 'Glens Falls', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47935', 'Glenville', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47936', 'Gloversville', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47937', 'Goshen', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47938', 'Grand Island', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47939', 'Great Neck', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47940', 'Greece', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47941', 'Greenburgh', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47942', 'Guilderland', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47943', 'Halfmoon', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47944', 'Hamburg', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47945', 'Hamlin', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47946', 'Harrison', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47947', 'Hastings', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47948', 'Hastings-on-Hudson', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47949', 'Haverstraw', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47950', 'Hempstead', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47951', 'Henrietta', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47952', 'Herkimer', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47953', 'Highlands', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47954', 'Hornell', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47955', 'Horseheads', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47956', 'Hudson', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47957', 'Hudson Falls', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47958', 'Huntington', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47959', 'Hyde Park', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47960', 'Ilion', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47961', 'Irondequoit', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47962', 'Islip', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47963', 'Ithaca', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47964', 'Jamestown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47965', 'Johnson City', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47966', 'Johnstown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47967', 'Kenmore', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47968', 'Kent', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47969', 'Kingsbury', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47970', 'Kingston', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47971', 'Kirkland', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47972', 'Kiryas Joel', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47973', 'Lackawanna', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47974', 'LaGrange (La Grange)', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47975', 'Lake Grove', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47976', 'Lancaster', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47977', 'Lansing', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47978', 'Le Ray', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47979', 'Lenox', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47980', 'Lewisboro', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47981', 'Lewiston', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47982', 'Liberty', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47983', 'Lindenhurst', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47984', 'Little Falls', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47985', 'Lloyd', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47986', 'Lockport', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47987', 'Long Beach', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47988', 'Lynbrook', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47989', 'Lysander', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47990', 'Macedon', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47991', 'Malone', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47992', 'Malta', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47993', 'Malverne', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47994', 'Mamakating', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47995', 'Mamaroneck', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47996', 'Manchester', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47997', 'Manlius', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47998', 'Massapequa Park', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('47999', 'Massena', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48000', 'Mastic Beach', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48001', 'Mechanicville', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48002', 'Mendon', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48003', 'Middletown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48004', 'Milton', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48005', 'Mineola', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48006', 'Monroe', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48007', 'Montgomery', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48008', 'Moreau', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48009', 'Mount Kisco', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48010', 'Mount Pleasant', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48011', 'Mount Vernon', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48012', 'New Castle', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48013', 'New Hartford', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48014', 'New Hyde Park', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48015', 'New Paltz', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48016', 'New Rochelle', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48017', 'New Square', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48018', 'New Windsor', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48019', 'New York', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48020', 'Newark', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48021', 'Newburgh', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48022', 'Newfane', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48023', 'Niagara Falls', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48024', 'Niskayuna', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48025', 'North Castle', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48026', 'North Greenbush', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48027', 'North Hempstead', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48028', 'North Syracuse', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48029', 'North Tonawanda', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48030', 'Northport', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48031', 'Norwich', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48032', 'Nyack', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48033', 'Ogden', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48034', 'Ogdensburg', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48035', 'Olean', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48036', 'Oneida', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48037', 'Oneonta', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48038', 'Onondaga', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48039', 'Ontario', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48040', 'Orangetown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48041', 'Orchard Park', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48042', 'Ossining', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48043', 'Oswego', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48044', 'Owego', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48045', 'Oyster Bay', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48046', 'Parma', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48047', 'Patchogue', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48048', 'Patterson', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48049', 'Peekskill', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48050', 'Pelham', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48051', 'Penfield', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48052', 'Perinton', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48053', 'Philipstown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48054', 'Pittsford', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48055', 'Plattekill', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48056', 'Plattsburgh', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48057', 'Pleasant Valley', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48058', 'Pleasantville', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48059', 'Pomfret', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48060', 'Port Chester', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48061', 'Port Jefferson', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48062', 'Port Jervis', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48063', 'Potsdam', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48064', 'Poughkeepsie', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48065', 'Putnam Valley', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48066', 'Queensbury', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48067', 'Ramapo', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48068', 'Red Hook', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48069', 'Rensselaer', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48070', 'Riverhead', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48071', 'Rochester', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48072', 'Rockville Centre', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48073', 'Rome', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48074', 'Rotterdam', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48075', 'Rye', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48076', 'Rye Brook', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48077', 'Salamanca', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48078', 'Salina', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48079', 'Saratoga Springs', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48080', 'Saugerties', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48081', 'Scarsdale', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48082', 'Schenectady', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48083', 'Schodack', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48084', 'Scotia', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48085', 'Seneca Falls', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48086', 'Shawangunk', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48087', 'Sherrill', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48088', 'Sleepy Hollow', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48089', 'Smithtown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48090', 'Somers', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48091', 'Southampton', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48092', 'Southeast', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48093', 'Southold', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48094', 'Southport', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48095', 'Spring Valley', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48096', 'Stony Point', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48097', 'Suffern', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48098', 'Sullivan', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48099', 'Sweden', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48100', 'Syracuse', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48101', 'Tarrytown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48102', 'Thompson', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48103', 'Tonawanda', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48104', 'Troy', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48105', 'Ulster', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48106', 'Union', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48107', 'Utica', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48108', 'Valley Stream', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48109', 'Van Buren', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48110', 'Vestal', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48111', 'Victor', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48112', 'Walden', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48113', 'Wallkill', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48114', 'Walworth', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48115', 'Wappinger', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48116', 'Warwick', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48117', 'Watertown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48118', 'Watervliet', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48119', 'Wawarsing', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48120', 'Webster', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48121', 'West Haverstraw', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48122', 'West Seneca', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48123', 'Westbury', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48124', 'Wheatfield', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48125', 'White Plains', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48126', 'Whitestown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48127', 'Williston Park', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48128', 'Wilton', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48129', 'Woodbury', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48130', 'Yonkers', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48131', 'Yorktown', '3956', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48132', 'Charlotte', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48133', 'Raleigh', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48134', 'Greensboro', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48135', 'Durham', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48136', 'Winston-Salem', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48137', 'Fayetteville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48138', 'Cary', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48139', 'Wilmington', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48140', 'High Point', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48141', 'Greenville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48142', 'Asheville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48143', 'Concord', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48144', 'Gastonia', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48145', 'Jacksonville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48146', 'Chapel Hill', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48147', 'Rocky Mount', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48148', 'Burlington', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48149', 'Huntersville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48150', 'Wilson', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48151', 'Kannapolis', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48152', 'Apex', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48153', 'Hickory', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48154', 'Wake Forest', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48155', 'Indian Trail', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48156', 'Goldsboro', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48157', 'Mooresville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48158', 'Monroe', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48159', 'Salisbury', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48160', 'New Bern', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48161', 'Holly Springs', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48162', 'Matthews', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48163', 'Sanford', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48164', 'Garner', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48165', 'Cornelius', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48166', 'Thomasville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48167', 'Asheboro', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48168', 'Statesville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48169', 'Mint Hill', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48170', 'Kernersville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48171', 'Morrisville', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48172', 'Fuquay-Varina', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48173', 'Lumberton', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48174', 'Kinston', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48175', 'Carrboro', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48176', 'Havelock', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48177', 'Shelby', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48178', 'Clemmons', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48179', 'Lexington', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48180', 'Clayton', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48181', 'Boone', '3957', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48182', 'Fargo', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48183', 'Bismarck', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48184', 'Grand Forks', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48185', 'Minot', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48186', 'West Fargo', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48187', 'Williston', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48188', 'Dickinson', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48189', 'Mandan', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48190', 'Jamestown', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48191', 'Wahpeton', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48192', 'Devils Lake', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48193', 'Valley City', '3958', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48194', 'Providence', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48195', 'Warwick', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48196', 'Cranston', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48197', 'Pawtucket', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48198', 'East Providence', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48199', 'Woonsocket', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48200', 'Coventry', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48201', 'Cumberland', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48202', 'North Providence', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48203', 'South Kingstown', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48204', 'West Warwick', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48205', 'Johnston', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48206', 'North Kingstown', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48207', 'Newport', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48208', 'Bristol', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48209', 'Westerly', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48210', 'Smithfield', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48211', 'Lincoln', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48212', 'Central Falls', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48213', 'Portsmouth', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48214', 'Barrington', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48215', 'Middletown', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48216', 'Burrillville', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48217', 'Narragansett', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48218', 'Tiverton', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48219', 'East Greenwich', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48220', 'North Smithfield', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48221', 'Warren', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48222', 'Scituate', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48223', 'Glocester', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48224', 'Hopkinton', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48225', 'Charlestown', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48226', 'Richmond', '3965', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48227', 'Columbia', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48228', 'Charleston', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48229', 'North Charleston', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48230', 'Mount Pleasant', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48231', 'Rock Hill', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48232', 'Greenville', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48233', 'Summerville', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48234', 'Sumter', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48235', 'Hilton Head Island', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48236', 'Spartanburg', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48237', 'Florence', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48238', 'Goose Creek', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48239', 'Aiken', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48240', 'Myrtle Beach', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48241', 'Anderson', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48242', 'Greer', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48243', 'Mauldin', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48244', 'Greenwood', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48245', 'North Augusta', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48246', 'Easley', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48247', 'Simpsonville', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48248', 'Hanahan', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48249', 'Lexington', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48250', 'Conway', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48251', 'West Columbia', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48252', 'North Myrtle Beach', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48253', 'Clemson', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48254', 'Orangeburg', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48255', 'Cayce', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48256', 'Bluffton', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48257', 'Beaufort', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48258', 'Gaffney', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48259', 'Irmo', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48260', 'Fort Mill', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48261', 'Port Royal', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48262', 'Forest Acres', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48263', 'Newberry', '3966', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48264', 'Sioux Falls', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48265', 'Rapid City', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48266', 'Aberdeen', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48267', 'Brookings', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48268', 'Watertown', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48269', 'Mitchell', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48270', 'Yankton', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48271', 'Pierre', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48272', 'Huron', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48273', 'Spearfish', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48274', 'Vermillion', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48275', 'Brandon', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48276', 'Box Elder', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48277', 'Madison', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48278', 'Sturgis', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48279', 'Belle Fourche', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48280', 'Harrisburg', '3967', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48281', 'Charleston', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48282', 'Huntington', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48283', 'Morgantown', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48284', 'Parkersburg', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48285', 'Wheeling', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48286', 'Weirton', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48287', 'Fairmont', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48288', 'Martinsburg', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48289', 'Beckley', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48290', 'Clarksburg', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48291', 'South Charleston', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48292', 'St. Albans', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48293', 'Vienna', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48294', 'Bluefield', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48295', 'Moundsville', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48296', 'Bridgeport', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48297', 'Oak Hill', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48298', 'Dunbar', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48299', 'Elkins', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48300', 'Nitro', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48301', 'Hurricane', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48302', 'Princeton', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48303', 'Charles Town', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48304', 'Buckhannon', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48305', 'Keyser', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48306', 'New Martinsville', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48307', 'Grafton', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48308', 'Ranson', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48309', 'Point Pleasant', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48310', 'Westover', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48311', 'Weston', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48312', 'Lewisburg', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48313', 'Ravenswood', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48314', 'Summersville', '3976', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48315', 'Alcala', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48316', 'Andalucia', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48317', 'Ansermanuevo', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48318', 'Argelia', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48319', 'Bolivar', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48320', 'Buenaventura', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48321', 'Buga', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48322', 'Bugalagrande', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48323', 'Caicedonia', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48324', 'Cali', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48325', 'Calima - El Darien', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48326', 'Candelaria', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48327', 'Cartago', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48328', 'Dagua', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48329', 'El Aguila', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48330', 'El Cairo', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48331', 'El Cerrito', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48332', 'El Dovio', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48333', 'Florida', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48334', 'Ginebra', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48335', 'Guacari', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48336', 'Jamundi', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48337', 'La Cumbre', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48338', 'La Union', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48339', 'La Victoria', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48340', 'Obando', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48341', 'Palmira', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48342', 'Pradera', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48343', 'Restrepo', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48344', 'Riofrio', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48345', 'Roldanillo', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48346', 'San Pedro', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48347', 'Sevilla', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48348', 'Toro', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48349', 'Trujillo', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48350', 'Tulua', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48351', 'Ulloa', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48352', 'Versalles', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48353', 'Vijes', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48354', 'Yotoco', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48355', 'Yumbo', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL),
('48356', 'Zarzal', '805', '0.00', '1', '2021-04-06 06:43:52', '2021-04-06 06:43:52', NULL);

-- ----------------------------------------
-- Table structure for `city_translations`
-- ----------------------------------------

DROP TABLE IF EXISTS `city_translations`;
CREATE TABLE `city_translations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `city_id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `lang` varchar(10) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `city_translations`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `colors`;
CREATE TABLE `colors` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) DEFAULT NULL,
  `code` varchar(10) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=144 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `colors`
-- ----------------------------------------

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

-- ----------------------------------------
-- Table structure for `combined_orders`
-- ----------------------------------------

DROP TABLE IF EXISTS `combined_orders`;
CREATE TABLE `combined_orders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `shipping_address` text DEFAULT NULL,
  `grand_total` double(20,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `combined_orders`
-- ----------------------------------------

INSERT INTO `combined_orders` (`id`, `user_id`, `shipping_address`, `grand_total`, `created_at`, `updated_at`) VALUES
('1', '22', '{\"name\":\"Amara Kumari\",\"email\":\"addsolutions.crm@gmail.com\",\"address\":\"Colombo 5\",\"country\":\"Sri Lanka\",\"state\":\"Hambantota\",\"city\":\"Tanggalla\",\"postal_code\":\"444544\",\"phone\":\"+94719645680\"}', '2350.00', '2026-08-31 09:27:20', '2026-08-31 09:27:20'),
('2', '50', '{\"name\":\"hasini\",\"email\":\"hasini@gmail.com\",\"address\":\"colombo\",\"country\":\"Sri Lanka\",\"state\":\"Colombo\",\"city\":\"Colombo\",\"postal_code\":\"00500\",\"phone\":\"+940768965714\",\"lat_lang\":\"6.8906397819519,79.906478881836\"}', '7290.00', '2026-09-01 15:49:49', '2026-09-01 15:49:49'),
('3', '50', '{\"name\":\"hasini\",\"email\":\"hasiekanayake2000@gmail.com\",\"address\":\"colombo\",\"country\":\"Sri Lanka\",\"state\":\"Colombo\",\"city\":\"Colombo\",\"postal_code\":\"00500\",\"phone\":\"+940768965714\",\"lat_lang\":\"6.8906397819519,79.906478881836\"}', '2350.00', '2026-09-01 16:18:42', '2026-09-01 16:18:42');

-- ----------------------------------------
-- Table structure for `commission_histories`
-- ----------------------------------------

DROP TABLE IF EXISTS `commission_histories`;
CREATE TABLE `commission_histories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `order_detail_id` int(11) NOT NULL,
  `seller_id` int(11) NOT NULL,
  `admin_commission` double(25,2) NOT NULL,
  `seller_earning` double(25,2) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `commission_histories`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `contacts`
-- ----------------------------------------

DROP TABLE IF EXISTS `contacts`;
CREATE TABLE `contacts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `email` varchar(191) NOT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `content` text NOT NULL,
  `image` varchar(191) DEFAULT NULL,
  `reply` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `contacts`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `conversations`;
CREATE TABLE `conversations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sender_id` int(11) NOT NULL,
  `receiver_id` int(11) NOT NULL,
  `title` varchar(1000) DEFAULT NULL,
  `sender_viewed` int(1) NOT NULL DEFAULT 1,
  `receiver_viewed` int(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `conversations`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `countries`;
CREATE TABLE `countries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(2) NOT NULL DEFAULT '',
  `name` varchar(100) NOT NULL DEFAULT '',
  `zone_id` int(11) NOT NULL DEFAULT 0,
  `status` int(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=297 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `countries`
-- ----------------------------------------

INSERT INTO `countries` (`id`, `code`, `name`, `zone_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES
('1', 'AF', 'Afghanistan', '0', '1', '2021-04-06 06:36:30', '2021-10-11 06:04:13', NULL),
('2', 'AL', 'Albania', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('3', 'DZ', 'Algeria', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('4', 'AS', 'American Samoa', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('5', 'AD', 'Andorra', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('6', 'AO', 'Angola', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('7', 'AI', 'Anguilla', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('8', 'AQ', 'Antarctica', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('9', 'AG', 'Antigua And Barbuda', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('10', 'AR', 'Argentina', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('11', 'AM', 'Armenia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('12', 'AW', 'Aruba', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('13', 'AU', 'Australia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('14', 'AT', 'Austria', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('15', 'AZ', 'Azerbaijan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('16', 'BS', 'Bahamas The', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('17', 'BH', 'Bahrain', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('18', 'BD', 'Bangladesh', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('19', 'BB', 'Barbados', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('20', 'BY', 'Belarus', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('21', 'BE', 'Belgium', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('22', 'BZ', 'Belize', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('23', 'BJ', 'Benin', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('24', 'BM', 'Bermuda', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('25', 'BT', 'Bhutan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('26', 'BO', 'Bolivia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('27', 'BA', 'Bosnia and Herzegovina', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('28', 'BW', 'Botswana', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('29', 'BV', 'Bouvet Island', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('30', 'BR', 'Brazil', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('31', 'IO', 'British Indian Ocean Territory', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('32', 'BN', 'Brunei', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('33', 'BG', 'Bulgaria', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('34', 'BF', 'Burkina Faso', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('35', 'BI', 'Burundi', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('36', 'KH', 'Cambodia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('37', 'CM', 'Cameroon', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('38', 'CA', 'Canada', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('39', 'CV', 'Cape Verde', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('40', 'KY', 'Cayman Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('41', 'CF', 'Central African Republic', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('42', 'TD', 'Chad', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('43', 'CL', 'Chile', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('44', 'CN', 'China', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('45', 'CX', 'Christmas Island', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('46', 'CC', 'Cocos (Keeling) Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('47', 'CO', 'Colombia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('48', 'KM', 'Comoros', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('49', 'CG', 'Republic Of The Congo', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('50', 'CD', 'Democratic Republic Of The Congo', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('51', 'CK', 'Cook Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('52', 'CR', 'Costa Rica', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('53', 'CI', 'Cote D\'Ivoire (Ivory Coast)', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('54', 'HR', 'Croatia (Hrvatska)', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('55', 'CU', 'Cuba', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('56', 'CY', 'Cyprus', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('57', 'CZ', 'Czech Republic', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('58', 'DK', 'Denmark', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('59', 'DJ', 'Djibouti', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('60', 'DM', 'Dominica', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('61', 'DO', 'Dominican Republic', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('62', 'TP', 'East Timor', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('63', 'EC', 'Ecuador', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('64', 'EG', 'Egypt', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('65', 'SV', 'El Salvador', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('66', 'GQ', 'Equatorial Guinea', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('67', 'ER', 'Eritrea', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('68', 'EE', 'Estonia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('69', 'ET', 'Ethiopia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('70', 'XA', 'External Territories of Australia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('71', 'FK', 'Falkland Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('72', 'FO', 'Faroe Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('73', 'FJ', 'Fiji Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('74', 'FI', 'Finland', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('75', 'FR', 'France', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('76', 'GF', 'French Guiana', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('77', 'PF', 'French Polynesia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('78', 'TF', 'French Southern Territories', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('79', 'GA', 'Gabon', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('80', 'GM', 'Gambia The', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('81', 'GE', 'Georgia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('82', 'DE', 'Germany', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('83', 'GH', 'Ghana', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('84', 'GI', 'Gibraltar', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('85', 'GR', 'Greece', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('86', 'GL', 'Greenland', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('87', 'GD', 'Grenada', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('88', 'GP', 'Guadeloupe', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('89', 'GU', 'Guam', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('90', 'GT', 'Guatemala', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('91', 'XU', 'Guernsey and Alderney', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('92', 'GN', 'Guinea', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('93', 'GW', 'Guinea-Bissau', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('94', 'GY', 'Guyana', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('95', 'HT', 'Haiti', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('96', 'HM', 'Heard and McDonald Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('97', 'HN', 'Honduras', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('98', 'HK', 'Hong Kong S.A.R.', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('99', 'HU', 'Hungary', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('100', 'IS', 'Iceland', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('101', 'IN', 'India', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('102', 'ID', 'Indonesia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('103', 'IR', 'Iran', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('104', 'IQ', 'Iraq', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('105', 'IE', 'Ireland', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('106', 'IL', 'Israel', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('107', 'IT', 'Italy', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('108', 'JM', 'Jamaica', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('109', 'JP', 'Japan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('110', 'XJ', 'Jersey', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('111', 'JO', 'Jordan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('112', 'KZ', 'Kazakhstan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('113', 'KE', 'Kenya', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('114', 'KI', 'Kiribati', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('115', 'KP', 'Korea North', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('116', 'KR', 'Korea South', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('117', 'KW', 'Kuwait', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('118', 'KG', 'Kyrgyzstan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('119', 'LA', 'Laos', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('120', 'LV', 'Latvia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('121', 'LB', 'Lebanon', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('122', 'LS', 'Lesotho', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('123', 'LR', 'Liberia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('124', 'LY', 'Libya', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('125', 'LI', 'Liechtenstein', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('126', 'LT', 'Lithuania', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('127', 'LU', 'Luxembourg', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('128', 'MO', 'Macau S.A.R.', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('129', 'MK', 'Macedonia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('130', 'MG', 'Madagascar', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('131', 'MW', 'Malawi', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('132', 'MY', 'Malaysia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('133', 'MV', 'Maldives', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('134', 'ML', 'Mali', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('135', 'MT', 'Malta', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('136', 'XM', 'Man (Isle of)', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('137', 'MH', 'Marshall Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('138', 'MQ', 'Martinique', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('139', 'MR', 'Mauritania', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('140', 'MU', 'Mauritius', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('141', 'YT', 'Mayotte', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('142', 'MX', 'Mexico', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('143', 'FM', 'Micronesia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('144', 'MD', 'Moldova', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('145', 'MC', 'Monaco', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('146', 'MN', 'Mongolia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('147', 'MS', 'Montserrat', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('148', 'MA', 'Morocco', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('149', 'MZ', 'Mozambique', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('150', 'MM', 'Myanmar', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('151', 'NA', 'Namibia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('152', 'NR', 'Nauru', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('153', 'NP', 'Nepal', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('154', 'AN', 'Netherlands Antilles', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('155', 'NL', 'Netherlands The', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('156', 'NC', 'New Caledonia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('157', 'NZ', 'New Zealand', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('158', 'NI', 'Nicaragua', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('159', 'NE', 'Niger', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('160', 'NG', 'Nigeria', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('161', 'NU', 'Niue', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('162', 'NF', 'Norfolk Island', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('163', 'MP', 'Northern Mariana Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('164', 'NO', 'Norway', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('165', 'OM', 'Oman', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('166', 'PK', 'Pakistan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('167', 'PW', 'Palau', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('168', 'PS', 'Palestinian Territory Occupied', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('169', 'PA', 'Panama', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('170', 'PG', 'Papua new Guinea', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('171', 'PY', 'Paraguay', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('172', 'PE', 'Peru', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('173', 'PH', 'Philippines', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('174', 'PN', 'Pitcairn Island', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('175', 'PL', 'Poland', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('176', 'PT', 'Portugal', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('177', 'PR', 'Puerto Rico', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('178', 'QA', 'Qatar', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('179', 'RE', 'Reunion', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('180', 'RO', 'Romania', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('181', 'RU', 'Russia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('182', 'RW', 'Rwanda', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('183', 'SH', 'Saint Helena', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('184', 'KN', 'Saint Kitts And Nevis', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('185', 'LC', 'Saint Lucia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('186', 'PM', 'Saint Pierre and Miquelon', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('187', 'VC', 'Saint Vincent And The Grenadines', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('188', 'WS', 'Samoa', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('189', 'SM', 'San Marino', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('190', 'ST', 'Sao Tome and Principe', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('191', 'SA', 'Saudi Arabia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('192', 'SN', 'Senegal', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('193', 'RS', 'Serbia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('194', 'SC', 'Seychelles', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('195', 'SL', 'Sierra Leone', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('196', 'SG', 'Singapore', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('197', 'SK', 'Slovakia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('198', 'SI', 'Slovenia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('199', 'XG', 'Smaller Territories of the UK', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('200', 'SB', 'Solomon Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('201', 'SO', 'Somalia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('202', 'ZA', 'South Africa', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('203', 'GS', 'South Georgia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('204', 'SS', 'South Sudan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('205', 'ES', 'Spain', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('206', 'LK', 'Sri Lanka', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('207', 'SD', 'Sudan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('208', 'SR', 'Suriname', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('209', 'SJ', 'Svalbard And Jan Mayen Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('210', 'SZ', 'Swaziland', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('211', 'SE', 'Sweden', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('212', 'CH', 'Switzerland', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('213', 'SY', 'Syria', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('214', 'TW', 'Taiwan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('215', 'TJ', 'Tajikistan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('216', 'TZ', 'Tanzania', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('217', 'TH', 'Thailand', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('218', 'TG', 'Togo', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('219', 'TK', 'Tokelau', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('220', 'TO', 'Tonga', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('221', 'TT', 'Trinidad And Tobago', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('222', 'TN', 'Tunisia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('223', 'TR', 'Turkey', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('224', 'TM', 'Turkmenistan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('225', 'TC', 'Turks And Caicos Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('226', 'TV', 'Tuvalu', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('227', 'UG', 'Uganda', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('228', 'UA', 'Ukraine', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('229', 'AE', 'United Arab Emirates', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('230', 'GB', 'United Kingdom', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('231', 'US', 'United States', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('232', 'UM', 'United States Minor Outlying Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('233', 'UY', 'Uruguay', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('234', 'UZ', 'Uzbekistan', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('235', 'VU', 'Vanuatu', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('236', 'VA', 'Vatican City State (Holy See)', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('237', 'VE', 'Venezuela', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('238', 'VN', 'Vietnam', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('239', 'VG', 'Virgin Islands (British)', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('240', 'VI', 'Virgin Islands (US)', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('241', 'WF', 'Wallis And Futuna Islands', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('242', 'EH', 'Western Sahara', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('243', 'YE', 'Yemen', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('244', 'YU', 'Yugoslavia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('245', 'ZM', 'Zambia', '0', '1', '2021-04-06 06:36:30', NULL, NULL),
('246', 'ZW', 'Zimbabwe', '0', '1', '2021-04-06 06:36:30', NULL, NULL);

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

DROP TABLE IF EXISTS `coupon_usages`;
CREATE TABLE `coupon_usages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `coupon_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `coupon_usages`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `coupons`;
CREATE TABLE `coupons` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `type` varchar(255) NOT NULL,
  `code` varchar(255) NOT NULL,
  `details` longtext NOT NULL,
  `discount` double(20,2) NOT NULL,
  `discount_type` varchar(100) NOT NULL,
  `start_date` int(15) DEFAULT NULL,
  `end_date` int(15) DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `coupons`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `currencies`;
CREATE TABLE `currencies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `symbol` varchar(255) NOT NULL,
  `exchange_rate` double(10,5) NOT NULL,
  `status` int(10) NOT NULL DEFAULT 0,
  `code` varchar(20) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `currencies`
-- ----------------------------------------

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

-- ----------------------------------------
-- Table structure for `custom_alerts`
-- ----------------------------------------

DROP TABLE IF EXISTS `custom_alerts`;
CREATE TABLE `custom_alerts` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` int(1) NOT NULL DEFAULT 0,
  `type` varchar(191) NOT NULL,
  `banner` varchar(191) DEFAULT NULL,
  `link` varchar(191) NOT NULL,
  `description` text NOT NULL,
  `text_color` varchar(191) DEFAULT NULL,
  `background_color` varchar(191) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `custom_alerts`
-- ----------------------------------------

INSERT INTO `custom_alerts` (`id`, `status`, `type`, `banner`, `link`, `description`, `text_color`, `background_color`, `created_at`, `updated_at`) VALUES
('1', '1', 'small', NULL, '#', '<p>We use cookie for better user experience, check our policy <a href=\"https://demo.activeitzone.com/ecommerce/privacypolicy\">here</a>&nbsp;</p>', 'dark', '#ffffff', '2024-03-27 01:32:20', '2024-03-27 22:51:29');

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

DROP TABLE IF EXISTS `customer_package_payments`;
CREATE TABLE `customer_package_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `customer_package_id` int(11) NOT NULL,
  `payment_method` varchar(255) NOT NULL,
  `amount` double(20,2) NOT NULL,
  `payment_details` longtext DEFAULT NULL,
  `approval` int(1) NOT NULL DEFAULT 1,
  `offline_payment` int(1) NOT NULL DEFAULT 2 COMMENT '1=offline payment\r\n2=online paymnet',
  `reciept` varchar(150) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `customer_package_payments`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `customer_package_translations`;
CREATE TABLE `customer_package_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `customer_package_id` bigint(20) NOT NULL,
  `name` varchar(50) NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `customer_package_translations`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `customer_packages`;
CREATE TABLE `customer_packages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `amount` double(20,2) DEFAULT NULL,
  `product_upload` int(11) DEFAULT NULL,
  `logo` varchar(150) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `customer_packages`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `customer_product_translations`;
CREATE TABLE `customer_product_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `customer_product_id` bigint(20) NOT NULL,
  `name` varchar(200) DEFAULT NULL,
  `unit` varchar(20) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `customer_product_translations`
-- ----------------------------------------

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

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

-- ----------------------------------------
-- Data for `customer_products`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `dynamic_popups`
-- ----------------------------------------

DROP TABLE IF EXISTS `dynamic_popups`;
CREATE TABLE `dynamic_popups` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` int(1) NOT NULL DEFAULT 0,
  `title` varchar(191) NOT NULL,
  `summary` text NOT NULL,
  `banner` varchar(191) DEFAULT NULL,
  `btn_link` varchar(191) NOT NULL,
  `btn_text` varchar(191) DEFAULT NULL,
  `btn_text_color` varchar(191) DEFAULT NULL,
  `btn_background_color` varchar(191) DEFAULT NULL,
  `show_subscribe_form` varchar(191) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `dynamic_popups`
-- ----------------------------------------

INSERT INTO `dynamic_popups` (`id`, `status`, `title`, `summary`, `banner`, `btn_link`, `btn_text`, `btn_text_color`, `btn_background_color`, `show_subscribe_form`, `created_at`, `updated_at`) VALUES
('1', '0', 'Subscribe to Our Newsletter', 'Subscribe our newsletter for coupon, offer and exciting promotional discount..', NULL, '#', 'Subscribe Now', 'white', '#baa185', 'on', '2024-03-27 22:02:51', '2025-11-19 11:05:06');

-- ----------------------------------------
-- Table structure for `email_templates`
-- ----------------------------------------

DROP TABLE IF EXISTS `email_templates`;
CREATE TABLE `email_templates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `receiver` varchar(20) NOT NULL,
  `identifier` varchar(100) NOT NULL,
  `email_type` varchar(255) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `default_text` text DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  `is_status_changeable` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1 = changeable ; 0 = non-changeable',
  `is_dafault_text_editable` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1 = editable ; 0 = non-editable\r\n\r\n',
  `addon` varchar(50) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `email_templates`
-- ----------------------------------------

INSERT INTO `email_templates` (`id`, `receiver`, `identifier`, `email_type`, `subject`, `default_text`, `status`, `is_status_changeable`, `is_dafault_text_editable`, `addon`, `created_at`, `updated_at`) VALUES
('1', 'admin', 'customer_reg_email_to_admin', 'Customer Registration', 'New Customer Registration - [[customer_name]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A new customer has registered on [[store_name]] . Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Email/ Phone:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[email/phone]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Registration Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[date]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please review the new customer’s details as needed.</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span id=\"docs-internal-guid-3e680347-7fff-f4e2-cace-a98ae90f19f3\"></span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The <span style=\"font-size: 14.6667px;\">[[store_name]]</span> Team</span></p>', '0', '1', '1', NULL, '2024-08-29 05:01:58', '2024-09-04 21:53:28'),
('2', 'customer', 'registration_email_to_customer', 'Customer Registration', 'Welcome to  -  [[store_name]]', '<p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Thank you for registering with [[store_name]]! We’re excited to have you as a part of our community.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Here are your account details:</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Name:</span><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Email:</span><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[email]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">To get started, you can log into your account </span><a href=\"https://demo.activeitzone.com/ecommerce\" target=\"_blank\">here</a><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> </span><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. Feel free to browse our extensive catalog of products and enjoy a seamless shopping experience.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you have any questions or need assistance, our support team is here to help. Contact us at <span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px;\">[[admin_email]]</span>.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best regards,</span></p><p><span id=\"docs-internal-guid-2111934b-7fff-45a9-8caa-82df6664a85f\"></span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; white-space-collapse: preserve;\"> Team</span></p>', '0', '1', '1', NULL, '2024-08-29 05:32:45', '2024-09-04 21:53:36'),
('3', 'customer', 'registration_from_system_email_to_customer', 'Customer Registration By Admin', 'Welcome to -  [[store_name]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">An account has been created on [[store_name]] ! We’re excited to have you as a part of our community.</span></p><p style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Here are your account details:</span></p><p style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"></p><p style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"></p><ol style=\"margin-bottom: 1rem; font-family: &quot;Public Sans&quot;, sans-serif; font-size: 12px; white-space: normal;\"></ol><p></p><ul><li style=\"line-height: 1.38; margin-top: 12pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"> [[customer_name]]</span></li><li style=\"line-height: 1.38; margin-top: 12pt; margin-bottom: 0pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; white-space-collapse: preserve; background-color: transparent; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; font-weight: 700; vertical-align: baseline;\">Email:</span><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; white-space-collapse: preserve; background-color: transparent; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; vertical-align: baseline;\"> [[email]]</span></li><li style=\"line-height: 1.38; margin-top: 12pt; margin-bottom: 0pt;\"><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; white-space-collapse: preserve; background-color: transparent; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; font-weight: 700; vertical-align: baseline;\">Password:</span><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; white-space-collapse: preserve; background-color: transparent; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; vertical-align: baseline;\"> [[password]]</span></li></ul><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">To get started, you can log into your account </span><a href=\"https://demo.activeitzone.com/ecommerce\" target=\"_blank\"><u>here</u></a><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"> </span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">. Feel free to browse our extensive catalog of products and enjoy a seamless shopping experience.</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you have any questions or need assistance, our support team is here to help. Contact us at <span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px;\">[[admin_email]]</span>.</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p><span id=\"docs-internal-guid-2111934b-7fff-45a9-8caa-82df6664a85f\"></span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; white-space-collapse: preserve;\"> Team</span></p>', '1', '0', '1', NULL, '2024-08-29 05:35:00', '2024-09-03 21:58:24'),
('4', 'admin', 'seller_reg_email_to_admin', 'Seller Registration', 'New Seller Registration - [[shop_name]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; font-weight: 700; white-space-collapse: preserve;\">[[admin_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A new seller has registered on <span style=\"font-size: 14.6667px;\">[[store_name]]</span><span style=\"font-size: 14.6667px;\"> </span>. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[seller_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Email:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap; font-size: 14.6667px;\">[[seller_email]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-weight: 700; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Shop Name: </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap; font-size: 14.6667px;\">[[seller_shop_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-weight: 700; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Address: </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap; font-size: 14.6667px;\">[[seller_shop_address]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Registration Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; text-wrap: wrap; background-color: transparent;\">[[date]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please review the new seller’s details as needed.</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The <span style=\"font-size: 14.6667px;\">[[store_name]]</span> Team</span></p><div><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div>', '0', '1', '1', NULL, '2024-09-02 23:22:02', '2024-09-08 03:42:24'),
('5', 'seller', 'registration_email_to_seller', 'Seller Own Account Registration', 'Welcome to  [[store_name]]', '<span id=\"docs-internal-guid-7441a6d7-7fff-62b9-67a0-909d5d4ae5dd\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[seller_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Congratulations on joining the <span style=\"font-size: 14.6667px;\">[[store_name]]</span> seller network! We’re thrilled to have you on board and look forward to seeing your products in our marketplace.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Here are your account details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; text-wrap: wrap; background-color: transparent;\">[[seller_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Email:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; text-wrap: wrap; background-color: transparent;\">[[seller_email]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-weight: 700; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Shop Name: </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap; font-size: 14.6667px;\">[[seller_shop_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-weight: 700; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Address: </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap; font-size: 14.6667px;\">[[seller_shop_address]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Registration Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap; font-size: 14.6667px;\">[[date]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">To manage your store and list your products, please log in to your seller </span><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; white-space-collapse: preserve; background-color: transparent; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; vertical-align: baseline;\">account </span><a href=\"https://demo.activeitzone.com/ecommerce\" target=\"_blank\">here</a><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; white-space-collapse: preserve; background-color: transparent; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; vertical-align: baseline;\"> </span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">. If you need any assistance, our seller support team is available to help you with any questions or issues. Contact us at <span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px;\">[[admin_email]]</span>.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for choosing to partner with us!</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The <span style=\"font-size: 14.6667px;\">[[store_name]]</span> Team</span></p><div><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-02 23:22:02', '2024-09-08 03:42:35'),
('6', 'seller', 'registration_from_system_email_to_seller', 'Seller Registration By Admin', 'Welcome to - [[store_name]]', '<span id=\"docs-internal-guid-3145a153-7fff-e676-5587-7e022e861b35\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[seller_name]]</span><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; font-weight: 700; white-space-collapse: preserve;\">,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Congratulations! An</span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\"> account has been created on the </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]] </span><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; white-space-collapse: preserve;\">! We’re thrilled to have you on board and look forward to seeing your products in our marketplace.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Here are your account details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; text-wrap: wrap; background-color: transparent;\">[[seller_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Email:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; text-wrap: wrap; background-color: transparent;\">[[seller_email]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Password:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> </span><span style=\"font-size: 14.6667px; text-wrap: wrap; background-color: transparent;\">[[password]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-weight: 700; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Shop Name: </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap; font-size: 14.6667px;\">[[seller_shop_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-weight: 700; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Address: </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap; font-size: 14.6667px;\">[[seller_shop_address]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Registration Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> </span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; text-wrap: wrap; background-color: transparent;\">[[date]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">To manage your store and list your products, please log in to your seller </span><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; white-space-collapse: preserve; background-color: transparent; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; vertical-align: baseline;\">account </span><a href=\"https://demo.activeitzone.com/ecommerce\" target=\"_blank\">here</a><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; white-space-collapse: preserve; background-color: transparent; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; vertical-align: baseline;\"> </span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">. If you need any assistance, our seller support team is available to help you with any questions or issues. Contact us at </span><span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for choosing to partner with us!</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '1', '0', '1', NULL, '2024-09-02 23:22:02', '2024-09-03 21:57:26'),
('7', 'admin', 'deliveryboy_reg_email_to_admin', 'Delivery Boy Registration', 'New Delivery Boy Registration - [[store_name]]', '<span id=\"docs-internal-guid-47d60cdf-7fff-50f8-ba76-1e5a3213a10d\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; font-weight: 700; white-space-collapse: preserve;\">Dear [[admin_name]],</span><br></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A new delivery boy has registered on <span style=\"font-size: 14.6667px;\">[[store_name]]</span> . Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[delivery_boy_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Email:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[delivery_boy_email]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"><b>Phone: </b>[[delivery_boy_phone]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Country: </span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">[[delivery_boy_country]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Registration Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[date]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please review the new delivery boy’s details as needed.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '1', '1', '1', 'delivery_boy', '2024-09-02 23:22:02', '2024-09-08 22:59:55'),
('8', 'delivery_boy', 'registration_from_system_email_to_deliveryboy', 'Delivery Boy Registration by Admin', 'Welcome to [[store_name]] Delivery Team!', '<span id=\"docs-internal-guid-3e53a476-7fff-0b18-676d-a1e5b07fd361\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[delivery_boy_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for joining the <span style=\"font-size: 14.6667px;\">[[store_name]]</span> delivery team! We’re excited to have you help us provide exceptional service to our customers.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Here are your account details:</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"></span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[delivery_boy_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Email:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[delivery_boy_email]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"><span style=\"font-weight: bolder;\">Phone: </span>[[delivery_boy_phone]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"><span style=\"font-weight: bolder;\">Password: </span>[[delivery_boy_password]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Country: </span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">[[delivery_boy_country]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Registration Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[date]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">To access your delivery schedule and manage your tasks, please log in to your </span><span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; white-space-collapse: preserve; background-color: transparent; font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; vertical-align: baseline;\">account </span><a href=\"https://demo.activeitzone.com/ecommerce\" target=\"_blank\">here</a><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">. If you have any questions or need assistance, feel free to reach out to our support team at </span><span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We appreciate your commitment to delivering excellence!</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '1', '0', '1', 'delivery_boy', '2024-09-02 23:22:02', '2024-09-03 21:59:32'),
('9', 'seller', 'email_verification_seller', 'Email Verification', 'Verify Your Email to Activate Your Seller Account at [[store_name]]', '<span id=\"docs-internal-guid-b5fe9e68-7fff-4832-d6b4-189eb71d9e56\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[seller_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for choosing [[store_name]] to grow your business! To activate your seller account, we need you to confirm your email address.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please verify your email by clicking the link below:</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">[[verify_email_button]]</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Once verified, you’ll be able to list your products and start selling right away. If you didn’t create a seller account, kindly disregard this message.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">For any questions or concerns, feel free to contact us at </span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you,</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '1', '0', '1', NULL, '2024-09-03 04:47:09', '2024-09-04 21:47:25'),
('10', 'customer', 'email_verification_customer', 'Email Verification', 'Confirm Your Email to Complete Your Registration at [[store_name]]', '<span id=\"docs-internal-guid-5a27bade-7fff-6a3b-826e-f40742432098\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for signing up with [[store_name]]! We’re excited to have you join our community.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">To complete your registration and start shopping, please verify your email address by clicking the link below:</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">[[verify_email_button]]</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you did not create an account with us, you can safely ignore this email.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Should you have any questions or need assistance, feel free to reach out to our support team at </span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you,</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '1', '0', '1', NULL, '2024-09-03 04:47:19', '2024-09-04 21:47:21'),
('11', 'all', 'password_reset_email_to_all', 'Password Reset', 'Password Reset - [[store_name]]', '<span id=\"docs-internal-guid-74b6d88a-7fff-ad56-ff2f-dfe6dbc80de6\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Hello [[user_email]]!</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Someone is requested for your password reset code.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The password reset code is :</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[code]]</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you didn’t request this, please ignore the email. Your password will stay safe and won’t be changed.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><br></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The <span style=\"font-size: 14.6667px;\">[[store_name]]</span> Team</span></p></span>', '1', '0', '1', NULL, '2024-09-03 04:52:18', '2024-09-08 03:43:04'),
('12', 'admin', 'order_placed_email_to_admin', 'Order Placed ', 'Order Placed - [[order_code]]', NULL, '0', '1', '0', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:24'),
('13', 'seller', 'order_placed_email_to_seller', 'Order Placed ', 'A new order [[order_code]] has been placed!', NULL, '0', '1', '0', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:38'),
('14', 'customer', 'order_placed_email_to_customer', 'Order Placed ', 'Your Order [[order_code]] has been Placed Successfully!', NULL, '0', '1', '0', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:55'),
('15', 'admin', 'order_confirmed_email_to_admin', 'Order Confirmed', 'New Order Confirmed -  [[order_code]]', '<span id=\"docs-internal-guid-09d8c336-7fff-724c-216f-68a3e3311565\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A new order has been confirmed on [[store_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please review the order details and prepare for processing and fulfillment.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span><br></p><div><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:25'),
('16', 'seller', 'order_confirmed_email_to_seller', 'Order Confirmed', 'New Order Confirmed -  [[order_code]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A new order has been confirmed on [[store_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><span id=\"docs-internal-guid-8697c838-7fff-750b-0d2a-e8f02dac6065\"></span></span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:\'Roboto Slab\',serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Please review the order details and prepare for processing and fulfillment.</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span><br></p><div><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\"><br></span></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:41'),
('17', 'customer', 'order_confirmed_email_to_customer', 'Order Confirmed', 'Your Order  [[order_code]] has been Confirmed!', '<span id=\"docs-internal-guid-f3f6e5f2-7fff-fad6-c225-baa3513e76cb\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for your order! We’re excited to let you know that your order #[[order_code]] has been confirmed.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Order Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">You will receive another email when your order is picked up.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you have any questions or need further assistance, please don’t hesitate to contact us at </span><span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:56'),
('18', 'admin', 'order_picked_up_email_to_admin', 'Order Picked Up', 'Order Picked Up - [[order_code]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A order has been picked up from [[store_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span><br></p><div><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\"><br></span></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:25'),
('19', 'seller', 'order_picked_up_email_to_seller', 'Order Picked Up', 'Order Picked Up - [[order_code]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A order has been picked up from [[shop_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span><br></p><div><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\"><br></span></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:42'),
('20', 'customer', 'order_picked_up_email_to_customer', 'Order Picked Up', 'Your Order [[order_code]] has been Picked Up!', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for your order! We’re excited to let you know that your order #[[order_code]] has been picked up.</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Order Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">You will receive another email when your order is on the way.&nbsp;</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you have any questions or need further assistance, please don’t hesitate to contact us at </span><span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:57'),
('21', 'admin', 'order_on_the_way_email_to_admin', 'Order On The Way', 'Order On The Way - [[order_code]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A order from [[store_name]] is on the way . Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span><br></p><div><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\"><br></span></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:26'),
('22', 'seller', 'order_on_the_way_email_to_seller', 'Order On The Way', 'Order On The Way - [[order_code]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A order from [[shop_name]] is on the way. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span><br></p><div><span style=\"font-family: &quot;Roboto Slab&quot;, serif; font-size: 14.6667px; white-space-collapse: preserve;\"><br></span></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 23:17:48'),
('23', 'customer', 'order_on_the_way_email_to_customer', 'Order On The Way', 'Your Order [[order_code]] has been On The Way!', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for your order! We’re excited to let you know that your order #[[order_code]] is on the way.</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Order Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">You will receive another email when your order is delivered</span><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; white-space-collapse: preserve;\">.&nbsp;</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you have any questions or need further assistance, please don’t hesitate to contact us at </span><span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"background-color: transparent; font-family: &quot;Roboto Slab&quot;, serif; font-size: 11pt; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: &quot;Roboto Slab&quot;, serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:57'),
('24', 'admin', 'order_delivered_email_to_admin', 'Order Delivered', 'Order Delivered - [[order_code]]', '<span id=\"docs-internal-guid-611250f2-7fff-264f-15eb-f1fbb1ab6f37\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">An order has been marked as delivered on [[store_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Delivery Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[delivery_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please update the order status in the system and ensure any post-delivery processes are completed.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span></font></p><br></span>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:27'),
('25', 'seller', 'order_delivered_email_to_seller', 'Order Delivered', 'Order Delivered - [[order_code]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">An order has been marked as delivered on [[store_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Delivery Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[delivery_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please update the order status in the system and ensure any post-delivery processes are completed.</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span></font></p><div><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\"><br></span></font></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:43'),
('26', 'customer', 'order_delivered_email_to_customer', 'Order Delivered', 'Your Order [[order_code]] is Delivered !', '<span id=\"docs-internal-guid-b907beb0-7fff-b0c4-dd7e-2bc83d56e3bd\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We’re pleased to inform you that your order #[[order_code]] has been successfully delivered!</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Order Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Delivery Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[delivery_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We hope you are satisfied with your purchase. If you have any questions or need further assistance, please don’t hesitate to reach out at </span><span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"background-color: transparent; font-family: Roboto, sans-serif; font-size: 11pt; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for shopping with us!</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:58'),
('27', 'admin', 'order_cancelled_email_to_admin', 'Order Cancelled ', 'Order Cancelled - [[order_code]]', '<span id=\"docs-internal-guid-d5b7c526-7fff-698e-2633-ad6a49d8b4a9\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">An order has been cancelled on [[store_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please review the cancellation details and update the order status accordingly.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span></font></p><br></span>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:27'),
('28', 'seller', 'order_cancelled_email_to_seller', 'Order Cancelled ', 'Order Cancelled - [[order_code]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">An order has been cancelled on [[store_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please review the cancellation details and update the order status accordingly.</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span></font></p><div><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\"><br></span></font></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:44'),
('29', 'customer', 'order_cancelled_email_to_customer', 'Order Cancelled ', 'Your Order [[order_code]] has been Cancelled!', '<span id=\"docs-internal-guid-50b32d4b-7fff-0a93-4770-e86284e367cf\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We regret to inform you that your order #[[order_code]] has been cancelled.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Order Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order ID:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Total Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you believe this cancellation was made in error or if you have any questions, please contact our support team at </span><span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"background-color: transparent; font-family: Roboto, sans-serif; font-size: 11pt; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We apologize for any inconvenience caused and hope to serve you better in the future.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:59'),
('31', 'admin', 'order_paid_email_to_admin', 'Order Paid', 'Payment Received for Order [[order_code]]', '<span id=\"docs-internal-guid-2d832905-7fff-22b3-8b39-44e7ece9b74a\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Payment has been received for an order on [[store_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Payment Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please proceed with processing the order and ensure it is moved forward in the fulfillment pipeline.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span></font></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:27'),
('32', 'seller', 'order_paid_email_to_seller', 'Order Paid', 'Payment Received for Order [[order_code]]', '<p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Payment has been received for an order on [[store_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 12pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order ID:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" aria-level=\"1\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\"><p dir=\"ltr\" role=\"presentation\" style=\"margin-top: 0pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Payment Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please proceed with processing the order and ensure it is moved forward in the fulfillment pipeline.</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; line-height: 1.38;\"><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\">[[store_name]]</span></font></p><div><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\"><br></span></font></div>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:44'),
('33', 'customer', 'order_paid_email_to_customer', 'Order Paid', 'Payment Received for Order [[order_code]]', '<span id=\"docs-internal-guid-2a9b43b5-7fff-4c68-bb61-e2da13cfb36d\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We’re happy to inform you that we have received the payment for your order #[[order_code]]. Your order is now fully paid.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Order Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order ID:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Payment Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for completing the payment. Your order will be processed shortly, and you will receive updates on its status.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you have any questions or need assistance, feel free to contact us at [[admin_email]].</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-03 05:03:01', '2024-09-08 03:42:59'),
('34', 'admin', 'refund_request_email_to_admin', 'Refund Request', 'New Refund Request for Order [[order_code]]', '<span id=\"docs-internal-guid-87245954-7fff-23d9-1e25-065ddf9b3585\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A new refund request has been submitted from [[customer_name]] for their order [[order_code]]. Below are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Product Name:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[product_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Reason:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_reason]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please review the request and take the necessary action to process or deny the refund. Update the order status accordingly.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The&nbsp; [[store_name]] team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:19'),
('35', 'seller', 'refund_request_email_to_seller', 'Refund Request', 'New Refund Request for Order [[order_code]]', '<span id=\"docs-internal-guid-afedd645-7fff-8f6a-8bac-cffdbee1ae2d\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">A refund request has been submitted by [[customer_name]] for an order [[order_code]] containing your product. Please review the following details:&nbsp;</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Product Sold:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[product_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Reason:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_reason]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Kindly review the request and process it as per our refund policy. If you need any assistance or additional information, feel free to reach out at [[admin_email]].</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:33'),
('36', 'customer', 'refund_request_email_to_customer', 'Refund Request', 'Refund Request Received for Order [[order_code]]', '<span id=\"docs-internal-guid-91d5960e-7fff-2e64-77b2-ed2a6eb21bf4\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We have received your refund request for order [[</span><span style=\"font-family: Roboto, sans-serif; font-size: 14.6667px; white-space-collapse: preserve;\">order_code</span><span style=\"background-color: transparent; font-family: Roboto, sans-serif; font-size: 11pt; white-space-collapse: preserve;\">]].</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Refund Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Reason:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_reason]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Our team is currently reviewing your request and will get back to you with an update as soon as possible. If you have any questions or need further information, please contact us at [[admin_email]].</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for your patience.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:44'),
('37', 'admin', 'refund_accepted_by_admin_email_to_admin', 'Refund Request Accepted by Admin', 'Refund Request Accepted for Order [[order_code]]', '<span id=\"docs-internal-guid-1bf6f353-7fff-9304-1996-924931ef60e9\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The refund request from [[customer_name]] for order #[[order_code]] has been reviewed and accepted. Below are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Processed Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[processes_date]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please ensure that all related records are updated accordingly.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:24'),
('38', 'admin', 'refund_accepted_by_seller_email_to_admin', 'Refund Request Accepted by Seller\r\n', 'Refund Request for Order [[order_code]] has been accepted by [[shop_name]]', '<span id=\"docs-internal-guid-6930388c-7fff-16ca-3561-55aece34d351\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The refund request from [[customer_name]] for order #[[order_code]] has been reviewed and accepted by [[shop_name]]. Below are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Processed Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[processes_date]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Kindly review the request and process it as per our refund policy.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:24'),
('39', 'seller', 'refund_accepted_by_admin_email_to_seller', 'Refund Request Accepted by Admin', 'Refund Request Accepted for Order [[order_code]]', '<span id=\"docs-internal-guid-d1837a43-7fff-0252-fe8f-82c4d7182511\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The refund request from [[customer_name]] for order #[[order_code]] has been reviewed and accepted. Below are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Processed Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[processes_date]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please take the necessary steps to update your records and ensure that the refund is processed according to our policy. Feel free to reach out if you have any questions or need further assistance.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:34'),
('40', 'seller', 'refund_accepted_by_seller_email_to_seller', 'Refund Request Accepted by Seller\n', 'Refund Request Accepted for Order [[order_code]]', '<span id=\"docs-internal-guid-d65b740b-7fff-7d58-f6cf-f26e066edb95\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The refund request from [[customer_name]] for order [[order_code]] has been reviewed and accepted. Below are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Processed Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[processes_date]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We will review this and take the necessary action according to our refund policy. Feel free to reach out at [[admin_email]] if you have any questions or need further assistance.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:34'),
('41', 'customer', 'refund_request_accepted_email_to_customer', 'Refund Request Accepted', 'Refund Accepted for Order [[order_code]]', '<span id=\"docs-internal-guid-c6997e38-7fff-ec0d-794e-b01fce37ae00\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We’re pleased to inform you that your refund request for order [[order_code]] has been accepted.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Refund Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Processed Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[processes_date]]</span></p></li></ul><br><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you have any questions or need further assistance, please contact us at [[admin_email]]. Thank you for your patience and understanding.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '1', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-08 04:00:06'),
('42', 'admin', 'refund_denied_by_admin_email_to_admin', 'Refund Request Denied by Admin', 'Refund Request Denied for Order [[order_code]]', '<span id=\"docs-internal-guid-7b880ded-7fff-6715-c1be-061865893fbb\"><span id=\"docs-internal-guid-6f4aa86a-7fff-c471-8479-65f8996ab5d4\"><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 12pt; margin-bottom: 0pt; padding: 0pt 0pt 12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 0pt; margin-bottom: 12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The refund request for order [[order_code]] has been denied. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 9pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Denied Reason</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">: [[denied_reason]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 12pt; margin-bottom: 0pt; padding: 0pt 0pt 12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please update the order status to reflect the denied refund and ensure that the customer is notified.</span></p><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:25'),
('43', 'admin', 'refund_denied_by_seller_email_to_admin', 'Refund Request Denied by Seller', 'Refund Request Denied by seller [[shop_name]] for Order [[order_code]]', '<span id=\"docs-internal-guid-7b880ded-7fff-6715-c1be-061865893fbb\"><br><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 0pt; margin-bottom: 0pt; padding: 0pt 0pt 12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 0pt; margin-bottom: 12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The refund request for order [[order_code]] has been denied by [[shop_name]]. Here are the details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order Code:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Customer Name:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 9pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height: 1.38; margin-top: 0pt; margin-bottom: 0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund denied Reason</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">: [[denied_reason]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 12pt; margin-bottom: 0pt; padding: 0pt 0pt 12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please update the order status to reflect the denied refund and ensure that the customer is notified.</span></p><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height: 1.656; margin-top: 0pt; margin-bottom: 0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><br></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:25'),
('44', 'seller', 'refund_denied_by_admin_email_to_seller', 'Refund Request Denied by Admin', 'Refund Request Denied for Order [[order_code]]', '<span id=\"docs-internal-guid-f804b678-7fff-54c9-5e15-1b93f35aabd0\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:12pt;margin-bottom:0pt;padding:0pt 0pt 12pt 0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The refund request for order [[order_code]] has been denied. Here are the details:</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Order Code:</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Customer Name:</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Request Date:</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Refund Amount:</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[refund_amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:9pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Refund denied Reason</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: [[denied_reason]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:12pt;margin-bottom:0pt;padding:0pt 0pt 12pt 0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Please update the order status to reflect the denied refund and ensure that the customer is notified.</span></p><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span id=\"docs-internal-guid-3f3535f5-7fff-1a6e-b312-ecad674b5808\"></span></p><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The [[store_name]] Team</span></p></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:36'),
('45', 'seller', 'refund_denied_by_seller_email_to_seller', 'Refund Request Denied by seller', 'Refund Request Denied for Order [[order_code]]', '<span id=\"docs-internal-guid-f804b678-7fff-54c9-5e15-1b93f35aabd0\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:12pt;margin-bottom:0pt;padding:0pt 0pt 12pt 0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:12pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The refund request for order [[order_code]] has been denied. Here are the details:</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Order Code:</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Customer Name:</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[customer_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Request Date:</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:Arial,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Refund Amount:</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> [[refund_amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:9pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Refund denied Reason</span><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">: [[denied_reason]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:12pt;margin-bottom:0pt;padding:0pt 0pt 12pt 0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Please update the order status to reflect the denied refund and ensure that the customer is notified.</span></p><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span id=\"docs-internal-guid-e02cf337-7fff-74ee-a5f1-4b4fd83b92cc\"></span></p><p dir=\"ltr\" style=\"line-height:1.656;background-color:#ffffff;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size:11pt;font-family:Roboto,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The [[store_name]] Team</span></p></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:36'),
('46', 'customer', 'refund_request_denied_email_to_customer', 'Refund Request Denied', 'Refund Request Denied for Order [[order_code]]', '<span id=\"docs-internal-guid-67a61200-7fff-91ae-eb49-5c407c7fafac\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[customer_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We regret to inform you that your refund request for order #[Order ID] has been denied.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Refund Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Order ID:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[order_code]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[request_date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Arial, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Refund Amount:</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[refund_amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you have any questions or need further clarification, please contact us at [[admin_email]].</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We appreciate your understanding and apologize for any inconvenience this may cause.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] Team</span></p><br></span>', '0', '1', '1', 'refund_request', '2024-09-04 06:01:38', '2024-09-09 04:18:45'),
('47', 'admin', 'seller_payout_request_email_to_admin', 'Seller Payout Request', 'Seller Payout Request [[shop_name]]', '<span id=\"docs-internal-guid-dc283fe9-7fff-8db3-63a3-870e2c7d31bd\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We have received a payout request from the seller, </span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">[[shop_name]]</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">. Below are the details of the request:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Shop Name:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[shop_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Shop Email:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[shop_email]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Amount Requested:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Please review the request and proceed with the necessary approvals or actions. If any additional information is needed, feel free to contact the seller directly or reply to this email.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for your prompt attention to this matter.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you,</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-04 06:01:38', '2024-09-08 23:17:36'),
('48', 'seller', 'seller_payout_request_email_to_seller', 'Payout Request', 'Payout Request Received at [[store_name]]', '<span id=\"docs-internal-guid-2637fe6e-7fff-3db1-f754-b5e7bdfbebfd\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We have received your payout request, and we are currently processing it. Below are the details of your request:</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Payout Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Request Date:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Amount Requested:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[amount]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Our team will review and process your payout shortly. You will receive a notification once the payment has been successfully completed. Should there be any issues or delays, we will contact you promptly.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">If you have any further questions, feel free to reply to this email or contact our support team at </span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">[[admin_email]]</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for being a valued partner!</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-04 06:01:38', '2024-09-08 23:17:53'),
('49', 'admin', 'seller_payout_email_to_admin', 'Seller Payout', 'Seller Payment Processed – [[shop_name]]', '<span id=\"docs-internal-guid-fa915dec-7fff-7279-4f38-de378d66a988\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[admin_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">I hope you are doing well.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">This is to notify you that the payment for </span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">[[shop_name]]</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"> has been successfully processed. Below are the details of the transaction:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Shop Name:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[shop_name]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"><span style=\"background-color: transparent; font-size: 11pt;\">Shop Email</span>:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[shop_email]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Payment Date:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Amount Paid:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Payment Method:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[payment_method]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-04 06:01:38', '2024-09-08 23:17:35'),
('50', 'seller', 'seller_payout_email_to_seller', 'Payout Received', 'Payment Confirmation from [[store_name]]', '<span id=\"docs-internal-guid-b30785bd-7fff-1e0b-e705-8fd54008f465\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Dear [[shop_name]],</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">We are pleased to inform you that your payment has been successfully processed. Below are the details of the transaction:</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Payment Details:</span></p><ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\"><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Payment Date:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[date]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Amount Paid:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[amount]]</span></p></li><li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space: pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\"><span style=\"font-size: 11pt; background-color: transparent; font-weight: 700; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\">Payment Method:</span><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; text-wrap: wrap;\"> [[payment_method]]</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Should you have any questions or concerns, feel free to reach out to us at [[admin_email]].</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Thank you for being a valued partner with us.</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">Best regards,</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\">The [[store_name]] team</span></p><div><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-variant-position: normal; vertical-align: baseline; white-space-collapse: preserve;\"><br></span></div></span>', '0', '1', '1', NULL, '2024-09-04 06:01:38', '2024-09-08 23:17:53');

-- ----------------------------------------
-- Table structure for `firebase_notifications`
-- ----------------------------------------

DROP TABLE IF EXISTS `firebase_notifications`;
CREATE TABLE `firebase_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `text` text DEFAULT NULL,
  `item_type` varchar(255) NOT NULL,
  `item_type_id` int(11) NOT NULL,
  `receiver_id` int(11) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

-- ----------------------------------------
-- Data for `firebase_notifications`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `flash_deal_products`;
CREATE TABLE `flash_deal_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `flash_deal_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `discount` double(20,2) DEFAULT 0.00,
  `discount_type` varchar(20) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `flash_deal_products`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `flash_deal_translations`;
CREATE TABLE `flash_deal_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `flash_deal_id` bigint(20) NOT NULL,
  `title` varchar(50) NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `flash_deal_translations`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `flash_deals`;
CREATE TABLE `flash_deals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `start_date` int(20) DEFAULT NULL,
  `end_date` int(20) DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT 0,
  `featured` int(1) NOT NULL DEFAULT 0,
  `background_color` varchar(255) DEFAULT NULL,
  `text_color` varchar(255) DEFAULT NULL,
  `banner` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `flash_deals`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `follow_sellers`
-- ----------------------------------------

DROP TABLE IF EXISTS `follow_sellers`;
CREATE TABLE `follow_sellers` (
  `user_id` bigint(20) NOT NULL,
  `shop_id` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `follow_sellers`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `frequently_bought_products`
-- ----------------------------------------

DROP TABLE IF EXISTS `frequently_bought_products`;
CREATE TABLE `frequently_bought_products` (
  `product_id` int(11) NOT NULL,
  `frequently_bought_product_id` int(11) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `frequently_bought_products`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `home_categories`;
CREATE TABLE `home_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL,
  `subsubcategories` varchar(1000) DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `home_categories`
-- ----------------------------------------

INSERT INTO `home_categories` (`id`, `category_id`, `subsubcategories`, `status`, `created_at`, `updated_at`) VALUES
('1', '1', '[\"1\"]', '1', '2019-03-12 12:08:23', '2019-03-12 12:08:23'),
('2', '2', '[\"10\"]', '1', '2019-03-12 12:14:54', '2019-03-12 12:14:54');

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

DROP TABLE IF EXISTS `languages`;
CREATE TABLE `languages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `code` varchar(100) NOT NULL,
  `app_lang_code` varchar(255) DEFAULT 'en',
  `rtl` int(1) NOT NULL DEFAULT 0,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `languages`
-- ----------------------------------------

INSERT INTO `languages` (`id`, `name`, `code`, `app_lang_code`, `rtl`, `status`, `created_at`, `updated_at`) VALUES
('1', 'English', 'en', 'en', '0', '1', '2019-01-20 17:43:20', '2019-01-20 17:43:20'),
('3', 'Bangla', 'bd', 'bn', '0', '1', '2019-02-17 12:05:37', '2019-02-18 12:19:51'),
('4', 'Arabic', 'sa', 'ar', '1', '1', '2019-04-29 00:04:12', '2019-04-29 00:04:12');

-- ----------------------------------------
-- Table structure for `last_viewed_products`
-- ----------------------------------------

DROP TABLE IF EXISTS `last_viewed_products`;
CREATE TABLE `last_viewed_products` (
  `id` int(20) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `last_viewed_products`
-- ----------------------------------------

INSERT INTO `last_viewed_products` (`id`, `user_id`, `product_id`, `created_at`, `updated_at`) VALUES
('4', '14', '18', '2025-09-12 22:26:41', '2025-09-12 22:27:51'),
('5', '19', '30', '2025-10-15 15:46:04', '2025-10-15 15:46:04'),
('6', '22', '28', '2025-10-17 10:25:53', '2025-10-17 10:25:53'),
('7', '22', '27', '2025-10-17 10:28:58', '2025-10-17 10:28:59'),
('8', '41', '14', '2026-04-07 18:07:50', '2026-04-07 18:07:50'),
('9', '44', '22', '2026-05-07 10:32:21', '2026-05-07 10:32:21'),
('10', '49', '27', '2026-06-19 17:29:36', '2026-06-19 17:29:36'),
('11', '49', '21', '2026-06-20 09:09:53', '2026-06-20 09:09:53'),
('12', '50', '14', '2026-06-22 08:54:47', '2026-06-24 12:04:03'),
('13', '53', '16', '2026-07-27 10:40:18', '2026-07-27 10:40:18'),
('14', '53', '75', '2026-07-27 10:42:12', '2026-07-27 10:42:12'),
('15', '50', '27', '2026-09-01 15:36:40', '2026-09-01 15:36:40');

-- ----------------------------------------
-- Table structure for `measurement_points`
-- ----------------------------------------

DROP TABLE IF EXISTS `measurement_points`;
CREATE TABLE `measurement_points` (
  `id` int(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `measurement_points`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `messages`;
CREATE TABLE `messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `conversation_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `message` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `messages`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `migrations`
-- ----------------------------------------

INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
('1', '2014_10_12_000000_create_users_table', '1'),
('2', '2014_10_12_100000_create_password_resets_table', '1');

-- ----------------------------------------
-- Table structure for `model_has_permissions`
-- ----------------------------------------

DROP TABLE IF EXISTS `model_has_permissions`;
CREATE TABLE `model_has_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL,
  `model_type` varchar(191) NOT NULL,
  `model_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`permission_id`,`model_id`,`model_type`),
  KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`),
  CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `model_has_permissions`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `model_has_roles`
-- ----------------------------------------

DROP TABLE IF EXISTS `model_has_roles`;
CREATE TABLE `model_has_roles` (
  `role_id` bigint(20) unsigned NOT NULL,
  `model_type` varchar(191) NOT NULL,
  `model_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`role_id`,`model_id`,`model_type`),
  KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`),
  CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `model_has_roles`
-- ----------------------------------------

INSERT INTO `model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES
('1', 'App\\Models\\User', '9');

-- ----------------------------------------
-- Table structure for `note_translations`
-- ----------------------------------------

DROP TABLE IF EXISTS `note_translations`;
CREATE TABLE `note_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) NOT NULL,
  `description` longtext NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `note_translations`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `notes`
-- ----------------------------------------

DROP TABLE IF EXISTS `notes`;
CREATE TABLE `notes` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `note_type` varchar(50) NOT NULL,
  `description` longtext NOT NULL,
  `seller_access` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Seller can access admin note;\r\n0 = No\r\n1 = Yes',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `notes`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `notification_type_translations`
-- ----------------------------------------

DROP TABLE IF EXISTS `notification_type_translations`;
CREATE TABLE `notification_type_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `notification_type_id` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `default_text` varchar(255) NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `notification_type_translations`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `notification_types`
-- ----------------------------------------

DROP TABLE IF EXISTS `notification_types`;
CREATE TABLE `notification_types` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_type` varchar(20) NOT NULL DEFAULT 'customer',
  `type` varchar(50) NOT NULL,
  `name` varchar(100) NOT NULL,
  `image` varchar(100) DEFAULT NULL,
  `default_text` varchar(255) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `notification_types`
-- ----------------------------------------

INSERT INTO `notification_types` (`id`, `user_type`, `type`, `name`, `image`, `default_text`, `status`, `created_at`, `updated_at`) VALUES
('1', 'admin', 'order_placed_admin', 'Order Placed', NULL, 'Order: [[order_code]] has been Placed', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('2', 'seller', 'order_placed_seller', 'Order Placed', NULL, 'Order: [[order_code]] has been Placed', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('3', 'customer', 'order_placed_customer', 'Order Placed', NULL, 'Your Order: [[order_code]] has been Placed', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('4', 'admin', 'order_confirmed_admin', 'Order Confirmed', NULL, 'Order: [[order_code]] has been Confirmed', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('5', 'seller', 'order_confirmed_seller', 'Order Confirmed', NULL, 'Order: [[order_code]] has been Confirmed', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('6', 'customer', 'order_confirmed_customer', 'Order Confirmed', NULL, 'Your Order: [[order_code]] has been Confirmed', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('7', 'admin', 'order_picked_up_admin', 'Order Picked Up', NULL, 'Order: [[order_code]] has been picked up', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('8', 'seller', 'order_picked_up_seller', 'Order Picked Up', NULL, 'Order: [[order_code]] has been picked up', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('9', 'customer', 'order_picked_up_customer', 'Order Picked Up', NULL, 'Your Order: [[order_code]] has been picked up', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('10', 'admin', 'order_on_the_way_admin', 'Order On the Way', NULL, 'Order: [[order_code]] is on the way', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('11', 'seller', 'order_on_the_way_seller', 'Order On the Way\r\n', NULL, 'Order: [[order_code]] is on the way', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('12', 'customer', 'order_on_the_way_customer', 'Order On the Way\r\n', NULL, 'Your Order: [[order_code]] is on the way', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('13', 'admin', 'order_delivered_admin', 'Order Delivered', NULL, 'Order: [[order_code]] has been delivered', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('14', 'seller', 'order_delivered_seller', 'Order Delivered', NULL, 'Order: [[order_code]] has been delivered', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('15', 'customer', 'order_delivered_customer', 'Order Delivered', NULL, 'Your Order: [[order_code]] has been delivered', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('16', 'admin', 'order_cancelled_admin', 'Order Cancelled', NULL, 'Order: [[order_code]] has been cancelled', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('17', 'seller', 'order_cancelled_seller', 'Order Cancelled', NULL, 'Order: [[order_code]] has been cancelled', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('18', 'customer', 'order_cancelled_customer', 'Order Cancelled', NULL, 'Your Order: [[order_code]] has been cancelled', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('19', 'admin', 'order_paid_admin', 'Successful Payment', NULL, 'Payment for order: [[order_code]] is successful', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('20', 'seller', 'order_paid_seller', 'Successful Payment', NULL, 'Payment for order: [[order_code]] is successful', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('21', 'customer', 'order_paid_customer', 'Successful Payment', NULL, 'Your payment for order: [[order_code]] is successful', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('22', 'admin', 'seller_product_upload', 'Seller Product Upload', NULL, 'Product : [[product_name]] is pending', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('23', 'seller', 'seller_product_approved', 'Product Approved', NULL, 'Product : [[product_name]] is approved', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('24', 'admin', 'seller_payout_request', 'Seller Payout Request', NULL, '[[shop_name]] request for payment : [[amount]]', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('25', 'seller', 'seller_payout', 'Payout', NULL, '[[shop_name]] : payment [[amount]] is paid', '1', '2024-05-14 21:05:09', '2024-05-14 21:05:09'),
('26', 'admin', 'shop_verify_request_submitted', 'Shop Verification Request Submitted', NULL, '[[shop_name]] submitted the verification request.', '1', '2024-05-20 17:52:20', '2024-05-20 17:52:20'),
('27', 'seller', 'shop_verify_request_approved', 'Shop Verification Request Approved', NULL, 'Your shop verification request has been Approved.', '1', '2024-05-20 17:52:20', '2024-05-20 17:52:20'),
('28', 'seller', 'shop_verify_request_rejected', 'Shop Verification Request Rejected', NULL, 'Your shop verification request has been Rejected.', '1', '2024-05-20 17:52:20', '2024-05-20 17:52:20'),
('29', 'customer', 'complete_unpaid_order_payment', 'Complete Unpaid Order Payment', NULL, 'Your order: [[order_code]] is still not paid for. Kindly complete your payment.', '1', '2024-08-22 11:15:04', '2024-08-22 11:15:04');

-- ----------------------------------------
-- Table structure for `notifications`
-- ----------------------------------------

DROP TABLE IF EXISTS `notifications`;
CREATE TABLE `notifications` (
  `id` char(36) NOT NULL,
  `notification_type_id` int(11) NOT NULL,
  `type` varchar(191) NOT NULL,
  `notifiable_type` varchar(191) NOT NULL,
  `notifiable_id` bigint(20) unsigned NOT NULL,
  `data` text NOT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notifications_notifiable_type_notifiable_id_index` (`notifiable_type`,`notifiable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `notifications`
-- ----------------------------------------

INSERT INTO `notifications` (`id`, `notification_type_id`, `type`, `notifiable_type`, `notifiable_id`, `data`, `read_at`, `created_at`, `updated_at`) VALUES
('157f5eb8-c388-4c79-88d2-4e92b33b574d', '1', 'App\\Notifications\\OrderNotification', 'App\\Models\\User', '9', '{\"order_id\":3,\"order_code\":\"20260901-16184218\",\"user_id\":50,\"seller_id\":9,\"status\":\"placed\"}', NULL, '2026-09-01 16:19:22', '2026-09-01 16:19:22'),
('3598cc76-01d7-473c-aecb-ab69747dbd70', '1', 'App\\Notifications\\OrderNotification', 'App\\Models\\User', '9', '{\"order_id\":1,\"order_code\":\"20260831-09272079\",\"user_id\":22,\"seller_id\":9,\"status\":\"placed\"}', NULL, '2026-08-31 09:27:21', '2026-08-31 09:27:21'),
('3c28a799-38b1-4370-ae6f-749bf27177fc', '1', 'App\\Notifications\\OrderNotification', 'App\\Models\\User', '9', '{\"order_id\":2,\"order_code\":\"20260901-15494996\",\"user_id\":50,\"seller_id\":9,\"status\":\"placed\"}', NULL, '2026-09-01 15:50:28', '2026-09-01 15:50:28'),
('48d128a2-9a2f-44a0-a789-162227aeeaeb', '3', 'App\\Notifications\\OrderNotification', 'App\\Models\\User', '50', '{\"order_id\":3,\"order_code\":\"20260901-16184218\",\"user_id\":50,\"seller_id\":9,\"status\":\"placed\"}', '2026-09-02 10:15:27', '2026-09-01 16:19:22', '2026-09-02 10:15:27'),
('5c5486a7-adcb-412f-923f-e7d6accc5691', '27', 'App\\Notifications\\ShopVerificationNotification', 'App\\Models\\User', '15', '{\"name\":\"grettasonedge\",\"id\":6,\"status\":\"approved\"}', NULL, '2025-09-09 21:22:27', '2025-09-09 21:22:27'),
('747ff68b-6895-435d-b958-169680b40964', '3', 'App\\Notifications\\OrderNotification', 'App\\Models\\User', '50', '{\"order_id\":2,\"order_code\":\"20260901-15494996\",\"user_id\":50,\"seller_id\":9,\"status\":\"placed\"}', NULL, '2026-09-01 15:50:28', '2026-09-01 15:50:28'),
('a4e75862-8f55-4f26-bbab-249adcd2df5c', '3', 'App\\Notifications\\OrderNotification', 'App\\Models\\User', '22', '{\"order_id\":1,\"order_code\":\"20260831-09272079\",\"user_id\":22,\"seller_id\":9,\"status\":\"placed\"}', NULL, '2026-08-31 09:27:21', '2026-08-31 09:27:21'),
('f665899e-3d09-4913-a3b8-b1c915ed8cc0', '28', 'App\\Notifications\\ShopVerificationNotification', 'App\\Models\\User', '15', '{\"name\":\"grettasonedge\",\"id\":6,\"status\":\"rejected\"}', NULL, '2025-09-09 21:22:27', '2025-09-09 21:22:27');

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

DROP TABLE IF EXISTS `order_details`;
CREATE TABLE `order_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `seller_id` int(11) DEFAULT NULL,
  `product_id` int(11) NOT NULL,
  `variation` longtext DEFAULT NULL,
  `price` double(20,2) DEFAULT NULL,
  `tax` double(20,2) NOT NULL DEFAULT 0.00,
  `shipping_cost` double(20,2) NOT NULL DEFAULT 0.00,
  `quantity` int(11) DEFAULT NULL,
  `payment_status` varchar(10) NOT NULL DEFAULT 'unpaid',
  `delivery_status` varchar(20) DEFAULT 'pending',
  `shipping_type` varchar(255) DEFAULT NULL,
  `pickup_point_id` int(11) DEFAULT NULL,
  `product_referral_code` varchar(255) DEFAULT NULL,
  `earn_point` double(25,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `order_details`
-- ----------------------------------------

INSERT INTO `order_details` (`id`, `order_id`, `seller_id`, `product_id`, `variation`, `price`, `tax`, `shipping_cost`, `quantity`, `payment_status`, `delivery_status`, `shipping_type`, `pickup_point_id`, `product_referral_code`, `earn_point`, `created_at`, `updated_at`) VALUES
('2', '2', '9', '14', NULL, '90.00', '0.00', '0.00', '1', 'unpaid', 'pending', 'home_delivery', NULL, NULL, '0.00', '2026-09-01 15:49:49', '2026-09-01 15:49:49'),
('3', '2', '9', '27', NULL, '7200.00', '0.00', '0.00', '1', 'unpaid', 'pending', 'home_delivery', NULL, NULL, '0.00', '2026-09-01 15:49:49', '2026-09-01 15:49:49'),
('4', '3', '9', '65', NULL, '2350.00', '0.00', '0.00', '1', 'unpaid', 'pending', 'home_delivery', NULL, NULL, '0.00', '2026-09-01 16:18:42', '2026-09-01 16:18:42');

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

DROP TABLE IF EXISTS `orders`;
CREATE TABLE `orders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `combined_order_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `guest_id` int(11) DEFAULT NULL,
  `seller_id` int(11) DEFAULT NULL,
  `shipping_address` longtext DEFAULT NULL,
  `additional_info` longtext DEFAULT NULL,
  `shipping_type` varchar(50) NOT NULL,
  `order_from` varchar(20) NOT NULL DEFAULT 'web',
  `pickup_point_id` int(11) NOT NULL DEFAULT 0,
  `carrier_id` int(11) DEFAULT NULL,
  `delivery_status` varchar(20) DEFAULT 'pending',
  `payment_type` varchar(20) DEFAULT NULL,
  `payment_status` varchar(20) DEFAULT 'unpaid',
  `payment_details` longtext DEFAULT NULL,
  `grand_total` double(20,2) DEFAULT NULL,
  `coupon_discount` double(20,2) NOT NULL DEFAULT 0.00,
  `code` mediumtext DEFAULT NULL,
  `tracking_code` varchar(255) DEFAULT NULL,
  `date` int(20) NOT NULL,
  `viewed` int(1) NOT NULL DEFAULT 0,
  `delivery_viewed` int(1) NOT NULL DEFAULT 1,
  `payment_status_viewed` int(1) DEFAULT 1,
  `commission_calculated` int(11) NOT NULL DEFAULT 0,
  `notified` tinyint(1) NOT NULL DEFAULT 0,
  `delivered_date` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `orders`
-- ----------------------------------------

INSERT INTO `orders` (`id`, `combined_order_id`, `user_id`, `guest_id`, `seller_id`, `shipping_address`, `additional_info`, `shipping_type`, `order_from`, `pickup_point_id`, `carrier_id`, `delivery_status`, `payment_type`, `payment_status`, `payment_details`, `grand_total`, `coupon_discount`, `code`, `tracking_code`, `date`, `viewed`, `delivery_viewed`, `payment_status_viewed`, `commission_calculated`, `notified`, `delivered_date`, `created_at`, `updated_at`) VALUES
('2', '2', '50', NULL, '9', '{\"name\":\"hasini\",\"email\":\"hasini@gmail.com\",\"address\":\"colombo\",\"country\":\"Sri Lanka\",\"state\":\"Colombo\",\"city\":\"Colombo\",\"postal_code\":\"00500\",\"phone\":\"+940768965714\",\"lat_lang\":\"6.8906397819519,79.906478881836\"}', NULL, 'home_delivery', 'web', '0', NULL, 'pending', 'cash_on_delivery', 'unpaid', NULL, '7290.00', '0.00', '20260901-15494996', NULL, '1788257989', '0', '0', '0', '0', '1', NULL, '2026-09-01 15:49:49', '2026-09-01 15:50:28'),
('3', '3', '50', NULL, '9', '{\"name\":\"hasini\",\"email\":\"hasiekanayake2000@gmail.com\",\"address\":\"colombo\",\"country\":\"Sri Lanka\",\"state\":\"Colombo\",\"city\":\"Colombo\",\"postal_code\":\"00500\",\"phone\":\"+940768965714\",\"lat_lang\":\"6.8906397819519,79.906478881836\"}', NULL, 'home_delivery', 'web', '0', NULL, 'pending', 'cash_on_delivery', 'unpaid', NULL, '2350.00', '0.00', '20260901-16184218', NULL, '1788259722', '0', '0', '0', '0', '1', NULL, '2026-09-01 16:18:42', '2026-09-01 16:19:22');

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

DROP TABLE IF EXISTS `page_translations`;
CREATE TABLE `page_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `page_id` bigint(20) NOT NULL,
  `title` varchar(255) NOT NULL,
  `content` longtext NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `page_translations`
-- ----------------------------------------

INSERT INTO `page_translations` (`id`, `page_id`, `title`, `content`, `lang`, `created_at`, `updated_at`) VALUES
('2', '7', 'Contact us', '{\"description\":\"helow\",\"address\":\"nawala,sri lanka.\",\"phone\":\"0715605092\",\"email\":\"addpacksbusiness@gmail.com\"}', 'en', '2025-08-14 08:56:36', '2025-08-14 08:56:36');

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

DROP TABLE IF EXISTS `pages`;
CREATE TABLE `pages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(50) NOT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `meta_title` text DEFAULT NULL,
  `meta_description` varchar(1000) DEFAULT NULL,
  `keywords` varchar(1000) DEFAULT NULL,
  `meta_image` varchar(255) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `pages`
-- ----------------------------------------

INSERT INTO `pages` (`id`, `type`, `title`, `slug`, `content`, `meta_title`, `meta_description`, `keywords`, `meta_image`, `created_at`, `updated_at`) VALUES
('1', 'home_page', 'Home Page', 'home', NULL, NULL, NULL, NULL, NULL, '2020-11-04 15:43:20', '2020-11-04 15:43:20'),
('2', 'seller_policy_page', 'Seller Policy Pages', 'seller-policy', NULL, NULL, NULL, NULL, NULL, '2020-11-04 15:44:41', '2020-11-04 17:49:30'),
('3', 'return_policy_page', 'Return Policy Page', 'return-policy', NULL, NULL, NULL, NULL, NULL, '2020-11-04 15:44:41', '2020-11-04 15:44:41'),
('4', 'support_policy_page', 'Support Policy Page', 'support-policy', NULL, NULL, NULL, NULL, NULL, '2020-11-04 15:44:59', '2020-11-04 15:44:59'),
('5', 'terms_conditions_page', 'Term Conditions Page', 'terms', NULL, NULL, NULL, NULL, NULL, '2020-11-04 15:45:29', '2020-11-04 15:45:29'),
('6', 'privacy_policy_page', 'Privacy Policy Page', 'privacy-policy', NULL, NULL, NULL, NULL, NULL, '2020-11-04 15:45:55', '2020-11-04 15:45:55'),
('7', 'contact_us_page', 'Contact us', 'contact-us', '{\"description\":\"helow\",\"address\":\"nawala,sri lanka.\",\"phone\":\"0715605092\",\"email\":\"addpacksbusiness@gmail.com\"}', NULL, NULL, NULL, '13', '2024-08-25 12:52:32', '2025-08-14 08:56:36');

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

DROP TABLE IF EXISTS `password_resets`;
CREATE TABLE `password_resets` (
  `email` varchar(191) NOT NULL,
  `token` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `password_resets`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `payku_payments`
-- ----------------------------------------

DROP TABLE IF EXISTS `payku_payments`;
CREATE TABLE `payku_payments` (
  `transaction_id` varchar(191) NOT NULL,
  `start` date NOT NULL,
  `end` date NOT NULL,
  `media` varchar(191) NOT NULL,
  `transaction_key` varchar(255) DEFAULT NULL,
  `payment_key` varchar(255) DEFAULT NULL,
  `verification_key` varchar(191) NOT NULL,
  `authorization_code` varchar(191) NOT NULL,
  `last_4_digits` int(10) unsigned DEFAULT NULL,
  `installments` varchar(191) DEFAULT NULL,
  `card_type` varchar(191) DEFAULT NULL,
  `additional_parameters` varchar(191) DEFAULT NULL,
  `currency` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  UNIQUE KEY `payku_payments_transaction_id_unique` (`transaction_id`),
  CONSTRAINT `payku_payments_transaction_id_foreign` FOREIGN KEY (`transaction_id`) REFERENCES `payku_transactions` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `payku_payments`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `payku_transactions`
-- ----------------------------------------

DROP TABLE IF EXISTS `payku_transactions`;
CREATE TABLE `payku_transactions` (
  `id` varchar(191) NOT NULL,
  `status` varchar(191) DEFAULT NULL,
  `order` varchar(191) DEFAULT NULL,
  `email` varchar(191) DEFAULT NULL,
  `subject` varchar(191) DEFAULT NULL,
  `url` text DEFAULT NULL,
  `amount` int(10) unsigned DEFAULT NULL,
  `notified_at` datetime DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  UNIQUE KEY `payku_transactions_id_unique` (`id`),
  UNIQUE KEY `payku_transactions_order_unique` (`order`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `payku_transactions`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `payment_methods`
-- ----------------------------------------

DROP TABLE IF EXISTS `payment_methods`;
CREATE TABLE `payment_methods` (
  `id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  `addon_identifier` varchar(191) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `payment_methods`
-- ----------------------------------------

INSERT INTO `payment_methods` (`id`, `name`, `active`, `addon_identifier`, `created_at`, `updated_at`) VALUES
('1', 'paypal', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('2', 'stripe', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('3', 'sslcommerz', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('4', 'instamojo', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('5', 'razorpay', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('6', 'paystack', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('7', 'voguepay', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('8', 'payhere', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('9', 'ngenius', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('10', 'iyzico', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('11', 'nagad', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('12', 'bkash', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('13', 'aamarpay', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('14', 'authorizenet', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('15', 'payku', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('16', 'mercadopago', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('17', 'paymob', '0', NULL, '2024-05-19 05:01:18', '2024-05-19 05:01:18'),
('18', 'paytm', '0', 'paytm', '2024-05-19 05:05:13', '2024-05-19 05:05:13'),
('19', 'toyyibpay', '0', 'paytm', '2024-05-19 05:05:13', '2024-05-19 05:05:13'),
('20', 'myfatoorah', '0', 'paytm', '2024-05-19 05:05:13', '2024-05-19 05:05:13'),
('21', 'khalti', '0', 'paytm', '2024-05-19 05:05:13', '2024-05-19 05:05:13'),
('22', 'phonepe', '0', 'paytm', '2024-05-19 05:05:13', '2024-05-19 05:05:13'),
('23', 'flutterwave', '0', 'african_pg', '2024-05-19 05:06:10', '2024-05-19 05:06:10'),
('24', 'payfast', '0', 'african_pg', '2024-05-19 05:06:10', '2024-05-19 05:06:10'),
('25', 'tap', '0', NULL, '2024-07-14 11:46:47', '2024-07-14 11:46:47');

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

DROP TABLE IF EXISTS `payments`;
CREATE TABLE `payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `seller_id` int(11) NOT NULL,
  `amount` double(20,2) NOT NULL DEFAULT 0.00,
  `payment_details` longtext DEFAULT NULL,
  `payment_method` varchar(255) DEFAULT NULL,
  `txn_code` varchar(100) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `payments`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `permissions`
-- ----------------------------------------

DROP TABLE IF EXISTS `permissions`;
CREATE TABLE `permissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `section` varchar(50) DEFAULT NULL,
  `guard_name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=268 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `permissions`
-- ----------------------------------------

INSERT INTO `permissions` (`id`, `name`, `section`, `guard_name`, `created_at`, `updated_at`) VALUES
('1', 'add_new_product', 'product', 'web', '2022-06-12 15:01:31', '2022-06-12 15:01:31'),
('2', 'show_all_products', 'product', 'web', '2022-06-12 15:02:34', '2022-06-12 15:02:34'),
('3', 'show_in_house_products', 'product', 'web', '2022-06-12 15:03:08', '2022-06-12 15:03:08'),
('4', 'show_seller_products', 'product', 'web', '2022-06-12 15:03:40', '2022-06-12 15:03:40'),
('5', 'product_edit', 'product', 'web', '2022-06-13 19:20:06', '2022-06-13 19:20:06'),
('6', 'product_duplicate', 'product', 'web', '2022-06-13 20:54:20', '2022-06-13 20:54:20'),
('7', 'product_delete', 'product', 'web', '2022-06-13 20:54:47', '2022-06-13 20:54:47'),
('8', 'show_digital_products', 'product', 'web', '2022-06-13 22:18:13', '2022-06-13 22:18:13'),
('9', 'add_digital_product', 'product', 'web', '2022-06-13 22:18:28', '2022-06-13 22:18:28'),
('10', 'edit_digital_product', 'product', 'web', '2022-06-13 22:18:40', '2022-06-13 22:18:40'),
('11', 'delete_digital_product', 'product', 'web', '2022-06-13 22:18:47', '2022-06-13 22:18:47'),
('12', 'download_digital_product', 'product', 'web', '2022-06-13 22:18:57', '2022-06-13 22:18:57'),
('13', 'product_bulk_import', 'product', 'web', '2022-06-13 23:48:52', '2022-06-13 23:48:52'),
('14', 'product_bulk_export', 'product', 'web', '2022-06-13 23:49:19', '2022-06-13 23:49:19'),
('15', 'view_product_categories', 'product_category', 'web', '2022-06-13 23:54:33', '2022-06-13 23:54:33'),
('16', 'add_product_category', 'product_category', 'web', '2022-06-13 23:55:56', '2022-06-13 23:55:56'),
('17', 'edit_product_category', 'product_category', 'web', '2022-06-13 23:56:17', '2022-06-13 23:56:17'),
('18', 'delete_product_category', 'product_category', 'web', '2022-06-13 23:56:42', '2022-06-13 23:56:42'),
('19', 'view_all_brands', 'brand', 'web', '2022-06-14 17:01:46', '2022-06-14 17:01:46'),
('20', 'add_brand', 'brand', 'web', '2022-06-14 17:02:08', '2022-06-14 17:02:08'),
('21', 'edit_brand', 'brand', 'web', '2022-06-14 17:02:16', '2022-06-14 17:02:16'),
('22', 'delete_brand', 'brand', 'web', '2022-06-14 17:02:25', '2022-06-14 17:02:25'),
('23', 'view_product_attributes', 'product_attribute', 'web', '2022-06-14 17:04:47', '2022-06-14 17:04:47'),
('24', 'add_product_attribute', 'product_attribute', 'web', '2022-06-14 17:05:20', '2022-06-14 17:05:20'),
('25', 'edit_product_attribute', 'product_attribute', 'web', '2022-06-14 17:05:26', '2022-06-14 17:05:26'),
('26', 'delete_product_attribute', 'product_attribute', 'web', '2022-06-14 17:05:33', '2022-06-14 17:05:33'),
('27', 'view_product_attribute_values', 'product_attribute', 'web', '2022-06-14 17:08:12', '2022-06-14 17:08:12'),
('28', 'add_product_attribute_values', 'product_attribute', 'web', '2022-06-14 17:08:20', '2022-06-14 17:08:20'),
('29', 'edit_product_attribute_value', 'product_attribute', 'web', '2022-06-14 17:08:50', '2022-06-14 17:08:50'),
('30', 'delete_product_attribute_value', 'product_attribute', 'web', '2022-06-14 17:09:06', '2022-06-14 17:09:06'),
('31', 'view_colors', 'product_attribute', 'web', '2022-06-14 17:14:16', '2022-06-14 17:14:16'),
('32', 'add_color', 'product_attribute', 'web', '2022-06-14 17:14:41', '2022-06-14 17:14:41'),
('33', 'edit_color', 'product_attribute', 'web', '2022-06-14 17:14:50', '2022-06-14 17:14:50'),
('34', 'delete_color', 'product_attribute', 'web', '2022-06-14 17:14:59', '2022-06-14 17:14:59'),
('35', 'view_product_reviews', 'product_review', 'web', '2022-06-14 17:25:04', '2022-06-14 17:25:04'),
('36', 'publish_product_review', 'product_review', 'web', '2022-06-14 17:27:37', '2022-06-14 17:27:37'),
('37', 'view_all_orders', 'sale', 'web', '2022-06-14 23:19:04', '2022-06-14 23:19:04'),
('38', 'view_inhouse_orders', 'sale', 'web', '2022-06-14 23:19:30', '2022-06-14 23:19:30'),
('39', 'view_seller_orders', 'sale', 'web', '2022-06-14 23:20:06', '2022-06-14 23:20:06'),
('40', 'view_pickup_point_orders', 'sale', 'web', '2022-06-14 23:21:17', '2022-06-14 23:21:17'),
('41', 'view_order_details', 'sale', 'web', '2022-06-14 23:23:13', '2022-06-14 23:23:13'),
('42', 'update_order_payment_status', 'sale', 'web', '2022-06-14 23:23:55', '2022-06-14 23:23:55'),
('43', 'update_order_delivery_status', 'sale', 'web', '2022-06-14 23:24:02', '2022-06-14 23:24:02'),
('44', 'delete_order', 'sale', 'web', '2022-06-14 23:25:02', '2022-06-14 23:25:02'),
('45', 'view_all_customers', 'customer', 'web', '2022-06-14 23:29:28', '2022-06-14 23:29:28'),
('46', 'login_as_customer', 'customer', 'web', '2022-06-14 23:29:58', '2022-06-14 23:29:58'),
('47', 'ban_customer', 'customer', 'web', '2022-06-14 23:30:12', '2022-06-14 23:30:12'),
('48', 'delete_customer', 'customer', 'web', '2022-06-14 23:30:45', '2022-06-14 23:30:45'),
('49', 'view_classified_products', 'customer', 'web', '2022-06-14 23:32:38', '2022-06-14 23:32:38'),
('50', 'publish_classified_product', 'customer', 'web', '2022-06-14 23:36:23', '2022-06-14 23:36:23'),
('51', 'delete_classified_product', 'customer', 'web', '2022-06-14 23:36:39', '2022-06-14 23:36:39'),
('52', 'view_classified_packages', 'customer', 'web', '2022-06-14 23:38:11', '2022-06-14 23:38:11'),
('53', 'add_classified_package', 'customer', 'web', '2022-06-14 23:38:22', '2022-06-14 23:38:22'),
('54', 'edit_classified_package', 'customer', 'web', '2022-06-14 23:38:35', '2022-06-14 23:38:35'),
('55', 'delete_classified_package', 'customer', 'web', '2022-06-14 23:38:44', '2022-06-14 23:38:44'),
('56', 'view_all_seller', 'seller', 'web', '2022-06-15 18:19:56', '2022-06-15 18:19:56'),
('57', 'view_seller_profile', 'seller', 'web', '2022-06-15 18:28:07', '2022-06-15 18:28:07'),
('58', 'login_as_seller', 'seller', 'web', '2022-06-15 18:28:22', '2022-06-15 18:28:22'),
('59', 'pay_to_seller', 'seller', 'web', '2022-06-15 19:51:28', '2022-06-15 19:51:28'),
('60', 'seller_payment_history', 'seller', 'web', '2022-06-15 19:52:14', '2022-06-15 19:52:14'),
('61', 'edit_seller', 'seller', 'web', '2022-06-15 19:52:28', '2022-06-15 19:52:28'),
('62', 'delete_seller', 'seller', 'web', '2022-06-15 19:52:37', '2022-06-15 19:52:37'),
('63', 'ban_seller', 'seller', 'web', '2022-06-15 19:52:48', '2022-06-15 19:52:48'),
('64', 'approve_seller', 'seller', 'web', '2022-06-15 19:54:17', '2022-06-15 19:54:17'),
('65', 'view_seller_payout_requests', 'seller', 'web', '2022-06-15 20:03:37', '2022-06-15 20:03:37'),
('66', 'seller_commission_configuration', 'seller', 'web', '2022-06-15 20:07:18', '2022-06-15 20:07:18'),
('67', 'seller_verification_form_configuration', 'seller', 'web', '2022-06-15 20:08:43', '2022-06-15 20:08:43'),
('68', 'in_house_product_sale_report', 'report', 'web', '2022-06-18 21:13:02', '2022-06-18 21:13:02'),
('69', 'seller_products_sale_report', 'report', 'web', '2022-06-18 21:13:32', '2022-06-18 21:13:32'),
('70', 'products_stock_report', 'report', 'web', '2022-06-18 21:13:51', '2022-06-18 21:13:51'),
('71', 'product_wishlist_report', 'report', 'web', '2022-06-18 21:16:18', '2022-06-18 21:16:18'),
('72', 'user_search_report', 'report', 'web', '2022-06-18 21:16:39', '2022-06-18 21:16:39'),
('73', 'commission_history_report', 'report', 'web', '2022-06-18 21:17:17', '2022-06-18 21:17:17'),
('74', 'wallet_transaction_report', 'report', 'web', '2022-06-18 21:18:00', '2022-06-18 21:18:00'),
('75', 'view_blogs', 'blog', 'web', '2022-06-19 05:38:14', '2022-06-19 05:38:14'),
('76', 'add_blog', 'blog', 'web', '2022-06-19 05:38:43', '2022-06-19 05:38:43'),
('77', 'edit_blog', 'blog', 'web', '2022-06-19 05:38:56', '2022-06-19 05:38:56'),
('78', 'delete_blog', 'blog', 'web', '2022-06-19 05:39:08', '2022-06-19 05:39:08'),
('79', 'publish_blog', 'blog', 'web', '2022-06-19 05:41:09', '2022-06-19 05:41:09'),
('80', 'view_blog_categories', 'blog', 'web', '2022-06-19 05:42:55', '2022-06-19 05:42:55'),
('81', 'add_blog_category', 'blog', 'web', '2022-06-19 05:43:24', '2022-06-19 05:43:24'),
('82', 'edit_blog_category', 'blog', 'web', '2022-06-19 05:43:37', '2022-06-19 05:43:37'),
('83', 'delete_blog_category', 'blog', 'web', '2022-06-19 05:44:06', '2022-06-19 05:44:06'),
('84', 'view_all_flash_deals', 'marketing', 'web', '2022-06-19 06:48:52', '2022-06-19 06:48:52'),
('85', 'add_flash_deal', 'marketing', 'web', '2022-06-19 06:49:22', '2022-06-19 06:49:22'),
('86', 'edit_flash_deal', 'marketing', 'web', '2022-06-19 06:49:32', '2022-06-19 06:49:32'),
('87', 'delete_flash_deal', 'marketing', 'web', '2022-06-19 06:49:44', '2022-06-19 06:49:44'),
('88', 'publish_flash_deal', 'marketing', 'web', '2022-06-19 06:50:45', '2022-06-19 06:50:45'),
('89', 'featured_flash_deal', 'marketing', 'web', '2022-06-19 06:53:07', '2022-06-19 06:53:07'),
('90', 'view_all_coupons', 'marketing', 'web', '2022-06-19 06:53:47', '2022-06-19 06:53:47'),
('91', 'add_coupon', 'marketing', 'web', '2022-06-19 06:54:07', '2022-06-19 06:54:07'),
('92', 'edit_coupon', 'marketing', 'web', '2022-06-19 06:54:24', '2022-06-19 06:54:24'),
('93', 'delete_coupon', 'marketing', 'web', '2022-06-19 06:54:34', '2022-06-19 06:54:34'),
('94', 'send_newsletter', 'marketing', 'web', '2022-06-19 06:55:53', '2022-06-19 06:55:53'),
('95', 'view_all_subscribers', 'marketing', 'web', '2022-06-19 07:02:13', '2022-06-19 07:02:13'),
('96', 'delete_subscriber', 'marketing', 'web', '2022-06-19 07:02:35', '2022-06-19 07:02:35'),
('97', 'view_all_support_tickets', 'support', 'web', '2022-06-19 23:01:53', '2022-06-19 23:01:53'),
('98', 'reply_to_support_tickets', 'support', 'web', '2022-06-19 23:03:13', '2022-06-19 23:03:13'),
('99', 'view_all_product_queries', 'support', 'web', '2022-06-19 23:08:45', '2022-06-19 23:08:45'),
('100', 'reply_to_product_queries', 'support', 'web', '2022-06-19 23:10:02', '2022-06-19 23:10:02'),
('102', 'header_setup', 'website_setup', 'web', '2022-06-19 23:15:24', '2022-06-19 23:15:24'),
('103', 'footer_setup', 'website_setup', 'web', '2022-06-19 23:15:37', '2022-06-19 23:15:37'),
('104', 'website_appearance', 'website_setup', 'web', '2022-06-19 23:16:49', '2022-06-19 23:16:49'),
('105', 'view_all_website_pages', 'website_setup', 'web', '2022-06-19 23:20:04', '2022-06-19 23:20:04'),
('106', 'add_website_page', 'website_setup', 'web', '2022-06-19 23:20:38', '2022-06-19 23:20:38'),
('107', 'edit_website_page', 'website_setup', 'web', '2022-06-19 23:20:47', '2022-06-19 23:20:47'),
('108', 'delete_website_page', 'website_setup', 'web', '2022-06-19 23:22:09', '2022-06-19 23:22:09'),
('109', 'general_settings', 'setup_configurations', 'web', '2022-06-20 00:08:36', '2022-06-20 00:08:36'),
('110', 'features_activation', 'setup_configurations', 'web', '2022-06-20 00:09:42', '2022-06-20 00:09:42'),
('111', 'language_setup', 'setup_configurations', 'web', '2022-06-20 03:43:30', '2022-06-20 03:43:30'),
('112', 'currency_setup', 'setup_configurations', 'web', '2022-06-20 03:44:33', '2022-06-20 03:44:33'),
('113', 'vat_&_tax_setup', 'setup_configurations', 'web', '2022-06-20 03:45:21', '2022-06-20 03:45:21'),
('114', 'pickup_point_setup', 'setup_configurations', 'web', '2022-06-20 03:45:46', '2022-06-20 03:45:46'),
('115', 'smtp_settings', 'setup_configurations', 'web', '2022-06-20 03:46:05', '2022-06-20 03:46:05'),
('116', 'payment_methods_configurations', 'setup_configurations', 'web', '2022-06-20 03:55:27', '2022-06-20 03:55:27'),
('117', 'order_configuration', 'setup_configurations', 'web', '2022-06-20 03:56:26', '2022-06-20 03:56:26'),
('118', 'file_system_&_cache_configuration', 'setup_configurations', 'web', '2022-06-20 03:56:59', '2022-06-20 03:56:59'),
('119', 'social_media_logins', 'setup_configurations', 'web', '2022-06-20 03:57:22', '2022-06-20 03:57:22'),
('120', 'facebook_chat', 'setup_configurations', 'web', '2022-06-20 03:58:31', '2022-06-20 03:58:31'),
('121', 'facebook_comment', 'setup_configurations', 'web', '2022-06-20 03:58:51', '2022-06-20 03:58:51'),
('122', 'analytics_tools_configuration', 'setup_configurations', 'web', '2022-06-20 03:59:57', '2022-06-20 03:59:57'),
('123', 'google_recaptcha_configuration', 'setup_configurations', 'web', '2022-06-20 04:00:55', '2022-06-20 04:00:55'),
('124', 'google_map_setting', 'setup_configurations', 'web', '2022-06-20 04:01:28', '2022-06-20 04:01:28'),
('125', 'google_firebase_setting', 'setup_configurations', 'web', '2022-06-20 04:02:00', '2022-06-20 04:02:00'),
('126', 'shipping_configuration', 'setup_configurations', 'web', '2022-06-20 04:11:29', '2022-06-20 04:11:29'),
('127', 'shipping_country_setting', 'setup_configurations', 'web', '2022-06-20 04:12:14', '2022-06-20 04:12:14'),
('128', 'manage_shipping_states', 'setup_configurations', 'web', '2022-06-20 04:13:43', '2022-06-20 04:13:43'),
('129', 'manage_shipping_cities', 'setup_configurations', 'web', '2022-06-20 04:14:17', '2022-06-20 04:14:17'),
('130', 'view_all_staffs', 'staff', 'web', '2022-06-20 04:15:00', '2022-06-20 04:15:00'),
('131', 'add_staff', 'staff', 'web', '2022-06-20 04:15:09', '2022-06-20 04:15:09'),
('132', 'edit_staff', 'staff', 'web', '2022-06-20 04:15:21', '2022-06-20 04:15:21'),
('133', 'delete_staff', 'staff', 'web', '2022-06-20 04:15:36', '2022-06-20 04:15:36'),
('134', 'view_staff_roles', 'staff', 'web', '2022-06-20 04:16:27', '2022-06-20 04:16:27'),
('135', 'add_staff_role', 'staff', 'web', '2022-06-20 04:23:00', '2022-06-20 04:23:00'),
('136', 'edit_staff_role', 'staff', 'web', '2022-06-20 04:23:11', '2022-06-20 04:23:11'),
('137', 'delete_staff_role', 'staff', 'web', '2022-06-20 04:23:22', '2022-06-20 04:23:22'),
('138', 'system_update', 'system', 'web', '2022-06-20 04:27:15', '2022-06-20 04:27:15'),
('139', 'server_status', 'system', 'web', '2022-06-20 04:27:58', '2022-06-20 04:27:58'),
('140', 'manage_addons', 'system', 'web', '2022-06-20 04:45:43', '2022-06-20 04:45:43'),
('141', 'admin_dashboard', 'system', 'web', '2022-06-20 23:56:52', '2022-06-20 23:56:52'),
('142', 'pos_manager', 'pos_system', 'web', '2022-06-21 01:16:20', '2022-06-21 01:16:20'),
('143', 'pos_configuration', 'pos_system', 'web', '2022-06-21 01:26:00', '2022-06-21 01:26:00'),
('144', 'view_all_auction_products', 'auction', 'web', '2022-06-21 01:35:54', '2022-06-21 01:35:54'),
('145', 'view_inhouse_auction_products', 'auction', 'web', '2022-06-21 01:39:29', '2022-06-21 01:39:29'),
('146', 'view_seller_auction_products', 'auction', 'web', '2022-06-21 01:39:51', '2022-06-21 01:39:51'),
('147', 'add_auction_product', 'auction', 'web', '2022-06-21 01:41:19', '2022-06-21 01:41:19'),
('148', 'edit_auction_product', 'auction', 'web', '2022-06-21 01:42:57', '2022-06-21 01:42:57'),
('149', 'delete_auction_product', 'auction', 'web', '2022-06-21 01:47:35', '2022-06-21 01:47:35'),
('150', 'view_auction_product_bids', 'auction', 'web', '2022-06-21 01:55:29', '2022-06-21 01:55:29'),
('151', 'delete_auction_product_bids', 'auction', 'web', '2022-06-21 02:03:55', '2022-06-21 02:03:55'),
('152', 'view_auction_product_orders', 'auction', 'web', '2022-06-21 02:14:11', '2022-06-21 02:14:11'),
('153', 'view_all_wholesale_products', 'wholesale', 'web', '2022-06-21 03:36:26', '2022-06-21 03:36:26'),
('154', 'view_inhouse_wholesale_products', 'wholesale', 'web', '2022-06-21 03:39:18', '2022-06-21 03:39:18'),
('155', 'view_sellers_wholesale_products', 'wholesale', 'web', '2022-06-21 03:39:48', '2022-06-21 03:39:48'),
('156', 'add_wholesale_product', 'wholesale', 'web', '2022-06-21 04:26:35', '2022-06-21 04:26:35'),
('157', 'edit_wholesale_product', 'wholesale', 'web', '2022-06-21 04:26:55', '2022-06-21 04:26:55'),
('158', 'delete_wholesale_product', 'wholesale', 'web', '2022-06-21 04:27:07', '2022-06-21 04:27:07'),
('159', 'view_all_delivery_boy', 'delivery_boy', 'web', '2022-06-21 05:11:57', '2022-06-21 05:11:57'),
('160', 'add_delivery_boy', 'delivery_boy', 'web', '2022-06-21 05:13:13', '2022-06-21 05:13:13'),
('161', 'edit_delivery_boy', 'delivery_boy', 'web', '2022-06-21 05:13:32', '2022-06-21 05:13:32'),
('162', 'ban_delivery_boy', 'delivery_boy', 'web', '2022-06-22 00:25:57', '2022-06-22 00:25:57'),
('163', 'collect_from_delivery_boy', 'delivery_boy', 'web', '2022-06-22 00:28:23', '2022-06-22 00:28:23'),
('164', 'pay_to_delivery_boy', 'delivery_boy', 'web', '2022-06-22 00:28:35', '2022-06-22 00:28:35'),
('165', 'delivery_boy_payment_history', 'delivery_boy', 'web', '2022-06-22 01:08:43', '2022-06-22 01:08:43'),
('166', 'collected_histories_from_delivery_boy', 'delivery_boy', 'web', '2022-06-22 01:10:04', '2022-06-22 01:10:04'),
('167', 'order_cancle_request_by_delivery_boy', 'delivery_boy', 'web', '2022-06-22 01:36:37', '2022-06-22 01:36:37'),
('168', 'delivery_boy_configuration', 'delivery_boy', 'web', '2022-06-22 01:37:07', '2022-06-22 01:37:07'),
('169', 'view_refund_requests', 'refund_request', 'web', '2022-06-22 01:51:11', '2022-06-22 01:51:11'),
('170', 'accept_refund_request', 'refund_request', 'web', '2022-06-22 01:51:55', '2022-06-22 01:51:55'),
('171', 'reject_refund_request', 'refund_request', 'web', '2022-06-22 01:53:20', '2022-06-22 01:53:20'),
('172', 'view_approved_refund_requests', 'refund_request', 'web', '2022-06-22 01:54:09', '2022-06-22 01:54:09'),
('173', 'view_rejected_refund_requests', 'refund_request', 'web', '2022-06-22 02:03:40', '2022-06-22 02:03:40'),
('174', 'refund_request_configuration', 'refund_request', 'web', '2022-06-22 02:04:21', '2022-06-22 02:04:21'),
('175', 'affiliate_registration_form_config', 'affiliate_system', 'web', '2022-06-22 04:22:18', '2022-06-22 04:22:18'),
('176', 'affiliate_configurations', 'affiliate_system', 'web', '2022-06-22 04:22:35', '2022-06-22 04:22:35'),
('177', 'view_affiliate_users', 'affiliate_system', 'web', '2022-06-22 04:23:19', '2022-06-22 04:23:19'),
('178', 'pay_to_affiliate_user', 'affiliate_system', 'web', '2022-06-22 04:24:49', '2022-06-22 04:24:49'),
('179', 'affiliate_users_payment_history', 'affiliate_system', 'web', '2022-06-22 04:25:51', '2022-06-22 04:25:51'),
('180', 'view_all_referral_users', 'affiliate_system', 'web', '2022-06-22 04:26:46', '2022-06-22 04:26:46'),
('181', 'view_affiliate_withdraw_requests', 'affiliate_system', 'web', '2022-06-22 04:28:01', '2022-06-22 04:28:01'),
('182', 'accept_affiliate_withdraw_requests', 'affiliate_system', 'web', '2022-06-22 04:29:38', '2022-06-22 04:29:38'),
('183', 'reject_affiliate_withdraw_request', 'affiliate_system', 'web', '2022-06-22 04:30:04', '2022-06-22 04:30:04'),
('184', 'view_affiliate_logs', 'affiliate_system', 'web', '2022-06-22 04:30:51', '2022-06-22 04:30:51'),
('185', 'view_all_manual_payment_methods', 'offline_payment', 'web', '2022-06-22 04:32:50', '2022-06-22 04:32:50'),
('186', 'add_manual_payment_method', 'offline_payment', 'web', '2022-06-22 04:33:25', '2022-06-22 04:33:25'),
('187', 'edit_manual_payment_method', 'offline_payment', 'web', '2022-06-22 04:33:56', '2022-06-22 04:33:56'),
('188', 'delete_manual_payment_method', 'offline_payment', 'web', '2022-06-22 04:34:10', '2022-06-22 04:34:10'),
('189', 'view_all_offline_wallet_recharges', 'offline_payment', 'web', '2022-06-22 04:39:09', '2022-06-22 04:39:09'),
('190', 'approve_offline_wallet_recharge', 'offline_payment', 'web', '2022-06-22 04:41:29', '2022-06-22 04:41:29'),
('191', 'view_all_offline_customer_package_payments', 'offline_payment', 'web', '2022-06-22 04:42:49', '2022-06-22 04:42:49'),
('192', 'approve_offline_customer_package_payment', 'offline_payment', 'web', '2022-06-22 04:43:24', '2022-06-22 04:43:24'),
('193', 'view_all_offline_seller_package_payments', 'offline_payment', 'web', '2022-06-22 04:44:02', '2022-06-22 04:44:02'),
('194', 'approve_offline_seller_package_payment', 'offline_payment', 'web', '2022-06-22 04:44:29', '2022-06-22 04:44:29'),
('195', 'asian_payment_gateway_configuration', 'paytm', 'web', '2022-06-22 04:45:56', '2022-06-22 04:45:56'),
('196', 'club_point_configurations', 'club_point', 'web', '2022-06-22 04:46:57', '2022-06-22 04:46:57'),
('197', 'set_club_points', 'club_point', 'web', '2022-06-22 04:47:21', '2022-06-22 04:47:21'),
('198', 'view_users_club_points', 'club_point', 'web', '2022-06-22 04:48:14', '2022-06-22 04:48:14'),
('199', 'otp_configurations', 'otp_system', 'web', '2022-06-22 05:37:28', '2022-06-22 05:37:28'),
('200', 'sms_templates', 'otp_system', 'web', '2022-06-22 05:38:13', '2022-06-22 05:38:13'),
('202', 'african_pg_configuration', 'african_pg', 'web', '2022-06-22 05:43:41', '2022-06-22 05:43:41'),
('203', 'african_pg_credentials_configuration', 'african_pg', 'web', '2022-06-22 05:46:12', '2022-06-22 05:46:12'),
('204', 'view_all_seller_packages', 'seller_subscription', 'web', '2022-06-22 05:47:45', '2022-06-22 05:47:45'),
('205', 'add_seller_package', 'seller_subscription', 'web', '2022-06-22 05:48:14', '2022-06-22 05:48:14'),
('206', 'edit_seller_package', 'seller_subscription', 'web', '2022-06-22 05:48:24', '2022-06-22 05:48:24'),
('207', 'delete_seller_package', 'seller_subscription', 'web', '2022-06-22 05:48:36', '2022-06-22 05:48:36'),
('208', 'send_bulk_sms', 'otp_system', 'web', '2022-06-22 05:49:06', '2022-06-22 05:49:06'),
('209', 'assign_delivery_boy_for_orders', 'delivery_boy', 'web', '2022-06-22 05:50:16', '2022-06-22 05:50:16'),
('210', 'manage_zones', 'setup_configurations', 'web', '2022-06-22 05:50:16', '2022-06-22 05:50:16'),
('211', 'manage_carriers', 'setup_configurations', 'web', '2022-06-22 05:50:16', '2022-06-22 05:50:16'),
('212', 'view_all_product_conversations', 'support', 'web', '2022-06-22 05:50:16', '2022-06-22 05:50:16'),
('213', 'reply_to_product_conversations', 'support', 'web', '2022-06-22 05:50:16', '2022-06-22 05:50:16'),
('214', 'delete_product_conversations', 'support', 'web', '2022-06-22 05:50:16', '2022-06-22 05:50:16'),
('215', 'select_homepage', 'website_setup', 'web', '2023-11-19 15:15:29', '2023-11-19 15:15:29'),
('216', 'view_size_charts', 'size_guide', 'web', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('217', 'add_size_charts', 'size_guide', 'web', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('218', 'edit_size_charts', 'size_guide', 'web', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('219', 'delete_size_charts', 'size_guide', 'web', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('220', 'view_measurement_points', 'size_guide', 'web', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('221', 'add_measurement_points', 'size_guide', 'web', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('222', 'edit_measurement_points', 'size_guide', 'web', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('223', 'delete_measurement_points', 'size_guide', 'web', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('224', 'authentication_layout_settings', 'website_setup', 'web', '2023-12-11 15:25:33', '2023-12-11 15:25:33'),
('225', 'set_category_wise_discount', 'product_category', 'web', '2024-03-19 11:42:16', '2024-03-19 11:42:16'),
('226', 'view_all_dynamic_popups', 'marketing', 'web', '2024-04-02 12:29:06', '2024-04-02 12:29:06'),
('227', 'add_dynamic_popups', 'marketing', 'web', '2024-04-02 12:29:06', '2024-04-02 12:29:06'),
('228', 'edit_dynamic_popups', 'marketing', 'web', '2024-04-02 12:29:06', '2024-04-02 12:29:06'),
('229', 'delete_dynamic_popups', 'marketing', 'web', '2024-04-02 12:29:06', '2024-04-02 12:29:06'),
('230', 'publish_dynamic_popups', 'marketing', 'web', '2024-04-02 12:29:06', '2024-04-02 12:29:06'),
('231', 'brand_bulk_upload', 'brand', 'web', '2024-04-02 12:29:06', '2024-04-02 12:29:06'),
('232', 'export_order', 'sale', 'web', '2024-04-02 12:29:06', '2024-04-02 12:29:06'),
('233', 'view_all_custom_alerts', 'marketing', 'web', '2024-04-03 09:00:20', '2024-04-03 09:00:20'),
('234', 'add_custom_alerts', 'marketing', 'web', '2024-04-03 09:00:20', '2024-04-03 09:00:20'),
('235', 'edit_custom_alerts', 'marketing', 'web', '2024-04-03 09:00:20', '2024-04-03 09:00:20'),
('236', 'delete_custom_alerts', 'marketing', 'web', '2024-04-03 09:00:20', '2024-04-03 09:00:20'),
('237', 'publish_custom_alerts', 'marketing', 'web', '2024-04-03 09:00:20', '2024-04-03 09:00:20'),
('238', 'earning_report', 'report', 'web', '2024-05-06 17:12:41', '2024-05-06 17:12:41'),
('239', 'notification_settings', 'notification', 'web', '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('240', 'view_all_notification_types', 'notification', 'web', '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('241', 'add_notification_types', 'notification', 'web', '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('242', 'edit_notification_types', 'notification', 'web', '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('243', 'delete_notification_types', 'notification', 'web', '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('244', 'notification_types_status_update', 'notification', 'web', '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('245', 'send_custom_notification', 'notification', 'web', '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('246', 'view_custom_notification_history', 'notification', 'web', '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('247', 'delete_custom_notification_history', 'notification', 'web', '2024-06-11 12:55:53', '2024-06-11 12:55:53'),
('248', 'view_all_offline_payment_orders', 'offline_payment', 'web', '2024-08-22 11:15:04', '2024-08-22 11:15:04'),
('249', 'add_customer', 'customer', 'web', '2024-08-22 11:15:04', '2024-08-22 11:15:04'),
('250', 'add_seller', 'seller', 'web', '2024-08-22 11:15:04', '2024-08-22 11:15:04'),
('251', 'view_all_unpaid_orders', 'sale', 'web', '2024-08-22 11:15:04', '2024-08-22 11:15:04'),
('252', 'unpaid_order_payment_notification_send', 'sale', 'web', '2024-08-22 11:15:04', '2024-08-22 11:15:04'),
('253', 'view_all_contacts', 'support', 'web', '2024-08-25 12:52:32', '2024-08-25 12:52:32'),
('254', 'reply_to_contact', 'support', 'web', '2024-08-25 12:52:32', '2024-08-25 12:52:32'),
('255', 'manage_email_templates', 'marketing', 'web', '2024-09-09 23:02:52', '2024-09-09 23:02:52'),
('256', 'add_custom_review', 'product_review', 'web', '2024-09-29 17:46:42', '2024-09-29 17:46:42'),
('257', 'edit_custom_review', 'product_review', 'web', '2024-09-29 17:46:42', '2024-09-29 17:46:42'),
('258', 'view_all_seller_rating_and_followers', 'seller', 'web', '2024-09-29 17:46:42', '2024-09-29 17:46:42'),
('259', 'edit_seller_custom_followers', 'seller', 'web', '2024-09-29 17:46:42', '2024-09-29 17:46:42'),
('260', 'view_product_warranties', 'product_warranty', 'web', '2024-10-20 13:15:18', '2024-10-20 13:15:18'),
('261', 'add_product_warranty', 'product_warranty', 'web', '2024-10-20 13:15:18', '2024-10-20 13:15:18'),
('262', 'edit_product_warranty', 'product_warranty', 'web', '2024-10-20 13:15:18', '2024-10-20 13:15:18'),
('263', 'delete_product_warranty', 'product_warranty', 'web', '2024-10-20 13:15:18', '2024-10-20 13:15:18'),
('264', 'view_notes', 'note', 'web', '2024-10-20 13:15:18', '2024-10-20 13:15:18'),
('265', 'add_note', 'note', 'web', '2024-10-20 13:15:18', '2024-10-20 13:15:18'),
('266', 'edit_note', 'note', 'web', '2024-10-20 13:15:18', '2024-10-20 13:15:18'),
('267', 'delete_note', 'note', 'web', '2024-10-20 13:15:18', '2024-10-20 13:15:18');

-- ----------------------------------------
-- Table structure for `personal_access_tokens`
-- ----------------------------------------

DROP TABLE IF EXISTS `personal_access_tokens`;
CREATE TABLE `personal_access_tokens` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tokenable_type` varchar(191) NOT NULL,
  `tokenable_id` bigint(20) unsigned NOT NULL,
  `name` varchar(191) NOT NULL,
  `token` varchar(64) NOT NULL,
  `abilities` text DEFAULT NULL,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `personal_access_tokens`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `pickup_point_translations`;
CREATE TABLE `pickup_point_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `pickup_point_id` bigint(20) NOT NULL,
  `name` varchar(50) NOT NULL,
  `address` text NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `pickup_point_translations`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `pickup_points`;
CREATE TABLE `pickup_points` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `staff_id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `address` mediumtext NOT NULL,
  `phone` varchar(15) NOT NULL,
  `pick_up_status` int(1) DEFAULT NULL,
  `cash_on_pickup_status` int(1) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `pickup_points`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `product_categories`
-- ----------------------------------------

DROP TABLE IF EXISTS `product_categories`;
CREATE TABLE `product_categories` (
  `product_id` int(11) NOT NULL,
  `category_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `product_categories`
-- ----------------------------------------

INSERT INTO `product_categories` (`product_id`, `category_id`) VALUES
('12', '4'),
('13', '4'),
('14', '4'),
('15', '4'),
('15', '5'),
('16', '4'),
('16', '5'),
('17', '4'),
('18', '4'),
('18', '5'),
('19', '4'),
('20', '4'),
('21', '4'),
('21', '5'),
('22', '6'),
('23', '4'),
('24', '4'),
('25', '4'),
('26', '4'),
('27', '7'),
('28', '8'),
('29', '4'),
('30', '4'),
('31', '6'),
('32', '4'),
('33', '9'),
('34', '9'),
('35', '9'),
('36', '9'),
('38', '10'),
('38', '14'),
('37', '10'),
('37', '13'),
('32', '10'),
('32', '13'),
('39', '4'),
('40', '4'),
('41', '4'),
('42', '4'),
('43', '4'),
('44', '4'),
('45', '4'),
('46', '4'),
('47', '4'),
('48', '4'),
('49', '4'),
('50', '4'),
('51', '4'),
('52', '4'),
('53', '4'),
('54', '4'),
('55', '4'),
('56', '4'),
('57', '4'),
('58', '4'),
('59', '4'),
('60', '4'),
('61', '4'),
('62', '4'),
('63', '4'),
('65', '4'),
('66', '4'),
('67', '4'),
('68', '4'),
('69', '7'),
('70', '7'),
('71', '7'),
('72', '4'),
('73', '8'),
('74', '8'),
('75', '8'),
('76', '4');

-- ----------------------------------------
-- Table structure for `product_queries`
-- ----------------------------------------

DROP TABLE IF EXISTS `product_queries`;
CREATE TABLE `product_queries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL,
  `seller_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `question` longtext NOT NULL,
  `reply` longtext DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `product_queries`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `product_stocks`;
CREATE TABLE `product_stocks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `variant` varchar(255) NOT NULL,
  `sku` varchar(255) DEFAULT NULL,
  `price` double(20,2) NOT NULL DEFAULT 0.00,
  `qty` int(11) NOT NULL DEFAULT 0,
  `image` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `product_stocks`
-- ----------------------------------------

INSERT INTO `product_stocks` (`id`, `product_id`, `variant`, `sku`, `price`, `qty`, `image`, `created_at`, `updated_at`) VALUES
('30', '14', '', NULL, '100.00', '49', NULL, '2025-09-03 20:02:32', '2026-09-01 15:49:49'),
('31', '13', '', NULL, '10.00', '100', NULL, '2025-09-03 20:05:00', '2025-09-03 20:05:00'),
('32', '12', '', NULL, '200.00', '50', NULL, '2025-09-03 20:06:20', '2025-09-03 20:06:20'),
('34', '15', '', NULL, '25.00', '100', NULL, '2025-09-03 20:19:28', '2025-09-03 20:19:28'),
('35', '16', '', NULL, '35.00', '101', NULL, '2025-09-03 20:26:48', '2025-09-03 20:26:48'),
('36', '17', '', NULL, '40.00', '100', NULL, '2025-09-03 20:34:40', '2025-09-03 20:34:40'),
('37', '18', '', NULL, '110.00', '100', NULL, '2025-09-03 20:40:00', '2025-09-03 20:40:00'),
('40', '19', '', NULL, '10.00', '100', NULL, '2025-09-03 20:48:36', '2025-09-03 20:48:36'),
('42', '20', '', NULL, '40.00', '100', NULL, '2025-09-03 20:58:03', '2025-09-03 20:58:03'),
('43', '21', '', NULL, '70.00', '100', NULL, '2025-09-03 21:06:26', '2025-09-03 21:06:26'),
('46', '22', '', NULL, '4950.00', '50', NULL, '2025-09-10 02:25:14', '2025-09-10 02:25:14'),
('48', '23', '', NULL, '85.00', '100', NULL, '2025-09-16 10:14:56', '2025-09-16 10:14:56'),
('50', '24', '', NULL, '100.00', '100', NULL, '2025-09-16 10:21:28', '2025-09-16 10:21:28'),
('51', '25', '', NULL, '92.00', '100', NULL, '2025-09-16 10:28:29', '2025-09-16 10:28:29'),
('52', '26', '', NULL, '15.00', '100', NULL, '2025-09-16 10:39:08', '2025-09-16 10:39:08'),
('53', '27', '', NULL, '8600.00', '49', NULL, '2025-09-22 13:03:05', '2026-09-01 15:49:49'),
('55', '28', '', NULL, '3500.00', '50', NULL, '2025-09-22 13:17:05', '2025-09-22 13:17:05'),
('57', '29', '', NULL, '1800.00', '100', NULL, '2025-09-22 13:27:43', '2025-09-22 13:27:43'),
('60', '31', '', NULL, '450.00', '94', NULL, '2025-09-22 13:42:30', '2025-09-22 13:42:30'),
('63', '33', '', NULL, '2600.00', '50', NULL, '2025-09-23 09:41:04', '2025-09-23 09:41:04'),
('64', '34', '', NULL, '1350.00', '46', NULL, '2025-09-23 09:46:27', '2025-09-23 09:46:27'),
('66', '35', '', NULL, '750.00', '50', NULL, '2025-09-23 09:49:55', '2025-09-23 09:49:55'),
('67', '36', '', NULL, '400.00', '50', NULL, '2025-09-23 09:52:51', '2025-09-23 09:52:51'),
('73', '37', '', NULL, '400.00', '50', NULL, '2025-09-23 12:28:20', '2025-09-23 12:28:20'),
('74', '32', '', NULL, '3500.00', '50', NULL, '2025-09-23 12:28:57', '2025-09-23 12:28:57'),
('75', '38', '', NULL, '350.00', '50', NULL, '2025-09-23 12:29:58', '2025-09-23 12:29:58'),
('76', '39', '', NULL, '220.00', '100', NULL, '2025-09-23 12:40:07', '2025-09-23 12:40:07'),
('77', '40', '', NULL, '50.00', '25', NULL, '2025-10-09 14:43:54', '2025-10-09 14:43:54'),
('78', '41', '', NULL, '50.00', '100', NULL, '2025-10-12 20:30:25', '2025-10-12 20:30:25'),
('79', '42', '', NULL, '25.00', '50', NULL, '2025-10-16 19:23:04', '2025-10-16 19:23:04'),
('80', '43', '', NULL, '25.00', '25', NULL, '2025-10-16 20:20:26', '2025-10-16 20:20:26'),
('81', '44', '', NULL, '25.00', '25', NULL, '2025-10-20 13:06:25', '2025-10-20 13:06:25'),
('82', '45', '', NULL, '25.00', '50', NULL, '2025-11-11 14:52:02', '2025-11-11 14:52:02'),
('83', '46', '', NULL, '10.00', '25', NULL, '2025-11-14 23:25:02', '2025-11-14 23:25:02'),
('84', '47', '', NULL, '10.00', '100', NULL, '2025-11-15 23:05:35', '2025-11-15 23:05:35'),
('85', '48', '', NULL, '50.00', '50', NULL, '2025-11-22 15:13:06', '2025-11-22 15:13:06'),
('86', '30', '', NULL, '950.00', '0', NULL, '2025-12-03 17:22:33', '2025-12-03 17:22:33'),
('87', '49', '', NULL, '50.00', '50', NULL, '2025-12-07 14:29:12', '2025-12-07 14:29:12'),
('88', '50', '', NULL, '100.00', '50', NULL, '2025-12-23 03:32:56', '2025-12-23 03:32:56'),
('89', '51', '', NULL, '10.00', '10', NULL, '2026-01-05 12:02:44', '2026-01-05 12:02:44'),
('90', '52', '', NULL, '25.00', '25', NULL, '2026-01-05 13:08:40', '2026-01-05 13:08:40'),
('91', '53', '', NULL, '50.00', '50', NULL, '2026-02-01 15:02:29', '2026-02-01 15:02:29'),
('92', '54', '', NULL, '50.00', '50', NULL, '2026-02-01 20:04:03', '2026-02-01 20:04:03'),
('93', '55', '', NULL, '100.00', '100', NULL, '2026-02-02 13:00:50', '2026-02-02 13:00:50'),
('94', '56', '', NULL, '100.00', '100', NULL, '2026-02-16 12:28:07', '2026-02-16 12:28:07'),
('95', '57', '', NULL, '50.00', '25', NULL, '2026-02-18 22:27:55', '2026-02-18 22:27:55'),
('96', '58', '', NULL, '10.00', '10', NULL, '2026-03-01 14:41:09', '2026-03-01 14:41:09'),
('97', '59', '', NULL, '10.00', '25', NULL, '2026-03-09 13:11:57', '2026-03-09 13:11:57'),
('98', '60', '', NULL, '10.00', '50', NULL, '2026-03-16 18:59:08', '2026-03-16 18:59:08'),
('99', '61', '', NULL, '10.00', '10', NULL, '2026-03-23 12:57:23', '2026-03-23 12:57:23'),
('100', '62', '', NULL, '25.00', '100', NULL, '2026-04-15 23:55:33', '2026-04-15 23:55:33'),
('101', '63', '', NULL, '50.00', '50', NULL, '2026-05-04 21:43:37', '2026-05-04 21:43:37'),
('109', '65', '', NULL, '2450.00', '9', NULL, '2026-05-19 13:16:07', '2026-09-01 16:18:42'),
('110', '66', '', NULL, '100.00', '10', NULL, '2026-05-25 14:06:15', '2026-05-25 14:06:15'),
('111', '67', '', NULL, '100.00', '10', NULL, '2026-05-27 11:17:25', '2026-05-27 11:17:25'),
('114', '68', '', NULL, '10.00', '10', NULL, '2026-06-19 15:20:26', '2026-06-19 15:20:26'),
('118', '69', '', NULL, '8000.00', '10', NULL, '2026-06-22 09:11:58', '2026-06-22 09:11:58'),
('119', '70', '', NULL, '12000.00', '10', NULL, '2026-06-22 09:13:52', '2026-06-22 09:13:52'),
('120', '71', '', NULL, '25000.00', '10', NULL, '2026-06-22 09:18:09', '2026-06-22 09:18:09'),
('121', '72', '', NULL, '10.00', '50', NULL, '2026-06-23 08:57:27', '2026-06-23 08:57:27'),
('123', '73', '', NULL, '1400.00', '10', NULL, '2026-06-24 09:19:19', '2026-06-24 09:19:19'),
('124', '74', '', NULL, '950.00', '10', NULL, '2026-06-24 09:21:05', '2026-06-24 09:21:05'),
('125', '75', '', NULL, '850.00', '10', NULL, '2026-06-24 09:22:40', '2026-06-24 09:22:40'),
('126', '76', '', NULL, '25.00', '10', NULL, '2026-06-29 20:20:14', '2026-06-29 20:20:14');

-- ----------------------------------------
-- Table structure for `product_taxes`
-- ----------------------------------------

DROP TABLE IF EXISTS `product_taxes`;
CREATE TABLE `product_taxes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `tax_id` int(11) NOT NULL,
  `tax` double(20,2) NOT NULL,
  `tax_type` varchar(10) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `product_taxes`
-- ----------------------------------------

INSERT INTO `product_taxes` (`id`, `product_id`, `tax_id`, `tax`, `tax_type`, `created_at`, `updated_at`) VALUES
('30', '14', '3', '0.00', 'amount', '2025-09-03 20:02:32', '2025-09-03 20:02:32'),
('31', '13', '3', '0.00', 'amount', '2025-09-03 20:05:00', '2025-09-03 20:05:00'),
('32', '12', '3', '0.00', 'amount', '2025-09-03 20:06:20', '2025-09-03 20:06:20'),
('34', '15', '3', '0.00', 'amount', '2025-09-03 20:19:28', '2025-09-03 20:19:28'),
('35', '16', '3', '0.00', 'amount', '2025-09-03 20:26:48', '2025-09-03 20:26:48'),
('36', '17', '3', '0.00', 'amount', '2025-09-03 20:34:40', '2025-09-03 20:34:40'),
('37', '18', '3', '0.00', 'amount', '2025-09-03 20:40:00', '2025-09-03 20:40:00'),
('40', '19', '3', '0.00', 'amount', '2025-09-03 20:48:36', '2025-09-03 20:48:36'),
('42', '20', '3', '0.00', 'amount', '2025-09-03 20:58:03', '2025-09-03 20:58:03'),
('43', '21', '3', '0.00', 'amount', '2025-09-03 21:06:26', '2025-09-03 21:06:26'),
('46', '22', '3', '0.00', 'amount', '2025-09-10 02:25:14', '2025-09-10 02:25:14'),
('48', '23', '3', '0.00', 'amount', '2025-09-16 10:14:56', '2025-09-16 10:14:56'),
('50', '24', '3', '0.00', 'amount', '2025-09-16 10:21:28', '2025-09-16 10:21:28'),
('51', '25', '3', '0.00', 'amount', '2025-09-16 10:28:29', '2025-09-16 10:28:29'),
('52', '26', '3', '0.00', 'amount', '2025-09-16 10:39:08', '2025-09-16 10:39:08'),
('53', '27', '3', '0.00', 'amount', '2025-09-22 13:03:05', '2025-09-22 13:03:05'),
('55', '28', '3', '0.00', 'amount', '2025-09-22 13:17:05', '2025-09-22 13:17:05'),
('57', '29', '3', '0.00', 'amount', '2025-09-22 13:27:43', '2025-09-22 13:27:43'),
('60', '31', '3', '0.00', 'amount', '2025-09-22 13:42:30', '2025-09-22 13:42:30'),
('63', '33', '3', '0.00', 'amount', '2025-09-23 09:41:04', '2025-09-23 09:41:04'),
('64', '34', '3', '0.00', 'amount', '2025-09-23 09:46:27', '2025-09-23 09:46:27'),
('66', '35', '3', '0.00', 'amount', '2025-09-23 09:49:55', '2025-09-23 09:49:55'),
('67', '36', '3', '0.00', 'amount', '2025-09-23 09:52:51', '2025-09-23 09:52:51'),
('73', '37', '3', '0.00', 'amount', '2025-09-23 12:28:20', '2025-09-23 12:28:20'),
('74', '32', '3', '0.00', 'amount', '2025-09-23 12:28:57', '2025-09-23 12:28:57'),
('75', '38', '3', '0.00', 'amount', '2025-09-23 12:29:58', '2025-09-23 12:29:58'),
('76', '39', '3', '0.00', 'amount', '2025-09-23 12:40:06', '2025-09-23 12:40:06'),
('77', '40', '3', '0.00', 'amount', '2025-10-09 14:43:54', '2025-10-09 14:43:54'),
('78', '41', '3', '0.00', 'amount', '2025-10-12 20:30:25', '2025-10-12 20:30:25'),
('79', '42', '3', '0.00', 'amount', '2025-10-16 19:23:04', '2025-10-16 19:23:04'),
('80', '43', '3', '0.00', 'amount', '2025-10-16 20:20:26', '2025-10-16 20:20:26'),
('81', '44', '3', '0.00', 'amount', '2025-10-20 13:06:25', '2025-10-20 13:06:25'),
('82', '45', '3', '0.00', 'amount', '2025-11-11 14:52:02', '2025-11-11 14:52:02'),
('83', '46', '3', '0.00', 'amount', '2025-11-14 23:25:02', '2025-11-14 23:25:02'),
('84', '47', '3', '0.00', 'amount', '2025-11-15 23:05:35', '2025-11-15 23:05:35'),
('85', '48', '3', '0.00', 'amount', '2025-11-22 15:13:06', '2025-11-22 15:13:06'),
('86', '30', '3', '0.00', 'amount', '2025-12-03 17:22:33', '2025-12-03 17:22:33'),
('87', '49', '3', '0.00', 'amount', '2025-12-07 14:29:12', '2025-12-07 14:29:12'),
('88', '50', '3', '0.00', 'amount', '2025-12-23 03:32:56', '2025-12-23 03:32:56'),
('89', '51', '3', '0.00', 'amount', '2026-01-05 12:02:44', '2026-01-05 12:02:44'),
('90', '52', '3', '0.00', 'amount', '2026-01-05 13:08:40', '2026-01-05 13:08:40'),
('91', '53', '3', '0.00', 'amount', '2026-02-01 15:02:29', '2026-02-01 15:02:29'),
('92', '54', '3', '0.00', 'amount', '2026-02-01 20:04:03', '2026-02-01 20:04:03'),
('93', '55', '3', '0.00', 'amount', '2026-02-02 13:00:50', '2026-02-02 13:00:50'),
('94', '56', '3', '0.00', 'amount', '2026-02-16 12:28:07', '2026-02-16 12:28:07'),
('95', '57', '3', '0.00', 'amount', '2026-02-18 22:27:55', '2026-02-18 22:27:55'),
('96', '58', '3', '0.00', 'amount', '2026-03-01 14:41:09', '2026-03-01 14:41:09'),
('97', '59', '3', '0.00', 'amount', '2026-03-09 13:11:57', '2026-03-09 13:11:57'),
('98', '60', '3', '0.00', 'amount', '2026-03-16 18:59:08', '2026-03-16 18:59:08'),
('99', '61', '3', '0.00', 'amount', '2026-03-23 12:57:23', '2026-03-23 12:57:23'),
('100', '62', '3', '0.00', 'amount', '2026-04-15 23:55:33', '2026-04-15 23:55:33'),
('101', '63', '3', '0.00', 'amount', '2026-05-04 21:43:37', '2026-05-04 21:43:37'),
('109', '65', '3', '0.00', 'amount', '2026-05-19 13:16:07', '2026-05-19 13:16:07'),
('110', '66', '3', '0.00', 'amount', '2026-05-25 14:06:15', '2026-05-25 14:06:15'),
('111', '67', '3', '0.00', 'amount', '2026-05-27 11:17:25', '2026-05-27 11:17:25'),
('114', '68', '3', '0.00', 'amount', '2026-06-19 15:20:26', '2026-06-19 15:20:26'),
('118', '69', '3', '0.00', 'amount', '2026-06-22 09:11:58', '2026-06-22 09:11:58'),
('119', '70', '3', '0.00', 'amount', '2026-06-22 09:13:52', '2026-06-22 09:13:52'),
('120', '71', '3', '0.00', 'amount', '2026-06-22 09:18:09', '2026-06-22 09:18:09'),
('121', '72', '3', '0.00', 'amount', '2026-06-23 08:57:27', '2026-06-23 08:57:27'),
('123', '73', '3', '0.00', 'amount', '2026-06-24 09:19:19', '2026-06-24 09:19:19'),
('124', '74', '3', '0.00', 'amount', '2026-06-24 09:21:05', '2026-06-24 09:21:05'),
('125', '75', '3', '0.00', 'amount', '2026-06-24 09:22:40', '2026-06-24 09:22:40'),
('126', '76', '3', '0.00', 'amount', '2026-06-29 20:20:14', '2026-06-29 20:20:14');

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

DROP TABLE IF EXISTS `product_translations`;
CREATE TABLE `product_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `product_id` bigint(20) NOT NULL,
  `name` varchar(200) DEFAULT NULL,
  `unit` varchar(20) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `product_translations`
-- ----------------------------------------

INSERT INTO `product_translations` (`id`, `product_id`, `name`, `unit`, `description`, `lang`, `created_at`, `updated_at`) VALUES
('12', '12', '1k 1/4W Resistor', 'Pc', '<ul><li><strong data-start=\"459\" data-end=\"472\">100pcs</strong></li><li><strong data-start=\"459\" data-end=\"472\">High-quality 1 kΩ, 0.25 W (1/4 W) metal film resistor with ±1% tolerance. Offers low noise and excellent long-term stability for general electronics, Arduino projects, and repairs.</strong></li></ul><p data-start=\"459\" data-end=\"472\"><strong data-start=\"459\" data-end=\"472\">Key specs</strong></p><p>\r\n</p><ul data-start=\"473\" data-end=\"757\">\r\n<li data-start=\"473\" data-end=\"504\">\r\n<p data-start=\"475\" data-end=\"504\">Resistance: <strong data-start=\"487\" data-end=\"504\">1 kΩ (1000 Ω)</strong></p>\r\n</li>\r\n<li data-start=\"505\" data-end=\"539\">\r\n<p data-start=\"507\" data-end=\"539\">Power rating: <strong data-start=\"521\" data-end=\"539\">0.25 W (1/4 W)</strong></p>\r\n</li>\r\n<li data-start=\"540\" data-end=\"583\">\r\n<p data-start=\"542\" data-end=\"583\">Tolerance: <strong data-start=\"553\" data-end=\"560\">±1%</strong> (±5% option available)</p>\r\n</li>\r\n<li data-start=\"584\" data-end=\"651\">\r\n<p data-start=\"586\" data-end=\"651\">Temperature coefficient: <strong data-start=\"611\" data-end=\"626\">±100 ppm/°C</strong> (typical for metal film)</p>\r\n</li>\r\n<li data-start=\"652\" data-end=\"702\">\r\n<p data-start=\"654\" data-end=\"702\">Body size: <strong data-start=\"665\" data-end=\"702\">Axial, 1/6W–1/4W standard package</strong></p>\r\n</li>\r\n<li data-start=\"703\" data-end=\"740\">\r\n<p data-start=\"705\" data-end=\"740\">Lead spacing: <strong data-start=\"719\" data-end=\"730\">~6–7 mm</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"741\" data-end=\"757\">\r\n<p data-start=\"743\" data-end=\"757\">RoHS compliant</p></li></ul>', 'en', '2025-09-03 15:47:09', '2025-09-03 15:47:09'),
('13', '13', '1000uf 16V Electrolytic Capacitor', '1', '<ul data-start=\"335\" data-end=\"532\"><li data-start=\"335\" data-end=\"532\"><p data-start=\"337\" data-end=\"532\">High-quality 1000µF 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"534\" data-end=\"550\"><strong data-start=\"534\" data-end=\"548\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"551\" data-end=\"749\">\r\n<li data-start=\"551\" data-end=\"578\">\r\n<p data-start=\"553\" data-end=\"578\">Capacitance: <strong data-start=\"566\" data-end=\"576\">1000µF</strong></p>\r\n</li>\r\n<li data-start=\"579\" data-end=\"609\">\r\n<p data-start=\"581\" data-end=\"609\">Voltage rating: <strong data-start=\"597\" data-end=\"607\">25V DC</strong></p>\r\n</li>\r\n<li data-start=\"610\" data-end=\"633\">\r\n<p data-start=\"612\" data-end=\"633\">Tolerance: <strong data-start=\"623\" data-end=\"631\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"634\" data-end=\"673\">\r\n<p data-start=\"636\" data-end=\"673\">Type: <strong data-start=\"642\" data-end=\"671\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"674\" data-end=\"730\">\r\n<p data-start=\"676\" data-end=\"730\">Operating temperature: <strong data-start=\"699\" data-end=\"718\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"731\" data-end=\"749\">\r\n<p data-start=\"733\" data-end=\"749\">RoHS compliant</p></li></ul>', 'en', '2025-09-03 15:59:54', '2025-09-03 15:59:54'),
('14', '14', 'LM2596-S Adj', '1', '<ul><li>The LM2596S-ADJ is a high-efficiency DC-DC step-down (buck) converter IC with an adjustable output voltage from 1.23V to 37V. It supports up to 3A output current, making it ideal for regulated power supplies and embedded projects.</li></ul><p data-start=\"538\" data-end=\"554\"><strong data-start=\"538\" data-end=\"552\">Key specs:</strong></p><p>\r\n</p><ul data-start=\"555\" data-end=\"823\">\r\n<li data-start=\"555\" data-end=\"588\">\r\n<p data-start=\"557\" data-end=\"588\">Input voltage: <strong data-start=\"572\" data-end=\"586\">4.5V – 40V</strong></p>\r\n</li>\r\n<li data-start=\"589\" data-end=\"635\">\r\n<p data-start=\"591\" data-end=\"635\">Output voltage: <strong data-start=\"607\" data-end=\"633\">Adjustable 1.23V – 37V</strong></p>\r\n</li>\r\n<li data-start=\"636\" data-end=\"668\">\r\n<p data-start=\"638\" data-end=\"668\">Output current: <strong data-start=\"654\" data-end=\"666\">Up to 3A</strong></p>\r\n</li>\r\n<li data-start=\"669\" data-end=\"698\">\r\n<p data-start=\"671\" data-end=\"698\">Efficiency: <strong data-start=\"683\" data-end=\"696\">Up to 92%</strong></p>\r\n</li>\r\n<li data-start=\"699\" data-end=\"742\">\r\n<p data-start=\"701\" data-end=\"742\">Switching frequency: <strong data-start=\"722\" data-end=\"740\">150 kHz (typ.)</strong></p>\r\n</li>\r\n<li data-start=\"743\" data-end=\"774\">\r\n<p data-start=\"745\" data-end=\"774\">Package: <strong data-start=\"754\" data-end=\"772\">TO-263 (D²PAK)</strong></p>\r\n</li>\r\n<li data-start=\"775\" data-end=\"823\">\r\n<p data-start=\"777\" data-end=\"823\">Built-in thermal shutdown &amp; current limiting</p></li></ul>', 'en', '2025-09-03 19:23:33', '2025-09-03 19:23:33'),
('15', '15', '470µF 16V capacitor', 'Pc', '<ul data-start=\"297\" data-end=\"493\"><li data-start=\"297\" data-end=\"493\"><p data-start=\"299\" data-end=\"493\">High-quality 470µF 16V SMD electrolytic capacitor with ±20% tolerance. Designed for compact PCB mounting, suitable for power supply filtering, decoupling, and general electronics applications.</p>\r\n</li>\r\n</ul><p data-start=\"495\" data-end=\"511\"><strong data-start=\"495\" data-end=\"509\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"512\" data-end=\"739\">\r\n<li data-start=\"512\" data-end=\"538\">\r\n<p data-start=\"514\" data-end=\"538\">Capacitance: <strong data-start=\"527\" data-end=\"536\">470µF</strong></p>\r\n</li>\r\n<li data-start=\"539\" data-end=\"569\">\r\n<p data-start=\"541\" data-end=\"569\">Voltage rating: <strong data-start=\"557\" data-end=\"567\">16V DC</strong></p>\r\n</li>\r\n<li data-start=\"570\" data-end=\"593\">\r\n<p data-start=\"572\" data-end=\"593\">Tolerance: <strong data-start=\"583\" data-end=\"591\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"594\" data-end=\"625\">\r\n<p data-start=\"596\" data-end=\"625\">Type: <strong data-start=\"602\" data-end=\"623\">Electrolytic, SMD</strong></p>\r\n</li>\r\n<li data-start=\"626\" data-end=\"663\">\r\n<p data-start=\"628\" data-end=\"663\">Mounting: <strong data-start=\"638\" data-end=\"661\">Surface mount (SMD)</strong></p>\r\n</li>\r\n<li data-start=\"664\" data-end=\"720\">\r\n<p data-start=\"666\" data-end=\"720\">Operating temperature: <strong data-start=\"689\" data-end=\"708\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"721\" data-end=\"739\">\r\n<p data-start=\"723\" data-end=\"739\">RoHS compliant</p></li></ul>', 'en', '2025-09-03 20:18:57', '2025-09-03 20:18:57'),
('16', '16', '220uf 35V Electrolytic Capacitor[8*10.5mm]', 'Pc', '<ul data-start=\"310\" data-end=\"499\"><li data-start=\"310\" data-end=\"499\"><p data-start=\"312\" data-end=\"499\">High-quality 220µF 35V surface-mount electrolytic capacitor with ±20% tolerance. Compact and durable, suitable for power supply filtering, DC-DC converters, and general SMT electronics.</p>\r\n</li>\r\n</ul><p data-start=\"501\" data-end=\"517\"><strong data-start=\"501\" data-end=\"515\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"518\" data-end=\"745\">\r\n<li data-start=\"518\" data-end=\"544\">\r\n<p data-start=\"520\" data-end=\"544\">Capacitance: <strong data-start=\"533\" data-end=\"542\">220µF</strong></p>\r\n</li>\r\n<li data-start=\"545\" data-end=\"575\">\r\n<p data-start=\"547\" data-end=\"575\">Voltage rating: <strong data-start=\"563\" data-end=\"573\">35V DC</strong></p>\r\n</li>\r\n<li data-start=\"576\" data-end=\"599\">\r\n<p data-start=\"578\" data-end=\"599\">Tolerance: <strong data-start=\"589\" data-end=\"597\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"600\" data-end=\"631\">\r\n<p data-start=\"602\" data-end=\"631\">Type: <strong data-start=\"608\" data-end=\"629\">Electrolytic, SMD</strong></p>\r\n</li>\r\n<li data-start=\"632\" data-end=\"669\">\r\n<p data-start=\"634\" data-end=\"669\">Mounting: <strong data-start=\"644\" data-end=\"667\">Surface Mount (SMD)</strong></p>\r\n</li>\r\n<li data-start=\"670\" data-end=\"726\">\r\n<p data-start=\"672\" data-end=\"726\">Operating temperature: <strong data-start=\"695\" data-end=\"714\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"727\" data-end=\"745\">\r\n<p data-start=\"729\" data-end=\"745\">RoHS compliant</p></li></ul>', 'en', '2025-09-03 20:26:48', '2025-09-03 20:26:48'),
('17', '17', '2200uf 16V Electrolytic Capacitor', 'Pc', '<ul data-start=\"310\" data-end=\"507\"><li data-start=\"310\" data-end=\"507\"><p data-start=\"312\" data-end=\"507\">High-quality 2200µF 16V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"509\" data-end=\"525\"><strong data-start=\"509\" data-end=\"523\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"526\" data-end=\"724\">\r\n<li data-start=\"526\" data-end=\"553\">\r\n<p data-start=\"528\" data-end=\"553\">Capacitance: <strong data-start=\"541\" data-end=\"551\">2200µF</strong></p>\r\n</li>\r\n<li data-start=\"554\" data-end=\"584\">\r\n<p data-start=\"556\" data-end=\"584\">Voltage rating: <strong data-start=\"572\" data-end=\"582\">16V DC</strong></p>\r\n</li>\r\n<li data-start=\"585\" data-end=\"608\">\r\n<p data-start=\"587\" data-end=\"608\">Tolerance: <strong data-start=\"598\" data-end=\"606\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"609\" data-end=\"648\">\r\n<p data-start=\"611\" data-end=\"648\">Type: <strong data-start=\"617\" data-end=\"646\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"649\" data-end=\"705\">\r\n<p data-start=\"651\" data-end=\"705\">Operating temperature: <strong data-start=\"674\" data-end=\"693\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"706\" data-end=\"724\">\r\n<p data-start=\"708\" data-end=\"724\">RoHS compliant</p></li></ul>', 'en', '2025-09-03 20:34:40', '2025-09-03 20:34:40'),
('18', '18', 'NE556 SMD', 'Pc', '<ul data-start=\"305\" data-end=\"498\"><li data-start=\"305\" data-end=\"498\"><p data-start=\"307\" data-end=\"498\">he NE556 SMD is a dual timer IC that integrates two NE555 timers in a single package. Suitable for precision timing, pulse generation, oscillators, and PWM circuits in compact SMT designs.</p>\r\n</li>\r\n</ul><p data-start=\"500\" data-end=\"516\"><strong data-start=\"500\" data-end=\"514\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"517\" data-end=\"758\">\r\n<li data-start=\"517\" data-end=\"563\">\r\n<p data-start=\"519\" data-end=\"563\">Type: <strong data-start=\"525\" data-end=\"561\">Dual timer (2 × 555 in one chip)</strong></p>\r\n</li>\r\n<li data-start=\"564\" data-end=\"601\">\r\n<p data-start=\"566\" data-end=\"601\">Supply voltage: <strong data-start=\"582\" data-end=\"599\">+4.5V to +16V</strong></p>\r\n</li>\r\n<li data-start=\"602\" data-end=\"637\">\r\n<p data-start=\"604\" data-end=\"637\">Output current: <strong data-start=\"620\" data-end=\"635\">Up to 200mA</strong></p>\r\n</li>\r\n<li data-start=\"638\" data-end=\"694\">\r\n<p data-start=\"640\" data-end=\"694\">Package: <strong data-start=\"649\" data-end=\"692\">SMD (SOIC/TSOP, varies by manufacturer)</strong></p>\r\n</li>\r\n<li data-start=\"695\" data-end=\"739\">\r\n<p data-start=\"697\" data-end=\"739\">Low power consumption &amp; stable operation</p>\r\n</li>\r\n<li data-start=\"740\" data-end=\"758\">\r\n<p data-start=\"742\" data-end=\"758\">RoHS compliant</p></li></ul>', 'en', '2025-09-03 20:40:00', '2025-09-03 20:40:00'),
('19', '19', '100uf 16V Electrolytic Capacitor', 'Pc', '<ul data-start=\"335\" data-end=\"523\"><li data-start=\"335\" data-end=\"523\"><p data-start=\"337\" data-end=\"523\">High-quality 1000µF 16V radial electrolytic capacitor with ±20% tolerance. Ideal for power supply filtering, decoupling, and audio circuit applications in general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"525\" data-end=\"541\"><strong data-start=\"525\" data-end=\"539\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"542\" data-end=\"740\">\r\n<li data-start=\"542\" data-end=\"569\">\r\n<p data-start=\"544\" data-end=\"569\">Capacitance: <strong data-start=\"557\" data-end=\"567\">1000µF</strong></p>\r\n</li>\r\n<li data-start=\"570\" data-end=\"600\">\r\n<p data-start=\"572\" data-end=\"600\">Voltage rating: <strong data-start=\"588\" data-end=\"598\">16V DC</strong></p>\r\n</li>\r\n<li data-start=\"601\" data-end=\"624\">\r\n<p data-start=\"603\" data-end=\"624\">Tolerance: <strong data-start=\"614\" data-end=\"622\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"625\" data-end=\"664\">\r\n<p data-start=\"627\" data-end=\"664\">Type: <strong data-start=\"633\" data-end=\"662\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"665\" data-end=\"721\">\r\n<p data-start=\"667\" data-end=\"721\">Operating temperature: <strong data-start=\"690\" data-end=\"709\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"722\" data-end=\"740\">\r\n<p data-start=\"724\" data-end=\"740\">RoHS compliant</p></li></ul>', 'en', '2025-09-03 20:45:10', '2025-09-03 20:45:10'),
('20', '20', '3300uf 25V Electrolytic Capacitor', 'Pc', '<ul data-start=\"313\" data-end=\"503\"><li data-start=\"313\" data-end=\"503\"><p data-start=\"315\" data-end=\"503\">High-quality 3300µF 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio amplifiers, and general electronics.</p>\r\n</li>\r\n</ul><p data-start=\"505\" data-end=\"521\"><strong data-start=\"505\" data-end=\"519\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"522\" data-end=\"720\">\r\n<li data-start=\"522\" data-end=\"549\">\r\n<p data-start=\"524\" data-end=\"549\">Capacitance: <strong data-start=\"537\" data-end=\"547\">3300µF</strong></p>\r\n</li>\r\n<li data-start=\"550\" data-end=\"580\">\r\n<p data-start=\"552\" data-end=\"580\">Voltage rating: <strong data-start=\"568\" data-end=\"578\">25V DC</strong></p>\r\n</li>\r\n<li data-start=\"581\" data-end=\"604\">\r\n<p data-start=\"583\" data-end=\"604\">Tolerance: <strong data-start=\"594\" data-end=\"602\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"605\" data-end=\"644\">\r\n<p data-start=\"607\" data-end=\"644\">Type: <strong data-start=\"613\" data-end=\"642\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"645\" data-end=\"701\">\r\n<p data-start=\"647\" data-end=\"701\">Operating temperature: <strong data-start=\"670\" data-end=\"689\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"702\" data-end=\"720\">\r\n<p data-start=\"704\" data-end=\"720\">RoHS compliant</p></li></ul>', 'en', '2025-09-03 20:57:24', '2025-09-03 20:57:24'),
('21', '21', '100uH Inductor 101 (12 x 12 x 7 mm)', 'Pc', '<ul data-start=\"281\" data-end=\"476\"><li data-start=\"281\" data-end=\"476\"><p data-start=\"283\" data-end=\"476\">High-quality 100µH fixed inductor designed for filtering, energy storage, and DC-DC converter applications. Suitable for power supplies, signal conditioning, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"478\" data-end=\"494\"><strong data-start=\"478\" data-end=\"492\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"495\" data-end=\"723\">\r\n<li data-start=\"495\" data-end=\"520\">\r\n<p data-start=\"497\" data-end=\"520\">Inductance: <strong data-start=\"509\" data-end=\"518\">100µH</strong></p>\r\n</li>\r\n<li data-start=\"521\" data-end=\"554\">\r\n<p data-start=\"523\" data-end=\"554\">Tolerance: <strong data-start=\"534\" data-end=\"552\">±10% (typical)</strong></p>\r\n</li>\r\n<li data-start=\"555\" data-end=\"611\">\r\n<p data-start=\"557\" data-end=\"611\">Current rating: <strong data-start=\"573\" data-end=\"609\">varies by type (check datasheet)</strong></p>\r\n</li>\r\n<li data-start=\"612\" data-end=\"667\">\r\n<p data-start=\"614\" data-end=\"667\">Type: <strong data-start=\"620\" data-end=\"665\">Radial / axial / SMD (depends on variant)</strong></p>\r\n</li>\r\n<li data-start=\"668\" data-end=\"704\">\r\n<p data-start=\"670\" data-end=\"704\">Low core loss &amp; high reliability</p>\r\n</li>\r\n<li data-start=\"705\" data-end=\"723\">\r\n<p data-start=\"707\" data-end=\"723\">RoHS compliant</p></li></ul>', 'en', '2025-09-03 21:06:26', '2025-09-03 21:06:26'),
('22', '22', 'Renata 3V Button Battery CR2477N T-shaped', 'pcs', '<li data-start=\"529\" data-end=\"551\"><p data-start=\"531\" data-end=\"551\"><strong data-start=\"531\" data-end=\"541\">Model:</strong> CR2477N</p>\r\n</li>\r\n<li data-start=\"552\" data-end=\"591\">\r\n<p data-start=\"554\" data-end=\"591\"><strong data-start=\"554\" data-end=\"563\">Type:</strong> Lithium Coin Cell Battery</p>\r\n</li>\r\n<li data-start=\"592\" data-end=\"611\">\r\n<p data-start=\"594\" data-end=\"611\"><strong data-start=\"594\" data-end=\"606\">Voltage:</strong> 3V</p>\r\n</li>\r\n<li data-start=\"612\" data-end=\"667\">\r\n<p data-start=\"614\" data-end=\"667\"><strong data-start=\"614\" data-end=\"627\">Capacity:</strong> High capacity for long operating life</p>\r\n</li>\r\n<li data-start=\"668\" data-end=\"716\">\r\n<p data-start=\"670\" data-end=\"716\"><strong data-start=\"670\" data-end=\"685\">Dimensions:</strong> 24mm diameter × 7.7mm height</p>\r\n</li>\r\n<li data-start=\"717\" data-end=\"779\">\r\n<p data-start=\"719\" data-end=\"779\"><strong data-start=\"719\" data-end=\"744\">Reliable Performance:</strong> Delivers consistent power output</p>\r\n</li>\r\n<li data-start=\"780\" data-end=\"835\">\r\n<p data-start=\"782\" data-end=\"835\"><strong data-start=\"782\" data-end=\"797\">Shelf Life:</strong> Up to 10 years when stored properly</p>\r\n</li>\r\n<li data-start=\"836\" data-end=\"967\">\r\n<p data-start=\"838\" data-end=\"967\"><strong data-start=\"838\" data-end=\"855\">Applications:</strong> IoT devices, smart sensors, medical equipment, watches, calculators, key fobs, and other portable electronics</p></li>', 'en', '2025-09-10 02:05:46', '2025-09-10 02:20:54'),
('23', '23', '4700µF / 25V electrolytic capacitor', 'Pc', '<ul data-start=\"376\" data-end=\"572\"><li data-start=\"376\" data-end=\"572\"><p data-start=\"378\" data-end=\"572\">High-quality 4700µF 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"574\" data-end=\"590\"><strong data-start=\"574\" data-end=\"588\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"591\" data-end=\"788\">\r\n<li data-start=\"591\" data-end=\"617\">\r\n<p data-start=\"593\" data-end=\"617\">Capacitance: <strong data-start=\"606\" data-end=\"615\">4700µF</strong></p>\r\n</li>\r\n<li data-start=\"618\" data-end=\"648\">\r\n<p data-start=\"620\" data-end=\"648\">Voltage rating: 25<strong data-start=\"636\" data-end=\"646\">V DC</strong></p>\r\n</li>\r\n<li data-start=\"649\" data-end=\"672\">\r\n<p data-start=\"651\" data-end=\"672\">Tolerance: <strong data-start=\"662\" data-end=\"670\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"673\" data-end=\"712\">\r\n<p data-start=\"675\" data-end=\"712\">Type: <strong data-start=\"681\" data-end=\"710\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"713\" data-end=\"769\">\r\n<p data-start=\"715\" data-end=\"769\">Operating temperature: <strong data-start=\"738\" data-end=\"757\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"770\" data-end=\"788\">\r\n<p data-start=\"772\" data-end=\"788\">RoHS compliant</p></li></ul>', 'en', '2025-09-16 10:04:53', '2025-09-16 10:04:53'),
('24', '24', '3300uf 25V Electrolytic Capacitor', 'Pc', '<div><br></div><ul data-start=\"376\" data-end=\"572\">\r\n<li data-start=\"376\" data-end=\"572\">\r\n<p data-start=\"378\" data-end=\"572\">High-quality 3300uf 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"574\" data-end=\"590\"><strong data-start=\"574\" data-end=\"588\">Key specs:</strong></p><ul data-start=\"591\" data-end=\"788\">\r\n<li data-start=\"591\" data-end=\"617\">\r\n<p data-start=\"593\" data-end=\"617\">Capacitance:3300uf&nbsp;</p>\r\n</li>\r\n<li data-start=\"618\" data-end=\"648\">\r\n<p data-start=\"620\" data-end=\"648\">Voltage rating: <strong data-start=\"636\" data-end=\"646\">25V</strong></p>\r\n</li>\r\n<li data-start=\"649\" data-end=\"672\">\r\n<p data-start=\"651\" data-end=\"672\">Tolerance: <strong data-start=\"662\" data-end=\"670\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"673\" data-end=\"712\">\r\n<p data-start=\"675\" data-end=\"712\">Type: <strong data-start=\"681\" data-end=\"710\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"713\" data-end=\"769\">\r\n<p data-start=\"715\" data-end=\"769\">Operating temperature: <strong data-start=\"738\" data-end=\"757\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"770\" data-end=\"788\">\r\n<p data-start=\"772\" data-end=\"788\">RoHS compliant</p>\r\n</li>\r\n</ul><p data-start=\"790\" data-end=\"809\"><strong data-start=\"790\" data-end=\"807\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n<p data-start=\"959\" data-end=\"1101\"></p></p><ul data-start=\"810\" data-end=\"957\">\r\n<li data-start=\"810\" data-end=\"848\">\r\n<p data-start=\"812\" data-end=\"848\">Power supply filtering &amp; smoothing</p>\r\n</li>\r\n<li data-start=\"849\" data-end=\"876\">\r\n<p data-start=\"851\" data-end=\"876\">Audio amplifier designs</p>\r\n</li>\r\n<li data-start=\"877\" data-end=\"911\">\r\n<p data-start=\"879\" data-end=\"911\">Decoupling and bypass circuits</p>\r\n</li>\r\n<li data-start=\"912\" data-end=\"957\">\r\n<p data-start=\"914\" data-end=\"957\">General electronics prototyping &amp; repairs</p>\r\n</li>\r\n</ul>', 'en', '2025-09-16 10:20:48', '2025-09-16 10:20:48'),
('25', '25', '3300uf 50V Electrolytic Capacitor', 'Pc', '<ul data-start=\"313\" data-end=\"503\"><li data-start=\"313\" data-end=\"503\"><p data-start=\"315\" data-end=\"503\">High-quality 3300µF 50V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio amplifiers, and general electronics.</p>\r\n</li>\r\n</ul><p data-start=\"505\" data-end=\"521\"><strong data-start=\"505\" data-end=\"519\">Key specs:</strong></p><ul data-start=\"522\" data-end=\"720\">\r\n<li data-start=\"522\" data-end=\"549\">\r\n<p data-start=\"524\" data-end=\"549\">Capacitance: <strong data-start=\"537\" data-end=\"547\">3300µF</strong></p>\r\n</li>\r\n<li data-start=\"550\" data-end=\"580\">\r\n<p data-start=\"552\" data-end=\"580\">Voltage rating: <strong data-start=\"568\" data-end=\"578\">50V DC</strong></p>\r\n</li>\r\n<li data-start=\"581\" data-end=\"604\">\r\n<p data-start=\"583\" data-end=\"604\">Tolerance: <strong data-start=\"594\" data-end=\"602\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"605\" data-end=\"644\">\r\n<p data-start=\"607\" data-end=\"644\">Type: <strong data-start=\"613\" data-end=\"642\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"645\" data-end=\"701\">\r\n<p data-start=\"647\" data-end=\"701\">Operating temperature: <strong data-start=\"670\" data-end=\"689\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"702\" data-end=\"720\">\r\n<p data-start=\"704\" data-end=\"720\">RoHS compliant</p>\r\n</li>\r\n</ul><p data-start=\"722\" data-end=\"741\"><strong data-start=\"722\" data-end=\"739\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n</p><ul data-start=\"742\" data-end=\"880\">\r\n<li data-start=\"742\" data-end=\"780\">\r\n<p data-start=\"744\" data-end=\"780\">Power supply filtering &amp; smoothing</p>\r\n</li>\r\n<li data-start=\"781\" data-end=\"809\">\r\n<p data-start=\"783\" data-end=\"809\">Audio amplifier circuits</p>\r\n</li>\r\n<li data-start=\"810\" data-end=\"835\">\r\n<p data-start=\"812\" data-end=\"835\">Decoupling and bypass</p>\r\n</li>\r\n<li data-start=\"836\" data-end=\"880\">\r\n<p data-start=\"838\" data-end=\"880\">General prototyping &amp; electronic repairs</p></li></ul>', 'en', '2025-09-16 10:28:29', '2025-09-16 10:28:29'),
('26', '26', '100uf 50V Electrolytic Capacitor', 'Pc', '<ul data-start=\"335\" data-end=\"523\" style=\"color: rgb(27, 27, 40); font-size: 13px;\"><li data-start=\"335\" data-end=\"523\"><p data-start=\"337\" data-end=\"523\">High-quality 100µF 50V radial electrolytic capacitor with ±20% tolerance. Ideal for power supply filtering, decoupling, and audio circuit applications in general electronics projects.</p></li></ul><p data-start=\"525\" data-end=\"541\" style=\"color: rgb(27, 27, 40); font-size: 13px;\"><span data-start=\"525\" data-end=\"539\" style=\"font-weight: bolder;\">Key specs:</span></p><p style=\"color: rgb(27, 27, 40); font-size: 13px;\"></p><ul data-start=\"542\" data-end=\"740\" style=\"color: rgb(27, 27, 40); font-size: 13px;\"><li data-start=\"542\" data-end=\"569\"><p data-start=\"544\" data-end=\"569\">Capacitance:&nbsp;<span data-start=\"557\" data-end=\"567\" style=\"font-weight: bolder;\">100µF</span></p></li><li data-start=\"570\" data-end=\"600\"><p data-start=\"572\" data-end=\"600\">Voltage rating: 50<span data-start=\"588\" data-end=\"598\" style=\"font-weight: bolder;\">V DC</span></p></li><li data-start=\"601\" data-end=\"624\"><p data-start=\"603\" data-end=\"624\">Tolerance:&nbsp;<span data-start=\"614\" data-end=\"622\" style=\"font-weight: bolder;\">±20%</span></p></li><li data-start=\"625\" data-end=\"664\"><p data-start=\"627\" data-end=\"664\">Type:&nbsp;<span data-start=\"633\" data-end=\"662\" style=\"font-weight: bolder;\">Electrolytic, radial lead</span></p></li><li data-start=\"665\" data-end=\"721\"><p data-start=\"667\" data-end=\"721\">Operating temperature:&nbsp;<span data-start=\"690\" data-end=\"709\" style=\"font-weight: bolder;\">-40°C to +105°C</span>&nbsp;(typical)</p></li><li data-start=\"722\" data-end=\"740\"><p data-start=\"724\" data-end=\"740\">RoHS compliant</p></li></ul>', 'en', '2025-09-16 10:39:08', '2025-09-16 10:39:08'),
('27', '27', 'Hikvision color camera(DS-2CE16K0T-EXLPF)', 'Pc', '<p>The Hikvision DS-2CE16K0T-EXLPF is a high-performance 3<strong data-start=\"187\" data-end=\"216\">K Ultra HD bullet camera</strong> designed for professional surveillance. Equipped with advanced imaging technology, it delivers <strong data-start=\"312\" data-end=\"341\">crystal-clear color video</strong>, even in challenging lighting conditions. Its durable <strong data-start=\"396\" data-end=\"425\">IP67 weatherproof housing</strong> ensures reliable performance indoors and outdoors.</p><p data-start=\"480\" data-end=\"501\">✅ <strong data-start=\"482\" data-end=\"499\">Key Features:</strong></p><p>\r\n</p><ul data-start=\"502\" data-end=\"766\">\r\n<li data-start=\"502\" data-end=\"548\">\r\n<p data-start=\"504\" data-end=\"548\">2MP (3K) resolution for ultra-clear images</p>\r\n</li>\r\n<li data-start=\"549\" data-end=\"591\">\r\n<p data-start=\"551\" data-end=\"591\">True Day/Night with Smart IR up to 30m</p>\r\n</li>\r\n<li data-start=\"592\" data-end=\"630\">\r\n<p data-start=\"594\" data-end=\"630\">3.6mm fixed lens for wide coverage</p>\r\n</li>\r\n<li data-start=\"631\" data-end=\"673\">\r\n<p data-start=\"633\" data-end=\"673\">Supports TVI/AHD/CVI/CVBS video output</p>\r\n</li>\r\n<li data-start=\"674\" data-end=\"714\">\r\n<p data-start=\"676\" data-end=\"714\">IP67 waterproof and dustproof design</p>\r\n</li>\r\n<li data-start=\"715\" data-end=\"766\">\r\n<p data-start=\"717\" data-end=\"766\">Ideal for home, office, and industrial security.</p></li></ul>', 'en', '2025-09-22 13:03:05', '2025-09-22 13:03:05'),
('28', '28', 'Numeric Keyboard', 'Pc', '<p data-start=\"207\" data-end=\"473\">A compact <strong data-start=\"217\" data-end=\"239\">USB numeric keypad</strong> designed for quick and efficient number entry. Perfect for laptops, notebooks, and compact keyboards without a dedicated numpad. Lightweight and portable, it ensures smooth data entry for accounting, spreadsheets, and office tasks.</p><p data-start=\"475\" data-end=\"496\">✅ <strong data-start=\"477\" data-end=\"494\">Key Features:</strong></p><p>\r\n\r\n</p><ul data-start=\"497\" data-end=\"737\">\r\n<li data-start=\"497\" data-end=\"544\">\r\n<p data-start=\"499\" data-end=\"544\">18/19 keys numeric keypad (model dependent)</p>\r\n</li>\r\n<li data-start=\"545\" data-end=\"596\">\r\n<p data-start=\"547\" data-end=\"596\">Plug &amp; Play USB interface (no drivers required)</p>\r\n</li>\r\n<li data-start=\"597\" data-end=\"640\">\r\n<p data-start=\"599\" data-end=\"640\">Ergonomic, slim, and lightweight design</p>\r\n</li>\r\n<li data-start=\"641\" data-end=\"684\">\r\n<p data-start=\"643\" data-end=\"684\">Compatible with Windows, Mac, and Linux</p>\r\n</li>\r\n<li data-start=\"685\" data-end=\"737\">\r\n<p data-start=\"687\" data-end=\"737\">Ideal for accountants, students, and office work</p></li></ul>', 'en', '2025-09-22 13:15:34', '2025-09-22 13:15:34'),
('29', '29', 'Hi-Link HLK-20M05 220VAC to 5VDC 4A Step-Down Power Supply Module', 'Pc', '<p data-start=\"191\" data-end=\"616\">The Hi-Link HLK-20M05 is a compact and efficient <strong data-start=\"240\" data-end=\"279\">AC-DC step-down power supply module</strong> that converts <strong data-start=\"294\" data-end=\"342\">220V AC mains power to a stable 5V DC output</strong>. With a power rating of <strong data-start=\"367\" data-end=\"374\">20W</strong>, it is ideal for embedded systems, IoT devices, industrial control, and home automation projects. Designed with high efficiency, low ripple, and excellent safety protections, this module is a reliable choice for space-saving power designs.</p><p data-start=\"618\" data-end=\"639\">✅ <strong data-start=\"620\" data-end=\"637\">Key Features:</strong></p><ul data-start=\"640\" data-end=\"897\">\r\n<li data-start=\"640\" data-end=\"674\">\r\n<p data-start=\"642\" data-end=\"674\">Input Voltage: <strong data-start=\"657\" data-end=\"672\">100–240V AC</strong></p>\r\n</li>\r\n<li data-start=\"675\" data-end=\"704\">\r\n<p data-start=\"677\" data-end=\"704\">Output Voltage: <strong data-start=\"693\" data-end=\"702\">5V DC</strong></p>\r\n</li>\r\n<li data-start=\"705\" data-end=\"736\">\r\n<p data-start=\"707\" data-end=\"736\">Output Power: <strong data-start=\"721\" data-end=\"728\">20W</strong> (max)</p>\r\n</li>\r\n<li data-start=\"737\" data-end=\"787\">\r\n<p data-start=\"739\" data-end=\"787\">High efficiency, low ripple, and stable output</p>\r\n</li>\r\n<li data-start=\"788\" data-end=\"819\">\r\n<p data-start=\"790\" data-end=\"819\">Compact size, PCB mountable</p>\r\n</li>\r\n<li data-start=\"820\" data-end=\"873\">\r\n<p data-start=\"822\" data-end=\"873\">Built-in overcurrent and short-circuit protection</p>\r\n</li>\r\n<li data-start=\"874\" data-end=\"897\">\r\n<p data-start=\"876\" data-end=\"897\">CE &amp; RoHS certified</p>\r\n</li>\r\n</ul><p data-start=\"899\" data-end=\"918\"><strong data-start=\"899\" data-end=\"916\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n</p><ul data-start=\"919\" data-end=\"1072\">\r\n<li data-start=\"919\" data-end=\"956\">\r\n<p data-start=\"921\" data-end=\"956\">IoT devices &amp; smart home projects</p>\r\n</li>\r\n<li data-start=\"957\" data-end=\"977\">\r\n<p data-start=\"959\" data-end=\"977\">Embedded systems</p>\r\n</li>\r\n<li data-start=\"978\" data-end=\"1008\">\r\n<p data-start=\"980\" data-end=\"1008\">Industrial control systems</p>\r\n</li>\r\n<li data-start=\"1009\" data-end=\"1037\">\r\n<p data-start=\"1011\" data-end=\"1037\">DIY electronics projects</p>\r\n</li>\r\n<li data-start=\"1038\" data-end=\"1072\">\r\n<p data-start=\"1040\" data-end=\"1072\">Home automation power supplies</p></li></ul>', 'en', '2025-09-22 13:26:35', '2025-09-22 13:26:35'),
('30', '30', 'Hi-Link HLK-5M05 220VAC to 5VDC 5W Step-Down Power Supply Module', 'Pc', '<h3 data-start=\"175\" data-end=\"249\"><span style=\"font-size: 12px;\">The Hi-Link HLK-5M05 is a compact and highly efficient </span><strong data-start=\"305\" data-end=\"344\" style=\"font-size: 12px;\">AC-DC step-down power supply module</strong><span style=\"font-size: 12px;\"> that converts </span><strong data-start=\"359\" data-end=\"409\" style=\"font-size: 12px;\">220V AC mains power into a stable 5V DC output</strong><span style=\"font-size: 12px;\">. With a maximum power of </span><strong data-start=\"435\" data-end=\"441\" style=\"font-size: 12px;\">5W</strong><span style=\"font-size: 12px;\">, it is widely used in IoT devices, smart home systems, embedded applications, and DIY electronics. Its </span><strong data-start=\"545\" data-end=\"575\" style=\"font-size: 12px;\">miniature PCB-mount design</strong><span style=\"font-size: 12px;\"> saves space while providing stable and safe power delivery.</span></h3><p data-start=\"639\" data-end=\"660\">✅ <strong data-start=\"641\" data-end=\"658\">Key Features:</strong></p><ul data-start=\"661\" data-end=\"912\">\r\n<li data-start=\"661\" data-end=\"695\">\r\n<p data-start=\"663\" data-end=\"695\">Input Voltage: <strong data-start=\"678\" data-end=\"693\">100–240V AC</strong></p>\r\n</li>\r\n<li data-start=\"696\" data-end=\"725\">\r\n<p data-start=\"698\" data-end=\"725\">Output Voltage: <strong data-start=\"714\" data-end=\"723\">5V DC</strong></p>\r\n</li>\r\n<li data-start=\"726\" data-end=\"750\">\r\n<p data-start=\"728\" data-end=\"750\">Output Power: <strong data-start=\"742\" data-end=\"748\">5W</strong></p>\r\n</li>\r\n<li data-start=\"751\" data-end=\"792\">\r\n<p data-start=\"753\" data-end=\"792\">High efficiency and low ripple design</p>\r\n</li>\r\n<li data-start=\"793\" data-end=\"827\">\r\n<p data-start=\"795\" data-end=\"827\">Ultra-compact PCB mount module</p>\r\n</li>\r\n<li data-start=\"828\" data-end=\"881\">\r\n<p data-start=\"830\" data-end=\"881\">Built-in overcurrent and short-circuit protection</p>\r\n</li>\r\n<li data-start=\"882\" data-end=\"912\">\r\n<p data-start=\"884\" data-end=\"912\">CE, RoHS, and UL certified</p>\r\n</li>\r\n</ul><p data-start=\"914\" data-end=\"933\"><strong data-start=\"914\" data-end=\"931\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n\r\n</p><ul data-start=\"934\" data-end=\"1125\">\r\n<li data-start=\"934\" data-end=\"971\">\r\n<p data-start=\"936\" data-end=\"971\">IoT devices &amp; smart home projects</p>\r\n</li>\r\n<li data-start=\"972\" data-end=\"1011\">\r\n<p data-start=\"974\" data-end=\"1011\">Embedded systems &amp; microcontrollers</p>\r\n</li>\r\n<li data-start=\"1012\" data-end=\"1046\">\r\n<p data-start=\"1014\" data-end=\"1046\">Industrial automation controls</p>\r\n</li>\r\n<li data-start=\"1047\" data-end=\"1080\">\r\n<p data-start=\"1049\" data-end=\"1080\">DIY electronics &amp; prototyping</p>\r\n</li>\r\n<li data-start=\"1081\" data-end=\"1125\">\r\n<p data-start=\"1083\" data-end=\"1125\">Power supply for Wi-Fi modules &amp; sensors</p></li></ul>', 'en', '2025-09-22 13:35:14', '2025-09-22 13:35:14'),
('31', '31', 'Panasonic CR2032 Lithium Coin Cell Battery (3V)', 'Pc', '<p data-start=\"173\" data-end=\"624\">The Panasonic CR2032 is a <strong data-start=\"199\" data-end=\"231\">3V lithium coin cell battery</strong> designed for long-lasting, reliable power. With a compact design and stable voltage output, it is ideal for powering small electronic devices such as watches, calculators, car key fobs, medical devices, and computer motherboards (CMOS backup). Trusted for its <strong data-start=\"492\" data-end=\"532\">high performance and long shelf life</strong>, the Panasonic CR2032 ensures consistent operation in everyday and critical applications.</p><p data-start=\"626\" data-end=\"647\">✅ <strong data-start=\"628\" data-end=\"645\">Key Features:</strong></p><ul data-start=\"648\" data-end=\"939\">\r\n<li data-start=\"648\" data-end=\"669\">\r\n<p data-start=\"650\" data-end=\"669\">Model: <strong data-start=\"657\" data-end=\"667\">CR2032</strong></p>\r\n</li>\r\n<li data-start=\"670\" data-end=\"689\">\r\n<p data-start=\"672\" data-end=\"689\">Voltage: <strong data-start=\"681\" data-end=\"687\">3V</strong></p>\r\n</li>\r\n<li data-start=\"690\" data-end=\"724\">\r\n<p data-start=\"692\" data-end=\"724\">Capacity: <strong data-start=\"702\" data-end=\"722\">220mAh (typical)</strong></p>\r\n</li>\r\n<li data-start=\"725\" data-end=\"761\">\r\n<p data-start=\"727\" data-end=\"761\">Chemistry: <strong data-start=\"738\" data-end=\"759\">Lithium coin cell</strong></p>\r\n</li>\r\n<li data-start=\"762\" data-end=\"798\">\r\n<p data-start=\"764\" data-end=\"798\">Long shelf life (up to 10 years)</p>\r\n</li>\r\n<li data-start=\"799\" data-end=\"850\">\r\n<p data-start=\"801\" data-end=\"850\">Reliable performance in wide temperature ranges</p>\r\n</li>\r\n<li data-start=\"851\" data-end=\"885\">\r\n<p data-start=\"853\" data-end=\"885\">Compact and lightweight design</p>\r\n</li>\r\n<li data-start=\"886\" data-end=\"939\">\r\n<p data-start=\"888\" data-end=\"939\">Brand: <strong data-start=\"895\" data-end=\"937\">Panasonic – trusted battery technology</strong></p>\r\n</li>\r\n</ul><p data-start=\"941\" data-end=\"960\"><strong data-start=\"941\" data-end=\"958\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n</p><ul data-start=\"961\" data-end=\"1147\">\r\n<li data-start=\"961\" data-end=\"986\">\r\n<p data-start=\"963\" data-end=\"986\">Watches &amp; calculators</p>\r\n</li>\r\n<li data-start=\"987\" data-end=\"1013\">\r\n<p data-start=\"989\" data-end=\"1013\">Car key remotes &amp; toys</p>\r\n</li>\r\n<li data-start=\"1014\" data-end=\"1056\">\r\n<p data-start=\"1016\" data-end=\"1056\">Motherboards (CMOS/BIOS memory backup)</p>\r\n</li>\r\n<li data-start=\"1057\" data-end=\"1112\">\r\n<p data-start=\"1059\" data-end=\"1112\">Medical devices (glucometers, digital thermometers)</p>\r\n</li>\r\n<li data-start=\"1113\" data-end=\"1147\">\r\n<p data-start=\"1115\" data-end=\"1147\">Fitness trackers &amp; IoT gadgets</p></li></ul>', 'en', '2025-09-22 13:42:07', '2025-09-22 13:42:07'),
('32', '32', 'NEMA 17 Stepper Motor(0.52Nm)', 'Pc', '<p data-start=\"124\" data-end=\"507\">The NEMA 17 stepper motor is a <strong data-start=\"155\" data-end=\"202\">high-precision 2-phase hybrid stepper motor</strong> widely used in 3D printers, CNC machines, robotics, and automation projects. With a <strong data-start=\"287\" data-end=\"333\">1.8° step angle (200 steps per revolution)</strong>, it offers accurate control of position and speed. Its <strong data-start=\"389\" data-end=\"430\">compact size and strong torque output</strong> make it the most popular stepper motor for makers and professionals alike.</p><p data-start=\"509\" data-end=\"530\">✅ <strong data-start=\"511\" data-end=\"528\">Key Features:</strong></p><ul data-start=\"531\" data-end=\"875\">\r\n<li data-start=\"531\" data-end=\"583\">\r\n<p data-start=\"533\" data-end=\"583\">Motor Type: <strong data-start=\"545\" data-end=\"581\">NEMA 17 (42mm x 42mm frame size)</strong></p>\r\n</li>\r\n<li data-start=\"584\" data-end=\"635\">\r\n<p data-start=\"586\" data-end=\"635\">Step Angle: <strong data-start=\"598\" data-end=\"633\">1.8° (200 steps per revolution)</strong></p>\r\n</li>\r\n<li data-start=\"636\" data-end=\"666\">\r\n<p data-start=\"638\" data-end=\"666\">Phases: <strong data-start=\"646\" data-end=\"664\">2-phase hybrid</strong></p>\r\n</li>\r\n<li data-start=\"667\" data-end=\"724\">\r\n<p data-start=\"669\" data-end=\"724\">Holding Torque: <strong data-start=\"685\" data-end=\"722\">varies (e.g., 40–60 N·cm typical)</strong></p>\r\n</li>\r\n<li data-start=\"725\" data-end=\"784\">\r\n<p data-start=\"727\" data-end=\"784\">Current Rating: <strong data-start=\"743\" data-end=\"782\">~1.2–2A per phase (model dependent)</strong></p>\r\n</li>\r\n<li data-start=\"785\" data-end=\"823\">\r\n<p data-start=\"787\" data-end=\"823\">Shaft Diameter: <strong data-start=\"803\" data-end=\"821\">5mm (standard)</strong></p>\r\n</li>\r\n<li data-start=\"824\" data-end=\"875\">\r\n<p data-start=\"826\" data-end=\"875\">High precision, stable operation, and low noise</p>\r\n</li>\r\n</ul><p data-start=\"877\" data-end=\"896\"><strong data-start=\"877\" data-end=\"894\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n</p><ul data-start=\"897\" data-end=\"1021\">\r\n<li data-start=\"897\" data-end=\"912\">\r\n<p data-start=\"899\" data-end=\"912\">3D Printers</p>\r\n</li>\r\n<li data-start=\"913\" data-end=\"929\">\r\n<p data-start=\"915\" data-end=\"929\">CNC machines</p>\r\n</li>\r\n<li data-start=\"930\" data-end=\"955\">\r\n<p data-start=\"932\" data-end=\"955\">Robotics &amp; automation</p>\r\n</li>\r\n<li data-start=\"956\" data-end=\"991\">\r\n<p data-start=\"958\" data-end=\"991\">Camera sliders &amp; pan-tilt heads</p>\r\n</li>\r\n<li data-start=\"992\" data-end=\"1021\">\r\n<p data-start=\"994\" data-end=\"1021\">DIY mechatronics projects</p></li></ul>', 'en', '2025-09-22 13:49:48', '2025-09-22 13:49:48'),
('33', '33', 'T8 Lead Screw 1000mm – ACME Thread, OD 8mm', 'Pc', '<p data-start=\"137\" data-end=\"391\">The <strong data-start=\"141\" data-end=\"174\">T8 Lead Screw (1000mm length)</strong> is a high-precision ACME threaded rod with an <strong data-start=\"221\" data-end=\"243\">8mm outer diameter</strong>. Designed for smooth and accurate linear motion, it is commonly used in <strong data-start=\"316\" data-end=\"388\">3D printers, CNC machines, linear actuators, and automation projects</strong>.</p><p data-start=\"393\" data-end=\"678\">Made from <strong data-start=\"403\" data-end=\"430\">durable stainless steel</strong>, the T8 lead screw provides <strong data-start=\"459\" data-end=\"525\">high wear resistance, minimal backlash, and stable performance</strong>. Its ACME thread profile ensures efficient load transfer and precise positioning, making it ideal for applications requiring accuracy and reliability.</p><p data-start=\"680\" data-end=\"699\"><strong data-start=\"680\" data-end=\"697\">Key Features:</strong></p><p>\r\n\r\n\r\n</p><ul data-start=\"700\" data-end=\"926\">\r\n<li data-start=\"700\" data-end=\"722\">\r\n<p data-start=\"702\" data-end=\"722\">Length: <strong data-start=\"710\" data-end=\"720\">1000mm</strong></p>\r\n</li>\r\n<li data-start=\"723\" data-end=\"755\">\r\n<p data-start=\"725\" data-end=\"755\">Outer Diameter (OD): <strong data-start=\"746\" data-end=\"753\">8mm</strong></p>\r\n</li>\r\n<li data-start=\"756\" data-end=\"786\">\r\n<p data-start=\"758\" data-end=\"786\">Thread Type: <strong data-start=\"771\" data-end=\"784\">ACME / T8</strong></p>\r\n</li>\r\n<li data-start=\"787\" data-end=\"841\">\r\n<p data-start=\"789\" data-end=\"841\">Material: <strong data-start=\"799\" data-end=\"839\">Stainless Steel / High-quality steel</strong></p>\r\n</li>\r\n<li data-start=\"842\" data-end=\"926\">\r\n<p data-start=\"844\" data-end=\"926\">Suitable for: <strong data-start=\"858\" data-end=\"924\">3D printers, CNC machines, robotics, and linear motion systems</strong></p></li></ul>', 'en', '2025-09-23 09:39:31', '2025-09-23 09:39:31'),
('34', '34', 'T8 Lead Screw 500mm – ACME Thread, OD 8mm', 'Pc', '<p data-start=\"137\" data-end=\"391\">The <strong data-start=\"141\" data-end=\"174\">T8 Lead Screw (500mm length)</strong> is a high-precision ACME threaded rod with an <strong data-start=\"221\" data-end=\"243\">8mm outer diameter</strong>. Designed for smooth and accurate linear motion, it is commonly used in <strong data-start=\"316\" data-end=\"388\">3D printers, CNC machines, linear actuators, and automation projects</strong>.</p><p data-start=\"393\" data-end=\"678\">Made from <strong data-start=\"403\" data-end=\"430\">durable stainless steel</strong>, the T8 lead screw provides <strong data-start=\"459\" data-end=\"525\">high wear resistance, minimal backlash, and stable performance</strong>. Its ACME thread profile ensures efficient load transfer and precise positioning, making it ideal for applications requiring accuracy and reliability.</p><p data-start=\"680\" data-end=\"699\"><strong data-start=\"680\" data-end=\"697\">Key Features:</strong></p><p>\r\n\r\n\r\n</p><ul data-start=\"700\" data-end=\"926\">\r\n<li data-start=\"700\" data-end=\"722\">\r\n<p data-start=\"702\" data-end=\"722\">Length: <strong data-start=\"710\" data-end=\"720\">500mm</strong></p>\r\n</li>\r\n<li data-start=\"723\" data-end=\"755\">\r\n<p data-start=\"725\" data-end=\"755\">Outer Diameter (OD): <strong data-start=\"746\" data-end=\"753\">8mm</strong></p>\r\n</li>\r\n<li data-start=\"756\" data-end=\"786\">\r\n<p data-start=\"758\" data-end=\"786\">Thread Type: <strong data-start=\"771\" data-end=\"784\">ACME / T8</strong></p>\r\n</li>\r\n<li data-start=\"787\" data-end=\"841\">\r\n<p data-start=\"789\" data-end=\"841\">Material: <strong data-start=\"799\" data-end=\"839\">Stainless Steel / High-quality steel</strong></p>\r\n</li>\r\n<li data-start=\"842\" data-end=\"926\">\r\n<p data-start=\"844\" data-end=\"926\">Suitable for: <strong data-start=\"858\" data-end=\"924\">3D printers, CNC machines, robotics, and linear motion systems</strong></p><p data-start=\"844\" data-end=\"926\"><strong data-start=\"858\" data-end=\"924\">Upgrade your linear motion projects with the <strong data-start=\"973\" data-end=\"1036\">T8 Lead Screw – durable, precise, and built for performance</strong>.</strong></p></li></ul>', 'en', '2025-09-23 09:46:27', '2025-09-23 09:46:27'),
('35', '35', 'T8 Lead Screw 250mm – ACME Thread, OD 8mm', 'Pc', '<p data-start=\"137\" data-end=\"391\">The <strong data-start=\"141\" data-end=\"174\">T8 Lead Screw (250mm length)</strong> is a high-precision ACME threaded rod with an <strong data-start=\"221\" data-end=\"243\">8mm outer diameter</strong>. Designed for smooth and accurate linear motion, it is commonly used in <strong data-start=\"316\" data-end=\"388\">3D printers, CNC machines, linear actuators, and automation projects</strong>.</p><p data-start=\"393\" data-end=\"678\">Made from <strong data-start=\"403\" data-end=\"430\">durable stainless steel</strong>, the T8 lead screw provides <strong data-start=\"459\" data-end=\"525\">high wear resistance, minimal backlash, and stable performance</strong>. Its ACME thread profile ensures efficient load transfer and precise positioning, making it ideal for applications requiring accuracy and reliability.</p><p data-start=\"680\" data-end=\"699\"><strong data-start=\"680\" data-end=\"697\">Key Features:</strong></p><ul data-start=\"700\" data-end=\"926\">\r\n<li data-start=\"700\" data-end=\"722\">\r\n<p data-start=\"702\" data-end=\"722\">Length: <strong data-start=\"710\" data-end=\"720\">250mm</strong></p>\r\n</li>\r\n<li data-start=\"723\" data-end=\"755\">\r\n<p data-start=\"725\" data-end=\"755\">Outer Diameter (OD): <strong data-start=\"746\" data-end=\"753\">8mm</strong></p>\r\n</li>\r\n<li data-start=\"756\" data-end=\"786\">\r\n<p data-start=\"758\" data-end=\"786\">Thread Type: <strong data-start=\"771\" data-end=\"784\">ACME / T8</strong></p>\r\n</li>\r\n<li data-start=\"787\" data-end=\"841\">\r\n<p data-start=\"789\" data-end=\"841\">Material: <strong data-start=\"799\" data-end=\"839\">Stainless Steel / High-quality steel</strong></p>\r\n</li>\r\n<li data-start=\"842\" data-end=\"926\">\r\n<p data-start=\"844\" data-end=\"926\">Suitable for: <strong data-start=\"858\" data-end=\"924\">3D printers, CNC machines, robotics, and linear motion systems</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"928\" data-end=\"1039\">Upgrade your linear motion projects with the <strong data-start=\"973\" data-end=\"1036\">T8 Lead Screw – durable, precise, and built for performance</strong>.</p>', 'en', '2025-09-23 09:49:33', '2025-09-23 09:49:33'),
('36', '36', 'T8 Lead Screw 100mm – ACME Thread, OD 8mm', 'Pc', '<p data-start=\"137\" data-end=\"391\">The <strong data-start=\"141\" data-end=\"174\">T8 Lead Screw (100mm length)</strong> is a high-precision ACME threaded rod with an <strong data-start=\"221\" data-end=\"243\">8mm outer diameter</strong>. Designed for smooth and accurate linear motion, it is commonly used in <strong data-start=\"316\" data-end=\"388\">3D printers, CNC machines, linear actuators, and automation projects</strong>.</p><p data-start=\"393\" data-end=\"678\">Made from <strong data-start=\"403\" data-end=\"430\">durable stainless steel</strong>, the T8 lead screw provides <strong data-start=\"459\" data-end=\"525\">high wear resistance, minimal backlash, and stable performance</strong>. Its ACME thread profile ensures efficient load transfer and precise positioning, making it ideal for applications requiring accuracy and reliability.</p><p data-start=\"680\" data-end=\"699\"><strong data-start=\"680\" data-end=\"697\">Key Features:</strong></p><ul data-start=\"700\" data-end=\"926\">\r\n<li data-start=\"700\" data-end=\"722\">\r\n<p data-start=\"702\" data-end=\"722\">Length: <strong data-start=\"710\" data-end=\"720\">100mm</strong></p>\r\n</li>\r\n<li data-start=\"723\" data-end=\"755\">\r\n<p data-start=\"725\" data-end=\"755\">Outer Diameter (OD): <strong data-start=\"746\" data-end=\"753\">8mm</strong></p>\r\n</li>\r\n<li data-start=\"756\" data-end=\"786\">\r\n<p data-start=\"758\" data-end=\"786\">Thread Type: <strong data-start=\"771\" data-end=\"784\">ACME / T8</strong></p>\r\n</li>\r\n<li data-start=\"787\" data-end=\"841\">\r\n<p data-start=\"789\" data-end=\"841\">Material: <strong data-start=\"799\" data-end=\"839\">Stainless Steel / High-quality steel</strong></p>\r\n</li>\r\n<li data-start=\"842\" data-end=\"926\">\r\n<p data-start=\"844\" data-end=\"926\">Suitable for: <strong data-start=\"858\" data-end=\"924\">3D printers, CNC machines, robotics, and linear motion systems</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"928\" data-end=\"1039\">Upgrade your linear motion projects with the <strong data-start=\"973\" data-end=\"1036\">T8 Lead Screw – durable, precise, and built for performance</strong>.</p>', 'en', '2025-09-23 09:52:51', '2025-09-23 09:52:51'),
('37', '37', 'Stepper Motor 28BYJ-48 – 5 Line, 4 Phase, 5V', 'Pc', '<p data-start=\"112\" data-end=\"395\">The <strong data-start=\"116\" data-end=\"142\">28BYJ-48 Stepper Motor</strong> is a compact and reliable stepper motor, widely used in <strong data-start=\"199\" data-end=\"253\">DIY electronics, robotics, and automation projects</strong>. Operating at <strong data-start=\"268\" data-end=\"277\">5V DC</strong>, this motor features <strong data-start=\"299\" data-end=\"334\">5 wires (unipolar) and 4 phases</strong>, offering <strong data-start=\"345\" data-end=\"392\">precise control of rotation and positioning</strong>.</p><p data-start=\"397\" data-end=\"669\">It is commonly paired with a <strong data-start=\"426\" data-end=\"450\">ULN2003 driver board</strong>, making it easy to integrate with <strong data-start=\"485\" data-end=\"538\">Arduino, Raspberry Pi, and other microcontrollers</strong>. The 28BYJ-48 is well-suited for applications like <strong data-start=\"590\" data-end=\"666\">3D printing, camera control systems, robotics, and automation mechanisms</strong>.</p><p data-start=\"671\" data-end=\"690\"><strong data-start=\"671\" data-end=\"688\">Key Features:</strong></p><ul data-start=\"691\" data-end=\"961\">\r\n<li data-start=\"691\" data-end=\"714\">\r\n<p data-start=\"693\" data-end=\"714\">Model: <strong data-start=\"700\" data-end=\"712\">28BYJ-48</strong></p>\r\n</li>\r\n<li data-start=\"715\" data-end=\"747\">\r\n<p data-start=\"717\" data-end=\"747\">Operating Voltage: <strong data-start=\"736\" data-end=\"745\">5V DC</strong></p>\r\n</li>\r\n<li data-start=\"748\" data-end=\"781\">\r\n<p data-start=\"750\" data-end=\"781\">Wiring: <strong data-start=\"758\" data-end=\"779\">5 Line (Unipolar)</strong></p>\r\n</li>\r\n<li data-start=\"782\" data-end=\"805\">\r\n<p data-start=\"784\" data-end=\"805\">Phases: <strong data-start=\"792\" data-end=\"803\">4 Phase</strong></p>\r\n</li>\r\n<li data-start=\"806\" data-end=\"845\">\r\n<p data-start=\"808\" data-end=\"845\">Compact size, low power consumption</p>\r\n</li>\r\n<li data-start=\"846\" data-end=\"891\">\r\n<p data-start=\"848\" data-end=\"891\">Compatible with <strong data-start=\"864\" data-end=\"889\">ULN2003 driver module</strong></p>\r\n</li>\r\n<li data-start=\"892\" data-end=\"961\">\r\n<p data-start=\"894\" data-end=\"961\">Ideal for <strong data-start=\"904\" data-end=\"959\">Arduino, Raspberry Pi, and microcontroller projects</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"963\" data-end=\"1106\">Reliable, affordable, and easy to use, the <strong data-start=\"1006\" data-end=\"1032\">28BYJ-48 stepper motor</strong> is perfect for beginners and professionals in electronics and robotics.</p>', 'en', '2025-09-23 10:06:41', '2025-09-23 10:06:41'),
('38', '38', 'Continuous Rotation SG90 Servo Motor with Plastic Wheel – Full Set', 'Pc', '<p data-start=\"138\" data-end=\"414\">The <strong data-start=\"142\" data-end=\"191\">Continuous Rotation SG90 Servo Motor Full Set</strong> is perfect for building <strong data-start=\"216\" data-end=\"267\">robots, smart cars, and DIY automation projects</strong>. Unlike standard servos, this model offers <strong data-start=\"311\" data-end=\"339\">360° continuous rotation</strong>, making it ideal for driving wheels and providing smooth motion control.</p><p data-start=\"416\" data-end=\"709\">This set comes with a <strong data-start=\"438\" data-end=\"455\">plastic wheel</strong> that easily attaches to the servo, giving you a ready-to-use solution for your robotics and electronic projects. Compact, lightweight, and easy to use, the SG90 continuous servo is compatible with <strong data-start=\"653\" data-end=\"706\">Arduino, Raspberry Pi, and other microcontrollers</strong>.</p><p data-start=\"711\" data-end=\"730\"><strong data-start=\"711\" data-end=\"728\">Key Features:</strong></p><ul data-start=\"731\" data-end=\"1013\">\r\n<li data-start=\"731\" data-end=\"781\">\r\n<p data-start=\"733\" data-end=\"781\">Motor Type: <strong data-start=\"745\" data-end=\"779\">SG90 Continuous Rotation Servo</strong></p>\r\n</li>\r\n<li data-start=\"782\" data-end=\"815\">\r\n<p data-start=\"784\" data-end=\"815\">Rotation: <strong data-start=\"794\" data-end=\"813\">360° continuous</strong></p>\r\n</li>\r\n<li data-start=\"816\" data-end=\"852\">\r\n<p data-start=\"818\" data-end=\"852\">Operating Voltage: <strong data-start=\"837\" data-end=\"850\">4.8V – 6V</strong></p>\r\n</li>\r\n<li data-start=\"853\" data-end=\"912\">\r\n<p data-start=\"855\" data-end=\"912\">Includes: <strong data-start=\"865\" data-end=\"910\">Plastic Wheel + Servo Horns &amp; Accessories</strong></p>\r\n</li>\r\n<li data-start=\"913\" data-end=\"947\">\r\n<p data-start=\"915\" data-end=\"947\">Lightweight and durable design</p>\r\n</li>\r\n<li data-start=\"948\" data-end=\"1013\">\r\n<p data-start=\"950\" data-end=\"1013\">Perfect for <strong data-start=\"962\" data-end=\"1011\">DIY robotics, smart cars, automation projects</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"1015\" data-end=\"1152\">With this <strong data-start=\"1025\" data-end=\"1073\">SG90 Continuous Rotation Servo and Wheel Kit</strong>, you can quickly create mobile robots, prototypes, and educational projects.</p>', 'en', '2025-09-23 12:20:15', '2025-09-23 12:20:15'),
('39', '39', 'Motion Tilt Vibration Sensor Module – SW-18010P', 'Pc', '<p data-start=\"123\" data-end=\"451\">The <strong data-start=\"127\" data-end=\"176\">SW-18010P Motion Tilt Vibration Sensor Module</strong> is a highly sensitive electronic switch that detects <strong data-start=\"230\" data-end=\"260\">motion, tilt, or vibration</strong>. It works by triggering a digital output when movement or vibration is detected, making it perfect for <strong data-start=\"364\" data-end=\"448\">security systems, alarms, motion-activated devices, and DIY electronics projects</strong>.</p><p data-start=\"453\" data-end=\"616\">This module is easy to interface with <strong data-start=\"491\" data-end=\"544\">Arduino, Raspberry Pi, and other microcontrollers</strong>, making it a great choice for beginners and hobbyists in electronics.</p><p data-start=\"618\" data-end=\"637\"><strong data-start=\"618\" data-end=\"635\">Key Features:</strong></p><ul data-start=\"638\" data-end=\"961\">\r\n<li data-start=\"638\" data-end=\"662\">\r\n<p data-start=\"640\" data-end=\"662\">Model: <strong data-start=\"647\" data-end=\"660\">SW-18010P</strong></p>\r\n</li>\r\n<li data-start=\"663\" data-end=\"715\">\r\n<p data-start=\"665\" data-end=\"715\">Function: <strong data-start=\"675\" data-end=\"713\">Detects vibration, tilt, or motion</strong></p>\r\n</li>\r\n<li data-start=\"716\" data-end=\"746\">\r\n<p data-start=\"718\" data-end=\"746\">Output: <strong data-start=\"726\" data-end=\"744\">Digital signal</strong></p>\r\n</li>\r\n<li data-start=\"747\" data-end=\"783\">\r\n<p data-start=\"749\" data-end=\"783\">Operating Voltage: <strong data-start=\"768\" data-end=\"781\">3.3V – 5V</strong></p>\r\n</li>\r\n<li data-start=\"784\" data-end=\"818\">\r\n<p data-start=\"786\" data-end=\"818\">Compact and lightweight design</p>\r\n</li>\r\n<li data-start=\"819\" data-end=\"886\">\r\n<p data-start=\"821\" data-end=\"886\">Compatible with <strong data-start=\"837\" data-end=\"884\">Arduino, Raspberry Pi, and microcontrollers</strong></p>\r\n</li>\r\n<li data-start=\"887\" data-end=\"961\">\r\n<p data-start=\"889\" data-end=\"961\">Applications: <strong data-start=\"903\" data-end=\"959\">Security systems, alarms, motion detection, robotics</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"963\" data-end=\"1102\">The <strong data-start=\"967\" data-end=\"994\">SW-18010P sensor module</strong> provides a simple and reliable way to add <strong data-start=\"1037\" data-end=\"1071\">motion and vibration detection</strong> to your electronic projects.</p>', 'en', '2025-09-23 12:40:07', '2025-09-23 12:40:07'),
('40', '40', 'Is SEO a necessity for roofing companies?', 'pc', '<p><b>Is SEO a necessity for roofing companies?</b></p><p>But, as you may already be aware, there are a lot of other things to think about. Why not capitalize on the fact that they aren\'t while you are running an SEO campaign? However, as you may know, there are many other factors to consider. You should be aware of what people are saying about your business on social media platforms like Facebook, Twitter, and even Google. Secondly, it\'s time to go out there and look up your competitors on the internet.<br/><br/>Look for other businesses that are doing well with SEO, if at all possible, so that when someone searches for Make sure you have some sort of competitive edge over them. Examine their marketing strategies in detail and determine what you believe could be effective for you. When attempting to determine the best roofing marketing strategy for your company, a lot of things can go wrong. The best way to find one that works is to look at other roofing companies and see how they market their services.<br/><br/>If so, what do you think the reason is, and how can you use this information to enhance your own roofing marketing strategy? Do they appear to be doing anything that works well for them? The installation requirements and cost of each of these varieties vary. Slate and asphalt shingles are among the various types of <a href=\"https://www.ranktracker.com/hu/blog/how-to-choose-a-roofing-seo-provider-that-delivers-results/\">diy roofing seo</a> materials. Which roofing materials are available for replacement? Depending on its size and location, there are three different kinds of chimney roof repair. They keep heat out of the home and stop fire from spreading from one side to the other.<br/><br/>Another common roofing issue is damaged chimneys. While copper or metal pipes could be used to replace the larger chimneys, the smaller ones could be fixed with adhesive. Roofers install aluminum chimney caps. It is possible to install a chimney cap if you are unable to use either of these options. Update the content often. Every day, businesses post new and interesting information on their websites. If someone is looking for something specific, they will find it in this way. It only takes a few minutes to share news, blogs, advice, and more with your audience.<br/><br/>A strong safety record. Make sure the roofer you select has a solid safety record. They should also use fall prevention equipment like harnesses or install safety netting as part of their company\'s standard safety procedures. Roofing is a potentially hazardous occupation due to the heights involved. You are still paying for it even though the cost is probably far lower than what you would pay an outside company to do the same task. Do they do anything that seems to be working well for them.</p>', 'en', '2025-10-09 14:43:54', '2025-10-09 14:43:54'),
('41', '41', 'desporteeieza7', 'pc', '<p><b>What\'s a THC vape?</b></p><p>It offers adults an easy, discreet, and highly controllable way to experiment with cannabis\' potential. It demonstrates how creativity keeps reshaping and improving the ways in which we can interact with this age-old plant. Take a single, small draw and then wait to see how you feel before considering another. Knowing what it is, how it works, and how to approach it with a focus on mindful consumption and responsible sourcing will help you make decisions that are appropriate for your own path.<br/><br/>Vaping THC can result in a variety of feelings, ranging from euphoria and relaxation to enhanced concentration and creativity. They\'ve transformed how people connect with cannabis, offering a sleek, modern alternative rooted in efficiency and personalization. The type of cannabis used, the amount of THC present, and the tolerance levels of each user all affect the particular experience. With these products, it\'s always crucial to start small and proceed gradually.<br/><br/>They will provide you with a cerebral high because they contain psychoactive THC. Make sure to carefully consider the milligram strength level when selecting a THC <a href=\"https://www.cbdvapeoiluk.net/can-you-take-a-weed-vape-on-a-plane/\">Weed Vape</a> so that you can receive the appropriate dosage. Is it true that THC vape pens, cartridges, and disposable pens can all make you feel high? Medical patients often find them useful for managing symptoms like chronic pain, anxiety, or insomnia because of their quick onset and easy dosing.<br/><br/>THC vapes are used for purposes other than recreation by many people. Because of their rapid onset and simple dosage, they are frequently found to be helpful by medical patients in the management of symptoms such as anxiety, insomnia, and chronic pain. Certain combinations of THC and CBD are even included in some formulations to produce a more well-rounded effect that promotes relaxation without overpowering the senses. Since their production standards are entirely unknown, purchasing goods from unregulated or informal sources entails serious risks.<br/><br/>This guarantees that the cartridge is free of undesirable impurities and contains what is listed on the label. The most crucial factor to take into account is the origin of your vape. This ensures that what is on the label is what is in the cartridge and that it is free from unwanted contaminants. Obviously, a mindful approach is essential for any cannabis product. Acquiring products from unregulated or informal sources carries significant risks, as their production standards are completely unknown.<br/><br/>The best advice for people who have never done this before is to start slowly and go low. Before thinking about another draw, take one small one and wait to see how it makes you feel. Since the effects can be quite strong, it is always best to take a gentle approach. Cannabis products must pass stringent testing for purity and potency in areas where it is legally regulated.</p>', 'en', '2025-10-12 20:30:25', '2025-10-12 20:30:25'),
('42', '42', 'Which casino games are the most played online?', 'pc', '<p><b>Which casino games are the most played online?</b></p><p>At its core, an online casino operates on software designed to simulate the look and feel of real casino games. The most important part of this software is the Random Number Generator, or RNG, which ensures that every spin, card draw, or dice roll is completely fair. This means the outcomes aren\'t manipulated or predictable, giving each player an equal chance of winning. The convenience of playing from home or on the go has made online casinos incredibly popular, especially among those who enjoy the thrill of gambling without the travel or noise.<br/><br/>Online casinos must therefore make sure that their patrons have a safe and secure gaming environment. A 24-hour support staff is also available at many of the best online casinos to address any queries you might have. As a result, it is vital for online casinos to provide a safe and secure gaming experience for their customers. The live dealer format, which connects the digital and physical worlds, has been a significant advancement in this field.<br/><br/>This immersive setup eliminates any remaining doubt regarding the fairness of the digital operation by allowing players to watch the cards being dealt or the ball spinning in real-time, adding an element of authenticity and trust. The social dynamic and ambiance of a real casino floor are replicated by allowing players to communicate with the dealer and occasionally other players through a chat feature. This innovative feature involves real human dealers managing table games like roulette or blackjack from a dedicated studio, with the action streamed live in high definition to the player\'s device.<br/><br/>The accessibility and variety of online casinos are what make them so alluring. With just a few clicks, users can explore hundreds of games, each with unique themes, features, and payout structures. Additionally, a lot of platforms have live dealer options, which add a level of realism and interaction that closely resembles the ambiance of a physical casino by having real human croupiers oversee the game via video stream.<br/><br/>Whether a player is dealing a hand in digital blackjack, spinning the reels on a video slot machine, or watching the roulette wheel turn, this mathematical tool determines the outcome, ensuring that every game result is completely random and impartial. The Random Number Generator, or RNG, is the central component of all games. Advanced technology is the cornerstone of any respectable online gaming site, with the main goals being to guarantee fair play and strong security. The purpose of this intricate computer algorithm is to generate genuinely unpredictable numerical sequences devoid of any real pattern.<br/><br/>Independent third-party testing organizations conduct routine audits and certifications of the RNG\'s integrity,  <a href=\"https://football-italia.net/gattuso-confident-about-italy-players-quality/\">Gattuso confident</a> which is an essential step in ensuring that the game results are random and creating a trustworthy environment for players.</p>', 'en', '2025-10-16 19:23:04', '2025-10-16 19:23:04'),
('43', '43', 'When it comes to marketing, where should a.', 'pc', '<p><b>When it comes to marketing, where should a roofing business begin?</b></p><p>Selecting the best digital marketing strategy for your roofing business can be challenging, but these pointers will help you make the right decision. One excellent method to improve your company\'s online presence is through digital marketing techniques. They\'re also an inventive and enjoyable way to maintain contact with your clients. Roofing companies have a wide range of options for marketing their companies. Selecting the appropriate combination of approaches for your company is crucial because each approach has pros and cons of its own.<br/><br/>Some common methods include online advertising, print advertising, word-of-mouth referrals, and public relations campaigns. It not only helps you draw in new clients, but it also enables you to establish a more intimate connection with your current clientele. You understand the significance of SEO as a roofing company. A handful of the advantages of SEO are listed below. The expansion of a roofing company involves more than just providing excellent services.<br/><br/>Reaching potential clients at various times of the day and night when they are most likely to be interested is essential to developing a successful, healthy marketing campaign. Yes, it is helpful, but it is not the complete solution. Put the customer first: If you put the customer first, you will increase the likelihood that they will come back to your business time and time again. The following are some of the major trends that roofing contractors should be aware of:  <a href=\"https://www.brandvm.com/post/content-length-best-practices-for-roofing-websites\">read my article</a> The increase in do-it-yourself projects is one of the trends that has the biggest impact on roofing contractors: It fosters trust and respect between consumers and businesses.<br/><br/>Since this trend is probably going to continue in the years to come, roofing contractors should expect a surge in business from these clients. A growing number of homeowners have been doing do-it-yourself projects in an effort to save money in recent years. Be dependable: People should know that they can count on you to deliver high-quality services each and every time they call your phone number or visit your store.<br/><br/>An improvement in energy efficiency. It helps create more leads and draw in new clients, both of which can lead to higher sales. All things considered, SEO is a crucial component of any roofing company\'s marketing plan. Better branding: When people see your website ranking high in SERPs, it sends a positive message about your brand and the quality of your products or services. It\'s time to start using SEO for your roofing business if you haven\'t already.<br/><br/>There are many types of PPC advertisements. These advertisements appear on mobile devices as well as desktop computers. Attracting customers who are already searching online for your goods and services is the aim.</p>', 'en', '2025-10-16 20:20:26', '2025-10-16 20:20:26'),
('44', '44', '2006architectwilton', 'pc', '<p><b>What effect do hashtags have on SMM tactics on Instagram?</b></p><p>There won\'t be any changes to Instagram anytime soon. There are so many ways to increase the number of followers. Get more followers for your account by utilizing the hashtag feature! How to get more Instagram followers? How to increase number of Instagram followers. They may share your post on their pages as well. There are numerous methods to get more followers. Additionally, you will have a better way to interact with your followers, and they will be more inclined to like your Instagram photos and posts.<br/><br/>You can get more attention from people who are interested in your goods and services by selecting the appropriate hashtag. Instagram was designed with the understanding that people process images more quickly than text. Using on-brand colors, careful composition, and consistent filters isn\'t vanity; rather, it\'s a visual representation of who you are. A well-chosen image can communicate quality, values, and mood before a single word is read. You\'ve developed a persona.<br/><br/>You have created something more powerful than awareness when someone can identify your post before they even see your logo. A Reel posted during lunch breaks or evening commutes catches eyes when people are most relaxed - and most open to discovery. Imagine this: while enjoying a cup of coffee and  <a href=\"https://www.smm-world.com\">https://www.smm-world.com/</a> browsing through your phone, you are abruptly interrupted by a striking image. It feels more like something that was created especially for you than an advertisement you clicked.<br/><br/>In the palm of your hand, they are creating narratives, fostering communities, and converting infrequent scrollers into devoted clients. That is the magic of Instagram SMM, a social media marketing strategy designed to appeal to today\'s audiences\' visual pulse. Nowadays, companies post more than just attractive images. After establishing a connection with the distant computer, launch several instances of Instagram (or any other application you choose to use) and sign in to each one separately.<br/><br/>Then, as previously mentioned, you can use CtrlAltD to switch between them. Search engines use hashtags to help users locate photos and videos that are relevant to their interests. These hashtags are very powerful and can assist users in locating the content they\'re seeking. For example, you could make a hashtag to promote mental health awareness. Additionally, they let users search for content related to their interests. Hashtags let you increase your reach on Instagram by allowing people to find your content quickly.<br/><br/>The significance of utilizing content of superior quality.</p>', 'en', '2025-10-20 13:06:25', '2025-10-20 13:06:25'),
('45', '45', 'Victory Centre of Park Forest', 'pc', '<p><b>What services do senior living facilities usually offer?</b></p><p>Learn About Senior Housing Types. There are many senior living options that can accommodate almost any budget, including assisted living, memory care, skilled nursing, and independent living communities. There are many options available in senior living communities that let you live comfortably in your later years while making sure you have the kind of support you need to do so safely. Senior Living Consultations will assist you in determining precisely what you require in order to remain near loved ones in a cozy environment where you can genuinely flourish.<br/><br/>But navigating the world of senior living can be challenging with so many options. Is financial aid available for assisted living? States may offer different benefits, so find out what\'s available in your area by consulting your local resources. Medicaid, Social Security, veterans benefits, and long-term care insurance are just a few of the financial aid options available for assisted living. However, if your loved one\'s health begins to deteriorate, there\'s no assurance that an independent community can offer adequate care.<br/><br/>The price tends to be less than assisted living because these residents don\'t require constant nursing assistance. Compared to large-scale facilities,  <a href=\"https://archive.constantcontact.com/fs175/1106304554207/archive/1118353330976.html\">https://archive.constantcontact.com</a> residential care homes offer a more intimate and compact option. With fewer people, relationships often feel closer, and routines can be tailored to individual rhythms. These are typically private houses converted to accommodate a handful of residents, creating a home-like atmosphere where personalized attention is easy to provide.<br/><br/>A residential care home provides a slower pace and a feeling of family warmth for someone who finds larger settings overwhelming. You should be able to create a short list of local assisted living facilities with that kind of input. To be fair, we discovered that senior communities also receive a lot of favorable reviews. Additionally, you should be aware that many communities have reviews that were written by current and former residents.<br/><br/>Many of the communities that were most highly recommended received at least four stars from other people. Make sure to thoroughly read these. Though keep in mind that all communities get bad reviews, this can be beneficial. Considering these reviews to be the whole truth is not a good idea. Reviews and user comments are available on consumer websites like TrustPilot and Yelp. For example, if a particular facility has a lot of unfounded complaints on Yelp, it\'s possible that one of the facility\'s rivals wrote those reviews.<br/><br/>Additionally, keep in mind that some communities intentionally leave negative reviews on the websites of their rivals. Independent living communities, also known as 55 communities or age-restricted housing, are built for people 55 years of age or older who want more security, amenities, and social interaction than they can get at home. Apart from these fundamental community services, certain communities provide extra help to residents who require it.</p>', 'en', '2025-11-11 14:52:02', '2025-11-11 14:52:02'),
('46', '46', 'princecharles1968', 'pc', '<p><b>How can I pick a vape with THC?</b></p><p>When selecting your CBD vape oil products and learning what a CBD vape tastes like, keep the following things in mind: The flavor of a CBD vape will vary depending on whether it contains CBD and/or THC. A pure CBD vape pen will taste more bitter, whereas a THC-containing vape pen will typically taste sweeter. The right dosage for vaping is a topic of much discussion, particularly with regard to CBD vaporizers.<br/><br/>The leftover oil can be refrigerated in a small glass container. Just make sure you label it correctly so you don\'t accidentally throw it away later. However, what is a <a href=\"https://organichempoil.co.uk/thc-vape-laws-in-the-uk/\">THC vape</a> exactly, and how does it produce a smooth puff of vapor from plant compounds? Many consumers looking for a discreet and easy way to enjoy cannabis now turn to these well-known products. Many of the dangerous byproducts produced by combustion are avoided because there is no flame involved in the process.<br/><br/>For this reason, vaping is frequently described as being smoother and kinder to the lungs. But what exactly is a THC vape, and how does it turn plant compounds into a smooth puff of vapor. By doing this, the oil is warmed just enough to release its active ingredients as vapor, which is then inhaled through the mouthpiece. Try out both types of vapes before deciding which one is best for you. Consider purchasing a rechargeable device that includes cartridges rather than purchasing them separately if you enjoy disposable vapes but don\'t want to spend a lot of money on them up front.<br/><br/>Try both kinds of vapes before selecting the best one. How can I choose which e-cigarette is best for me? How to Use a CBD Vape Pen. Even though this may seem obvious, it\'s always a good idea to read instructions before attempting anything new. To be safe, you should always use your CBD vape pen according to the directions. THC-containing vape pens. Cartridges are the best choice if you\'re new to vaping cannabis.<br/><br/>They include cannabis oil that contains a mix of THC and CBD. You may choose to vape cartridges with higher THC concentrations based on your tolerance levels. The good thing is that you get to choose whether you want to vape using wax or oil - whichever you feel comfortable with. That\'s because they don\'t require you to consume large amounts of cannabinoids. Since THC vape cartridges offer a more enjoyable experience, most customers prefer them.<br/><br/>Vaping THC Dosage Tips. For novices or those seeking simplicity, they are perfect. If you\'ve ever walked into a modern dispensary or scrolled through an online cannabis catalog, you\'ve probably seen sleek, pocket-sized devices labeled as THC vapes.</p>', 'en', '2025-11-14 23:25:02', '2025-11-14 23:25:02'),
('47', '47', 'xboxemulator1974', 'pc', '<p><b>Common Mistakes to Avoid in switch emulator</b></p><p>Essentially, an emulator is a piece of software that makes one computer system behave like another. Consider it a digital translator that enables your current gadget to communicate with older game consoles. The hardware environment of a Game Boy, PlayStation, or Super Nintendo is replicated in your operating system when you run an emulator on your laptop. You\'ve probably heard the term However, what precisely are these programs and how do they function?<br/><br/>They are able to recognize the evolution of some mechanics and recognize the inventiveness of some older games while adhering to rigorous technical constraints. The medium is kept alive in a way that feels inclusive and communal by this generational continuity. Some of the software in the original tutorial was broken. Since its founding in 2025, this website has been regarded as the most trustworthy resource for game emulation. This site has been around since 2025 and it is considered as the most reliable source for game emulation.<br/><br/>It has also established a reputation for dependability, legitimacy, and security. RetroArch is available for free and is open-source. Classic games from platforms like the SNES, Sega Genesis, and even older systems like the Atari 2600 can be played with this <a href=\"https://emulatorhub.dev/\">switch emulator</a>. Additionally, it is incredibly easy to use, which makes it a fantastic option for people who are just beginning to use emulators. RetroArch is among the most well-known examples of an emulator.<br/><br/>Compatibility databases use accuracy ratings to keep track of supported titles. Backup programs transfer and store data across versions. The ecosystem\'s supporting infrastructure is continuously expanding. For both casual and devoted users, this established framework guarantees dependability. Bug fixes are smoothly delivered through update notifications. The same reasoning holds true for virtualized hardware in general: a piece of software cannot mimic a piece of hardware that didn\'t exist when it was released, nor can it invent things that aren\'t real; for example, a program cannot be used to create a fake controller.<br/><br/>The same logic also applies to virtualized hardware in general: a given piece of software cannot simulate a piece of hardware that didn\'t exist at the time of the software\'s release- nor can it make up things that aren\'t real, as in, one cannot create a fake controller using a program. Nevertheless, it would be feasible to use a different program to simulate a controller that is completely imaginary.<br/><br/>To put it another way, one could easily write something like an emulated keyboard for text input purposes and a text field for text output purposes that could work in conjunction with a built-in text editor to create a custom text editor, either entirely or partially.</p>', 'en', '2025-11-15 23:05:35', '2025-11-15 23:05:35'),
('48', '48', 'How Can I Use a THC Vaporizer?', 'pc', '<p><b>How Can I Use a THC Vaporizer?</b></p><p>If you want to buy THC vape pens online, there are many places to choose from. Seeing what other people have to say about someone is the best way to determine whether or not they provide good customer service. Most online retailers offer disposable THC vape pens that are either \"cannabis only\" or \"cannabis and THC\" options. When you buy a THC vape pen online, you will have the option to select the cartridge type you want to use. Because of their e-cigarette-like design, vape pens are suitable for both smokers and non-smokers.<br/><br/>Anyone looking for a covert way to take THC in the comfort of their own home should definitely check out this product. Although using THC vape cartridges doesn\'t require any special knowledge of how to use a vape pen, some models have useful features like temperature settings that let users regulate how much THC they take in. Although using THC vape cartridges doesn\'t require any specific knowledge of how to use a vape pen, some models do have useful features like temperature settings that let users adjust how much THC they consume.<br/><br/>In recent years, THC vaping has grown in popularity as a relatively new trend. For many people, including those who are attempting to give up smoking, it is becoming a substitute for smoking or eating edibles. It transforms the ancient plant into a contemporary ritual that respects your time and lungs while fitting in your pocket. You can change your mood, reduce stress, or inspire creativity with a few deliberate puffs without the heaviness that comes with other techniques. The ease of use and control of THC vaping are what make it so beautiful.<br/><br/>There is a great deal of variation among hybrids, which are produced by crossing different strains together. White Widow, which has been crossed with multiple strains over the years, Lemon Skunk, which was produced by crossing Skunk 1 with a Lemon Drop strain, and Gorilla Glue 4, which was created through repeated crosses between three different strains, are a few examples of well-known hybrids. While some hybrids may lean more toward one parent or the other, others may have equal amounts of Sativa and Indica genetics.<br/><br/>Where can I purchase a <a href=\"https://anxietyanddepression.org.uk/thc-vape/\">THC vape pen</a> online? However, it is crucial that you purchase cannabis products from a reliable supplier. In fact, some studies have shown that vaping THC may be less harmful than smoking it. There are a lot of options available. The significance of selecting the best strain to smoke. The effects of different strains can vary greatly, from a clear-headed cerebral stimulation to a strong body high.</p>', 'en', '2025-11-22 15:13:06', '2025-11-22 15:13:06'),
('49', '49', 'Atlas streaming', 'pc', '<p><b>Comment fonctionne l\'IPTV?</b></p><p>La possibilité de regarder la télévision en direct, les chaînes premium et les émissions spécialisées de pratiquement n\'importe où contribue à faire de l\'IPTV une alternative attrayante. Comme plus de gens passent du câble à IPTV, la facilité d\'utilisation continue de s\'améliorer. Les fournisseurs affinent leurs interfaces, améliorent la stabilité et élargissent les bibliothèques de contenu. Atlas Pro ONTV illustre cette tendance en offrant une large gamme de chaînes fiables au sein d\'un écosystème accessible.<br/><br/>Si vous n\'avez pas de câble ou de satellite, alors vous devrez contacter votre compagnie de téléphone locale pour voir si elles offrent ce service. La plupart des gens préfèrent acheter un système IPTV s\'ils ont déjà un service par câble ou par satellite, mais certains sont capables d\'utiliser le système sans rien acheter. Pour annuler DIRECTV STREAM,  <a href=\"https://atlaspro-on.tv/\">https://atlaspro-on.tv/</a> rendez-vous simplement sur le site Web du fournisseur de services ou contactez son service à la clientèle. Comment annuler DIRECTV STREAM?<br/><br/>N\'oubliez pas qu\'il n\'y a pas de frais d\'annulation et que vous pouvez même profiter du service jusqu\'à la fin de votre cycle de facturation. L\'espace de stockage et les performances de l\'appareil méritent également d\'être mentionnés. Lorsque vous traitez des listes de lecture contenant des milliers de chaînes, certains appareils peuvent nécessiter un moment initial pour charger le catalogue. Les applications IPTV ont tendance à être légères, de sorte que même les gadgets plus anciens peuvent généralement les gérer.<br/><br/>Cependant, effacer les fichiers inutiles ou fermer les applications en arrière-plan peut aider à maintenir une lecture fluide. Atlas Pro ONTV gère efficacement ces listes de lecture étendues, ce qui rend la navigation dans de grandes bibliothèques plus facile que prévu. Une fois chargé, la navigation devient généralement rapide et réactive. Les lecteurs multimédia tels que Kodi, Infomir (M4), VLC, Chromecast ou Miracast font le décryptage du flux de chaînes et le montrent à l\'utilisateur final.<br/><br/>Le client se connecte au système IPTV avec un nom d\'utilisateur et un mot de passe et reçoit la liste des chaînes. Lorsqu\'une chaîne est sélectionnée, un flux de chaînes est envoyé au décodeur ou à une application Internet sur le smartphone ou la tablette. Une modeste mise à niveau du routeur peut renforcer les performances Wi-Fi, en particulier dans les grandes maisons. Une télécommande universelle facilite la navigation sur un téléviseur intelligent.<br/><br/>Beaucoup d\'utilisateurs d\'Atlas Pro ONTV finissent par optimiser leur environnement une fois qu\'ils voient à quelle fréquence ils utilisent le service. Un clavier Bluetooth compact améliore la fonction de recherche. Pour ceux qui souhaitent améliorer leur installation, les accessoires peuvent faire la différence. Bien que ces ajouts soient facultatifs, ils contribuent à une expérience plus fluide pour les ménages qui dépendent fortement du streaming.</p>', 'en', '2025-12-07 14:29:12', '2025-12-07 14:29:12'),
('50', '50', 'THC vapes', 'pc', '<p><b>What should I look for in a THC vape brand</b></p><p>Broad spectrum and distillates differ slightly from one another. While most undesirable components are eliminated, broad spectrum products do not completely eliminate them. What distinguishes distillate from full-spectrum? Distillate concentrates extract only the cannabinoids from the cannabis plant.<br/><br/>In ancient China, cannabis use was first documented around 2737 BC. Emperor Shen Nung, a man, discovered the medicinal properties of cannabis tea there. There,  <a href=\"https://www.weedpens.co.uk/blog/weed-vape-pop-culture-uk/\">weedpen.co.uk</a> a man named Emperor Shen Nung discovered that cannabis tea had therapeutic benefits.<br/><br/>Rolling papers and a grinder are much more labor-intensive than CBD oil vape pens. They\'re also much more subtle. It makes sense that you would want something with a little more discretion because you wouldn\'t want to take out a grinder and light up a joint at work, and many people wouldn\'t even go outside to use their CBD vape pens or pre-filled tanks. Convenience is one of the main reasons why so many people decide to vape CBD e-juice. You will always get the most out of it if you adhere to the instructions on the packaging, and it is simple to use.<br/><br/>Compared to some other techniques, vaporization\'s efficiency means that less product is required to produce the desired effects. Although cost-effectiveness varies based on usage patterns, many people believe that vape pens are reasonably priced. The devices themselves are robust enough to offer prolonged service with the right maintenance, and cartridges usually last for many sessions.<br/><br/>Does Puff Bar\'s New Disposable Vape Pen Work? You can get a dose of CBD to treat anxiety without smoking cigarettes by using CBD vape juice. You can use a CBD vape pen as frequently as necessary as long as you reside in a state where cannabis is legal. We made our vape pen available in two sizes because we want to ensure that everyone has access to cannabis products, which come in a variety of forms. Medical cannabis users who wish to abstain from tobacco use should consider Puff Bar vapes. Users of Puff Bar disposable vape pens have reported feeling calmer overall and experiencing relief from stress in addition to decreased anxiety. Medical cannabis users no longer have to worry about breathing in secondhand smoke in public places because they can now take cannabis in a vapor form.<br/><br/>CBD vape oil cartridges are used to store CBD e-juice. Absolute Nature sells its goods online as well as in a number of physical locations across the United States. Each of its many sizes and forms is appropriate for a distinct type of vape mod. While other cartridges we tested only delivered between 0. The company\'s ethos can be learned about through their online store.</p>', 'en', '2025-12-23 03:32:56', '2025-12-23 03:32:56'),
('51', '51', 'What types of garage door issues can be handled.', 'pc', '<p><b>What types of garage door issues can be handled by a repair service</b></p><p>Your garage door may be stuck half open if the tracks are clogged or dirty. Additionally, look for any loose hardware on the door that might be preventing it from operating correctly. Try cleaning them and ensuring that nothing is obstructing the door\'s free movement. Doors are halfway stuck. Get in touch with a professional garage door company right away if you discover that one or more of these indicators apply to your garage door.<br/><br/>No matter how minor or large the issues with your garage door system may appear, the garage door company can assist you in fixing them. The degree of damage determines how much it will cost to fix garage door springs. Either the door itself or just the springs may need to be replaced. The cost of a repair job is determined by a variety of factors. If your home has a large number of doors, you might want to replace them all at once. After washing your car, be sure to sweep any water on the door\'s surface and dirt off the rollers.<br/><br/>Whether your garage door is made of steel or wood, it is crucial to keep both the inside and the outside clean to prevent damage. We appreciate our clients and  <a href=\"https://garagedoorrepairbakersfield.net/\">garagedoorrepairbakersfield.net</a> are always here to help. We want you to know that we will send a technician to your location at any time of day and are available to you around-the-clock. We are aware that garage door issues can happen at any time and could endanger you and your family. Whenever you need us, we are here to help. However, with consistent care, it becomes one of the most dependable components of a house.<br/><br/>A garage door that consistently opens silently and closes safely is a minor convenience that has a significant impact. It\'s easy to overlook because it usually works without complaint. Because it typically functions without any issues, it is simple to overlook. My personal experience has shown that regular maintenance keeps everyday activities going smoothly and lowers the need for repairs. We will not stop working until you\'re completely satisfied with our work.<br/><br/>Garage Door Repair Cedar Park values customer satisfaction, which is why our technicians can be dispatched within the same day as the request was made. Because Garage Door Repair Cedar Park values client satisfaction, our technicians can be sent out the same day the request was made. Until you are entirely pleased with our work, we won\'t stop working. Checking the manufacturer\'s instructions is the best way to determine when to replace the springs.<br/><br/>You should adhere to your manufacturer\'s recommendations if they call for changing the spring.</p>', 'en', '2026-01-05 12:02:44', '2026-01-05 12:02:44'),
('52', '52', 'Cheap movers', 'pc', '<p><b>How can I pick a trustworthy moving company?</b></p><p>Purchase high-quality moving supplies. It\'s important to buy good quality moving supplies for a long-distance move. Purchasing high-quality moving supplies is crucial for  <a href=\"https://bradentonmovers.net/\">bradentonmovers.net</a> long-distance relocation. Your belongings could be harmed by inexpensive moving supplies because they break easily. Read my articles on self-motivation to learn more. How Does Moving Connect to My Needs? You have to be your best self when moving.<br/><br/>You\'ll need inspiration and hope as you start a new chapter in your life. When choosing a moving company, it\'s crucial to consider how much time you have. Can a mover complete the job in less than a week? When you decide on a moving company, it\'s important to take into account how much time you have. It\'s about giving your belongings to people who will take the proper care of them. It takes work to choose the best moving company, but the peace of mind is worthwhile.<br/><br/>I can concentrate on getting settled in my new house rather than worrying about whether my stuff will arrive undamaged. You\'ll be glad you did. I learned a valuable lesson from that grandmother\'s dresser incident: choosing the best moving company involves more than just getting boxes from point A to point B. Although it\'s not all-inclusive, this list will assist you in refining your estimate. If you\'ve done this before, you probably know exactly how many boxes you need to pack up the house.<br/><br/>How well-packed are your possessions? How to stay within your budget when moving. The dimensions of your house. How many fragile or expensive items do you own? Do not pay for additional services that you do not require. Furniture assembly and disassembly, as well as other minor tasks like moving outdated appliances, are examples. Moving companies offer additional services for both long-distance and local moves. If you decide to use these optional services, try to pay a fixed rate rather than an hourly rate to prevent cost increases brought on by delays.<br/><br/>For both local and long-distance moves, moving companies provide extra services. The average cost is 4,600. Relocating from Chicago to San Francisco is an amazing experience that can be both thrilling and stressful. The average cost of moving from Chicago to San Francisco is 4,600. Traveling across the country while packing everything you own is not an easy task. How much does it typically cost to move from Chicago to San Francisco?<br/><br/>Additionally, moving companies have a set daily rate, so if a mover claims to be able to complete a task in an hour but their hourly rate is only fifty, they are giving themselves very little time to complete the task.</p>', 'en', '2026-01-05 13:08:40', '2026-01-05 13:08:40'),
('53', '53', 'steviesfruit', 'pc', '<p><b>How crucial is a Google Business Profile for SEO in roofing?</b></p><p>Don\'t freak out if your roofing company gets a bad review. Negative reviews aren\'t as horrible as people believe, particularly if you reply in a professional manner. React in a professional manner and, if required, attempt to find a solution. Additionally, they might use your content in a newsletter or blog post that they send to their subscribers. These websites frequently offer their users resources or content with additional value. There are a number of reasons why visitors to your website might come from another.<br/><br/><img src=\"https://cdn.prod.website-files.com/688a19898a8753227c75d1fc/688a21f8e7ac83ea02b3af7e_Roofing%20SEO%20Logo.png\" width=\"350\" style=\"display:block;margin-left:auto;margin-right:auto;border-radius: 14px;box-shadow:0 0 0 4px #00f0ff,0 0 15px #00f0ff,0 0 30px #ff00e0;margin-bottom:12px;\" />A website is referred to as a referring site when it directs users to your website. Referring Sites: A referring site is a website that directs users to your website. What is an active Google Business Profile? A listing in Google Maps and Search that has your company\'s contact details, a description, pictures, and reviews is known as an active GBP. You must be able to prove that you are the company\'s owner and possess a Google account. You can update and add details about your company, such as contact details, hours of operation, photos, and descriptions, after you\'ve claimed the listing.<br/><br/>In addition, an active GBP helps you manage customer reviews and respond to them, which can improve your reputation and increase trust. Finally, having an active GBP can help you reach more potential customers and generate more leads for your business. How do you create one? Once your GBP is operational, you can use Google Analytics to monitor its performance and make adjustments to maximize its visibility.<br/><br/>For roofing companies looking to optimize their SEO, having an active Google Business Profile (GBP) is crucial. Additionally, you can keep an eye on and reply to consumer reviews. Additionally, they are dedicated to preserving the environment through the use of sustainable materials and methods. For individuals seeking a green roofing solution, Green Flash Roofing is an excellent choice. Their skilled and qualified workers are able to deliver superior customer service and high-quality work.<br/><br/>Although the digital landscape is constantly changing, the underlying idea is always the same: business growth is driven by being visible when customers need you. Learning search visibility is crucial for long-term success for contractors who are prepared to expand their company and lessen reliance on pricey lead generation services. The most economical and environmentally friendly method of achieving that visibility is through roofing SEO. Collaborating with experts who comprehend both search engine optimization and the roofing sector can expedite outcomes while allowing you to focus on providing exceptional customer service.<br/><br/>Technical expertise, constant work, and keeping up with algorithm changes are all necessary for <a href=\"https://www.einpresswire.com/article-pdf/872166867/roofing-seo-services-announces-launch-of-new-service-to-help-clients-rank-their-roofing-business-in-the-first-4-months\">SEO for roofing Companies</a>.</p>', 'en', '2026-02-01 15:02:29', '2026-02-01 15:02:29'),
('54', '54', '4grotatingproxies687', 'pc', '<p><b>A 4G mobile rotating proxy: what is it?</b></p><p>Geo-blocking is the practice of a website preventing users from accessing content because of their location. The price varies based on the provider. How much does a 4G mobile rotating proxy cost? No matter where you are, you can access these websites by using a 4G mobile rotating proxy. You can use a 4G mobile rotating proxy on any device with a data connection. This might seem like a lot, but it\'s well worth the investment given all the advantages of using a 4G mobile rotating proxy.<br/><br/>This is particularly helpful if you need to access websites that are blocked in your home country while traveling overseas. But monthly costs start at about $5. How mobile proxy configurations are made. One device at a time, the proxy server can configure it. To finish this process, get in touch with the administrator or follow the guidelines on the proxy provider\'s website. Others, on the other hand, might consider them to be merely an unneeded irritation.<br/><br/>You can find many of these services on the internet and they can be found quite easily. By using a rotating proxy service you will be able to get around these IP blocks and have a much easier time accessing the website. You should definitely give it a try if you\'re thinking about buying a rotating proxy server to see if it will be beneficial to you. Websites perceive requests made through one as coming from a typical mobile user instead of a data center or fixed location.<br/><br/>A mobile proxy is essentially an intermediary server that uses mobile devices connected to cellular networks to route your internet traffic. Mobile proxies make use of the same 4G networks that power your smartphone, in contrast to traditional proxies that use residential connections or data center IP addresses. The geographical flexibility of mobile rotating proxies creates new opportunities. Is it illegal to use mobile proxies?<br/><br/>You can view content exactly as it appears to users in different countries and even cities thanks to the availability of mobile IPs from many providers. For multinational companies, this feature is crucial for testing the functionality of their websites in various markets or making sure localized content appears appropriately. Reliability in dynamic environments is another benefit. This strategy stands out as a sensible and forward-thinking option for anyone who requires dependable access that is compatible with how the contemporary internet functions.<br/><br/>It enables users to engage with the web in a manner that is very similar to regular smartphone use. All things considered, a 4G mobile rotating proxy combines rotation, mobility, <a href=\"https://4g-rotating-proxy-buy-cheap-mobile-ip-ranges.b12sites.com\">and check that out on www.b12sites.com</a> physical connectivity into a potent solution. It can be used to spoof traffic, access blocked websites, conceal a user\'s location, and mask a website\'s actual IP address.</p>', 'en', '2026-02-01 20:04:03', '2026-02-01 20:04:03'),
('55', '55', 'arc raiders items for sale', 'pc', '<p><b>The Future of arc raiders rmt: What to Expect in 2026</b></p><p>This encourages tense,  <a href=\"https://www.mmoset.com/\">www.mmoset.com</a> in-the-moment decision-making that rewards collaboration and map knowledge just as much as technical proficiency PvPvE balance: ARC Raiders pits Raiders against other players as well as AI threats, resulting in dynamic skirmishes where timing and space control are just as important as actual firepower. nPlayers join a squad of Raiders, explore a ruined, Earth-like surface layered with hazard and AI-controlled adversaries, and hunt for valuable loot while contending with other human players who are likewise chasing rewards.<br/><br/>Joining a group of Raiders, players search for valuable loot while competing with other human players who are also pursuing rewards on a destroyed, Earth-like surface covered in hazards and AI-controlled enemies. Tactical looting, environmental interaction, and high-stakes extraction are all included in the core loop. If loot is not secured in a safe pocket or extracted via designated points, death costs equipment and advancement nIf multiplayer scratches your itch - yes.<br/><br/>This game transports you to 2180, a damaged Earth where people seek refuge in underground havens like Speranza, a busy contrada in the Rust Belt. As a fearless Raider, you now go into Topside during short breaks in their patrols to steal treasure, tech scraps, and secrets that are essential to your people\'s survival. The surface was stripped bare decades ago when extraterrestrial devices known as ARC descended from the stars. It was created by Stockholm\'s Embark Studios, the team behind the chaotic brilliance of The Finals.<br/><br/>What plans do you have for cross-play between PCs and consoles? It needs to be flawless. - They are an exceptional team of veterans with a history of successful game development. We would like to investigate this.<br/><br/>That\'s the thrill of ARC Raiders, a multiplayer extraction adventure that has swept the gaming community since its release in the fall. Picture this: you\'re crouched in the shadows of a crumbling Italian coliseum, heart pounding as a colossal ARC machine scans the horizon with its glowing eyes. A single mistake could mean the end of the game or the beginning of an incredible comeback with your team.<br/><br/>I can\'t go into too much detail about them, but I hope everyone is as excited about them as I am. We have some exciting things in the works at nWay Games. What can we expect to see next from nWay Games. I therefore hope that everyone continues to follow nWay Games on social media.</p>', 'en', '2026-02-02 13:00:50', '2026-02-02 13:00:50'),
('56', '56', 'nocountry4u40', 'pc', '<p><b>A promise ring: what is it?</b></p><p>Women love these because they fit anywhere on the wrist or arm. Any part of your body can accommodate them because they are typically small and straightforward. If you\'re searching for a tattoo design that will serve as a reminder of your dedication and commitment, you should look at the heart sign tattoos. The anchor tattoo designs are a great option if you\'re searching for something that represents faith and hope. What does the ring I bought mean? These rings represent the two partners\' shared desire to get married in the future.<br/><br/>They are typically given as a token of commitment by one person to another. Getting a promise ring is a great option if you\'re searching for a way to express your love and dedication. Picks for Our Promise Ring. These rings can be a wonderful way to show your love and commitment and are a symbol of your shared desire to get married. Does the popularity of promise rings vary by country? Engagement rings are more common in other parts of the world, whereas promise rings are more popular in North America.<br/><br/>Promise rings, which signify commitment but not marriage, are worn during the engagement phase in certain cultures. Many cultures prioritize marriage over other forms of relationships. The point of a promise ring is to give meaning and depth to your relationship. It gives both people in the <a href=\"https://www.couplesets.com/collections/couple-rings\">relationship rings</a> a purpose for wearing the ring, and it provides motivation for maintaining the commitment. Make sure to compare prices and shop around if you want to purchase a diamond ring that is on par with an engagement ring in terms of quality.<br/><br/>Promise rings are typically inexpensive, so it\'s not a significant financial commitment. People who do get married often wear promise rings during their engagement or sometimes during the first year of their marriage. When choosing a promise ring for yourself or your significant other, there are a lot of things to take into account. An apple ring might stand for beauty, while a red rose ring might symbolize passion.<br/><br/>A promise ring\'s cost is determined by the metal and gemstones used. Each one has a distinct meaning. You should take into account the type of metal, the design, and the gemstones. There are many factors that influence the price of gold. Many choose straightforward, subtle designs, while others favor gemstones or delicate bands. A personal touch is added by birthstones, engraved dates, or significant symbols. The ring can represent the wearer\'s personality or the couple\'s common interests because there are no strict requirements.<br/><br/>The composition feels personal rather than generic because of this freedom. The design can take on nearly any form.</p>', 'en', '2026-02-16 12:28:07', '2026-02-16 12:28:07'),
('57', '57', 'Roofing SEO services', 'pc', '<p><b>How is roofing SEO different from standard SEO?</b></p><p>Whatever the size or nature of the business, SEO is crucial. A website needs SEO for a straightforward reason. This is important because they will be able to tell you how to rank your site based on SEO best practices in your industry. You can increase website traffic when it ranks highly in the main search engines. When conducting an online search, the first factor that comes into play are the keywords or phrases that people use to find specific information on the Google Search Engine Results Page (SERP).<br/><br/>These words help them find what they\'re looking for faster than others who might not know exactly what they\'re looking for but want more information about it before deciding whether to buy from one place over another because there\'s no time wasted waiting around wondering whether this business will have exactly what someone needs right now, while another website might not carry anything similar at all but still have lower prices than competing sites. It is a question often asked by marketing agencies.<br/><br/>The first aspect which comes into play when you want to search for things online is keywords or phrases which people use while looking for something specific on Google Search Engine Results Page (SERP). This allows people like us who work hard enough and are diligent enough every single day to avoid falling behind schedule because of a lackadaisical attitude toward certain aspects during the start-up phase, when everyone seems to be busy with major tasks, until suddenly a deep-seated gut feeling asks, We will discuss both technical as well as non-technical aspects of roof repair work so that you can understand better about how they relate to each other.<br/><br/>SEO specialists are constantly experimenting with new methods to guarantee that your website ranks highly on Google. They employ a variety of strategies and will constantly monitor any modifications made by Google so they can adjust as necessary. Why choose a local SEO agency? You want to be as easy as possible for your customers to find you online! Not to mention the many benefits SEO brings like higher rankings within search engines resulting in more traffic going straight to your site through organic searches instead of having someone pay per click ads that may not even result in sales.<br/><br/>You should only collaborate with a leading local SEO company that has built websites and optimized them to rank highly in search results. <a href=\"https://hometriangle.com/blogs/tools-to-monitor-ai-visibility-for-roofing-seo-professionals/\">roofing SEO services</a> SEO (Search Engine Optimization) is the process of improving the visibility of a website in search engine results pages. Using business-related keywords is one way to accomplish this. SEO strategies may be familiar to you. Keeping the content on your website current and user-friendly for your clients is one of the most crucial parts of roofing SEO.<br/><br/>Black hat SEO strategies employ devious means to increase your website\'s visibility, whereas white hat strategies aim to improve your website\'s position in the natural search results.</p>', 'en', '2026-02-18 22:27:55', '2026-02-18 22:27:55'),
('58', '58', '4grotatingmobileproxy1959', 'pc', '<p><b>What distinguishes a datacenter or residential proxy from a 4G mobile rotating proxy?</b></p><p>Changing countries on our panel will automatically rotate your IP address. Usually, a proxy server can handle multiple computers and networks of various kinds. It\'s important to keep in mind, though, that different servers may have different features. Similar to smartphones, these gadgets are connected to carrier networks. Internet requests are then routed through the device by proxy software, which then returns the results to the user. A 4G mobile rotating proxy uses distributed mobile devices with SIM cards or  <a href=\"https://4g-rotating-proxy-buy-cheap-mobile-ip-ranges.b12sites.com\">4g-rotating-proxy-buy-cheap-mobile-ip-ranges.b12sites.com</a> specialized hardware in the background.<br/><br/>When rotation takes place, traffic moves smoothly to a different mobile IP address that is available, frequently without interfering with ongoing operations. No, we will set up any configuration you want for free. Is there a private or dedicated network available? Does the setup of a proxy network have a cost? Our team can manage your particular business requirements, so please get in touch with us and we will offer you a dedicated network solution.<br/><br/>The capacity of each API server is thousands of ports. Pick a country or a city of your choice and get your IP addresses from it. We use the best proxy hosting infrastructure providers available today, we limit the number of users per location to a minimum, we check each customer\'s proxy usage before onboarding them to our network, and we employ state-of-the-art security on our proxies. One reason mobile IPs are so trusted is that they are hard to come by.<br/><br/>Most platforms are hesitant to block that IP because doing so could lock out legitimate users. Mobile carriers use a technique known as carrier-grade NAT to share IP addresses among numerous users at once, in contrast to home broadband connections or data center servers. Is your pricing flexible? When using a 4G mobile proxy, that precaution is advantageous. Mobile proxies are a type of proxy server that lets businesses access websites that may be geo-restricted or blocked in a specific area.<br/><br/>Compared to Canada (89%) and Mexico (79%), the US has a higher mobile device penetration rate of 91%. Data center proxies are hosted in server farms, while residential proxies use regular home internet connections. It only makes use of the best residential ISP networks. The most potent API endpoint, PrivateProxy, is capable of executing any kind of proxy, including private proxies. What kinds of proxies do we support?<br/><br/>If you want to learn more about the differences between the two, check out our handy guide. This produces a browsing identity that is very similar to how people typically use the internet.</p>', 'en', '2026-03-01 14:41:09', '2026-03-01 14:41:09'),
('59', '59', 'In reality, what is the job of a plumber?', 'pc', '<p><b>In reality, what is the job of a plumber?</b></p><p>There are no dangerous chemicals in contemporary plumbing fixtures. Manufacturers have responded by producing new drinking water-safe plumbing fixtures. Ultimately, a lot of contemporary fixtures are made to be safe and environmentally friendly. If your plumbing system is functional and high-performing, it can help you sell your home for more money. Hazardous chemicals are present in conventional plumbing fixtures.<br/><br/>This enables you to simultaneously make your house more aesthetically pleasing and healthier. The best way to prepare your home for resale is to make sure your plumbing system is in good condition. Are my plumbing fixtures environmentally friendly? It\'s simple to make mistakes when attempting to solve plumbing issues. There is a good chance that you will do more harm than good if you are inexperienced.<br/><br/>Expert plumbers understand exactly what needs to be done and how. You\'re unable to solve the issue on your own. In order to avoid trial-and-error solutions that could make the situation worse, professionals are trained to diagnose effectively. In actuality, early intervention frequently results in financial savings. Many people are reluctant to call a plumber because they think the repair will be difficult or  <a href=\"https://seattleplumbers.org\">seattleplumbers.org</a> costly. Then, simply reach out via phone or email to choose your preferred plumber.<br/><br/>Every plumber on our list has undergone a thorough screening process to guarantee their legitimacy and professionalism. While they are best known for fixing plumbing, they can also help with gas work and drainage. Then, just get in touch by phone or email to select the plumber of your choice. Can I hire one from this website? The plumber I want is highly regarded. In daily maintenance, do-it-yourself solutions can still be useful.<br/><br/>Being a responsible homeowner includes knowing where shutoff valves are, keeping an eye on water consumption, and cleaning hair from drains. Avoiding professionals completely is not the aim; rather, it is to identify when expertise truly adds value. A well-rounded strategy blends prompt expert assistance with easy upkeep. Why do I need a qualified plumber? To make sure the work is done safely and correctly. You or other family members could sustain serious injuries if you hire an unqualified plumber because they might not take the necessary safety precautions.<br/><br/>It takes more than just connecting pipes to upgrade kitchens, install new bathrooms, or move appliances. In addition to ensuring installations operate dependably from the start, hiring a plumber during the planning stages helps avoid expensive changes later. Pressure balance, proper layout, and adherence to building codes are all important.</p>', 'en', '2026-03-09 13:11:57', '2026-03-09 13:11:57'),
('60', '60', 'How do THC vapes work?', 'pc', '<p><b>How do THC vapes work?</b></p><p>These concentrates can contain cannabinoids like THC, or they can contain CBD oil or other non-psychoactive cannabinoids. An intense, nearly instantaneous experience of the drug\'s effects may result from the vapor from these devices reaching the brain more quickly than smoke. Many people claim that using a vape pen makes them feel more stoned. For this reason, a lot of people who wish to experience the effects of cannabis more gradually opt to consume edibles. There is a chance that people will use THC vape pens because they are effective.<br/><br/>Visit Teens to find out more about the risks associated with THC vape pens. It\'s crucial to keep in mind that using, purchasing, or selling these goods in the US is still prohibited. Are There Any Risks Associated With Vaping THC? The worst thing you can do is buy vape carts online without considering the manufacturer\'s methods or the contents of the product. As long as you\'ve done your homework and bought a high-quality product, there\'s no need to be concerned about vaping <a href=\"https://www.marijuanainmedicine.co.uk/thc-in-vapes/\">THC Vapes</a> products.<br/><br/>While there are many reasons why someone would want to vape, they should always buy high-quality products. Additionally, the effects of vaping cannabis may be very similar to those of smoking cannabis. The answer to this question is that it depends. How safe is cannabis vaping? Durability: Look for vape pens made of premium materials that are difficult to break. Waterproofing: To ensure that you can carry your vape pen around without fear of water damage, make sure it is waterproof.<br/><br/>E-cigarettes and battery-powered vape pens are the two primary varieties of vape pens. What kinds of THC vape pens are there? Design: You should look for a vape pen that is comfortable to carry around and has a sleek, fashionable design. When you inhale or swallow THC, it travels through your body\'s digestive system to your brain. There are a lot of options available to you when searching for a THC vape pen. Vaping-related facts, advice, and resources. However, have you asked yourself, Vaping looks cool.<br/><br/>We understand how tempting it is to try vaping for yourself, your friends, or your loved ones. Additionally, nicotine from e-cigarettes can damage your brain. Vaping information, advice, and resources. It seems cool to vape. Because nicotine addiction lasts a lifetime. Facts, tips and tools about vaping. You can vaporize your preferred strains using the various cartridges that are included with the Pax 3.</p>', 'en', '2026-03-16 18:59:08', '2026-03-16 18:59:08'),
('61', '61', 'vedapocket42', 'pc', '<p><b>How does auto shipping operate and what is it?</b></p><p>On the other hand, the price will be influenced by the cost of fuel for the specific model of your vehicle. Other costs, like insurance and even tolls, might need to be added when shipping a car across the nation. Your final bill will include these as well. If you are looking for auto transport companies near me, then the search is over! We did this on purpose in order to provide a quote during the same phone call and secure the customer\'s approval for the carrier of their choice. We are different from the rest of the industry because of this human intervention.<br/><br/>The cost can range from 600 for a short-distance move to thousands of dollars for a cross-country shipment, depending on all the variables we\'ve covered here. All you have to do is consider all of your options before choosing one. It is much less expensive than flying, which is a plus. For this reason, we only collaborate with reliable auto shippers. Why pick All American Auto Transport? In the United States, there are a lot of auto transport companies. We have a nationwide network of auto transport companies that offer services in all 50 states.<br/><br/>We want to provide you with a dependable, cost-effective, and stress-free experience. To determine your needs and provide you with the best shipping option, we at All American Auto Transport take the time to get to know our clients. After all these processes are over the driver will come and pick up your container and drop it off at your new location. After which you have to load the container with your items. You may be able to store your belongings while <a href=\"https://friscoautotransport.com\">you could look here</a> wait for them to be transported with the help of some auto transport companies Most of the time you will receive the vehicle containers at your doorstep and you will have to bring it to the pickup site on your own.<br/><br/>They may charge you some money for the service. The auto transport procedure. If you plan on shipping multiple cars at the same time, then you can also receive a discount on the shipping fees. Why All American Auto Transport is the best option. Since I\'ve never shipped a car, I want to be fully informed before beginning. Most people who have never shipped a car before find it intimidating. If you have any questions, one of our auto shipping specialists will be happy to help!<br/><br/>All American Auto Transport is your go-to partner. Now that you have a better understanding of your options for auto shipping, please feel free to contact us at (88230-2310) if you need assistance or have any questions.</p>', 'en', '2026-03-23 12:57:23', '2026-03-23 12:57:23'),
('62', '62', 'lizardsnumberone', 'pc', '<p><b>스포츠 베팅이란 무엇입니까?</b></p><p>모든 주요 문의 사항에 대해 BetWinner에는 서비스에 대한 거의 모든 질문에 대한 답변을 찾을 수있는 FAQ 섹션이 있습니다. 다행히 BetWinner는 이메일,  <a href=\"https://www.roobnb77.com/\">https://www.roobnb77.com/</a> 전화 및 소셜 미디어를 포함하여 고객 서비스에 도달 할 수있는 다양한 방법을 제공합니다. BetWinner의 직원들은 친절하며 귀하의 상황을 담당하는 사람이 아니더라도 항상 귀하의 문의 사항에 도움을 드릴 것입니다.<br/><br/>그들의 고객 지원 팀에 영어로 메시지를 보낼 수 있으며 신속하게 답변을 받게됩니다. 온라인 베팅을 할 때 효율적이고 빠른 고객 서비스 시스템을 구축하는 것이 매우 중요합니다. 이러한 예측 불가능성과 통찰력의 혼합은 사람들이 계속 참여하게 만드는 요소 중 하나입니다. 시간이 지남에 따라 많은 베터가 행운과 지식 사이의 균형에 감사하게됩니다.<br/><br/>결과는 결코 보장 될 수 없지만, 정보에 입각 한 선택을하면 전반적인 경험을 향상시킬 수 있습니다. 각 이벤트는 프로세스를 배우고, 조정하고, 즐길 수있는 새로운 기회를 제공합니다. 스포츠 북을 선택하는 방법을 배우십시오. 우리는 귀하의 요구를 충족시키는 북 메이커를 선택하는 방법을 보여줍니다. 신뢰할 수 있고 평판이 좋은 마권업자에게만 가입해야합니다.<br/><br/>예를 들어, 팀 A가 2 점 차이로 승리하고 팀 B가 1 점 차이로 승리한다고 베팅하면 베팅은 2 점 패럴리가 될 것입니다. Parlays는 포인트 스프레드 및 머니 라인과 같은 다른 유형의 베팅과 결합하여 더 복잡한 베팅을 만들 수 있습니다. Parlay: parlay는 한 번의 베팅에서 두 개 이상의 게임에 베팅하는 베팅입니다. 그러나, 베팅이 성공하면 수익을 올릴 것이며 더 큰 베팅을 할 때 더 큰 위험을 감수 할 수 있습니다.<br/><br/>경험을 쌓고 베팅 전략과 선택에 더 자신감을 갖게되면 더 큰 베팅을 시작할 수 있습니다. 처음 시작할 때는 너무 많은 돈을 잃을 위험을 낮추기 위해 신중하고 보수적이어야합니다. 팀 A가 3 점으로 유리하다면 팀 A는 팀 A가 베팅에서 이기려면 팀 B보다 1 점을 더 득점해야합니다. 포인트 스프레드: 이것은 게임에서 두 팀 간의 차이이며, 포인트로 표현됩니다.<br/><br/>이제 포인트 스프레드 베팅이 무엇인지 알고 있으므로 어떤 팀에 베팅을 하고 싶은지 생각하기 시작할 수 있습니다. 많은 사람들이 게임의 엄청난 인기 때문에 내셔널 풋볼 리그와 같은 스포츠에 베팅을 선택합니다. 그러나 MLB, NASCAR, 축구, 심지어 권투를 포함한 다른 유형의 스포츠에도 베팅을 할 수 있습니다. Moneyline: 이것은 팀이 승리하거나 패배 할 확률을 표현하는 또 다른 방법입니다.<br/><br/>예를 들어, 팀 A가 3 점으로 유리하고 팀 B가 1 점으로 유리하다면 머니 라인은 3 : 1이 될 것입니다. 머니라인 베팅은 한 팀이 경기에서 이기거나 패할 것인지를 선택할 때 이루어지며, 머니라인은 각 팀이 이기거나 패할 확률을 기준으로 계산됩니다. 첫 번째 단계는 다른 북 메이커를 보는 것입니다. 우리는 어떤 마권업자가 최고의 배당률, 보너스 및 기능을 가지고 있는지 보여줍니다.<br/><br/>우리는 누가 최고의 마권업자이며 그 이유를 알려줍니다. 친구와 모르는 사람 사이에 공통된 언어를 만들어 통계, 선수 부상, 역사적 추세에 대한 열정적인 논쟁을 불러일으킵니다. 주말이면 승부차기 승리 또는 마지막 초 골의 공유 된 흥분은 경기장 벽을 초월하는 집단적 유대감을 형성합니다. 이 동지애는 중간 계급 팀 간의 화요일 밤 농구 경기를 당신의 전적인 관심을 요구하는 높은 스테이크 드라마로 바꾸는 \"만약에\"의 스릴에 의해 촉진됩니다.<br/><br/>그것은 팀의 수비 포메이션의 작은 변화 또는 투수의 모멘텀의 변화를 알아차리는 헌신적인 추종자에게 보상을 주며, 전문성과 직관이 실제로 보람있는 결과를 낳을 수 있음을 증명합니다.</p>', 'en', '2026-04-15 23:55:33', '2026-04-15 23:55:33'),
('63', '63', 'How can the Google indexing process be.', 'pc', '<p><b>How can the Google indexing process be accelerated?</b></p><p>Increase the number of social media platforms on your website. Increased engagement can be achieved by having a responsive design that displays properly on visitors\' mobile devices. This article, Social Media Marketing Be mobile friendly, describes how to add free social media features to your website. Being mobile friendly doesn\'t just mean having a site that loads and renders well on a mobile phone. Get Google to review your mobile-friendly website: Mobile-Friendly Sites. Here are five Google SEO Ranking Factors. How to make your website mobile-friendly and why it matters. For additional information on being mobile-friendly, visit the following resources. Not only will social media be very helpful in spreading the word about your website but it will also provide more links to your site that Google can use to rank you better. Social media will not only help spread the word about your website, but it will also increase the number of links to it that Google can use to improve your ranking. After setting everything up, select Crawl >Sitemaps >Add/test sitemap.<br/><br/>Google offers a free tool called Google Analytics that lets you know how users are using your website. Visit Google Webmaster Tools and register with your domain name. How to make your site mobile-friendly and why you should care. Google Analytics\' free basic data is already quite potent, particularly the traffic statistics. To find out how you\'re doing, monitor Google Analytics. You must have verified your domain. You can pay a small fee to have the premium package installed if you want to learn more about how your customers use your website.<br/><br/>For instance, classifying web pages makes it easier for Google\'s indexing software to determine which websites to take into account when searching for the appropriate page. Google indexing software does more than just identify whether a page has a particular kind of link. Some examples of these factors are:  <a href=\"https://2index.ninja/\">https://2index.ninja</a> Is your code structured so that you can easily find any errors? In general, we can say that these are the crucial elements that you should consider when indexing your website.<br/><br/>Are you using valid HTML codes on your website? This element encompasses the codes that are utilized to improve your website\'s audience appeal. Is your site accessible from any browser? HTML markup for websites. We\'ll look at additional crucial elements that you should consider in order to improve your website\'s ranking in the following section. Have your website listed in major online search directories like Yahoo!, DMOZ, and Google.<br/><br/>On your home page won\'t impress many people. Make sure your website has high-quality content.</p>', 'en', '2026-05-04 21:43:37', '2026-05-04 21:43:37'),
('65', '65', 'SONOFF Wi-Fi Smart Switch', 'Pc', '<p>SONOFF Wi-Fi Smart Switch</p><p><br></p><p>Control your lights and appliances from anywhere using your smartphone with the SONOFF Wi-Fi Smart Switch. Easily turn devices ON/OFF, set schedules, and enjoy smarter living with remote access and voice control support.</p><p><br></p><p>Key Features</p><p><br></p><p>* Remote Control via Mobile App</p><p>* Wi-Fi Connectivity (2.4GHz)</p><p>* Voice Control Support</p><p>* Timer &amp; Scheduling Functions</p><p>* Energy Saving Solution</p><p>* Smart Home Automation</p><p>* Easy Installation</p><p>* Works with eWeLink App</p><p><br></p><p>Ideal For</p><p><br></p><p>* Home Lighting</p><p>* Fans</p><p>* CCTV Systems</p><p>* Office Equipment</p><p>* Smart Home Setups</p><p><br></p><p>Compatibility</p><p><br></p><p>* Android &amp; iOS</p><p>* Google Assistant</p><p>* Amazon Alexa</p>', 'en', '2026-05-19 13:10:47', '2026-05-19 13:10:47'),
('66', '66', 'peptide products costa rica', 'pc', '<p><b>Top 15 Tools to Supercharge Your peptide therapy vacation costa rica Workflow</b></p><p>The injection of CJC-1295 Ipamorelin, also referred to as the MGF growth hormone releasing hormone (GHRH), is one such therapy that has been demonstrated to offer substantial therapeutic value. I will explain this therapy to you in detail. First of all, we know what peptides are. They are synthesized in our bodies and found in food sources like meat and dairy products. Additionally, supplements and pharmaceuticals contain them.<br/><br/>Foods like fish, meat, and dairy contain peptides. Peptides are used in medicine and drug development by pharmaceutical companies worldwide, and they can help with weight loss, skin health, and other issues. The building blocks are the individual amino acids. Cells die far more quickly than is necessary due to human growth hormone deficiency, which is the normal aging process. Actually, apoptosis is inhibited by both human growth hormone and ghrelin agonists. The brain releases more growth hormone when cortisol levels are high.<br/><br/>I will tell you everything about this therapy. What is CJC-1295 and Ipamorelin? One such treatment that has been shown to provide significant therapeutic value is the injection of CJC-1295 Ipamorelin, known as the MGF growth hormone releasing hormone (GHRH). CJC 1295 is a synthetic amino acid chain that, once absorbed into the bloodstream, stimulates the release of a significant amount of growth hormone. What are CJC-1295 and Ipamorelin?<br/><br/>Medical trials on animals have,  <a href=\"https://podcastaddict.com/podcast/peptides-costa-rica/7032045\">podcastaddict.com</a> of course, demonstrated that the peptides may be dangerous for human use. What Are the Risks and Dangers? There are currently no large-scale human-involved scientific trials. Nausea, vomiting, diarrhea, headache, skin rash, itching, and hives are some of these adverse effects. Although they are uncommon, peptides can have adverse effects. Before taking any supplement, you should always speak with your doctor because it may interfere with other medications or conditions you may have.<br/><br/>Peptides are a type of amino acid that are found in the body. They aid in the development of healthy muscle and skin tissues, the preservation of the body\'s ideal vitamin and mineral balance, and the reduction of inflammation. Peptides: Side Effects and Risks. They have a special capacity to move through cellular pathways with ease due to their smaller size, getting past obstacles that larger proteins are unable to.<br/><br/>Once they reach their destination, they give your cells precise instructions on how to act, recover, adapt, and flourish. If you are looking for a natural way to look younger, then try using peptides today! Large, intricate structures called proteins are composed of lengthy chains of organic molecules known as amino acids. Proteins like collagen and elastin are the robust building blocks of our skin, muscles, and organs in the grand architectural design of human biology.</p>', 'en', '2026-05-25 14:06:15', '2026-05-25 14:06:15'),
('67', '67', 'besthistorypodcasts', 'pc', '<p><b>Are there beginner-friendly history podcasts on Spotify?</b></p><p>Making playlists based on your listening history is another fantastic Spotify feature. This implies that you can store and retrieve your preferred podcasts whenever you need to. Additionally, you can find what you\'re looking for with ease because the platform is very user-friendly. These are the top history podcasts available on Spotify for learners of all ages, history enthusiasts, and experts alike. Some of the history podcasts are hosted by Ben Raines, Dr. Get some ideas and inspiration by listening to these top history podcasts.<br/><br/>Elizabeth Klett, Katie McKenna, Andrew Dickson, and Bob Barrett. Share your favorites in the space provided for comments below. Start with a topic you already find enjoyable in fiction or movies if you are unsure of where to start. If you enjoy historical dramas, you can probably find a podcast that delves into the true history of your preferred setting. Historical mysteries and unresolved cases from the past provide the same excitement along with additional educational value. You are immersed in a crafted experience designed to hold your attention and spark further exploration.<br/><br/>Are you interested in true crime? Many podcasts are designed with newcomers in mind, explaining complex topics in simple language and providing enough context to make events easy to follow. Instead of sitting down with a textbook, you can absorb information naturally through storytelling. Ancient Rome might be studied one week, and the Industrial Revolution the following. Listeners can sample a variety of topics in this format and find out which eras interest them.<br/><br/>This program, which is hosted by historians Dominic Sandbrook and  <a href=\"https://open.spotify.com/show/033gE1E7y3mvF4DguHuyk4\">open.spotify.com</a> Tom Holland, is excellent at simplifying complicated world events into easily understood and frequently humorous segments. Their chemistry transforms what could otherwise be a dull lecture into a lively discussion between friends, making it simple for listeners to take in information about everything from the subtleties of historical scandals to the rise of empires. It is presented as a shared human story, available to anyone with curiosity and a pair of headphones.<br/><br/>The bottom line is that Spotify has cultivated a rich environment where history is not reserved for specialists. The incredibly popular show The Rest Is History is one of the most welcoming places to start for any newcomer. For anyone who has ever thought of history as a collection of dry facts and far-off dates rather than a series of captivating human dramas, this accessibility is a wonderful gift.<br/><br/>The platform has developed into a top choice for inquisitive minds, offering a smooth transition between lighthearted curiosity and profound scholarly understanding without the intimidation that comes with traditional academic study. Thanks to the dynamic realm of digital audio, learning about the past has never been easier or more interesting.przychodniaspecjalistyczna Anonas, Sta. Mesa, Manila, 1016 Kalakhang Maynila, Filippine +63-933-555-6280</p>', 'en', '2026-05-27 11:17:25', '2026-05-27 11:17:25'),
('68', '68', 'What is the effect of internet reviews on my.', 'pc', '<p><b>What is the effect of internet reviews on my roofing SEO?</b></p><p>The Benefits of Roofing SEO. Spend less on conventional advertising strategies like print or billboard advertisements. If you work as a roofing contractor, you are undoubtedly aware of the significance of SEO for your company. When people look for roofing services in your area, you want to be there. Boost website traffic. How to Do SEO for Roofing. This is the best way to get in front of potential customers and convince them that you\'re the best roofing contractor for them. Roofing SEO can help with that.<br/><br/>Get your company noticed by search engines like Google and Bing. Once we comprehend them, it\'s time to put those tactics into practice! is to optimize your website for search engines. Roofing Industry Roofing companies provide important services to communities. There will be a greater emphasis on how sustainability fits into overall design plans and how it is an important part of any building project. PPC advertising is a useful tool for promoting your company on websites related to the roofing industry.<br/><br/>This is the most effective way to approach prospective clients and persuade them that you are their ideal roofing contractor. Paid advertising is roofing SEO\'s third category. The more sincere compliments you get, the more the search engine thinks you should be at the top. Online reviews have become one of the most powerful signals for your local search ranking, and for a roofer, they can make the difference between showing up on page one or getting buried where no one looks.<br/><br/>Although Google doesn\'t personally know you, it is aware of what your clients have to say about you. Positive reviews function as online recommendations. Google does not know you personally, but it knows what your customers say about you. However, a lot of businesses are using search engine optimization (SEO) to boost their visibility. We\'ll cover everything from keyword research and website optimization techniques to strategies you can use right now.<br/><br/>For local searches such as This blog will go over the meaning of these rankings and how they are determined. Being found online is the best way for roofing companies to accomplish this. Roofing companies must figure out how to differentiate themselves from the competition because more people are seeking roof replacements or repairs these days. The first step in hiring a roofing SEO company is to conduct keyword research.<br/><br/>How do roofing SEO services operate? Effective use of this strategy will enable a competent <a href=\"https://daltxrealestate.com/roofing-seo-agency-texas/\">Roofing SEO agency</a> contractor to expand their business more quickly than their rivals who aren\'t utilizing local SEO strategies.</p>', 'en', '2026-06-16 16:23:39', '2026-06-16 16:23:39'),
('69', '69', 'PoE Switch (10/100Mbps | 4 Port | 1G SFP Gigabit)', 'pc', '<p class=\"MsoNormal\"><b>Product Overview</b><br>\r\nReliable and efficient PoE (Power over Ethernet) switch designed for CCTV\r\nsurveillance and network applications. Supports both power and data\r\ntransmission through a single Ethernet cable, reducing installation complexity\r\nand cost.<o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features:</b><br>\r\n• 4 × 10/100Mbps PoE Ethernet Ports<br>\r\n• 1 × Gigabit SFP Uplink Port<br>\r\n• Supports Power over Ethernet (PoE) transmission<br>\r\n• Data + Power through a single LAN cable<br>\r\n• Stable network performance for IP devices<br>\r\n• Easy Plug &amp; Play installation<br>\r\n• Compact and durable metal housing<br>\r\n• Suitable for long-distance surveillance deployments<br>\r\n• Built-in protection for stable operation<o:p></o:p></p><p class=\"MsoNormal\"><b>Technical Specifications:</b><o:p></o:p></p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Model:\r\n     CX-1004 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Ports:\r\n     4 × 10/100Mbps PoE Ports <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Uplink:\r\n     1 × 1G SFP Gigabit Port <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Transmission:\r\n     Ethernet + Power over single cable <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Network\r\n     Standard: IEEE 802.3 / IEEE 802.3u <o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Standard: IEEE 802.3af / IEEE 802.3at <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Switching\r\n     Capacity: High-speed data forwarding <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Installation:\r\n     Desktop / Wall Mount <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Housing:\r\n     Metal Body <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Application:\r\n     Indoor Use <o:p></o:p></li>\r\n</ul><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\"><b>Ideal For:</b><br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> IP CCTV Camera Systems<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Office Networks<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Shops &amp; Commercial Buildings<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Small Business Network Expansion<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Security Monitoring Systems<o:p></o:p></p>', 'en', '2026-06-22 09:09:08', '2026-06-22 09:09:08'),
('70', '70', 'PoE Switch (10/100Mbps | 8 Port | 2 Uplink + 1G SFP Gigabit)', 'Pc', '<p class=\"MsoNormal\"><b>Product Overview</b><br>\r\nProfessional PoE switch designed for CCTV surveillance and network deployment.\r\nSupports simultaneous power and data transmission through a single Ethernet\r\ncable, making installation faster and more efficient for IP camera systems and\r\nbusiness networking. <o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features:</b><br>\r\n• 8 × 10/100Mbps PoE Ethernet Ports<br>\r\n• 2 × Uplink Ports for stable network expansion<br>\r\n• 1 × Gigabit SFP Fiber Uplink Port<br>\r\n• Power + Data transmission over one cable<br>\r\n• Plug &amp; Play operation – easy installation<br>\r\n• Stable transmission for CCTV monitoring systems<br>\r\n• Intelligent power management<br>\r\n• Metal body for durability and heat dissipation<br>\r\n• Suitable for long-distance network deployment<o:p></o:p></p><p class=\"MsoNormal\"><b>Technical Specifications:</b><o:p></o:p></p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Model:\r\n     CX-1008 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Ports: 8 × 10/100Mbps RJ45 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Uplink\r\n     Ports: 2 × Uplink Ethernet Ports <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Fiber\r\n     Port: 1 × 1G SFP Gigabit <o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Standard: IEEE 802.3af / IEEE 802.3at<o:p></o:p></li>\r\n <li class=\"MsoNormal\">Transmission\r\n     Method: Store-and-Forward <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Installation\r\n     Type: Desktop / Wall Mount <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Housing:\r\n     Industrial Metal Casing <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Application:\r\n     Indoor Network &amp; Surveillance Use <o:p></o:p></li>\r\n</ul><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;\r\nmso-bidi-font-family:&quot;Segoe UI Symbol&quot;\">✔</span> IP CCTV Camera Systems<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Office Network Expansion<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Shops &amp; Commercial Buildings<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Warehouse Monitoring<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Security Surveillance Projects<o:p></o:p></p>', 'en', '2026-06-22 09:13:52', '2026-06-22 09:13:52'),
('71', '71', 'PoE Switch (10/100Mbps | 16 Port | 2 Uplink | 2 SFP Gigabit)', 'Pc', '<p class=\"MsoNormal\"><b>Product Overview</b><br>\r\nHigh-performance PoE switch designed for CCTV surveillance and network\r\ndeployment. Delivers both power and data through a single Ethernet cable for\r\nsimplified installation and stable connectivity across multiple devices.\r\nCommonly used for IP camera systems, office networking, and security projects. <o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features:</b><br>\r\n• 16 × 10/100Mbps PoE Ethernet Ports<br>\r\n• 2 × Gigabit RJ45 Uplink Ports<br>\r\n• 2 × Gigabit SFP Fiber Uplink Ports<br>\r\n• Power + Data transmission through one LAN cable<br>\r\n• Plug &amp; Play installation<br>\r\n• Stable transmission for IP CCTV systems<br>\r\n• Intelligent PoE power management<br>\r\n• Metal body for durability and heat control<br>\r\n• Suitable for long-distance surveillance networking <o:p></o:p></p><p class=\"MsoNormal\"><b>Technical Specifications:</b><o:p></o:p></p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Model:\r\n     CX-3016<o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Ports: 16 × 10/100Mbps RJ45 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Uplink\r\n     Ports: 2 × Gigabit RJ45 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Fiber\r\n     Ports: 2 × Gigabit SFP <o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Standard: IEEE 802.3af / IEEE 802.3at <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Transmission\r\n     Method: Store &amp; Forward <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Installation:\r\n     Rack Mount / Desktop <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Housing:\r\n     Industrial Metal Casing <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Application:\r\n     Indoor CCTV &amp; Network Use <o:p></o:p></li>\r\n</ul><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\"><b>Best For:</b><br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> IP CCTV Camera Systems<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Office Networks<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Warehouses &amp; Commercial Buildings<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Security Monitoring Projects<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Network Expansion with Fiber Connectivity<o:p></o:p></p>', 'en', '2026-06-22 09:18:09', '2026-06-22 09:18:09'),
('72', '72', 'Explore the figures', 'pc', '<p><b>Over the last five years, how quickly has OnlyFans expanded?</b></p><p>For example, it is possible to post pictures, videos and messages to your fans for free. For their fans, creators can post exclusive content for a fee. Bitcoin can also be used to purchase presents for your favorite artists. This is a platform for professional content creators. There is a membership option in addition to a donation and tip jar. You can operate a shop, offer commissions, or sell digital goods. Ko-fi is a supplement to many creators\' primary platforms.<br/><br/>Ko-fi is the amiable substitute. It\'s not always the case that fans come to support you in order to obtain locked-in content. The platform is extremely affordable; it only processes payments and does not charge for tips. Many creators use Ko-fi as a supplement to their main platform. Ko-fi is the friendly alternative. The cut is likewise minimal for memberships. You can follow all of your favorite creators without creating multiple accounts by using this fantastic method.<br/><br/>These tokens can then be used to unlock premium content or to tip the creator. A number of payment methods are available, such as gift cards and bitcoin. You determine what interests your subscribers,  <a href=\"https://www.pressconnects.com/story/news/nation/california/2026/02/12/californians-spent-over-350m-on-onlyfans-in-2025-see-top-cities/88648527007/\">pressconnects.com</a> when to publish, and how to communicate with them. Additionally, you develop trust, which results in more tips and subscribers who stick around longer. It\'s also reasonable to take into account the fact that many novices see a three- to six-month increase in revenue.<br/><br/>Because you find out what works. Another realistic figure to consider is that many beginners see their revenue triple after three to six months. That first hundred dollars could grow to three hundred or four hundred dollars. Her account thrives on high-quality visuals and a curated sense of intimacy. She leveraged her existing fame but kept subscribers engaged with daily updates and themed content drops.<br/><br/>High-quality images and a carefully chosen feeling of intimacy are what make her account so successful. Adult content stars like Lana Rhoades dominate the charts too. She offers tiered subscription levels, giving fans options from basic access to exclusive one-one messaging. Fans can choose from basic access to exclusive one-on-one messaging through her tiered subscription levels. Reddit and Twitter promotions attract new users, while devoted followers get freebies or loyalty discounts.<br/><br/>To keep a visible presence, they release content on a rigid schedule, frequently several times a day. Fitness coach Katarina Van Derham posts custom workout plans and nutrition guides, filming routines specifically for her subscribers. Top earners also use pay-per-view messages for special releases, sell merchandise, and take tips for personalized requests to diversify their revenue streams.</p>', 'en', '2026-06-23 08:57:27', '2026-06-23 08:57:27'),
('73', '73', 'Handboss Multi-Purpose Foam Cleaner (450ml)', 'Pc', '<p class=\"MsoNormal\"><b>Product Description</b><br>\r\nHandboss Multi-Purpose Foam Cleaner is a powerful cleaning solution designed to\r\nremove dust, dirt, grease, and stains from a wide range of surfaces. Its rich\r\nfoam formula cleans effectively without damaging delicate equipment, making it\r\nideal for electronics, office equipment, and household applications.<o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features</b><o:p></o:p></p><p>\r\n\r\n\r\n\r\n</p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Powerful\r\n     foam cleaning action <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Removes\r\n     dust, dirt, and grime <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Safe\r\n     on most surfaces <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Fast\r\n     and easy to use <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Suitable\r\n     for electronics and office equipment<o:p></o:p></li>\r\n</ul>', 'en', '2026-06-24 09:19:00', '2026-06-24 09:19:00'),
('74', '74', 'CN-60 Adhesive & Sticker Remover (450ml)', 'Pc', '<p class=\"MsoNormal\"><b>Product Description</b><br>\r\nCN-60 Adhesive Remover is specially formulated to remove stickers, labels, glue\r\nresidue, tape marks, and adhesive stains quickly and efficiently. It leaves\r\nsurfaces clean without leaving residue behind, making it perfect for electronic\r\ndevices, glass, metal, plastic, and other surfaces.<o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features</b><o:p></o:p></p><p class=\"MsoNormal\">\r\n\r\n\r\n\r\n</p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Removes\r\n     stickers and adhesive residue <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Fast-acting\r\n     formula <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Leaves\r\n     no sticky residue <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Safe\r\n     for most surfaces <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Easy\r\n     spray application<o:p></o:p></li>\r\n</ul>', 'en', '2026-06-24 09:21:05', '2026-06-24 09:21:05'),
('75', '75', 'CN-10 Electronics Cleaner (450ml)', 'Pc', '<p class=\"MsoNormal\"><b>Product Description</b><br>\r\nCN-10 Electronics Cleaner is a professional-grade cleaning spray designed for\r\nsensitive electronic components and equipment. It effectively removes dust,\r\ndirt, and contaminants while drying quickly, helping maintain optimal\r\nperformance and extending the life of your devices.<o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features</b><o:p></o:p></p><p>\r\n\r\n\r\n\r\n</p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Designed\r\n     for electronic equipment <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Removes\r\n     dust and contaminants <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Quick-drying\r\n     formula <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Safe\r\n     for electronic components <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Ideal\r\n     for computers, networking devices, and office equipment<o:p></o:p></li>\r\n</ul>', 'en', '2026-06-24 09:22:40', '2026-06-24 09:22:40'),
('76', '76', 'keenanlrfosf', 'pc', '<p><b>스포츠 베팅이란 무엇입니까?</b></p><p>이러한 추세가 2026 년까지 지속됨에 따라 플레이어가 기대할 수있는 흥미 진진한 출시가 많이있을 것입니다. 실제로 지난 2년 동안 거의 매달 새로운 게임이 출시되었습니다. 결론적으로, 우리는 매년 출시되는 많은 새로운 카지노 게임이 있음을 알 수 있습니다. 궁극적으로 온라인 카지노에서 플레이하는 목표는 큰 승리입니다. 웹 사이트의 역사와 고객 지원을 확인하는 것도 도움이됩니다.<br/><br/>또한 각 예금에 필요한 최소 금액을 살펴봐야합니다. 여기에는 카지노의 합법성, 예금 옵션 및 제공하는 게임이 포함됩니다. 어떤 온라인 카지노가 가장 좋은지 결정하기 전에 고려해야 할 여러 가지 요소가 있습니다. 이 경우 그러나 위험이 더 높으며, 돈은 즉시 좋아하는 팀에 투자됩니다. 따라서 베팅의 Moneyline 방법을 사용할 때,이 시스템에서 당신은 승리의 가능성에만 베팅하고 있으므로 당신의 팀이 승리 할 것임을 확신해야합니다.<br/><br/>또한 베팅 볼륨은 개별 게임 및 운동 선수에 따라 다릅니다. 베팅 볼륨은 연중 변동하며 주요 스포츠 이벤트 중에 피크가 발생합니다. 예를 들어, 월드 시리즈와 슈퍼볼은 다른 게임보다 더 많은 베터를 유치합니다. 따라서 스포츠 북의 수익은 월별 및 시즌별로 변동 할 것입니다. 단순히 고정 된 금액을 이기거나 잃는 것보다 귀하의 이익이나 손실은 귀하가 얼마나 옳거나 틀렸는지에 비례합니다.<br/><br/>당신이 10에서 팀의 총 코너를 구입하고 그들이 14로 끝나면, 당신은 단위 당 베팅 금액의 4 배를 얻습니다. 그런 다음 약간 다르게 작동하는 스프레드 베팅이 있습니다. 그것은 깊은 지식과 신중한 사고를 보상하는 형식이며, 스포츠뿐만 아니라 금융 시장에서 특히 인기가 있습니다. 더 깊은 수준에서 스포츠에 참여할 자유가 있습니다. 숙련 된 팬이든 단순히 호기심이 있든 스포츠 북의 세계는 환영하는 입구를 제공합니다.<br/><br/>단순히 팀 대신 이야기 나 통계를 뿌리 뽑을 수 있습니다. 궁극적으로 스포츠 북은 옵션에 관한 것입니다. 수동적인 시청을 능동적인 취미로 바꿔줍니다. 호기심과 가벼운 마음으로 그것에 접근하십시오, 그것은 당신이 사랑하는 게임에 보람있는 새로운 차원을 추가 할 것입니다. 확률에 대한 지식을 테스트 할 수 있습니다. 숫자, 전략, 순수한 흥분의 영역입니다.<br/><br/>팬들은 통계를 추적하고 배당률을 비교하고 게임을 라이브로 시청하고 스마트 폰에서 직접 계정을 관리 할 수 ​​있습니다. 기술은 지난 10 년 동안 산업을 완전히 변화시켰습니다. 오늘날 모바일 앱과 온라인 스포츠 북을 통해 사용자는 거의 모든 곳에서 베팅을 할 수 있습니다. 과거에는 대부분의 베팅이 실제 베팅 상점이나 카지노에서 이루어졌습니다.<br/><br/>당신은 실제 선수들로 구성된 가상 팀을 드래프트하고, 그들의 실제 통계는 당신의 라인업에 대한 포인트로 변환됩니다. 이것은 종종 재미를 위해 플레이되는 반면,  <a href=\"https://xn--2s2b2n48exwm75m.isweb.co.kr/\">https://루벳코리아.isweb.co.kr/</a> 유료 콘테스트는 심각한 상금 풀과 전문 스카우트만큼 매치업을 연구하는 데 많은 시간을 보내는 전담 분석가 커뮤니티가있는 경쟁 추구로 바뀌었습니다. 판타지 스포츠는이 세계에 인접해 앉아 있습니다.<br/><br/>시간이 지남에 따라 이것은 어떤 전략이 당신에게 가장 잘 작동하는지 보는 데 도움이됩니다. 돈 관리가 어떻게 작동하는지 이해하는 것은 베팅을 아는 것만큼 중요합니다. 좋은 규칙은 단일 베팅에서 자금의 소량만을 위험에 빠뜨리는 것입니다. 많은 숙련 된 베터는 자신의 선택에 대한 간단한 기록을 유지합니다. 이렇게 하면 스트레스 없이 오르락 내리락을 즐길 수 있습니다.</p>', 'en', '2026-06-29 20:20:14', '2026-06-29 20:20:14');

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

DROP TABLE IF EXISTS `products`;
CREATE TABLE `products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL,
  `added_by` varchar(6) NOT NULL DEFAULT 'admin',
  `user_id` int(11) NOT NULL,
  `category_id` int(11) NOT NULL,
  `brand_id` int(11) DEFAULT NULL,
  `photos` varchar(2000) DEFAULT NULL,
  `thumbnail_img` varchar(100) DEFAULT NULL,
  `video_provider` varchar(20) DEFAULT NULL,
  `video_link` varchar(100) DEFAULT NULL,
  `tags` varchar(500) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `unit_price` double(20,2) NOT NULL,
  `purchase_price` double(20,2) DEFAULT NULL,
  `variant_product` int(1) NOT NULL DEFAULT 0,
  `attributes` varchar(1000) NOT NULL DEFAULT '[]',
  `choice_options` mediumtext DEFAULT NULL,
  `colors` mediumtext DEFAULT NULL,
  `variations` text DEFAULT NULL,
  `todays_deal` int(11) NOT NULL DEFAULT 0,
  `published` int(11) NOT NULL DEFAULT 1,
  `approved` tinyint(1) NOT NULL DEFAULT 1,
  `stock_visibility_state` varchar(10) NOT NULL DEFAULT 'quantity',
  `cash_on_delivery` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1 = On, 0 = Off',
  `featured` int(11) NOT NULL DEFAULT 0,
  `seller_featured` int(11) NOT NULL DEFAULT 0,
  `current_stock` int(10) NOT NULL DEFAULT 0,
  `unit` varchar(20) DEFAULT NULL,
  `weight` double(8,2) NOT NULL DEFAULT 0.00,
  `min_qty` int(11) NOT NULL DEFAULT 1,
  `low_stock_quantity` int(11) DEFAULT NULL,
  `discount` double(20,2) NOT NULL DEFAULT 0.00,
  `discount_type` varchar(10) NOT NULL DEFAULT 'amount',
  `discount_start_date` int(11) DEFAULT NULL,
  `discount_end_date` int(11) DEFAULT NULL,
  `tax` double(20,2) DEFAULT NULL,
  `tax_type` varchar(10) DEFAULT NULL,
  `shipping_type` varchar(20) DEFAULT 'flat_rate',
  `shipping_cost` double(20,2) NOT NULL DEFAULT 0.00,
  `is_quantity_multiplied` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1 = Mutiplied with shipping cost',
  `est_shipping_days` int(11) DEFAULT NULL,
  `num_of_sale` int(11) NOT NULL DEFAULT 0,
  `meta_title` mediumtext DEFAULT NULL,
  `meta_description` longtext DEFAULT NULL,
  `meta_img` varchar(255) DEFAULT NULL,
  `pdf` varchar(255) DEFAULT NULL,
  `slug` mediumtext NOT NULL,
  `rating` double(8,2) NOT NULL DEFAULT 0.00,
  `barcode` varchar(255) DEFAULT NULL,
  `digital` int(1) NOT NULL DEFAULT 0,
  `auction_product` int(1) NOT NULL DEFAULT 0,
  `file_name` varchar(255) DEFAULT NULL,
  `file_path` varchar(255) DEFAULT NULL,
  `external_link` varchar(500) DEFAULT NULL,
  `external_link_btn` varchar(255) DEFAULT 'Buy Now',
  `wholesale_product` int(1) NOT NULL DEFAULT 0,
  `frequently_bought_selection_type` varchar(19) DEFAULT 'product',
  `has_warranty` tinyint(4) NOT NULL DEFAULT 0,
  `warranty_id` int(11) DEFAULT NULL,
  `warranty_note_id` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `tags` (`tags`(255)),
  KEY `unit_price` (`unit_price`),
  KEY `created_at` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `products`
-- ----------------------------------------

INSERT INTO `products` (`id`, `name`, `added_by`, `user_id`, `category_id`, `brand_id`, `photos`, `thumbnail_img`, `video_provider`, `video_link`, `tags`, `description`, `unit_price`, `purchase_price`, `variant_product`, `attributes`, `choice_options`, `colors`, `variations`, `todays_deal`, `published`, `approved`, `stock_visibility_state`, `cash_on_delivery`, `featured`, `seller_featured`, `current_stock`, `unit`, `weight`, `min_qty`, `low_stock_quantity`, `discount`, `discount_type`, `discount_start_date`, `discount_end_date`, `tax`, `tax_type`, `shipping_type`, `shipping_cost`, `is_quantity_multiplied`, `est_shipping_days`, `num_of_sale`, `meta_title`, `meta_description`, `meta_img`, `pdf`, `slug`, `rating`, `barcode`, `digital`, `auction_product`, `file_name`, `file_path`, `external_link`, `external_link_btn`, `wholesale_product`, `frequently_bought_selection_type`, `has_warranty`, `warranty_id`, `warranty_note_id`, `created_at`, `updated_at`) VALUES
('12', '1k 1/4W Resistor', 'admin', '9', '4', NULL, '80', '80', 'youtube', NULL, '', '<ul><li><strong data-start=\"459\" data-end=\"472\">100pcs</strong></li><li><strong data-start=\"459\" data-end=\"472\">High-quality 1 kΩ, 0.25 W (1/4 W) metal film resistor with ±1% tolerance. Offers low noise and excellent long-term stability for general electronics, Arduino projects, and repairs.</strong></li></ul><p data-start=\"459\" data-end=\"472\"><strong data-start=\"459\" data-end=\"472\">Key specs</strong></p><p>\r\n</p><ul data-start=\"473\" data-end=\"757\">\r\n<li data-start=\"473\" data-end=\"504\">\r\n<p data-start=\"475\" data-end=\"504\">Resistance: <strong data-start=\"487\" data-end=\"504\">1 kΩ (1000 Ω)</strong></p>\r\n</li>\r\n<li data-start=\"505\" data-end=\"539\">\r\n<p data-start=\"507\" data-end=\"539\">Power rating: <strong data-start=\"521\" data-end=\"539\">0.25 W (1/4 W)</strong></p>\r\n</li>\r\n<li data-start=\"540\" data-end=\"583\">\r\n<p data-start=\"542\" data-end=\"583\">Tolerance: <strong data-start=\"553\" data-end=\"560\">±1%</strong> (±5% option available)</p>\r\n</li>\r\n<li data-start=\"584\" data-end=\"651\">\r\n<p data-start=\"586\" data-end=\"651\">Temperature coefficient: <strong data-start=\"611\" data-end=\"626\">±100 ppm/°C</strong> (typical for metal film)</p>\r\n</li>\r\n<li data-start=\"652\" data-end=\"702\">\r\n<p data-start=\"654\" data-end=\"702\">Body size: <strong data-start=\"665\" data-end=\"702\">Axial, 1/6W–1/4W standard package</strong></p>\r\n</li>\r\n<li data-start=\"703\" data-end=\"740\">\r\n<p data-start=\"705\" data-end=\"740\">Lead spacing: <strong data-start=\"719\" data-end=\"730\">~6–7 mm</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"741\" data-end=\"757\">\r\n<p data-start=\"743\" data-end=\"757\">RoHS compliant</p></li></ul>', '200.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '50', 'Pc', '0.25', '100', '1', '55.00', 'percent', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '1k 1/4W Resistor', '100pcsHigh-quality 1 kΩ, 0.25 W (1/4 W) metal film resistor with ±1% tolerance. Offers low noise and excellent long-term stability for general electronics, Arduino projects, and repairs.Key specs\r\n\r\n\r\nResistance: 1 kΩ (1000 Ω)\r\n\r\n\r\nPower rating: 0.25 W (1/4 W)\r\n\r\n\r\nTolerance: ±1% (±5% option available)\r\n\r\n\r\nTemperature coefficient: ±100 ppm/°C (typical for metal film)\r\n\r\n\r\nBody size: Axial, 1/6W–1/4W standard package\r\n\r\n\r\nLead spacing: ~6–7 mm (typical)\r\n\r\n\r\nRoHS compliant', '80', NULL, '1k-14w-resistor', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 15:47:09', '2025-09-03 20:06:20'),
('13', '1000uf 16V Electrolytic Capacitor', 'admin', '9', '4', NULL, '78,79', '78', 'youtube', NULL, '', '<ul data-start=\"335\" data-end=\"532\"><li data-start=\"335\" data-end=\"532\"><p data-start=\"337\" data-end=\"532\">High-quality 1000µF 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"534\" data-end=\"550\"><strong data-start=\"534\" data-end=\"548\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"551\" data-end=\"749\">\r\n<li data-start=\"551\" data-end=\"578\">\r\n<p data-start=\"553\" data-end=\"578\">Capacitance: <strong data-start=\"566\" data-end=\"576\">1000µF</strong></p>\r\n</li>\r\n<li data-start=\"579\" data-end=\"609\">\r\n<p data-start=\"581\" data-end=\"609\">Voltage rating: <strong data-start=\"597\" data-end=\"607\">25V DC</strong></p>\r\n</li>\r\n<li data-start=\"610\" data-end=\"633\">\r\n<p data-start=\"612\" data-end=\"633\">Tolerance: <strong data-start=\"623\" data-end=\"631\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"634\" data-end=\"673\">\r\n<p data-start=\"636\" data-end=\"673\">Type: <strong data-start=\"642\" data-end=\"671\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"674\" data-end=\"730\">\r\n<p data-start=\"676\" data-end=\"730\">Operating temperature: <strong data-start=\"699\" data-end=\"718\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"731\" data-end=\"749\">\r\n<p data-start=\"733\" data-end=\"749\">RoHS compliant</p></li></ul>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', '1', '0.01', '1', '1', '10.00', 'percent', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '1000uf 16V Electrolytic Capacitor', 'High-quality 1000µF 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.\r\n\r\nKey specs:\r\n\r\n\r\n\r\nCapacitance: 1000µF\r\n\r\n\r\nVoltage rating: 25V DC\r\n\r\n\r\nTolerance: ±20%\r\n\r\n\r\nType: Electrolytic, radial lead\r\n\r\n\r\nOperating temperature: -40°C to +105°C (typical)\r\n\r\n\r\nRoHS compliant', '78', NULL, '1000uf-16v-electrolytic-capacitor', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 15:59:54', '2025-09-03 20:05:00'),
('14', 'LM2596-S Adj', 'admin', '9', '4', NULL, '77,76', '77', 'youtube', NULL, '', '<ul><li>The LM2596S-ADJ is a high-efficiency DC-DC step-down (buck) converter IC with an adjustable output voltage from 1.23V to 37V. It supports up to 3A output current, making it ideal for regulated power supplies and embedded projects.</li></ul><p data-start=\"538\" data-end=\"554\"><strong data-start=\"538\" data-end=\"552\">Key specs:</strong></p><p>\r\n</p><ul data-start=\"555\" data-end=\"823\">\r\n<li data-start=\"555\" data-end=\"588\">\r\n<p data-start=\"557\" data-end=\"588\">Input voltage: <strong data-start=\"572\" data-end=\"586\">4.5V – 40V</strong></p>\r\n</li>\r\n<li data-start=\"589\" data-end=\"635\">\r\n<p data-start=\"591\" data-end=\"635\">Output voltage: <strong data-start=\"607\" data-end=\"633\">Adjustable 1.23V – 37V</strong></p>\r\n</li>\r\n<li data-start=\"636\" data-end=\"668\">\r\n<p data-start=\"638\" data-end=\"668\">Output current: <strong data-start=\"654\" data-end=\"666\">Up to 3A</strong></p>\r\n</li>\r\n<li data-start=\"669\" data-end=\"698\">\r\n<p data-start=\"671\" data-end=\"698\">Efficiency: <strong data-start=\"683\" data-end=\"696\">Up to 92%</strong></p>\r\n</li>\r\n<li data-start=\"699\" data-end=\"742\">\r\n<p data-start=\"701\" data-end=\"742\">Switching frequency: <strong data-start=\"722\" data-end=\"740\">150 kHz (typ.)</strong></p>\r\n</li>\r\n<li data-start=\"743\" data-end=\"774\">\r\n<p data-start=\"745\" data-end=\"774\">Package: <strong data-start=\"754\" data-end=\"772\">TO-263 (D²PAK)</strong></p>\r\n</li>\r\n<li data-start=\"775\" data-end=\"823\">\r\n<p data-start=\"777\" data-end=\"823\">Built-in thermal shutdown &amp; current limiting</p></li></ul>', '100.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '50', '1', '0.01', '1', '1', '10.00', 'percent', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '1', 'LM2596-S Adj', 'The LM2596S-ADJ is a high-efficiency DC-DC step-down (buck) converter IC with an adjustable output voltage from 1.23V to 37V. It supports up to 3A output current, making it ideal for regulated power supplies and embedded projects.Key specs:\r\n\r\n\r\nInput voltage: 4.5V – 40V\r\n\r\n\r\nOutput voltage: Adjustable 1.23V – 37V\r\n\r\n\r\nOutput current: Up to 3A\r\n\r\n\r\nEfficiency: Up to 92%\r\n\r\n\r\nSwitching frequency: 150 kHz (typ.)\r\n\r\n\r\nPackage: TO-263 (D²PAK)\r\n\r\n\r\nBuilt-in thermal shutdown &amp; current limiting', '27', NULL, 'lm2596-s-adj', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 19:23:33', '2026-09-01 15:49:49'),
('15', '470µF 16V capacitor', 'admin', '9', '5', NULL, '81,82', '82', 'youtube', NULL, '470µF capacitor,470µF 16V SMD,electrolytic SMD capacitor,surface mount capacitor,power filter capacitor,DC smoothing capacitor', '<ul data-start=\"297\" data-end=\"493\"><li data-start=\"297\" data-end=\"493\"><p data-start=\"299\" data-end=\"493\">High-quality 470µF 16V SMD electrolytic capacitor with ±20% tolerance. Designed for compact PCB mounting, suitable for power supply filtering, decoupling, and general electronics applications.</p>\r\n</li>\r\n</ul><p data-start=\"495\" data-end=\"511\"><strong data-start=\"495\" data-end=\"509\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"512\" data-end=\"739\">\r\n<li data-start=\"512\" data-end=\"538\">\r\n<p data-start=\"514\" data-end=\"538\">Capacitance: <strong data-start=\"527\" data-end=\"536\">470µF</strong></p>\r\n</li>\r\n<li data-start=\"539\" data-end=\"569\">\r\n<p data-start=\"541\" data-end=\"569\">Voltage rating: <strong data-start=\"557\" data-end=\"567\">16V DC</strong></p>\r\n</li>\r\n<li data-start=\"570\" data-end=\"593\">\r\n<p data-start=\"572\" data-end=\"593\">Tolerance: <strong data-start=\"583\" data-end=\"591\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"594\" data-end=\"625\">\r\n<p data-start=\"596\" data-end=\"625\">Type: <strong data-start=\"602\" data-end=\"623\">Electrolytic, SMD</strong></p>\r\n</li>\r\n<li data-start=\"626\" data-end=\"663\">\r\n<p data-start=\"628\" data-end=\"663\">Mounting: <strong data-start=\"638\" data-end=\"661\">Surface mount (SMD)</strong></p>\r\n</li>\r\n<li data-start=\"664\" data-end=\"720\">\r\n<p data-start=\"666\" data-end=\"720\">Operating temperature: <strong data-start=\"689\" data-end=\"708\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"721\" data-end=\"739\">\r\n<p data-start=\"723\" data-end=\"739\">RoHS compliant</p></li></ul>', '25.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.01', '1', '1', '20.00', 'percent', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '470µF capacitor', '470µF capacitor, 470µF 16V SMD, electrolytic SMD capacitor, surface mount capacitor, power filter capacitor, DC smoothing capacitor', '82', NULL, '470f-16v-capacitor', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 20:18:57', '2025-09-03 20:19:28'),
('16', '220uf 35V Electrolytic Capacitor[8*10.5mm]', 'admin', '9', '5', NULL, '83,84', '83', 'youtube', NULL, '220µF capacitor,220µF 35V SMD,electrolytic SMD capacitor,surface mount capacitor,SMT capacitor,power filter capacitor,DC smoothing capacitor', '<ul data-start=\"310\" data-end=\"499\"><li data-start=\"310\" data-end=\"499\"><p data-start=\"312\" data-end=\"499\">High-quality 220µF 35V surface-mount electrolytic capacitor with ±20% tolerance. Compact and durable, suitable for power supply filtering, DC-DC converters, and general SMT electronics.</p>\r\n</li>\r\n</ul><p data-start=\"501\" data-end=\"517\"><strong data-start=\"501\" data-end=\"515\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"518\" data-end=\"745\">\r\n<li data-start=\"518\" data-end=\"544\">\r\n<p data-start=\"520\" data-end=\"544\">Capacitance: <strong data-start=\"533\" data-end=\"542\">220µF</strong></p>\r\n</li>\r\n<li data-start=\"545\" data-end=\"575\">\r\n<p data-start=\"547\" data-end=\"575\">Voltage rating: <strong data-start=\"563\" data-end=\"573\">35V DC</strong></p>\r\n</li>\r\n<li data-start=\"576\" data-end=\"599\">\r\n<p data-start=\"578\" data-end=\"599\">Tolerance: <strong data-start=\"589\" data-end=\"597\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"600\" data-end=\"631\">\r\n<p data-start=\"602\" data-end=\"631\">Type: <strong data-start=\"608\" data-end=\"629\">Electrolytic, SMD</strong></p>\r\n</li>\r\n<li data-start=\"632\" data-end=\"669\">\r\n<p data-start=\"634\" data-end=\"669\">Mounting: <strong data-start=\"644\" data-end=\"667\">Surface Mount (SMD)</strong></p>\r\n</li>\r\n<li data-start=\"670\" data-end=\"726\">\r\n<p data-start=\"672\" data-end=\"726\">Operating temperature: <strong data-start=\"695\" data-end=\"714\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"727\" data-end=\"745\">\r\n<p data-start=\"729\" data-end=\"745\">RoHS compliant</p></li></ul>', '35.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '101', 'Pc', '0.01', '1', '1', '20.00', 'percent', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '220uf 35V Electrolytic Capacitor[8*10.5mm]', '220µF capacitor, 220µF 35V SMD, electrolytic SMD capacitor, surface mount capacitor, SMT capacitor, power filter capacitor, DC smoothing capacitor', '83', NULL, '220uf-35v-electrolytic-capacitor8105mm', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 20:26:48', '2025-09-03 20:26:48'),
('17', '2200uf 16V Electrolytic Capacitor', 'admin', '9', '4', NULL, '85,86', '86', 'youtube', NULL, '2200µF capacitor,2200µF 16V,electrolytic capacitor,radial capacitor,DC filter capacitor,power supply capacitor', '<ul data-start=\"310\" data-end=\"507\"><li data-start=\"310\" data-end=\"507\"><p data-start=\"312\" data-end=\"507\">High-quality 2200µF 16V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"509\" data-end=\"525\"><strong data-start=\"509\" data-end=\"523\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"526\" data-end=\"724\">\r\n<li data-start=\"526\" data-end=\"553\">\r\n<p data-start=\"528\" data-end=\"553\">Capacitance: <strong data-start=\"541\" data-end=\"551\">2200µF</strong></p>\r\n</li>\r\n<li data-start=\"554\" data-end=\"584\">\r\n<p data-start=\"556\" data-end=\"584\">Voltage rating: <strong data-start=\"572\" data-end=\"582\">16V DC</strong></p>\r\n</li>\r\n<li data-start=\"585\" data-end=\"608\">\r\n<p data-start=\"587\" data-end=\"608\">Tolerance: <strong data-start=\"598\" data-end=\"606\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"609\" data-end=\"648\">\r\n<p data-start=\"611\" data-end=\"648\">Type: <strong data-start=\"617\" data-end=\"646\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"649\" data-end=\"705\">\r\n<p data-start=\"651\" data-end=\"705\">Operating temperature: <strong data-start=\"674\" data-end=\"693\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"706\" data-end=\"724\">\r\n<p data-start=\"708\" data-end=\"724\">RoHS compliant</p></li></ul>', '40.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.05', '1', '1', '12.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '2200uf 16V Electrolytic Capacitor', 'High-quality 2200µF 16V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.\r\n\r\nKey specs:\r\n\r\n\r\n\r\nCapacitance: 2200µF\r\n\r\n\r\nVoltage rating: 16V DC\r\n\r\n\r\nTolerance: ±20%\r\n\r\n\r\nType: Electrolytic, radial lead\r\n\r\n\r\nOperating temperature: -40°C to +105°C (typical)\r\n\r\n\r\nRoHS compliant', '86', NULL, '2200uf-16v-electrolytic-capacitor', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 20:34:40', '2025-09-03 20:34:40'),
('18', 'NE556 SMD', 'admin', '9', '5', NULL, '88,87', '87', 'youtube', NULL, 'NE556,NE556 SMD,dual timer IC,555 timer IC,SMD timer,pulse generator IC,SMT electronics', '<ul data-start=\"305\" data-end=\"498\"><li data-start=\"305\" data-end=\"498\"><p data-start=\"307\" data-end=\"498\">he NE556 SMD is a dual timer IC that integrates two NE555 timers in a single package. Suitable for precision timing, pulse generation, oscillators, and PWM circuits in compact SMT designs.</p>\r\n</li>\r\n</ul><p data-start=\"500\" data-end=\"516\"><strong data-start=\"500\" data-end=\"514\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"517\" data-end=\"758\">\r\n<li data-start=\"517\" data-end=\"563\">\r\n<p data-start=\"519\" data-end=\"563\">Type: <strong data-start=\"525\" data-end=\"561\">Dual timer (2 × 555 in one chip)</strong></p>\r\n</li>\r\n<li data-start=\"564\" data-end=\"601\">\r\n<p data-start=\"566\" data-end=\"601\">Supply voltage: <strong data-start=\"582\" data-end=\"599\">+4.5V to +16V</strong></p>\r\n</li>\r\n<li data-start=\"602\" data-end=\"637\">\r\n<p data-start=\"604\" data-end=\"637\">Output current: <strong data-start=\"620\" data-end=\"635\">Up to 200mA</strong></p>\r\n</li>\r\n<li data-start=\"638\" data-end=\"694\">\r\n<p data-start=\"640\" data-end=\"694\">Package: <strong data-start=\"649\" data-end=\"692\">SMD (SOIC/TSOP, varies by manufacturer)</strong></p>\r\n</li>\r\n<li data-start=\"695\" data-end=\"739\">\r\n<p data-start=\"697\" data-end=\"739\">Low power consumption &amp; stable operation</p>\r\n</li>\r\n<li data-start=\"740\" data-end=\"758\">\r\n<p data-start=\"742\" data-end=\"758\">RoHS compliant</p></li></ul>', '110.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.00', '1', '1', '10.00', 'percent', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'NE556 SMD', 'he NE556 SMD is a dual timer IC that integrates two NE555 timers in a single package. Suitable for precision timing, pulse generation, oscillators, and PWM circuits in compact SMT designs.\r\n\r\nKey specs:\r\n\r\n\r\n\r\nType: Dual timer (2 × 555 in one chip)\r\n\r\n\r\nSupply voltage: +4.5V to +16V\r\n\r\n\r\nOutput current: Up to 200mA\r\n\r\n\r\nPackage: SMD (SOIC/TSOP, varies by manufacturer)\r\n\r\n\r\nLow power consumption &amp; stable operation\r\n\r\n\r\nRoHS compliant', '87', NULL, 'ne556-smd', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 20:40:00', '2025-09-03 20:40:00'),
('19', '100uf 16V Electrolytic Capacitor', 'admin', '9', '4', NULL, '89,90', '89', 'youtube', NULL, '1000µF capacitor,1000µF 16V,electrolytic capacitor,radial capacitor,DC filter capacitor,power supply capacitor', '<ul data-start=\"335\" data-end=\"523\"><li data-start=\"335\" data-end=\"523\"><p data-start=\"337\" data-end=\"523\">High-quality 1000µF 16V radial electrolytic capacitor with ±20% tolerance. Ideal for power supply filtering, decoupling, and audio circuit applications in general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"525\" data-end=\"541\"><strong data-start=\"525\" data-end=\"539\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"542\" data-end=\"740\">\r\n<li data-start=\"542\" data-end=\"569\">\r\n<p data-start=\"544\" data-end=\"569\">Capacitance: <strong data-start=\"557\" data-end=\"567\">1000µF</strong></p>\r\n</li>\r\n<li data-start=\"570\" data-end=\"600\">\r\n<p data-start=\"572\" data-end=\"600\">Voltage rating: <strong data-start=\"588\" data-end=\"598\">16V DC</strong></p>\r\n</li>\r\n<li data-start=\"601\" data-end=\"624\">\r\n<p data-start=\"603\" data-end=\"624\">Tolerance: <strong data-start=\"614\" data-end=\"622\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"625\" data-end=\"664\">\r\n<p data-start=\"627\" data-end=\"664\">Type: <strong data-start=\"633\" data-end=\"662\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"665\" data-end=\"721\">\r\n<p data-start=\"667\" data-end=\"721\">Operating temperature: <strong data-start=\"690\" data-end=\"709\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"722\" data-end=\"740\">\r\n<p data-start=\"724\" data-end=\"740\">RoHS compliant</p></li></ul>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.01', '1', '1', '10.00', 'percent', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '100uf 16V Electrolytic Capacitor', 'High-quality 1000µF 16V radial electrolytic capacitor with ±20% tolerance. Ideal for power supply filtering, decoupling, and audio circuit applications in general electronics projects.\r\n\r\nKey specs:\r\n\r\n\r\n\r\nCapacitance: 1000µF\r\n\r\n\r\nVoltage rating: 16V DC\r\n\r\n\r\nTolerance: ±20%\r\n\r\n\r\nType: Electrolytic, radial lead\r\n\r\n\r\nOperating temperature: -40°C to +105°C (typical)\r\n\r\n\r\nRoHS compliant', '89', NULL, '100uf-16v-electrolytic-capacitor', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 20:45:10', '2025-09-03 20:48:36'),
('20', '3300uf 25V Electrolytic Capacitor', 'admin', '9', '4', NULL, '91,92,93', '93', 'youtube', NULL, '3300µF capacitor,3300µF 25V,electrolytic capacitor,radial capacitor,power supply capacitor,DC filter capacitor', '<ul data-start=\"313\" data-end=\"503\"><li data-start=\"313\" data-end=\"503\"><p data-start=\"315\" data-end=\"503\">High-quality 3300µF 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio amplifiers, and general electronics.</p>\r\n</li>\r\n</ul><p data-start=\"505\" data-end=\"521\"><strong data-start=\"505\" data-end=\"519\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"522\" data-end=\"720\">\r\n<li data-start=\"522\" data-end=\"549\">\r\n<p data-start=\"524\" data-end=\"549\">Capacitance: <strong data-start=\"537\" data-end=\"547\">3300µF</strong></p>\r\n</li>\r\n<li data-start=\"550\" data-end=\"580\">\r\n<p data-start=\"552\" data-end=\"580\">Voltage rating: <strong data-start=\"568\" data-end=\"578\">25V DC</strong></p>\r\n</li>\r\n<li data-start=\"581\" data-end=\"604\">\r\n<p data-start=\"583\" data-end=\"604\">Tolerance: <strong data-start=\"594\" data-end=\"602\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"605\" data-end=\"644\">\r\n<p data-start=\"607\" data-end=\"644\">Type: <strong data-start=\"613\" data-end=\"642\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"645\" data-end=\"701\">\r\n<p data-start=\"647\" data-end=\"701\">Operating temperature: <strong data-start=\"670\" data-end=\"689\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"702\" data-end=\"720\">\r\n<p data-start=\"704\" data-end=\"720\">RoHS compliant</p></li></ul>', '40.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.06', '1', '1', '10.00', 'percent', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '3300uf 25V Electrolytic Capacitor', 'High-quality 3300µF 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio amplifiers, and general electronics.\r\n\r\nKey specs:\r\n\r\n\r\n\r\nCapacitance: 3300µF\r\n\r\n\r\nVoltage rating: 25V DC\r\n\r\n\r\nTolerance: ±20%\r\n\r\n\r\nType: Electrolytic, radial lead\r\n\r\n\r\nOperating temperature: -40°C to +105°C (typical)\r\n\r\n\r\nRoHS compliant', '93', NULL, '3300uf-25v-electrolytic-capacitor', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 20:57:24', '2025-09-03 20:58:03'),
('21', '100uH Inductor 101 (12 x 12 x 7 mm)', 'admin', '9', '5', NULL, '95,94', '95', 'youtube', NULL, '100µH inductor,fixed inductor,power inductor,radial inductor,choke coil,DC-DC converter inductor', '<ul data-start=\"281\" data-end=\"476\"><li data-start=\"281\" data-end=\"476\"><p data-start=\"283\" data-end=\"476\">High-quality 100µH fixed inductor designed for filtering, energy storage, and DC-DC converter applications. Suitable for power supplies, signal conditioning, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"478\" data-end=\"494\"><strong data-start=\"478\" data-end=\"492\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"495\" data-end=\"723\">\r\n<li data-start=\"495\" data-end=\"520\">\r\n<p data-start=\"497\" data-end=\"520\">Inductance: <strong data-start=\"509\" data-end=\"518\">100µH</strong></p>\r\n</li>\r\n<li data-start=\"521\" data-end=\"554\">\r\n<p data-start=\"523\" data-end=\"554\">Tolerance: <strong data-start=\"534\" data-end=\"552\">±10% (typical)</strong></p>\r\n</li>\r\n<li data-start=\"555\" data-end=\"611\">\r\n<p data-start=\"557\" data-end=\"611\">Current rating: <strong data-start=\"573\" data-end=\"609\">varies by type (check datasheet)</strong></p>\r\n</li>\r\n<li data-start=\"612\" data-end=\"667\">\r\n<p data-start=\"614\" data-end=\"667\">Type: <strong data-start=\"620\" data-end=\"665\">Radial / axial / SMD (depends on variant)</strong></p>\r\n</li>\r\n<li data-start=\"668\" data-end=\"704\">\r\n<p data-start=\"670\" data-end=\"704\">Low core loss &amp; high reliability</p>\r\n</li>\r\n<li data-start=\"705\" data-end=\"723\">\r\n<p data-start=\"707\" data-end=\"723\">RoHS compliant</p></li></ul>', '70.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.30', '1', '1', '10.00', 'percent', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '100uH Inductor 101 (12 x 12 x 7 mm)', 'High-quality 100µH fixed inductor designed for filtering, energy storage, and DC-DC converter applications. Suitable for power supplies, signal conditioning, and general electronics projects.\r\n\r\nKey specs:\r\n\r\n\r\n\r\nInductance: 100µH\r\n\r\n\r\nTolerance: ±10% (typical)\r\n\r\n\r\nCurrent rating: varies by type (check datasheet)\r\n\r\n\r\nType: Radial / axial / SMD (depends on variant)\r\n\r\n\r\nLow core loss &amp; high reliability\r\n\r\n\r\nRoHS compliant', '95', NULL, '100uh-inductor-101-12-x-12-x-7-mm', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-03 21:06:26', '2025-09-03 21:06:26'),
('22', 'Renata 3V Button Battery CR2477N T-shaped', 'admin', '9', '6', NULL, '118,116,117', '117', 'youtube', NULL, 'Renata CR2477N,Renata button battery,R2477N 3V lithium battery ry', '<li data-start=\"529\" data-end=\"551\"><p data-start=\"531\" data-end=\"551\"><strong data-start=\"531\" data-end=\"541\">Model:</strong> CR2477N</p>\r\n</li>\r\n<li data-start=\"552\" data-end=\"591\">\r\n<p data-start=\"554\" data-end=\"591\"><strong data-start=\"554\" data-end=\"563\">Type:</strong> Lithium Coin Cell Battery</p>\r\n</li>\r\n<li data-start=\"592\" data-end=\"611\">\r\n<p data-start=\"594\" data-end=\"611\"><strong data-start=\"594\" data-end=\"606\">Voltage:</strong> 3V</p>\r\n</li>\r\n<li data-start=\"612\" data-end=\"667\">\r\n<p data-start=\"614\" data-end=\"667\"><strong data-start=\"614\" data-end=\"627\">Capacity:</strong> High capacity for long operating life</p>\r\n</li>\r\n<li data-start=\"668\" data-end=\"716\">\r\n<p data-start=\"670\" data-end=\"716\"><strong data-start=\"670\" data-end=\"685\">Dimensions:</strong> 24mm diameter × 7.7mm height</p>\r\n</li>\r\n<li data-start=\"717\" data-end=\"779\">\r\n<p data-start=\"719\" data-end=\"779\"><strong data-start=\"719\" data-end=\"744\">Reliable Performance:</strong> Delivers consistent power output</p>\r\n</li>\r\n<li data-start=\"780\" data-end=\"835\">\r\n<p data-start=\"782\" data-end=\"835\"><strong data-start=\"782\" data-end=\"797\">Shelf Life:</strong> Up to 10 years when stored properly</p>\r\n</li>\r\n<li data-start=\"836\" data-end=\"967\">\r\n<p data-start=\"838\" data-end=\"967\"><strong data-start=\"838\" data-end=\"855\">Applications:</strong> IoT devices, smart sensors, medical equipment, watches, calculators, key fobs, and other portable electronics</p></li>', '4950.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '1', '0', '50', 'pcs', '0.01', '1', '1', '100.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Renata 3V Button Battery CR2477N T-shaped', 'Renata CR2477NRenata button battery\r\n\r\nCR2477N 3V lithium battery\r\n\r\nRenata coin cell\r\n\r\n3V button cell battery\r\nlithium coin cell CR2477N\r\nRenata watch battery\r\nRenata 3V battery\r\nlong life coin battery\r\nRenata lithium cell\r\nCR2477N replacement battery\r\nRenata Swiss battery', '115', NULL, 'renata-3v-button-battery-cr2477n-t-shaped', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-10 02:05:46', '2026-08-30 16:51:26'),
('23', '4700µF / 25V electrolytic capacitor', 'admin', '9', '4', NULL, '120', '120', 'youtube', NULL, '220µF capacitor,220µF 16V,electrolytic capacitor,radial capacitor,DC filter capacitor,power supply capacitor', '<ul data-start=\"376\" data-end=\"572\"><li data-start=\"376\" data-end=\"572\"><p data-start=\"378\" data-end=\"572\">High-quality 4700µF 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"574\" data-end=\"590\"><strong data-start=\"574\" data-end=\"588\">Key specs:</strong></p><p>\r\n\r\n</p><ul data-start=\"591\" data-end=\"788\">\r\n<li data-start=\"591\" data-end=\"617\">\r\n<p data-start=\"593\" data-end=\"617\">Capacitance: <strong data-start=\"606\" data-end=\"615\">4700µF</strong></p>\r\n</li>\r\n<li data-start=\"618\" data-end=\"648\">\r\n<p data-start=\"620\" data-end=\"648\">Voltage rating: 25<strong data-start=\"636\" data-end=\"646\">V DC</strong></p>\r\n</li>\r\n<li data-start=\"649\" data-end=\"672\">\r\n<p data-start=\"651\" data-end=\"672\">Tolerance: <strong data-start=\"662\" data-end=\"670\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"673\" data-end=\"712\">\r\n<p data-start=\"675\" data-end=\"712\">Type: <strong data-start=\"681\" data-end=\"710\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"713\" data-end=\"769\">\r\n<p data-start=\"715\" data-end=\"769\">Operating temperature: <strong data-start=\"738\" data-end=\"757\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"770\" data-end=\"788\">\r\n<p data-start=\"772\" data-end=\"788\">RoHS compliant</p></li></ul>', '85.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.01', '1', '5', '5.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '4700µF / 25V electrolytic capacitor', 'High-quality 4700µF 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.\r\n\r\nKey specs:\r\n\r\n\r\n\r\nCapacitance: 4700µF\r\n\r\n\r\nVoltage rating: 25V DC\r\n\r\n\r\nTolerance: ±20%\r\n\r\n\r\nType: Electrolytic, radial lead\r\n\r\n\r\nOperating temperature: -40°C to +105°C (typical)\r\n\r\n\r\nRoHS compliant', '120', NULL, '4700f-25v-electrolytic-capacitor', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-16 10:04:52', '2025-09-16 10:14:56'),
('24', '3300uf 25V Electrolytic Capacitor', 'admin', '9', '4', NULL, '121', '121', 'youtube', NULL, '', '<div><br></div><ul data-start=\"376\" data-end=\"572\">\r\n<li data-start=\"376\" data-end=\"572\">\r\n<p data-start=\"378\" data-end=\"572\">High-quality 3300uf 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.</p>\r\n</li>\r\n</ul><p data-start=\"574\" data-end=\"590\"><strong data-start=\"574\" data-end=\"588\">Key specs:</strong></p><ul data-start=\"591\" data-end=\"788\">\r\n<li data-start=\"591\" data-end=\"617\">\r\n<p data-start=\"593\" data-end=\"617\">Capacitance:3300uf&nbsp;</p>\r\n</li>\r\n<li data-start=\"618\" data-end=\"648\">\r\n<p data-start=\"620\" data-end=\"648\">Voltage rating: <strong data-start=\"636\" data-end=\"646\">25V</strong></p>\r\n</li>\r\n<li data-start=\"649\" data-end=\"672\">\r\n<p data-start=\"651\" data-end=\"672\">Tolerance: <strong data-start=\"662\" data-end=\"670\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"673\" data-end=\"712\">\r\n<p data-start=\"675\" data-end=\"712\">Type: <strong data-start=\"681\" data-end=\"710\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"713\" data-end=\"769\">\r\n<p data-start=\"715\" data-end=\"769\">Operating temperature: <strong data-start=\"738\" data-end=\"757\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"770\" data-end=\"788\">\r\n<p data-start=\"772\" data-end=\"788\">RoHS compliant</p>\r\n</li>\r\n</ul><p data-start=\"790\" data-end=\"809\"><strong data-start=\"790\" data-end=\"807\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n<p data-start=\"959\" data-end=\"1101\"></p></p><ul data-start=\"810\" data-end=\"957\">\r\n<li data-start=\"810\" data-end=\"848\">\r\n<p data-start=\"812\" data-end=\"848\">Power supply filtering &amp; smoothing</p>\r\n</li>\r\n<li data-start=\"849\" data-end=\"876\">\r\n<p data-start=\"851\" data-end=\"876\">Audio amplifier designs</p>\r\n</li>\r\n<li data-start=\"877\" data-end=\"911\">\r\n<p data-start=\"879\" data-end=\"911\">Decoupling and bypass circuits</p>\r\n</li>\r\n<li data-start=\"912\" data-end=\"957\">\r\n<p data-start=\"914\" data-end=\"957\">General electronics prototyping &amp; repairs</p>\r\n</li>\r\n</ul>', '100.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.01', '1', '1', '10.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '3300uf 25V Electrolytic Capacitor', 'High-quality 3300uf 25V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio circuits, and general electronics projects.\r\n\r\nKey specs:\r\n\r\nCapacitance:3300uf&nbsp;\r\n\r\n\r\nVoltage rating: 25V\r\n\r\n\r\nTolerance: ±20%\r\n\r\n\r\nType: Electrolytic, radial lead\r\n\r\n\r\nOperating temperature: -40°C to +105°C (typical)\r\n\r\n\r\nRoHS compliant\r\n\r\nApplications:\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nPower supply filtering &amp; smoothing\r\n\r\n\r\nAudio amplifier designs\r\n\r\n\r\nDecoupling and bypass circuits\r\n\r\n\r\nGeneral electronics prototyping &amp; repairs', '121', NULL, '3300uf-25v-electrolytic-capacitor-2', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-16 10:20:48', '2025-09-16 10:31:34'),
('25', '3300uf 50V Electrolytic Capacitor', 'admin', '9', '4', NULL, '122', '122', 'youtube', NULL, '3300µF capacitor,3300µF 50V,electrolytic capacitor,radial capacitor,power supply capacitor,DC filter capacitor', '<ul data-start=\"313\" data-end=\"503\"><li data-start=\"313\" data-end=\"503\"><p data-start=\"315\" data-end=\"503\">High-quality 3300µF 50V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio amplifiers, and general electronics.</p>\r\n</li>\r\n</ul><p data-start=\"505\" data-end=\"521\"><strong data-start=\"505\" data-end=\"519\">Key specs:</strong></p><ul data-start=\"522\" data-end=\"720\">\r\n<li data-start=\"522\" data-end=\"549\">\r\n<p data-start=\"524\" data-end=\"549\">Capacitance: <strong data-start=\"537\" data-end=\"547\">3300µF</strong></p>\r\n</li>\r\n<li data-start=\"550\" data-end=\"580\">\r\n<p data-start=\"552\" data-end=\"580\">Voltage rating: <strong data-start=\"568\" data-end=\"578\">50V DC</strong></p>\r\n</li>\r\n<li data-start=\"581\" data-end=\"604\">\r\n<p data-start=\"583\" data-end=\"604\">Tolerance: <strong data-start=\"594\" data-end=\"602\">±20%</strong></p>\r\n</li>\r\n<li data-start=\"605\" data-end=\"644\">\r\n<p data-start=\"607\" data-end=\"644\">Type: <strong data-start=\"613\" data-end=\"642\">Electrolytic, radial lead</strong></p>\r\n</li>\r\n<li data-start=\"645\" data-end=\"701\">\r\n<p data-start=\"647\" data-end=\"701\">Operating temperature: <strong data-start=\"670\" data-end=\"689\">-40°C to +105°C</strong> (typical)</p>\r\n</li>\r\n<li data-start=\"702\" data-end=\"720\">\r\n<p data-start=\"704\" data-end=\"720\">RoHS compliant</p>\r\n</li>\r\n</ul><p data-start=\"722\" data-end=\"741\"><strong data-start=\"722\" data-end=\"739\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n</p><ul data-start=\"742\" data-end=\"880\">\r\n<li data-start=\"742\" data-end=\"780\">\r\n<p data-start=\"744\" data-end=\"780\">Power supply filtering &amp; smoothing</p>\r\n</li>\r\n<li data-start=\"781\" data-end=\"809\">\r\n<p data-start=\"783\" data-end=\"809\">Audio amplifier circuits</p>\r\n</li>\r\n<li data-start=\"810\" data-end=\"835\">\r\n<p data-start=\"812\" data-end=\"835\">Decoupling and bypass</p>\r\n</li>\r\n<li data-start=\"836\" data-end=\"880\">\r\n<p data-start=\"838\" data-end=\"880\">General prototyping &amp; electronic repairs</p></li></ul>', '92.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.01', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '3300uf 50V Electrolytic Capacitor', 'High-quality 3300µF 50V radial electrolytic capacitor with ±20% tolerance. Ideal for smoothing, filtering, and decoupling in DC power supplies, audio amplifiers, and general electronics.\r\n\r\nKey specs:\r\n\r\nCapacitance: 3300µF\r\n\r\n\r\nVoltage rating: 50V DC\r\n\r\n\r\nTolerance: ±20%\r\n\r\n\r\nType: Electrolytic, radial lead\r\n\r\n\r\nOperating temperature: -40°C to +105°C (typical)\r\n\r\n\r\nRoHS compliant\r\n\r\nApplications:\r\n\r\n\r\n\r\n\r\n\r\nPower supply filtering &amp; smoothing\r\n\r\n\r\nAudio amplifier circuits\r\n\r\n\r\nDecoupling and bypass\r\n\r\n\r\nGeneral prototyping &amp; electronic repairs', '122', NULL, '3300uf-50v-electrolytic-capacitor', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-16 10:28:29', '2025-09-16 10:28:29'),
('26', '100uf 50V Electrolytic Capacitor', 'admin', '9', '4', NULL, '123', '123', 'youtube', NULL, '', '<ul data-start=\"335\" data-end=\"523\" style=\"color: rgb(27, 27, 40); font-size: 13px;\"><li data-start=\"335\" data-end=\"523\"><p data-start=\"337\" data-end=\"523\">High-quality 100µF 50V radial electrolytic capacitor with ±20% tolerance. Ideal for power supply filtering, decoupling, and audio circuit applications in general electronics projects.</p></li></ul><p data-start=\"525\" data-end=\"541\" style=\"color: rgb(27, 27, 40); font-size: 13px;\"><span data-start=\"525\" data-end=\"539\" style=\"font-weight: bolder;\">Key specs:</span></p><p style=\"color: rgb(27, 27, 40); font-size: 13px;\"></p><ul data-start=\"542\" data-end=\"740\" style=\"color: rgb(27, 27, 40); font-size: 13px;\"><li data-start=\"542\" data-end=\"569\"><p data-start=\"544\" data-end=\"569\">Capacitance:&nbsp;<span data-start=\"557\" data-end=\"567\" style=\"font-weight: bolder;\">100µF</span></p></li><li data-start=\"570\" data-end=\"600\"><p data-start=\"572\" data-end=\"600\">Voltage rating: 50<span data-start=\"588\" data-end=\"598\" style=\"font-weight: bolder;\">V DC</span></p></li><li data-start=\"601\" data-end=\"624\"><p data-start=\"603\" data-end=\"624\">Tolerance:&nbsp;<span data-start=\"614\" data-end=\"622\" style=\"font-weight: bolder;\">±20%</span></p></li><li data-start=\"625\" data-end=\"664\"><p data-start=\"627\" data-end=\"664\">Type:&nbsp;<span data-start=\"633\" data-end=\"662\" style=\"font-weight: bolder;\">Electrolytic, radial lead</span></p></li><li data-start=\"665\" data-end=\"721\"><p data-start=\"667\" data-end=\"721\">Operating temperature:&nbsp;<span data-start=\"690\" data-end=\"709\" style=\"font-weight: bolder;\">-40°C to +105°C</span>&nbsp;(typical)</p></li><li data-start=\"722\" data-end=\"740\"><p data-start=\"724\" data-end=\"740\">RoHS compliant</p></li></ul>', '15.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.01', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '100uf 50V Electrolytic Capacitor', 'High-quality 100µF 50V radial electrolytic capacitor with ±20% tolerance. Ideal for power supply filtering, decoupling, and audio circuit applications in general electronics projects.Key specs:Capacitance:&nbsp;100µFVoltage rating: 50V DCTolerance:&nbsp;±20%Type:&nbsp;Electrolytic, radial leadOperating temperature:&nbsp;-40°C to +105°C&nbsp;(typical)RoHS compliant', '123', NULL, '100uf-50v-electrolytic-capacitor', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-16 10:39:08', '2025-09-16 10:39:08'),
('27', 'Hikvision color camera(DS-2CE16K0T-EXLPF)', 'admin', '9', '7', '3', '156,155', '156', 'youtube', NULL, '', '<p>The Hikvision DS-2CE16K0T-EXLPF is a high-performance 3<strong data-start=\"187\" data-end=\"216\">K Ultra HD bullet camera</strong> designed for professional surveillance. Equipped with advanced imaging technology, it delivers <strong data-start=\"312\" data-end=\"341\">crystal-clear color video</strong>, even in challenging lighting conditions. Its durable <strong data-start=\"396\" data-end=\"425\">IP67 weatherproof housing</strong> ensures reliable performance indoors and outdoors.</p><p data-start=\"480\" data-end=\"501\">✅ <strong data-start=\"482\" data-end=\"499\">Key Features:</strong></p><p>\r\n</p><ul data-start=\"502\" data-end=\"766\">\r\n<li data-start=\"502\" data-end=\"548\">\r\n<p data-start=\"504\" data-end=\"548\">2MP (3K) resolution for ultra-clear images</p>\r\n</li>\r\n<li data-start=\"549\" data-end=\"591\">\r\n<p data-start=\"551\" data-end=\"591\">True Day/Night with Smart IR up to 30m</p>\r\n</li>\r\n<li data-start=\"592\" data-end=\"630\">\r\n<p data-start=\"594\" data-end=\"630\">3.6mm fixed lens for wide coverage</p>\r\n</li>\r\n<li data-start=\"631\" data-end=\"673\">\r\n<p data-start=\"633\" data-end=\"673\">Supports TVI/AHD/CVI/CVBS video output</p>\r\n</li>\r\n<li data-start=\"674\" data-end=\"714\">\r\n<p data-start=\"676\" data-end=\"714\">IP67 waterproof and dustproof design</p>\r\n</li>\r\n<li data-start=\"715\" data-end=\"766\">\r\n<p data-start=\"717\" data-end=\"766\">Ideal for home, office, and industrial security.</p></li></ul>', '8600.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '1', '0', '50', 'Pc', '0.35', '1', '1', '1400.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '1', 'Hikvision DS-2CE16K0T-EXLPF 4K Color Bullet Camera | IP67 CCTV', 'Buy Hikvision DS-2CE16K0T-EXLPF 4K color bullet camera with Smart IR, IP67 weatherproof design, and ultra-clear video for professional security.', '156', NULL, 'hikvision-color-camerads-2ce16k0t-exlpf', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-22 13:03:05', '2026-09-01 15:49:49'),
('28', 'Numeric Keyboard', 'admin', '9', '8', NULL, '157,158,159', '157', 'youtube', NULL, '', '<p data-start=\"207\" data-end=\"473\">A compact <strong data-start=\"217\" data-end=\"239\">USB numeric keypad</strong> designed for quick and efficient number entry. Perfect for laptops, notebooks, and compact keyboards without a dedicated numpad. Lightweight and portable, it ensures smooth data entry for accounting, spreadsheets, and office tasks.</p><p data-start=\"475\" data-end=\"496\">✅ <strong data-start=\"477\" data-end=\"494\">Key Features:</strong></p><p>\r\n\r\n</p><ul data-start=\"497\" data-end=\"737\">\r\n<li data-start=\"497\" data-end=\"544\">\r\n<p data-start=\"499\" data-end=\"544\">18/19 keys numeric keypad (model dependent)</p>\r\n</li>\r\n<li data-start=\"545\" data-end=\"596\">\r\n<p data-start=\"547\" data-end=\"596\">Plug &amp; Play USB interface (no drivers required)</p>\r\n</li>\r\n<li data-start=\"597\" data-end=\"640\">\r\n<p data-start=\"599\" data-end=\"640\">Ergonomic, slim, and lightweight design</p>\r\n</li>\r\n<li data-start=\"641\" data-end=\"684\">\r\n<p data-start=\"643\" data-end=\"684\">Compatible with Windows, Mac, and Linux</p>\r\n</li>\r\n<li data-start=\"685\" data-end=\"737\">\r\n<p data-start=\"687\" data-end=\"737\">Ideal for accountants, students, and office work</p></li></ul>', '3500.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '1', '0', '50', 'Pc', '0.20', '1', '1', '550.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Numeric Short Keyboard | Portable USB Numpad for Laptop & PC', 'Buy a compact numeric short keyboard with USB plug & play, ideal for laptops, accounting, and spreadsheet data entry. Lightweight and portable design.', '157', NULL, 'numeric-keyboard', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-22 13:15:34', '2026-08-30 16:51:36'),
('29', 'Hi-Link HLK-20M05 220VAC to 5VDC 4A Step-Down Power Supply Module', 'admin', '9', '4', NULL, '154,153', '153', 'youtube', NULL, 'HLK-20M05,Hi-Link power module,220V to 5V converter,5V 20W AC-DC module,Hi-Link AC DC step down,embedded power supply,HLK 20M05 datasheet,Hi-Link 5V module', '<p data-start=\"191\" data-end=\"616\">The Hi-Link HLK-20M05 is a compact and efficient <strong data-start=\"240\" data-end=\"279\">AC-DC step-down power supply module</strong> that converts <strong data-start=\"294\" data-end=\"342\">220V AC mains power to a stable 5V DC output</strong>. With a power rating of <strong data-start=\"367\" data-end=\"374\">20W</strong>, it is ideal for embedded systems, IoT devices, industrial control, and home automation projects. Designed with high efficiency, low ripple, and excellent safety protections, this module is a reliable choice for space-saving power designs.</p><p data-start=\"618\" data-end=\"639\">✅ <strong data-start=\"620\" data-end=\"637\">Key Features:</strong></p><ul data-start=\"640\" data-end=\"897\">\r\n<li data-start=\"640\" data-end=\"674\">\r\n<p data-start=\"642\" data-end=\"674\">Input Voltage: <strong data-start=\"657\" data-end=\"672\">100–240V AC</strong></p>\r\n</li>\r\n<li data-start=\"675\" data-end=\"704\">\r\n<p data-start=\"677\" data-end=\"704\">Output Voltage: <strong data-start=\"693\" data-end=\"702\">5V DC</strong></p>\r\n</li>\r\n<li data-start=\"705\" data-end=\"736\">\r\n<p data-start=\"707\" data-end=\"736\">Output Power: <strong data-start=\"721\" data-end=\"728\">20W</strong> (max)</p>\r\n</li>\r\n<li data-start=\"737\" data-end=\"787\">\r\n<p data-start=\"739\" data-end=\"787\">High efficiency, low ripple, and stable output</p>\r\n</li>\r\n<li data-start=\"788\" data-end=\"819\">\r\n<p data-start=\"790\" data-end=\"819\">Compact size, PCB mountable</p>\r\n</li>\r\n<li data-start=\"820\" data-end=\"873\">\r\n<p data-start=\"822\" data-end=\"873\">Built-in overcurrent and short-circuit protection</p>\r\n</li>\r\n<li data-start=\"874\" data-end=\"897\">\r\n<p data-start=\"876\" data-end=\"897\">CE &amp; RoHS certified</p>\r\n</li>\r\n</ul><p data-start=\"899\" data-end=\"918\"><strong data-start=\"899\" data-end=\"916\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n</p><ul data-start=\"919\" data-end=\"1072\">\r\n<li data-start=\"919\" data-end=\"956\">\r\n<p data-start=\"921\" data-end=\"956\">IoT devices &amp; smart home projects</p>\r\n</li>\r\n<li data-start=\"957\" data-end=\"977\">\r\n<p data-start=\"959\" data-end=\"977\">Embedded systems</p>\r\n</li>\r\n<li data-start=\"978\" data-end=\"1008\">\r\n<p data-start=\"980\" data-end=\"1008\">Industrial control systems</p>\r\n</li>\r\n<li data-start=\"1009\" data-end=\"1037\">\r\n<p data-start=\"1011\" data-end=\"1037\">DIY electronics projects</p>\r\n</li>\r\n<li data-start=\"1038\" data-end=\"1072\">\r\n<p data-start=\"1040\" data-end=\"1072\">Home automation power supplies</p></li></ul>', '1800.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.05', '1', '1', '55.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Hi-Link HLK-20M05 | 220VAC to 5VDC 20W Step-Down Power Supply Module', 'Buy Hi-Link HLK-20M05 AC-DC power supply module – 220V to 5V 20W, compact, efficient, and ideal for IoT, automation, and embedded systems.', '153', NULL, 'hi-link-hlk-20m05-220vac-to-5vdc-4a-step-down-power-supply-module', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-22 13:26:35', '2025-09-22 13:27:43'),
('30', 'Hi-Link HLK-5M05 220VAC to 5VDC 5W Step-Down Power Supply Module', 'admin', '9', '4', NULL, '135,131', '135', 'youtube', NULL, 'HLK-5M05,Hi-Link HLK 5M05,Hi-Link 5V module,AC to DC 5V converter,220V to 5V power module,HLK 5M05 datasheet,Hi-Link AC DC step down,5W PCB mount power supply', '<h3 data-start=\"175\" data-end=\"249\"><span style=\"font-size: 12px;\">The Hi-Link HLK-5M05 is a compact and highly efficient </span><strong data-start=\"305\" data-end=\"344\" style=\"font-size: 12px;\">AC-DC step-down power supply module</strong><span style=\"font-size: 12px;\"> that converts </span><strong data-start=\"359\" data-end=\"409\" style=\"font-size: 12px;\">220V AC mains power into a stable 5V DC output</strong><span style=\"font-size: 12px;\">. With a maximum power of </span><strong data-start=\"435\" data-end=\"441\" style=\"font-size: 12px;\">5W</strong><span style=\"font-size: 12px;\">, it is widely used in IoT devices, smart home systems, embedded applications, and DIY electronics. Its </span><strong data-start=\"545\" data-end=\"575\" style=\"font-size: 12px;\">miniature PCB-mount design</strong><span style=\"font-size: 12px;\"> saves space while providing stable and safe power delivery.</span></h3><p data-start=\"639\" data-end=\"660\">✅ <strong data-start=\"641\" data-end=\"658\">Key Features:</strong></p><ul data-start=\"661\" data-end=\"912\">\r\n<li data-start=\"661\" data-end=\"695\">\r\n<p data-start=\"663\" data-end=\"695\">Input Voltage: <strong data-start=\"678\" data-end=\"693\">100–240V AC</strong></p>\r\n</li>\r\n<li data-start=\"696\" data-end=\"725\">\r\n<p data-start=\"698\" data-end=\"725\">Output Voltage: <strong data-start=\"714\" data-end=\"723\">5V DC</strong></p>\r\n</li>\r\n<li data-start=\"726\" data-end=\"750\">\r\n<p data-start=\"728\" data-end=\"750\">Output Power: <strong data-start=\"742\" data-end=\"748\">5W</strong></p>\r\n</li>\r\n<li data-start=\"751\" data-end=\"792\">\r\n<p data-start=\"753\" data-end=\"792\">High efficiency and low ripple design</p>\r\n</li>\r\n<li data-start=\"793\" data-end=\"827\">\r\n<p data-start=\"795\" data-end=\"827\">Ultra-compact PCB mount module</p>\r\n</li>\r\n<li data-start=\"828\" data-end=\"881\">\r\n<p data-start=\"830\" data-end=\"881\">Built-in overcurrent and short-circuit protection</p>\r\n</li>\r\n<li data-start=\"882\" data-end=\"912\">\r\n<p data-start=\"884\" data-end=\"912\">CE, RoHS, and UL certified</p>\r\n</li>\r\n</ul><p data-start=\"914\" data-end=\"933\"><strong data-start=\"914\" data-end=\"931\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n\r\n</p><ul data-start=\"934\" data-end=\"1125\">\r\n<li data-start=\"934\" data-end=\"971\">\r\n<p data-start=\"936\" data-end=\"971\">IoT devices &amp; smart home projects</p>\r\n</li>\r\n<li data-start=\"972\" data-end=\"1011\">\r\n<p data-start=\"974\" data-end=\"1011\">Embedded systems &amp; microcontrollers</p>\r\n</li>\r\n<li data-start=\"1012\" data-end=\"1046\">\r\n<p data-start=\"1014\" data-end=\"1046\">Industrial automation controls</p>\r\n</li>\r\n<li data-start=\"1047\" data-end=\"1080\">\r\n<p data-start=\"1049\" data-end=\"1080\">DIY electronics &amp; prototyping</p>\r\n</li>\r\n<li data-start=\"1081\" data-end=\"1125\">\r\n<p data-start=\"1083\" data-end=\"1125\">Power supply for Wi-Fi modules &amp; sensors</p></li></ul>', '950.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '0', 'Pc', '0.05', '1', '1', '100.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Hi-Link HLK-5M05 | 220VAC to 5VDC 5W Step-Down Power Supply Module', 'Buy Hi-Link HLK-5M05 AC-DC module – 220V to 5V 5W compact PCB mount power supply for IoT, automation, and embedded projects.', '135', NULL, 'hi-link-hlk-5m05-220vac-to-5vdc-5w-step-down-power-supply-module', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-22 13:35:14', '2025-12-03 17:22:33'),
('31', 'Panasonic CR2032 Lithium Coin Cell Battery (3V)', 'admin', '9', '6', NULL, '150', '150', 'youtube', NULL, 'Panasonic CR2032,CR2032 battery,CR2032 lithium cell,3V coin battery,Panasonic coin cell,CR2032 motherboard battery,CMOS battery,CR2032 watch battery,Panasonic CR2032 3V', '<p data-start=\"173\" data-end=\"624\">The Panasonic CR2032 is a <strong data-start=\"199\" data-end=\"231\">3V lithium coin cell battery</strong> designed for long-lasting, reliable power. With a compact design and stable voltage output, it is ideal for powering small electronic devices such as watches, calculators, car key fobs, medical devices, and computer motherboards (CMOS backup). Trusted for its <strong data-start=\"492\" data-end=\"532\">high performance and long shelf life</strong>, the Panasonic CR2032 ensures consistent operation in everyday and critical applications.</p><p data-start=\"626\" data-end=\"647\">✅ <strong data-start=\"628\" data-end=\"645\">Key Features:</strong></p><ul data-start=\"648\" data-end=\"939\">\r\n<li data-start=\"648\" data-end=\"669\">\r\n<p data-start=\"650\" data-end=\"669\">Model: <strong data-start=\"657\" data-end=\"667\">CR2032</strong></p>\r\n</li>\r\n<li data-start=\"670\" data-end=\"689\">\r\n<p data-start=\"672\" data-end=\"689\">Voltage: <strong data-start=\"681\" data-end=\"687\">3V</strong></p>\r\n</li>\r\n<li data-start=\"690\" data-end=\"724\">\r\n<p data-start=\"692\" data-end=\"724\">Capacity: <strong data-start=\"702\" data-end=\"722\">220mAh (typical)</strong></p>\r\n</li>\r\n<li data-start=\"725\" data-end=\"761\">\r\n<p data-start=\"727\" data-end=\"761\">Chemistry: <strong data-start=\"738\" data-end=\"759\">Lithium coin cell</strong></p>\r\n</li>\r\n<li data-start=\"762\" data-end=\"798\">\r\n<p data-start=\"764\" data-end=\"798\">Long shelf life (up to 10 years)</p>\r\n</li>\r\n<li data-start=\"799\" data-end=\"850\">\r\n<p data-start=\"801\" data-end=\"850\">Reliable performance in wide temperature ranges</p>\r\n</li>\r\n<li data-start=\"851\" data-end=\"885\">\r\n<p data-start=\"853\" data-end=\"885\">Compact and lightweight design</p>\r\n</li>\r\n<li data-start=\"886\" data-end=\"939\">\r\n<p data-start=\"888\" data-end=\"939\">Brand: <strong data-start=\"895\" data-end=\"937\">Panasonic – trusted battery technology</strong></p>\r\n</li>\r\n</ul><p data-start=\"941\" data-end=\"960\"><strong data-start=\"941\" data-end=\"958\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n</p><ul data-start=\"961\" data-end=\"1147\">\r\n<li data-start=\"961\" data-end=\"986\">\r\n<p data-start=\"963\" data-end=\"986\">Watches &amp; calculators</p>\r\n</li>\r\n<li data-start=\"987\" data-end=\"1013\">\r\n<p data-start=\"989\" data-end=\"1013\">Car key remotes &amp; toys</p>\r\n</li>\r\n<li data-start=\"1014\" data-end=\"1056\">\r\n<p data-start=\"1016\" data-end=\"1056\">Motherboards (CMOS/BIOS memory backup)</p>\r\n</li>\r\n<li data-start=\"1057\" data-end=\"1112\">\r\n<p data-start=\"1059\" data-end=\"1112\">Medical devices (glucometers, digital thermometers)</p>\r\n</li>\r\n<li data-start=\"1113\" data-end=\"1147\">\r\n<p data-start=\"1115\" data-end=\"1147\">Fitness trackers &amp; IoT gadgets</p></li></ul>', '450.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '94', 'Pc', '0.01', '1', '1', '50.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Panasonic CR2032 Battery | 3V Lithium Coin Cell', 'Buy Panasonic CR2032 3V lithium coin cell battery – long-lasting, reliable power for watches, key fobs, motherboards, and electronic devices.', '150', NULL, 'panasonic-cr2032-lithium-coin-cell-battery-3v', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-22 13:42:07', '2025-09-22 13:42:30'),
('32', 'NEMA 17 Stepper Motor(0.52Nm)', 'admin', '9', '13', NULL, '152', '152', 'youtube', NULL, 'NEMA 17 stepper motor,stepper motor 1.8°,NEMA17 CNC motor,3D printer stepper motor,NEMA 17 hybrid stepper,NEMA 17 torque motor,robotics stepper motor,NEMA 17 2-phase', '<p data-start=\"124\" data-end=\"507\">The NEMA 17 stepper motor is a <strong data-start=\"155\" data-end=\"202\">high-precision 2-phase hybrid stepper motor</strong> widely used in 3D printers, CNC machines, robotics, and automation projects. With a <strong data-start=\"287\" data-end=\"333\">1.8° step angle (200 steps per revolution)</strong>, it offers accurate control of position and speed. Its <strong data-start=\"389\" data-end=\"430\">compact size and strong torque output</strong> make it the most popular stepper motor for makers and professionals alike.</p><p data-start=\"509\" data-end=\"530\">✅ <strong data-start=\"511\" data-end=\"528\">Key Features:</strong></p><ul data-start=\"531\" data-end=\"875\">\r\n<li data-start=\"531\" data-end=\"583\">\r\n<p data-start=\"533\" data-end=\"583\">Motor Type: <strong data-start=\"545\" data-end=\"581\">NEMA 17 (42mm x 42mm frame size)</strong></p>\r\n</li>\r\n<li data-start=\"584\" data-end=\"635\">\r\n<p data-start=\"586\" data-end=\"635\">Step Angle: <strong data-start=\"598\" data-end=\"633\">1.8° (200 steps per revolution)</strong></p>\r\n</li>\r\n<li data-start=\"636\" data-end=\"666\">\r\n<p data-start=\"638\" data-end=\"666\">Phases: <strong data-start=\"646\" data-end=\"664\">2-phase hybrid</strong></p>\r\n</li>\r\n<li data-start=\"667\" data-end=\"724\">\r\n<p data-start=\"669\" data-end=\"724\">Holding Torque: <strong data-start=\"685\" data-end=\"722\">varies (e.g., 40–60 N·cm typical)</strong></p>\r\n</li>\r\n<li data-start=\"725\" data-end=\"784\">\r\n<p data-start=\"727\" data-end=\"784\">Current Rating: <strong data-start=\"743\" data-end=\"782\">~1.2–2A per phase (model dependent)</strong></p>\r\n</li>\r\n<li data-start=\"785\" data-end=\"823\">\r\n<p data-start=\"787\" data-end=\"823\">Shaft Diameter: <strong data-start=\"803\" data-end=\"821\">5mm (standard)</strong></p>\r\n</li>\r\n<li data-start=\"824\" data-end=\"875\">\r\n<p data-start=\"826\" data-end=\"875\">High precision, stable operation, and low noise</p>\r\n</li>\r\n</ul><p data-start=\"877\" data-end=\"896\"><strong data-start=\"877\" data-end=\"894\">Applications:</strong></p><p>\r\n\r\n\r\n\r\n</p><ul data-start=\"897\" data-end=\"1021\">\r\n<li data-start=\"897\" data-end=\"912\">\r\n<p data-start=\"899\" data-end=\"912\">3D Printers</p>\r\n</li>\r\n<li data-start=\"913\" data-end=\"929\">\r\n<p data-start=\"915\" data-end=\"929\">CNC machines</p>\r\n</li>\r\n<li data-start=\"930\" data-end=\"955\">\r\n<p data-start=\"932\" data-end=\"955\">Robotics &amp; automation</p>\r\n</li>\r\n<li data-start=\"956\" data-end=\"991\">\r\n<p data-start=\"958\" data-end=\"991\">Camera sliders &amp; pan-tilt heads</p>\r\n</li>\r\n<li data-start=\"992\" data-end=\"1021\">\r\n<p data-start=\"994\" data-end=\"1021\">DIY mechatronics projects</p></li></ul>', '3500.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '50', 'Pc', '0.50', '1', '1', '450.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'NEMA 17 Stepper Motor | High Precision 1.8° Hybrid Step Motor', 'Buy NEMA 17 stepper motor – compact, high-torque 1.8° step motor for 3D printers, CNC, robotics, and automation projects.', '152', NULL, 'nema-17-stepper-motor052nm', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-22 13:49:48', '2025-09-23 12:28:57'),
('33', 'T8 Lead Screw 1000mm – ACME Thread, OD 8mm', 'admin', '9', '9', NULL, '148,144', '144', 'youtube', NULL, 'T8 Lead Screw 1000mm | 8mm OD ACME Thread for CNC,3D Printer & Linear Motion', '<p data-start=\"137\" data-end=\"391\">The <strong data-start=\"141\" data-end=\"174\">T8 Lead Screw (1000mm length)</strong> is a high-precision ACME threaded rod with an <strong data-start=\"221\" data-end=\"243\">8mm outer diameter</strong>. Designed for smooth and accurate linear motion, it is commonly used in <strong data-start=\"316\" data-end=\"388\">3D printers, CNC machines, linear actuators, and automation projects</strong>.</p><p data-start=\"393\" data-end=\"678\">Made from <strong data-start=\"403\" data-end=\"430\">durable stainless steel</strong>, the T8 lead screw provides <strong data-start=\"459\" data-end=\"525\">high wear resistance, minimal backlash, and stable performance</strong>. Its ACME thread profile ensures efficient load transfer and precise positioning, making it ideal for applications requiring accuracy and reliability.</p><p data-start=\"680\" data-end=\"699\"><strong data-start=\"680\" data-end=\"697\">Key Features:</strong></p><p>\r\n\r\n\r\n</p><ul data-start=\"700\" data-end=\"926\">\r\n<li data-start=\"700\" data-end=\"722\">\r\n<p data-start=\"702\" data-end=\"722\">Length: <strong data-start=\"710\" data-end=\"720\">1000mm</strong></p>\r\n</li>\r\n<li data-start=\"723\" data-end=\"755\">\r\n<p data-start=\"725\" data-end=\"755\">Outer Diameter (OD): <strong data-start=\"746\" data-end=\"753\">8mm</strong></p>\r\n</li>\r\n<li data-start=\"756\" data-end=\"786\">\r\n<p data-start=\"758\" data-end=\"786\">Thread Type: <strong data-start=\"771\" data-end=\"784\">ACME / T8</strong></p>\r\n</li>\r\n<li data-start=\"787\" data-end=\"841\">\r\n<p data-start=\"789\" data-end=\"841\">Material: <strong data-start=\"799\" data-end=\"839\">Stainless Steel / High-quality steel</strong></p>\r\n</li>\r\n<li data-start=\"842\" data-end=\"926\">\r\n<p data-start=\"844\" data-end=\"926\">Suitable for: <strong data-start=\"858\" data-end=\"924\">3D printers, CNC machines, robotics, and linear motion systems</strong></p></li></ul>', '2600.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '50', 'Pc', '0.50', '1', '1', '50.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'T8 Lead Screw 1000mm | 8mm OD ACME Thread for CNC, 3D Printer & Linear Motion', 'T8 Lead Screw, 1000mm, 8mm OD, ACME Thread, CNC, 3D Printer', '144', NULL, 't8-lead-screw-1000mm-acme-thread-od-8mm', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-23 09:39:31', '2025-09-23 09:41:04'),
('34', 'T8 Lead Screw 500mm – ACME Thread, OD 8mm', 'admin', '9', '9', NULL, '148,144', '144', 'youtube', NULL, 'T8 Lead Screw 1000mm | 8mm OD ACME Thread for CNC,3D Printer & Linear Motion', '<p data-start=\"137\" data-end=\"391\">The <strong data-start=\"141\" data-end=\"174\">T8 Lead Screw (500mm length)</strong> is a high-precision ACME threaded rod with an <strong data-start=\"221\" data-end=\"243\">8mm outer diameter</strong>. Designed for smooth and accurate linear motion, it is commonly used in <strong data-start=\"316\" data-end=\"388\">3D printers, CNC machines, linear actuators, and automation projects</strong>.</p><p data-start=\"393\" data-end=\"678\">Made from <strong data-start=\"403\" data-end=\"430\">durable stainless steel</strong>, the T8 lead screw provides <strong data-start=\"459\" data-end=\"525\">high wear resistance, minimal backlash, and stable performance</strong>. Its ACME thread profile ensures efficient load transfer and precise positioning, making it ideal for applications requiring accuracy and reliability.</p><p data-start=\"680\" data-end=\"699\"><strong data-start=\"680\" data-end=\"697\">Key Features:</strong></p><p>\r\n\r\n\r\n</p><ul data-start=\"700\" data-end=\"926\">\r\n<li data-start=\"700\" data-end=\"722\">\r\n<p data-start=\"702\" data-end=\"722\">Length: <strong data-start=\"710\" data-end=\"720\">500mm</strong></p>\r\n</li>\r\n<li data-start=\"723\" data-end=\"755\">\r\n<p data-start=\"725\" data-end=\"755\">Outer Diameter (OD): <strong data-start=\"746\" data-end=\"753\">8mm</strong></p>\r\n</li>\r\n<li data-start=\"756\" data-end=\"786\">\r\n<p data-start=\"758\" data-end=\"786\">Thread Type: <strong data-start=\"771\" data-end=\"784\">ACME / T8</strong></p>\r\n</li>\r\n<li data-start=\"787\" data-end=\"841\">\r\n<p data-start=\"789\" data-end=\"841\">Material: <strong data-start=\"799\" data-end=\"839\">Stainless Steel / High-quality steel</strong></p>\r\n</li>\r\n<li data-start=\"842\" data-end=\"926\">\r\n<p data-start=\"844\" data-end=\"926\">Suitable for: <strong data-start=\"858\" data-end=\"924\">3D printers, CNC machines, robotics, and linear motion systems</strong></p><p data-start=\"844\" data-end=\"926\"><strong data-start=\"858\" data-end=\"924\">Upgrade your linear motion projects with the <strong data-start=\"973\" data-end=\"1036\">T8 Lead Screw – durable, precise, and built for performance</strong>.</strong></p></li></ul>', '1350.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '46', 'Pc', '0.50', '1', '1', '50.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'T8 Lead Screw 1000mm | 8mm OD ACME Thread for CNC, 3D Printer & Linear Motion', 'T8 Lead Screw 500mm, 8mm OD ACME thread for 3D printers, CNC, and linear motion. Durable, precise, and ideal for automation projects.', '144', NULL, 't8-lead-screw-500mm-acme-thread-od-8mm', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-23 09:46:27', '2025-09-23 09:46:27'),
('35', 'T8 Lead Screw 250mm – ACME Thread, OD 8mm', 'admin', '9', '9', NULL, '144,148', '148', 'youtube', NULL, '', '<p data-start=\"137\" data-end=\"391\">The <strong data-start=\"141\" data-end=\"174\">T8 Lead Screw (250mm length)</strong> is a high-precision ACME threaded rod with an <strong data-start=\"221\" data-end=\"243\">8mm outer diameter</strong>. Designed for smooth and accurate linear motion, it is commonly used in <strong data-start=\"316\" data-end=\"388\">3D printers, CNC machines, linear actuators, and automation projects</strong>.</p><p data-start=\"393\" data-end=\"678\">Made from <strong data-start=\"403\" data-end=\"430\">durable stainless steel</strong>, the T8 lead screw provides <strong data-start=\"459\" data-end=\"525\">high wear resistance, minimal backlash, and stable performance</strong>. Its ACME thread profile ensures efficient load transfer and precise positioning, making it ideal for applications requiring accuracy and reliability.</p><p data-start=\"680\" data-end=\"699\"><strong data-start=\"680\" data-end=\"697\">Key Features:</strong></p><ul data-start=\"700\" data-end=\"926\">\r\n<li data-start=\"700\" data-end=\"722\">\r\n<p data-start=\"702\" data-end=\"722\">Length: <strong data-start=\"710\" data-end=\"720\">250mm</strong></p>\r\n</li>\r\n<li data-start=\"723\" data-end=\"755\">\r\n<p data-start=\"725\" data-end=\"755\">Outer Diameter (OD): <strong data-start=\"746\" data-end=\"753\">8mm</strong></p>\r\n</li>\r\n<li data-start=\"756\" data-end=\"786\">\r\n<p data-start=\"758\" data-end=\"786\">Thread Type: <strong data-start=\"771\" data-end=\"784\">ACME / T8</strong></p>\r\n</li>\r\n<li data-start=\"787\" data-end=\"841\">\r\n<p data-start=\"789\" data-end=\"841\">Material: <strong data-start=\"799\" data-end=\"839\">Stainless Steel / High-quality steel</strong></p>\r\n</li>\r\n<li data-start=\"842\" data-end=\"926\">\r\n<p data-start=\"844\" data-end=\"926\">Suitable for: <strong data-start=\"858\" data-end=\"924\">3D printers, CNC machines, robotics, and linear motion systems</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"928\" data-end=\"1039\">Upgrade your linear motion projects with the <strong data-start=\"973\" data-end=\"1036\">T8 Lead Screw – durable, precise, and built for performance</strong>.</p>', '750.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '50', 'Pc', '0.50', '1', '1', '10.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'T8 Lead Screw 1000mm | 8mm OD ACME Thread for CNC, 3D Printer & Linear Motion', 'T8 Lead Screw 1000mm, 8mm OD ACME thread for 3D printers, CNC, and linear motion. Durable, precise, and ideal for automation projects.', '148', NULL, 't8-lead-screw-250mm-acme-thread-od-8mm', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-23 09:49:33', '2025-09-23 09:49:55'),
('36', 'T8 Lead Screw 100mm – ACME Thread, OD 8mm', 'admin', '9', '9', NULL, '148,144', '148', 'youtube', NULL, '', '<p data-start=\"137\" data-end=\"391\">The <strong data-start=\"141\" data-end=\"174\">T8 Lead Screw (100mm length)</strong> is a high-precision ACME threaded rod with an <strong data-start=\"221\" data-end=\"243\">8mm outer diameter</strong>. Designed for smooth and accurate linear motion, it is commonly used in <strong data-start=\"316\" data-end=\"388\">3D printers, CNC machines, linear actuators, and automation projects</strong>.</p><p data-start=\"393\" data-end=\"678\">Made from <strong data-start=\"403\" data-end=\"430\">durable stainless steel</strong>, the T8 lead screw provides <strong data-start=\"459\" data-end=\"525\">high wear resistance, minimal backlash, and stable performance</strong>. Its ACME thread profile ensures efficient load transfer and precise positioning, making it ideal for applications requiring accuracy and reliability.</p><p data-start=\"680\" data-end=\"699\"><strong data-start=\"680\" data-end=\"697\">Key Features:</strong></p><ul data-start=\"700\" data-end=\"926\">\r\n<li data-start=\"700\" data-end=\"722\">\r\n<p data-start=\"702\" data-end=\"722\">Length: <strong data-start=\"710\" data-end=\"720\">100mm</strong></p>\r\n</li>\r\n<li data-start=\"723\" data-end=\"755\">\r\n<p data-start=\"725\" data-end=\"755\">Outer Diameter (OD): <strong data-start=\"746\" data-end=\"753\">8mm</strong></p>\r\n</li>\r\n<li data-start=\"756\" data-end=\"786\">\r\n<p data-start=\"758\" data-end=\"786\">Thread Type: <strong data-start=\"771\" data-end=\"784\">ACME / T8</strong></p>\r\n</li>\r\n<li data-start=\"787\" data-end=\"841\">\r\n<p data-start=\"789\" data-end=\"841\">Material: <strong data-start=\"799\" data-end=\"839\">Stainless Steel / High-quality steel</strong></p>\r\n</li>\r\n<li data-start=\"842\" data-end=\"926\">\r\n<p data-start=\"844\" data-end=\"926\">Suitable for: <strong data-start=\"858\" data-end=\"924\">3D printers, CNC machines, robotics, and linear motion systems</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"928\" data-end=\"1039\">Upgrade your linear motion projects with the <strong data-start=\"973\" data-end=\"1036\">T8 Lead Screw – durable, precise, and built for performance</strong>.</p>', '400.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '50', 'Pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'T8 Lead Screw 1000mm | 8mm OD ACME Thread for CNC, 3D Printer & Linear Motion', 'T8 Lead Screw 1000mm, 8mm OD ACME thread for 3D printers, CNC, and linear motion. Durable, precise, and ideal for automation projects.', '148', NULL, 't8-lead-screw-100mm-acme-thread-od-8mm', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-23 09:52:51', '2025-09-23 09:52:51'),
('37', 'Stepper Motor 28BYJ-48 – 5 Line, 4 Phase, 5V', 'admin', '9', '13', NULL, '151,146', '151', 'youtube', NULL, '28BYJ-48 Stepper Motor | 5V 5-Line 4-Phase for Arduino,CNC & Robotics', '<p data-start=\"112\" data-end=\"395\">The <strong data-start=\"116\" data-end=\"142\">28BYJ-48 Stepper Motor</strong> is a compact and reliable stepper motor, widely used in <strong data-start=\"199\" data-end=\"253\">DIY electronics, robotics, and automation projects</strong>. Operating at <strong data-start=\"268\" data-end=\"277\">5V DC</strong>, this motor features <strong data-start=\"299\" data-end=\"334\">5 wires (unipolar) and 4 phases</strong>, offering <strong data-start=\"345\" data-end=\"392\">precise control of rotation and positioning</strong>.</p><p data-start=\"397\" data-end=\"669\">It is commonly paired with a <strong data-start=\"426\" data-end=\"450\">ULN2003 driver board</strong>, making it easy to integrate with <strong data-start=\"485\" data-end=\"538\">Arduino, Raspberry Pi, and other microcontrollers</strong>. The 28BYJ-48 is well-suited for applications like <strong data-start=\"590\" data-end=\"666\">3D printing, camera control systems, robotics, and automation mechanisms</strong>.</p><p data-start=\"671\" data-end=\"690\"><strong data-start=\"671\" data-end=\"688\">Key Features:</strong></p><ul data-start=\"691\" data-end=\"961\">\r\n<li data-start=\"691\" data-end=\"714\">\r\n<p data-start=\"693\" data-end=\"714\">Model: <strong data-start=\"700\" data-end=\"712\">28BYJ-48</strong></p>\r\n</li>\r\n<li data-start=\"715\" data-end=\"747\">\r\n<p data-start=\"717\" data-end=\"747\">Operating Voltage: <strong data-start=\"736\" data-end=\"745\">5V DC</strong></p>\r\n</li>\r\n<li data-start=\"748\" data-end=\"781\">\r\n<p data-start=\"750\" data-end=\"781\">Wiring: <strong data-start=\"758\" data-end=\"779\">5 Line (Unipolar)</strong></p>\r\n</li>\r\n<li data-start=\"782\" data-end=\"805\">\r\n<p data-start=\"784\" data-end=\"805\">Phases: <strong data-start=\"792\" data-end=\"803\">4 Phase</strong></p>\r\n</li>\r\n<li data-start=\"806\" data-end=\"845\">\r\n<p data-start=\"808\" data-end=\"845\">Compact size, low power consumption</p>\r\n</li>\r\n<li data-start=\"846\" data-end=\"891\">\r\n<p data-start=\"848\" data-end=\"891\">Compatible with <strong data-start=\"864\" data-end=\"889\">ULN2003 driver module</strong></p>\r\n</li>\r\n<li data-start=\"892\" data-end=\"961\">\r\n<p data-start=\"894\" data-end=\"961\">Ideal for <strong data-start=\"904\" data-end=\"959\">Arduino, Raspberry Pi, and microcontroller projects</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"963\" data-end=\"1106\">Reliable, affordable, and easy to use, the <strong data-start=\"1006\" data-end=\"1032\">28BYJ-48 stepper motor</strong> is perfect for beginners and professionals in electronics and robotics.</p>', '400.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '50', 'Pc', '0.02', '1', '1', '20.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '28BYJ-48 Stepper Motor | 5V 5-Line 4-Phase for Arduino, CNC & Robotics', '28BYJ-48 Stepper Motor 5V, 5-line 4-phase unipolar. Ideal for Arduino, Raspberry Pi, robotics, and automation projects with ULN2003 driver.', '151', NULL, 'stepper-motor-28byj-48-5-line-4-phase-5v', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-23 10:06:41', '2025-09-23 12:28:20'),
('38', 'Continuous Rotation SG90 Servo Motor with Plastic Wheel – Full Set', 'admin', '9', '14', NULL, '145,143', '145', 'youtube', NULL, 'SG90 Continuous Rotation Servo Motor | 360°', '<p data-start=\"138\" data-end=\"414\">The <strong data-start=\"142\" data-end=\"191\">Continuous Rotation SG90 Servo Motor Full Set</strong> is perfect for building <strong data-start=\"216\" data-end=\"267\">robots, smart cars, and DIY automation projects</strong>. Unlike standard servos, this model offers <strong data-start=\"311\" data-end=\"339\">360° continuous rotation</strong>, making it ideal for driving wheels and providing smooth motion control.</p><p data-start=\"416\" data-end=\"709\">This set comes with a <strong data-start=\"438\" data-end=\"455\">plastic wheel</strong> that easily attaches to the servo, giving you a ready-to-use solution for your robotics and electronic projects. Compact, lightweight, and easy to use, the SG90 continuous servo is compatible with <strong data-start=\"653\" data-end=\"706\">Arduino, Raspberry Pi, and other microcontrollers</strong>.</p><p data-start=\"711\" data-end=\"730\"><strong data-start=\"711\" data-end=\"728\">Key Features:</strong></p><ul data-start=\"731\" data-end=\"1013\">\r\n<li data-start=\"731\" data-end=\"781\">\r\n<p data-start=\"733\" data-end=\"781\">Motor Type: <strong data-start=\"745\" data-end=\"779\">SG90 Continuous Rotation Servo</strong></p>\r\n</li>\r\n<li data-start=\"782\" data-end=\"815\">\r\n<p data-start=\"784\" data-end=\"815\">Rotation: <strong data-start=\"794\" data-end=\"813\">360° continuous</strong></p>\r\n</li>\r\n<li data-start=\"816\" data-end=\"852\">\r\n<p data-start=\"818\" data-end=\"852\">Operating Voltage: <strong data-start=\"837\" data-end=\"850\">4.8V – 6V</strong></p>\r\n</li>\r\n<li data-start=\"853\" data-end=\"912\">\r\n<p data-start=\"855\" data-end=\"912\">Includes: <strong data-start=\"865\" data-end=\"910\">Plastic Wheel + Servo Horns &amp; Accessories</strong></p>\r\n</li>\r\n<li data-start=\"913\" data-end=\"947\">\r\n<p data-start=\"915\" data-end=\"947\">Lightweight and durable design</p>\r\n</li>\r\n<li data-start=\"948\" data-end=\"1013\">\r\n<p data-start=\"950\" data-end=\"1013\">Perfect for <strong data-start=\"962\" data-end=\"1011\">DIY robotics, smart cars, automation projects</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"1015\" data-end=\"1152\">With this <strong data-start=\"1025\" data-end=\"1073\">SG90 Continuous Rotation Servo and Wheel Kit</strong>, you can quickly create mobile robots, prototypes, and educational projects.</p>', '350.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '50', 'Pc', '0.02', '1', '1', '30.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'SG90 Continuous Rotation Servo Motor | 360° with Plastic Wheel Full Set', 'SG90 Continuous Rotation Servo Motor with plastic wheel set. 360° rotation, ideal for robotics, Arduino, smart cars, and DIY automation projects.', '145', NULL, 'continuous-rotation-sg90-servo-motor-with-plastic-wheel-full-set', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-23 12:20:15', '2025-09-23 12:29:58'),
('39', 'Motion Tilt Vibration Sensor Module – SW-18010P', 'admin', '9', '4', NULL, '140,141', '141', 'youtube', NULL, '', '<p data-start=\"123\" data-end=\"451\">The <strong data-start=\"127\" data-end=\"176\">SW-18010P Motion Tilt Vibration Sensor Module</strong> is a highly sensitive electronic switch that detects <strong data-start=\"230\" data-end=\"260\">motion, tilt, or vibration</strong>. It works by triggering a digital output when movement or vibration is detected, making it perfect for <strong data-start=\"364\" data-end=\"448\">security systems, alarms, motion-activated devices, and DIY electronics projects</strong>.</p><p data-start=\"453\" data-end=\"616\">This module is easy to interface with <strong data-start=\"491\" data-end=\"544\">Arduino, Raspberry Pi, and other microcontrollers</strong>, making it a great choice for beginners and hobbyists in electronics.</p><p data-start=\"618\" data-end=\"637\"><strong data-start=\"618\" data-end=\"635\">Key Features:</strong></p><ul data-start=\"638\" data-end=\"961\">\r\n<li data-start=\"638\" data-end=\"662\">\r\n<p data-start=\"640\" data-end=\"662\">Model: <strong data-start=\"647\" data-end=\"660\">SW-18010P</strong></p>\r\n</li>\r\n<li data-start=\"663\" data-end=\"715\">\r\n<p data-start=\"665\" data-end=\"715\">Function: <strong data-start=\"675\" data-end=\"713\">Detects vibration, tilt, or motion</strong></p>\r\n</li>\r\n<li data-start=\"716\" data-end=\"746\">\r\n<p data-start=\"718\" data-end=\"746\">Output: <strong data-start=\"726\" data-end=\"744\">Digital signal</strong></p>\r\n</li>\r\n<li data-start=\"747\" data-end=\"783\">\r\n<p data-start=\"749\" data-end=\"783\">Operating Voltage: <strong data-start=\"768\" data-end=\"781\">3.3V – 5V</strong></p>\r\n</li>\r\n<li data-start=\"784\" data-end=\"818\">\r\n<p data-start=\"786\" data-end=\"818\">Compact and lightweight design</p>\r\n</li>\r\n<li data-start=\"819\" data-end=\"886\">\r\n<p data-start=\"821\" data-end=\"886\">Compatible with <strong data-start=\"837\" data-end=\"884\">Arduino, Raspberry Pi, and microcontrollers</strong></p>\r\n</li>\r\n<li data-start=\"887\" data-end=\"961\">\r\n<p data-start=\"889\" data-end=\"961\">Applications: <strong data-start=\"903\" data-end=\"959\">Security systems, alarms, motion detection, robotics</strong></p>\r\n</li>\r\n</ul><p>\r\n\r\n\r\n\r\n</p><p data-start=\"963\" data-end=\"1102\">The <strong data-start=\"967\" data-end=\"994\">SW-18010P sensor module</strong> provides a simple and reliable way to add <strong data-start=\"1037\" data-end=\"1071\">motion and vibration detection</strong> to your electronic projects.</p>', '220.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '100', 'Pc', '0.01', '1', '1', '20.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'SW-18010P Motion Tilt Vibration Sensor Module | Arduino & Raspberry Pi Compatible', 'SW-18010P Motion Tilt Vibration Sensor Module for Arduino & Raspberry Pi. Detects movement, tilt, or vibration for alarms, robotics, and DIY projects.', '141', NULL, 'motion-tilt-vibration-sensor-module-sw-18010p', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-09-23 12:40:06', '2025-09-23 12:40:06'),
('40', 'Is SEO a necessity for roofing companies?', 'seller', '17', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>Is SEO a necessity for roofing companies?</b></p><p>But, as you may already be aware, there are a lot of other things to think about. Why not capitalize on the fact that they aren\'t while you are running an SEO campaign? However, as you may know, there are many other factors to consider. You should be aware of what people are saying about your business on social media platforms like Facebook, Twitter, and even Google. Secondly, it\'s time to go out there and look up your competitors on the internet.<br/><br/>Look for other businesses that are doing well with SEO, if at all possible, so that when someone searches for Make sure you have some sort of competitive edge over them. Examine their marketing strategies in detail and determine what you believe could be effective for you. When attempting to determine the best roofing marketing strategy for your company, a lot of things can go wrong. The best way to find one that works is to look at other roofing companies and see how they market their services.<br/><br/>If so, what do you think the reason is, and how can you use this information to enhance your own roofing marketing strategy? Do they appear to be doing anything that works well for them? The installation requirements and cost of each of these varieties vary. Slate and asphalt shingles are among the various types of <a href=\"https://www.ranktracker.com/hu/blog/how-to-choose-a-roofing-seo-provider-that-delivers-results/\">diy roofing seo</a> materials. Which roofing materials are available for replacement? Depending on its size and location, there are three different kinds of chimney roof repair. They keep heat out of the home and stop fire from spreading from one side to the other.<br/><br/>Another common roofing issue is damaged chimneys. While copper or metal pipes could be used to replace the larger chimneys, the smaller ones could be fixed with adhesive. Roofers install aluminum chimney caps. It is possible to install a chimney cap if you are unable to use either of these options. Update the content often. Every day, businesses post new and interesting information on their websites. If someone is looking for something specific, they will find it in this way. It only takes a few minutes to share news, blogs, advice, and more with your audience.<br/><br/>A strong safety record. Make sure the roofer you select has a solid safety record. They should also use fall prevention equipment like harnesses or install safety netting as part of their company\'s standard safety procedures. Roofing is a potentially hazardous occupation due to the heights involved. You are still paying for it even though the cost is probably far lower than what you would pay an outside company to do the same task. Do they do anything that seems to be working well for them.</p>', '50.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '0', '0', '0', '25', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Is SEO a necessity for roofing companies?', 'But, as you may already be aware, there are a lot of other things to think about. Why not capitalize on the fact that they aren\'t while you are running an SEO campaign? However, as you may know, there are many other factors to consider.', NULL, NULL, 'is-seo-a-necessity-for-roofing-companies', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-10-09 14:43:54', '2025-12-03 17:21:35'),
('41', 'desporteeieza7', 'seller', '18', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>What\'s a THC vape?</b></p><p>It offers adults an easy, discreet, and highly controllable way to experiment with cannabis\' potential. It demonstrates how creativity keeps reshaping and improving the ways in which we can interact with this age-old plant. Take a single, small draw and then wait to see how you feel before considering another. Knowing what it is, how it works, and how to approach it with a focus on mindful consumption and responsible sourcing will help you make decisions that are appropriate for your own path.<br/><br/>Vaping THC can result in a variety of feelings, ranging from euphoria and relaxation to enhanced concentration and creativity. They\'ve transformed how people connect with cannabis, offering a sleek, modern alternative rooted in efficiency and personalization. The type of cannabis used, the amount of THC present, and the tolerance levels of each user all affect the particular experience. With these products, it\'s always crucial to start small and proceed gradually.<br/><br/>They will provide you with a cerebral high because they contain psychoactive THC. Make sure to carefully consider the milligram strength level when selecting a THC <a href=\"https://www.cbdvapeoiluk.net/can-you-take-a-weed-vape-on-a-plane/\">Weed Vape</a> so that you can receive the appropriate dosage. Is it true that THC vape pens, cartridges, and disposable pens can all make you feel high? Medical patients often find them useful for managing symptoms like chronic pain, anxiety, or insomnia because of their quick onset and easy dosing.<br/><br/>THC vapes are used for purposes other than recreation by many people. Because of their rapid onset and simple dosage, they are frequently found to be helpful by medical patients in the management of symptoms such as anxiety, insomnia, and chronic pain. Certain combinations of THC and CBD are even included in some formulations to produce a more well-rounded effect that promotes relaxation without overpowering the senses. Since their production standards are entirely unknown, purchasing goods from unregulated or informal sources entails serious risks.<br/><br/>This guarantees that the cartridge is free of undesirable impurities and contains what is listed on the label. The most crucial factor to take into account is the origin of your vape. This ensures that what is on the label is what is in the cartridge and that it is free from unwanted contaminants. Obviously, a mindful approach is essential for any cannabis product. Acquiring products from unregulated or informal sources carries significant risks, as their production standards are completely unknown.<br/><br/>The best advice for people who have never done this before is to start slowly and go low. Before thinking about another draw, take one small one and wait to see how it makes you feel. Since the effects can be quite strong, it is always best to take a gentle approach. Cannabis products must pass stringent testing for purity and potency in areas where it is legally regulated.</p>', '50.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '0', '0', '0', '100', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'What\'s a THC vape?', 'It offers adults an easy, discreet, and highly controllable way to experiment with cannabis\' potential. It demonstrates how creativity keeps reshaping and improving the ways in which we can interact with this age-old plant.', NULL, NULL, 'desporteeieza7', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-10-12 20:30:25', '2025-12-03 17:21:33'),
('42', 'Which casino games are the most played online?', 'seller', '20', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>Which casino games are the most played online?</b></p><p>At its core, an online casino operates on software designed to simulate the look and feel of real casino games. The most important part of this software is the Random Number Generator, or RNG, which ensures that every spin, card draw, or dice roll is completely fair. This means the outcomes aren\'t manipulated or predictable, giving each player an equal chance of winning. The convenience of playing from home or on the go has made online casinos incredibly popular, especially among those who enjoy the thrill of gambling without the travel or noise.<br/><br/>Online casinos must therefore make sure that their patrons have a safe and secure gaming environment. A 24-hour support staff is also available at many of the best online casinos to address any queries you might have. As a result, it is vital for online casinos to provide a safe and secure gaming experience for their customers. The live dealer format, which connects the digital and physical worlds, has been a significant advancement in this field.<br/><br/>This immersive setup eliminates any remaining doubt regarding the fairness of the digital operation by allowing players to watch the cards being dealt or the ball spinning in real-time, adding an element of authenticity and trust. The social dynamic and ambiance of a real casino floor are replicated by allowing players to communicate with the dealer and occasionally other players through a chat feature. This innovative feature involves real human dealers managing table games like roulette or blackjack from a dedicated studio, with the action streamed live in high definition to the player\'s device.<br/><br/>The accessibility and variety of online casinos are what make them so alluring. With just a few clicks, users can explore hundreds of games, each with unique themes, features, and payout structures. Additionally, a lot of platforms have live dealer options, which add a level of realism and interaction that closely resembles the ambiance of a physical casino by having real human croupiers oversee the game via video stream.<br/><br/>Whether a player is dealing a hand in digital blackjack, spinning the reels on a video slot machine, or watching the roulette wheel turn, this mathematical tool determines the outcome, ensuring that every game result is completely random and impartial. The Random Number Generator, or RNG, is the central component of all games. Advanced technology is the cornerstone of any respectable online gaming site, with the main goals being to guarantee fair play and strong security. The purpose of this intricate computer algorithm is to generate genuinely unpredictable numerical sequences devoid of any real pattern.<br/><br/>Independent third-party testing organizations conduct routine audits and certifications of the RNG\'s integrity,  <a href=\"https://football-italia.net/gattuso-confident-about-italy-players-quality/\">Gattuso confident</a> which is an essential step in ensuring that the game results are random and creating a trustworthy environment for players.</p>', '25.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Which casino games are the most played online?', 'At its core, an online casino operates on software designed to simulate the look and feel of real casino games.', NULL, NULL, 'which-casino-games-are-the-most-played-online', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-10-16 19:23:04', '2025-12-03 17:20:38'),
('43', 'When it comes to marketing, where should a.', 'seller', '21', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>When it comes to marketing, where should a roofing business begin?</b></p><p>Selecting the best digital marketing strategy for your roofing business can be challenging, but these pointers will help you make the right decision. One excellent method to improve your company\'s online presence is through digital marketing techniques. They\'re also an inventive and enjoyable way to maintain contact with your clients. Roofing companies have a wide range of options for marketing their companies. Selecting the appropriate combination of approaches for your company is crucial because each approach has pros and cons of its own.<br/><br/>Some common methods include online advertising, print advertising, word-of-mouth referrals, and public relations campaigns. It not only helps you draw in new clients, but it also enables you to establish a more intimate connection with your current clientele. You understand the significance of SEO as a roofing company. A handful of the advantages of SEO are listed below. The expansion of a roofing company involves more than just providing excellent services.<br/><br/>Reaching potential clients at various times of the day and night when they are most likely to be interested is essential to developing a successful, healthy marketing campaign. Yes, it is helpful, but it is not the complete solution. Put the customer first: If you put the customer first, you will increase the likelihood that they will come back to your business time and time again. The following are some of the major trends that roofing contractors should be aware of:  <a href=\"https://www.brandvm.com/post/content-length-best-practices-for-roofing-websites\">read my article</a> The increase in do-it-yourself projects is one of the trends that has the biggest impact on roofing contractors: It fosters trust and respect between consumers and businesses.<br/><br/>Since this trend is probably going to continue in the years to come, roofing contractors should expect a surge in business from these clients. A growing number of homeowners have been doing do-it-yourself projects in an effort to save money in recent years. Be dependable: People should know that they can count on you to deliver high-quality services each and every time they call your phone number or visit your store.<br/><br/>An improvement in energy efficiency. It helps create more leads and draw in new clients, both of which can lead to higher sales. All things considered, SEO is a crucial component of any roofing company\'s marketing plan. Better branding: When people see your website ranking high in SERPs, it sends a positive message about your brand and the quality of your products or services. It\'s time to start using SEO for your roofing business if you haven\'t already.<br/><br/>There are many types of PPC advertisements. These advertisements appear on mobile devices as well as desktop computers. Attracting customers who are already searching online for your goods and services is the aim.</p>', '25.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '0', '0', '0', '25', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'When it comes to marketing, where should a roofing business begin?', 'Selecting the best digital marketing strategy for your roofing business can be challenging, but these pointers will help you make the right decision.', NULL, NULL, 'when-it-comes-to-marketing-where-should-a', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-10-16 20:20:26', '2025-12-03 17:20:35'),
('44', '2006architectwilton', 'seller', '23', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>What effect do hashtags have on SMM tactics on Instagram?</b></p><p>There won\'t be any changes to Instagram anytime soon. There are so many ways to increase the number of followers. Get more followers for your account by utilizing the hashtag feature! How to get more Instagram followers? How to increase number of Instagram followers. They may share your post on their pages as well. There are numerous methods to get more followers. Additionally, you will have a better way to interact with your followers, and they will be more inclined to like your Instagram photos and posts.<br/><br/>You can get more attention from people who are interested in your goods and services by selecting the appropriate hashtag. Instagram was designed with the understanding that people process images more quickly than text. Using on-brand colors, careful composition, and consistent filters isn\'t vanity; rather, it\'s a visual representation of who you are. A well-chosen image can communicate quality, values, and mood before a single word is read. You\'ve developed a persona.<br/><br/>You have created something more powerful than awareness when someone can identify your post before they even see your logo. A Reel posted during lunch breaks or evening commutes catches eyes when people are most relaxed - and most open to discovery. Imagine this: while enjoying a cup of coffee and  <a href=\"https://www.smm-world.com\">https://www.smm-world.com/</a> browsing through your phone, you are abruptly interrupted by a striking image. It feels more like something that was created especially for you than an advertisement you clicked.<br/><br/>In the palm of your hand, they are creating narratives, fostering communities, and converting infrequent scrollers into devoted clients. That is the magic of Instagram SMM, a social media marketing strategy designed to appeal to today\'s audiences\' visual pulse. Nowadays, companies post more than just attractive images. After establishing a connection with the distant computer, launch several instances of Instagram (or any other application you choose to use) and sign in to each one separately.<br/><br/>Then, as previously mentioned, you can use CtrlAltD to switch between them. Search engines use hashtags to help users locate photos and videos that are relevant to their interests. These hashtags are very powerful and can assist users in locating the content they\'re seeking. For example, you could make a hashtag to promote mental health awareness. Additionally, they let users search for content related to their interests. Hashtags let you increase your reach on Instagram by allowing people to find your content quickly.<br/><br/>The significance of utilizing content of superior quality.</p>', '25.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '0', '0', '0', '25', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'What effect do hashtags have on SMM tactics on Instagram?', 'There won\'t be any changes to Instagram anytime soon. There are so many ways to increase the number of followers. Get more followers for your account by utilizing the hashtag feature! How to get more Instagram followers?', NULL, NULL, '2006architectwilton', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-10-20 13:06:25', '2025-12-03 17:20:34'),
('45', 'Victory Centre of Park Forest', 'seller', '24', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>What services do senior living facilities usually offer?</b></p><p>Learn About Senior Housing Types. There are many senior living options that can accommodate almost any budget, including assisted living, memory care, skilled nursing, and independent living communities. There are many options available in senior living communities that let you live comfortably in your later years while making sure you have the kind of support you need to do so safely. Senior Living Consultations will assist you in determining precisely what you require in order to remain near loved ones in a cozy environment where you can genuinely flourish.<br/><br/>But navigating the world of senior living can be challenging with so many options. Is financial aid available for assisted living? States may offer different benefits, so find out what\'s available in your area by consulting your local resources. Medicaid, Social Security, veterans benefits, and long-term care insurance are just a few of the financial aid options available for assisted living. However, if your loved one\'s health begins to deteriorate, there\'s no assurance that an independent community can offer adequate care.<br/><br/>The price tends to be less than assisted living because these residents don\'t require constant nursing assistance. Compared to large-scale facilities,  <a href=\"https://archive.constantcontact.com/fs175/1106304554207/archive/1118353330976.html\">https://archive.constantcontact.com</a> residential care homes offer a more intimate and compact option. With fewer people, relationships often feel closer, and routines can be tailored to individual rhythms. These are typically private houses converted to accommodate a handful of residents, creating a home-like atmosphere where personalized attention is easy to provide.<br/><br/>A residential care home provides a slower pace and a feeling of family warmth for someone who finds larger settings overwhelming. You should be able to create a short list of local assisted living facilities with that kind of input. To be fair, we discovered that senior communities also receive a lot of favorable reviews. Additionally, you should be aware that many communities have reviews that were written by current and former residents.<br/><br/>Many of the communities that were most highly recommended received at least four stars from other people. Make sure to thoroughly read these. Though keep in mind that all communities get bad reviews, this can be beneficial. Considering these reviews to be the whole truth is not a good idea. Reviews and user comments are available on consumer websites like TrustPilot and Yelp. For example, if a particular facility has a lot of unfounded complaints on Yelp, it\'s possible that one of the facility\'s rivals wrote those reviews.<br/><br/>Additionally, keep in mind that some communities intentionally leave negative reviews on the websites of their rivals. Independent living communities, also known as 55 communities or age-restricted housing, are built for people 55 years of age or older who want more security, amenities, and social interaction than they can get at home. Apart from these fundamental community services, certain communities provide extra help to residents who require it.</p>', '25.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'What services do senior living facilities usually offer?', 'Learn About Senior Housing Types. There are many senior living options that can accommodate almost any budget, including assisted living, memory care, skilled nursing, and independent living communities.', NULL, NULL, 'victory-centre-of-park-forest', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-11-11 14:52:02', '2025-12-03 17:20:32'),
('46', 'princecharles1968', 'seller', '25', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>How can I pick a vape with THC?</b></p><p>When selecting your CBD vape oil products and learning what a CBD vape tastes like, keep the following things in mind: The flavor of a CBD vape will vary depending on whether it contains CBD and/or THC. A pure CBD vape pen will taste more bitter, whereas a THC-containing vape pen will typically taste sweeter. The right dosage for vaping is a topic of much discussion, particularly with regard to CBD vaporizers.<br/><br/>The leftover oil can be refrigerated in a small glass container. Just make sure you label it correctly so you don\'t accidentally throw it away later. However, what is a <a href=\"https://organichempoil.co.uk/thc-vape-laws-in-the-uk/\">THC vape</a> exactly, and how does it produce a smooth puff of vapor from plant compounds? Many consumers looking for a discreet and easy way to enjoy cannabis now turn to these well-known products. Many of the dangerous byproducts produced by combustion are avoided because there is no flame involved in the process.<br/><br/>For this reason, vaping is frequently described as being smoother and kinder to the lungs. But what exactly is a THC vape, and how does it turn plant compounds into a smooth puff of vapor. By doing this, the oil is warmed just enough to release its active ingredients as vapor, which is then inhaled through the mouthpiece. Try out both types of vapes before deciding which one is best for you. Consider purchasing a rechargeable device that includes cartridges rather than purchasing them separately if you enjoy disposable vapes but don\'t want to spend a lot of money on them up front.<br/><br/>Try both kinds of vapes before selecting the best one. How can I choose which e-cigarette is best for me? How to Use a CBD Vape Pen. Even though this may seem obvious, it\'s always a good idea to read instructions before attempting anything new. To be safe, you should always use your CBD vape pen according to the directions. THC-containing vape pens. Cartridges are the best choice if you\'re new to vaping cannabis.<br/><br/>They include cannabis oil that contains a mix of THC and CBD. You may choose to vape cartridges with higher THC concentrations based on your tolerance levels. The good thing is that you get to choose whether you want to vape using wax or oil - whichever you feel comfortable with. That\'s because they don\'t require you to consume large amounts of cannabinoids. Since THC vape cartridges offer a more enjoyable experience, most customers prefer them.<br/><br/>Vaping THC Dosage Tips. For novices or those seeking simplicity, they are perfect. If you\'ve ever walked into a modern dispensary or scrolled through an online cannabis catalog, you\'ve probably seen sleek, pocket-sized devices labeled as THC vapes.</p>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '0', '0', '0', '25', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'How can I pick a vape with THC?', 'When selecting your CBD vape oil products and learning what a CBD vape tastes like, keep the following things in mind: The flavor of a CBD vape will vary depending on whether it contains CBD and/or THC.', NULL, NULL, 'princecharles1968', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-11-14 23:25:02', '2025-12-03 17:20:31'),
('47', 'xboxemulator1974', 'seller', '26', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>Common Mistakes to Avoid in switch emulator</b></p><p>Essentially, an emulator is a piece of software that makes one computer system behave like another. Consider it a digital translator that enables your current gadget to communicate with older game consoles. The hardware environment of a Game Boy, PlayStation, or Super Nintendo is replicated in your operating system when you run an emulator on your laptop. You\'ve probably heard the term However, what precisely are these programs and how do they function?<br/><br/>They are able to recognize the evolution of some mechanics and recognize the inventiveness of some older games while adhering to rigorous technical constraints. The medium is kept alive in a way that feels inclusive and communal by this generational continuity. Some of the software in the original tutorial was broken. Since its founding in 2025, this website has been regarded as the most trustworthy resource for game emulation. This site has been around since 2025 and it is considered as the most reliable source for game emulation.<br/><br/>It has also established a reputation for dependability, legitimacy, and security. RetroArch is available for free and is open-source. Classic games from platforms like the SNES, Sega Genesis, and even older systems like the Atari 2600 can be played with this <a href=\"https://emulatorhub.dev/\">switch emulator</a>. Additionally, it is incredibly easy to use, which makes it a fantastic option for people who are just beginning to use emulators. RetroArch is among the most well-known examples of an emulator.<br/><br/>Compatibility databases use accuracy ratings to keep track of supported titles. Backup programs transfer and store data across versions. The ecosystem\'s supporting infrastructure is continuously expanding. For both casual and devoted users, this established framework guarantees dependability. Bug fixes are smoothly delivered through update notifications. The same reasoning holds true for virtualized hardware in general: a piece of software cannot mimic a piece of hardware that didn\'t exist when it was released, nor can it invent things that aren\'t real; for example, a program cannot be used to create a fake controller.<br/><br/>The same logic also applies to virtualized hardware in general: a given piece of software cannot simulate a piece of hardware that didn\'t exist at the time of the software\'s release- nor can it make up things that aren\'t real, as in, one cannot create a fake controller using a program. Nevertheless, it would be feasible to use a different program to simulate a controller that is completely imaginary.<br/><br/>To put it another way, one could easily write something like an emulated keyboard for text input purposes and a text field for text output purposes that could work in conjunction with a built-in text editor to create a custom text editor, either entirely or partially.</p>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '0', '0', '0', '100', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Common Mistakes to Avoid in switch emulator', 'Essentially, an emulator is a piece of software that makes one computer system behave like another. Consider it a digital translator that enables your current gadget to communicate with older game consoles.', NULL, NULL, 'xboxemulator1974', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-11-15 23:05:35', '2025-12-03 17:20:30'),
('48', 'How Can I Use a THC Vaporizer?', 'seller', '27', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>How Can I Use a THC Vaporizer?</b></p><p>If you want to buy THC vape pens online, there are many places to choose from. Seeing what other people have to say about someone is the best way to determine whether or not they provide good customer service. Most online retailers offer disposable THC vape pens that are either \"cannabis only\" or \"cannabis and THC\" options. When you buy a THC vape pen online, you will have the option to select the cartridge type you want to use. Because of their e-cigarette-like design, vape pens are suitable for both smokers and non-smokers.<br/><br/>Anyone looking for a covert way to take THC in the comfort of their own home should definitely check out this product. Although using THC vape cartridges doesn\'t require any special knowledge of how to use a vape pen, some models have useful features like temperature settings that let users regulate how much THC they take in. Although using THC vape cartridges doesn\'t require any specific knowledge of how to use a vape pen, some models do have useful features like temperature settings that let users adjust how much THC they consume.<br/><br/>In recent years, THC vaping has grown in popularity as a relatively new trend. For many people, including those who are attempting to give up smoking, it is becoming a substitute for smoking or eating edibles. It transforms the ancient plant into a contemporary ritual that respects your time and lungs while fitting in your pocket. You can change your mood, reduce stress, or inspire creativity with a few deliberate puffs without the heaviness that comes with other techniques. The ease of use and control of THC vaping are what make it so beautiful.<br/><br/>There is a great deal of variation among hybrids, which are produced by crossing different strains together. White Widow, which has been crossed with multiple strains over the years, Lemon Skunk, which was produced by crossing Skunk 1 with a Lemon Drop strain, and Gorilla Glue 4, which was created through repeated crosses between three different strains, are a few examples of well-known hybrids. While some hybrids may lean more toward one parent or the other, others may have equal amounts of Sativa and Indica genetics.<br/><br/>Where can I purchase a <a href=\"https://anxietyanddepression.org.uk/thc-vape/\">THC vape pen</a> online? However, it is crucial that you purchase cannabis products from a reliable supplier. In fact, some studies have shown that vaping THC may be less harmful than smoking it. There are a lot of options available. The significance of selecting the best strain to smoke. The effects of different strains can vary greatly, from a clear-headed cerebral stimulation to a strong body high.</p>', '50.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '0', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'How Can I Use a THC Vaporizer?', 'If you want to buy THC vape pens online, there are many places to choose from. Seeing what other people have to say about someone is the best way to determine whether or not they provide good customer service.', NULL, NULL, 'how-can-i-use-a-thc-vaporizer', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-11-22 15:13:06', '2025-12-03 17:20:30'),
('49', 'Atlas streaming', 'seller', '28', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>Comment fonctionne l\'IPTV?</b></p><p>La possibilité de regarder la télévision en direct, les chaînes premium et les émissions spécialisées de pratiquement n\'importe où contribue à faire de l\'IPTV une alternative attrayante. Comme plus de gens passent du câble à IPTV, la facilité d\'utilisation continue de s\'améliorer. Les fournisseurs affinent leurs interfaces, améliorent la stabilité et élargissent les bibliothèques de contenu. Atlas Pro ONTV illustre cette tendance en offrant une large gamme de chaînes fiables au sein d\'un écosystème accessible.<br/><br/>Si vous n\'avez pas de câble ou de satellite, alors vous devrez contacter votre compagnie de téléphone locale pour voir si elles offrent ce service. La plupart des gens préfèrent acheter un système IPTV s\'ils ont déjà un service par câble ou par satellite, mais certains sont capables d\'utiliser le système sans rien acheter. Pour annuler DIRECTV STREAM,  <a href=\"https://atlaspro-on.tv/\">https://atlaspro-on.tv/</a> rendez-vous simplement sur le site Web du fournisseur de services ou contactez son service à la clientèle. Comment annuler DIRECTV STREAM?<br/><br/>N\'oubliez pas qu\'il n\'y a pas de frais d\'annulation et que vous pouvez même profiter du service jusqu\'à la fin de votre cycle de facturation. L\'espace de stockage et les performances de l\'appareil méritent également d\'être mentionnés. Lorsque vous traitez des listes de lecture contenant des milliers de chaînes, certains appareils peuvent nécessiter un moment initial pour charger le catalogue. Les applications IPTV ont tendance à être légères, de sorte que même les gadgets plus anciens peuvent généralement les gérer.<br/><br/>Cependant, effacer les fichiers inutiles ou fermer les applications en arrière-plan peut aider à maintenir une lecture fluide. Atlas Pro ONTV gère efficacement ces listes de lecture étendues, ce qui rend la navigation dans de grandes bibliothèques plus facile que prévu. Une fois chargé, la navigation devient généralement rapide et réactive. Les lecteurs multimédia tels que Kodi, Infomir (M4), VLC, Chromecast ou Miracast font le décryptage du flux de chaînes et le montrent à l\'utilisateur final.<br/><br/>Le client se connecte au système IPTV avec un nom d\'utilisateur et un mot de passe et reçoit la liste des chaînes. Lorsqu\'une chaîne est sélectionnée, un flux de chaînes est envoyé au décodeur ou à une application Internet sur le smartphone ou la tablette. Une modeste mise à niveau du routeur peut renforcer les performances Wi-Fi, en particulier dans les grandes maisons. Une télécommande universelle facilite la navigation sur un téléviseur intelligent.<br/><br/>Beaucoup d\'utilisateurs d\'Atlas Pro ONTV finissent par optimiser leur environnement une fois qu\'ils voient à quelle fréquence ils utilisent le service. Un clavier Bluetooth compact améliore la fonction de recherche. Pour ceux qui souhaitent améliorer leur installation, les accessoires peuvent faire la différence. Bien que ces ajouts soient facultatifs, ils contribuent à une expérience plus fluide pour les ménages qui dépendent fortement du streaming.</p>', '50.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Comment fonctionne l\'IPTV?', 'La possibilité de regarder la télévision en direct, les chaînes premium et les émissions spécialisées de pratiquement n\'importe où contribue à faire de l\'IPTV une alternative attrayante.', NULL, NULL, 'atlas-streaming', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-12-07 14:29:12', '2025-12-07 14:29:12'),
('50', 'THC vapes', 'seller', '29', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>What should I look for in a THC vape brand</b></p><p>Broad spectrum and distillates differ slightly from one another. While most undesirable components are eliminated, broad spectrum products do not completely eliminate them. What distinguishes distillate from full-spectrum? Distillate concentrates extract only the cannabinoids from the cannabis plant.<br/><br/>In ancient China, cannabis use was first documented around 2737 BC. Emperor Shen Nung, a man, discovered the medicinal properties of cannabis tea there. There,  <a href=\"https://www.weedpens.co.uk/blog/weed-vape-pop-culture-uk/\">weedpen.co.uk</a> a man named Emperor Shen Nung discovered that cannabis tea had therapeutic benefits.<br/><br/>Rolling papers and a grinder are much more labor-intensive than CBD oil vape pens. They\'re also much more subtle. It makes sense that you would want something with a little more discretion because you wouldn\'t want to take out a grinder and light up a joint at work, and many people wouldn\'t even go outside to use their CBD vape pens or pre-filled tanks. Convenience is one of the main reasons why so many people decide to vape CBD e-juice. You will always get the most out of it if you adhere to the instructions on the packaging, and it is simple to use.<br/><br/>Compared to some other techniques, vaporization\'s efficiency means that less product is required to produce the desired effects. Although cost-effectiveness varies based on usage patterns, many people believe that vape pens are reasonably priced. The devices themselves are robust enough to offer prolonged service with the right maintenance, and cartridges usually last for many sessions.<br/><br/>Does Puff Bar\'s New Disposable Vape Pen Work? You can get a dose of CBD to treat anxiety without smoking cigarettes by using CBD vape juice. You can use a CBD vape pen as frequently as necessary as long as you reside in a state where cannabis is legal. We made our vape pen available in two sizes because we want to ensure that everyone has access to cannabis products, which come in a variety of forms. Medical cannabis users who wish to abstain from tobacco use should consider Puff Bar vapes. Users of Puff Bar disposable vape pens have reported feeling calmer overall and experiencing relief from stress in addition to decreased anxiety. Medical cannabis users no longer have to worry about breathing in secondhand smoke in public places because they can now take cannabis in a vapor form.<br/><br/>CBD vape oil cartridges are used to store CBD e-juice. Absolute Nature sells its goods online as well as in a number of physical locations across the United States. Each of its many sizes and forms is appropriate for a distinct type of vape mod. While other cartridges we tested only delivered between 0. The company\'s ethos can be learned about through their online store.</p>', '100.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'What should I look for in a THC vape brand', 'Broad spectrum and distillates differ slightly from one another. While most undesirable components are eliminated, broad spectrum products do not completely eliminate them. What distinguishes distillate from full-spectrum?', NULL, NULL, 'thc-vapes', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2025-12-23 03:32:56', '2025-12-23 03:32:56'),
('51', 'What types of garage door issues can be handled.', 'seller', '30', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>What types of garage door issues can be handled by a repair service</b></p><p>Your garage door may be stuck half open if the tracks are clogged or dirty. Additionally, look for any loose hardware on the door that might be preventing it from operating correctly. Try cleaning them and ensuring that nothing is obstructing the door\'s free movement. Doors are halfway stuck. Get in touch with a professional garage door company right away if you discover that one or more of these indicators apply to your garage door.<br/><br/>No matter how minor or large the issues with your garage door system may appear, the garage door company can assist you in fixing them. The degree of damage determines how much it will cost to fix garage door springs. Either the door itself or just the springs may need to be replaced. The cost of a repair job is determined by a variety of factors. If your home has a large number of doors, you might want to replace them all at once. After washing your car, be sure to sweep any water on the door\'s surface and dirt off the rollers.<br/><br/>Whether your garage door is made of steel or wood, it is crucial to keep both the inside and the outside clean to prevent damage. We appreciate our clients and  <a href=\"https://garagedoorrepairbakersfield.net/\">garagedoorrepairbakersfield.net</a> are always here to help. We want you to know that we will send a technician to your location at any time of day and are available to you around-the-clock. We are aware that garage door issues can happen at any time and could endanger you and your family. Whenever you need us, we are here to help. However, with consistent care, it becomes one of the most dependable components of a house.<br/><br/>A garage door that consistently opens silently and closes safely is a minor convenience that has a significant impact. It\'s easy to overlook because it usually works without complaint. Because it typically functions without any issues, it is simple to overlook. My personal experience has shown that regular maintenance keeps everyday activities going smoothly and lowers the need for repairs. We will not stop working until you\'re completely satisfied with our work.<br/><br/>Garage Door Repair Cedar Park values customer satisfaction, which is why our technicians can be dispatched within the same day as the request was made. Because Garage Door Repair Cedar Park values client satisfaction, our technicians can be sent out the same day the request was made. Until you are entirely pleased with our work, we won\'t stop working. Checking the manufacturer\'s instructions is the best way to determine when to replace the springs.<br/><br/>You should adhere to your manufacturer\'s recommendations if they call for changing the spring.</p>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '10', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'What types of garage door issues can be handled by a repair service', 'Your garage door may be stuck half open if the tracks are clogged or dirty. Additionally, look for any loose hardware on the door that might be preventing it from operating correctly.', NULL, NULL, 'what-types-of-garage-door-issues-can-be-handled', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-01-05 12:02:44', '2026-01-05 12:02:44'),
('52', 'Cheap movers', 'seller', '31', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>How can I pick a trustworthy moving company?</b></p><p>Purchase high-quality moving supplies. It\'s important to buy good quality moving supplies for a long-distance move. Purchasing high-quality moving supplies is crucial for  <a href=\"https://bradentonmovers.net/\">bradentonmovers.net</a> long-distance relocation. Your belongings could be harmed by inexpensive moving supplies because they break easily. Read my articles on self-motivation to learn more. How Does Moving Connect to My Needs? You have to be your best self when moving.<br/><br/>You\'ll need inspiration and hope as you start a new chapter in your life. When choosing a moving company, it\'s crucial to consider how much time you have. Can a mover complete the job in less than a week? When you decide on a moving company, it\'s important to take into account how much time you have. It\'s about giving your belongings to people who will take the proper care of them. It takes work to choose the best moving company, but the peace of mind is worthwhile.<br/><br/>I can concentrate on getting settled in my new house rather than worrying about whether my stuff will arrive undamaged. You\'ll be glad you did. I learned a valuable lesson from that grandmother\'s dresser incident: choosing the best moving company involves more than just getting boxes from point A to point B. Although it\'s not all-inclusive, this list will assist you in refining your estimate. If you\'ve done this before, you probably know exactly how many boxes you need to pack up the house.<br/><br/>How well-packed are your possessions? How to stay within your budget when moving. The dimensions of your house. How many fragile or expensive items do you own? Do not pay for additional services that you do not require. Furniture assembly and disassembly, as well as other minor tasks like moving outdated appliances, are examples. Moving companies offer additional services for both long-distance and local moves. If you decide to use these optional services, try to pay a fixed rate rather than an hourly rate to prevent cost increases brought on by delays.<br/><br/>For both local and long-distance moves, moving companies provide extra services. The average cost is 4,600. Relocating from Chicago to San Francisco is an amazing experience that can be both thrilling and stressful. The average cost of moving from Chicago to San Francisco is 4,600. Traveling across the country while packing everything you own is not an easy task. How much does it typically cost to move from Chicago to San Francisco?<br/><br/>Additionally, moving companies have a set daily rate, so if a mover claims to be able to complete a task in an hour but their hourly rate is only fifty, they are giving themselves very little time to complete the task.</p>', '25.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '25', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'How can I pick a trustworthy moving company?', 'Purchase high-quality moving supplies. It\'s important to buy good quality moving supplies for a long-distance move. Purchasing high-quality moving supplies is crucial for long-distance relocation.', NULL, NULL, 'cheap-movers', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-01-05 13:08:40', '2026-01-05 13:08:40'),
('53', 'steviesfruit', 'seller', '32', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>How crucial is a Google Business Profile for SEO in roofing?</b></p><p>Don\'t freak out if your roofing company gets a bad review. Negative reviews aren\'t as horrible as people believe, particularly if you reply in a professional manner. React in a professional manner and, if required, attempt to find a solution. Additionally, they might use your content in a newsletter or blog post that they send to their subscribers. These websites frequently offer their users resources or content with additional value. There are a number of reasons why visitors to your website might come from another.<br/><br/><img src=\"https://cdn.prod.website-files.com/688a19898a8753227c75d1fc/688a21f8e7ac83ea02b3af7e_Roofing%20SEO%20Logo.png\" width=\"350\" style=\"display:block;margin-left:auto;margin-right:auto;border-radius: 14px;box-shadow:0 0 0 4px #00f0ff,0 0 15px #00f0ff,0 0 30px #ff00e0;margin-bottom:12px;\" />A website is referred to as a referring site when it directs users to your website. Referring Sites: A referring site is a website that directs users to your website. What is an active Google Business Profile? A listing in Google Maps and Search that has your company\'s contact details, a description, pictures, and reviews is known as an active GBP. You must be able to prove that you are the company\'s owner and possess a Google account. You can update and add details about your company, such as contact details, hours of operation, photos, and descriptions, after you\'ve claimed the listing.<br/><br/>In addition, an active GBP helps you manage customer reviews and respond to them, which can improve your reputation and increase trust. Finally, having an active GBP can help you reach more potential customers and generate more leads for your business. How do you create one? Once your GBP is operational, you can use Google Analytics to monitor its performance and make adjustments to maximize its visibility.<br/><br/>For roofing companies looking to optimize their SEO, having an active Google Business Profile (GBP) is crucial. Additionally, you can keep an eye on and reply to consumer reviews. Additionally, they are dedicated to preserving the environment through the use of sustainable materials and methods. For individuals seeking a green roofing solution, Green Flash Roofing is an excellent choice. Their skilled and qualified workers are able to deliver superior customer service and high-quality work.<br/><br/>Although the digital landscape is constantly changing, the underlying idea is always the same: business growth is driven by being visible when customers need you. Learning search visibility is crucial for long-term success for contractors who are prepared to expand their company and lessen reliance on pricey lead generation services. The most economical and environmentally friendly method of achieving that visibility is through roofing SEO. Collaborating with experts who comprehend both search engine optimization and the roofing sector can expedite outcomes while allowing you to focus on providing exceptional customer service.<br/><br/>Technical expertise, constant work, and keeping up with algorithm changes are all necessary for <a href=\"https://www.einpresswire.com/article-pdf/872166867/roofing-seo-services-announces-launch-of-new-service-to-help-clients-rank-their-roofing-business-in-the-first-4-months\">SEO for roofing Companies</a>.</p>', '50.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'How crucial is a Google Business Profile for SEO in roofing?', 'Don\'t freak out if your roofing company gets a bad review. Negative reviews aren\'t as horrible as people believe, particularly if you reply in a professional manner. React in a professional manner and, if required, attempt to find a solution.', NULL, NULL, 'steviesfruit', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-02-01 15:02:29', '2026-02-01 15:02:29'),
('54', '4grotatingproxies687', 'seller', '33', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>A 4G mobile rotating proxy: what is it?</b></p><p>Geo-blocking is the practice of a website preventing users from accessing content because of their location. The price varies based on the provider. How much does a 4G mobile rotating proxy cost? No matter where you are, you can access these websites by using a 4G mobile rotating proxy. You can use a 4G mobile rotating proxy on any device with a data connection. This might seem like a lot, but it\'s well worth the investment given all the advantages of using a 4G mobile rotating proxy.<br/><br/>This is particularly helpful if you need to access websites that are blocked in your home country while traveling overseas. But monthly costs start at about $5. How mobile proxy configurations are made. One device at a time, the proxy server can configure it. To finish this process, get in touch with the administrator or follow the guidelines on the proxy provider\'s website. Others, on the other hand, might consider them to be merely an unneeded irritation.<br/><br/>You can find many of these services on the internet and they can be found quite easily. By using a rotating proxy service you will be able to get around these IP blocks and have a much easier time accessing the website. You should definitely give it a try if you\'re thinking about buying a rotating proxy server to see if it will be beneficial to you. Websites perceive requests made through one as coming from a typical mobile user instead of a data center or fixed location.<br/><br/>A mobile proxy is essentially an intermediary server that uses mobile devices connected to cellular networks to route your internet traffic. Mobile proxies make use of the same 4G networks that power your smartphone, in contrast to traditional proxies that use residential connections or data center IP addresses. The geographical flexibility of mobile rotating proxies creates new opportunities. Is it illegal to use mobile proxies?<br/><br/>You can view content exactly as it appears to users in different countries and even cities thanks to the availability of mobile IPs from many providers. For multinational companies, this feature is crucial for testing the functionality of their websites in various markets or making sure localized content appears appropriately. Reliability in dynamic environments is another benefit. This strategy stands out as a sensible and forward-thinking option for anyone who requires dependable access that is compatible with how the contemporary internet functions.<br/><br/>It enables users to engage with the web in a manner that is very similar to regular smartphone use. All things considered, a 4G mobile rotating proxy combines rotation, mobility, <a href=\"https://4g-rotating-proxy-buy-cheap-mobile-ip-ranges.b12sites.com\">and check that out on www.b12sites.com</a> physical connectivity into a potent solution. It can be used to spoof traffic, access blocked websites, conceal a user\'s location, and mask a website\'s actual IP address.</p>', '50.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'A 4G mobile rotating proxy: what is it?', 'Geo-blocking is the practice of a website preventing users from accessing content because of their location. The price varies based on the provider. How much does a 4G mobile rotating proxy cost?', NULL, NULL, '4grotatingproxies687', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-02-01 20:04:03', '2026-02-01 20:04:03'),
('55', 'arc raiders items for sale', 'seller', '34', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>The Future of arc raiders rmt: What to Expect in 2026</b></p><p>This encourages tense,  <a href=\"https://www.mmoset.com/\">www.mmoset.com</a> in-the-moment decision-making that rewards collaboration and map knowledge just as much as technical proficiency PvPvE balance: ARC Raiders pits Raiders against other players as well as AI threats, resulting in dynamic skirmishes where timing and space control are just as important as actual firepower. nPlayers join a squad of Raiders, explore a ruined, Earth-like surface layered with hazard and AI-controlled adversaries, and hunt for valuable loot while contending with other human players who are likewise chasing rewards.<br/><br/>Joining a group of Raiders, players search for valuable loot while competing with other human players who are also pursuing rewards on a destroyed, Earth-like surface covered in hazards and AI-controlled enemies. Tactical looting, environmental interaction, and high-stakes extraction are all included in the core loop. If loot is not secured in a safe pocket or extracted via designated points, death costs equipment and advancement nIf multiplayer scratches your itch - yes.<br/><br/>This game transports you to 2180, a damaged Earth where people seek refuge in underground havens like Speranza, a busy contrada in the Rust Belt. As a fearless Raider, you now go into Topside during short breaks in their patrols to steal treasure, tech scraps, and secrets that are essential to your people\'s survival. The surface was stripped bare decades ago when extraterrestrial devices known as ARC descended from the stars. It was created by Stockholm\'s Embark Studios, the team behind the chaotic brilliance of The Finals.<br/><br/>What plans do you have for cross-play between PCs and consoles? It needs to be flawless. - They are an exceptional team of veterans with a history of successful game development. We would like to investigate this.<br/><br/>That\'s the thrill of ARC Raiders, a multiplayer extraction adventure that has swept the gaming community since its release in the fall. Picture this: you\'re crouched in the shadows of a crumbling Italian coliseum, heart pounding as a colossal ARC machine scans the horizon with its glowing eyes. A single mistake could mean the end of the game or the beginning of an incredible comeback with your team.<br/><br/>I can\'t go into too much detail about them, but I hope everyone is as excited about them as I am. We have some exciting things in the works at nWay Games. What can we expect to see next from nWay Games. I therefore hope that everyone continues to follow nWay Games on social media.</p>', '100.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '100', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'The Future of arc raiders rmt: What to Expect in 2026', 'This encourages tense, in-the-moment decision-making that rewards collaboration and map knowledge just as much as technical proficiency PvPvE balance: ARC Raiders pits Raiders against other players as well as AI threats, resulting in dynamic.', NULL, NULL, 'arc-raiders-items-for-sale', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-02-02 13:00:50', '2026-02-02 13:00:50'),
('56', 'nocountry4u40', 'seller', '35', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>A promise ring: what is it?</b></p><p>Women love these because they fit anywhere on the wrist or arm. Any part of your body can accommodate them because they are typically small and straightforward. If you\'re searching for a tattoo design that will serve as a reminder of your dedication and commitment, you should look at the heart sign tattoos. The anchor tattoo designs are a great option if you\'re searching for something that represents faith and hope. What does the ring I bought mean? These rings represent the two partners\' shared desire to get married in the future.<br/><br/>They are typically given as a token of commitment by one person to another. Getting a promise ring is a great option if you\'re searching for a way to express your love and dedication. Picks for Our Promise Ring. These rings can be a wonderful way to show your love and commitment and are a symbol of your shared desire to get married. Does the popularity of promise rings vary by country? Engagement rings are more common in other parts of the world, whereas promise rings are more popular in North America.<br/><br/>Promise rings, which signify commitment but not marriage, are worn during the engagement phase in certain cultures. Many cultures prioritize marriage over other forms of relationships. The point of a promise ring is to give meaning and depth to your relationship. It gives both people in the <a href=\"https://www.couplesets.com/collections/couple-rings\">relationship rings</a> a purpose for wearing the ring, and it provides motivation for maintaining the commitment. Make sure to compare prices and shop around if you want to purchase a diamond ring that is on par with an engagement ring in terms of quality.<br/><br/>Promise rings are typically inexpensive, so it\'s not a significant financial commitment. People who do get married often wear promise rings during their engagement or sometimes during the first year of their marriage. When choosing a promise ring for yourself or your significant other, there are a lot of things to take into account. An apple ring might stand for beauty, while a red rose ring might symbolize passion.<br/><br/>A promise ring\'s cost is determined by the metal and gemstones used. Each one has a distinct meaning. You should take into account the type of metal, the design, and the gemstones. There are many factors that influence the price of gold. Many choose straightforward, subtle designs, while others favor gemstones or delicate bands. A personal touch is added by birthstones, engraved dates, or significant symbols. The ring can represent the wearer\'s personality or the couple\'s common interests because there are no strict requirements.<br/><br/>The composition feels personal rather than generic because of this freedom. The design can take on nearly any form.</p>', '100.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '100', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'A promise ring: what is it?', 'Women love these because they fit anywhere on the wrist or arm. Any part of your body can accommodate them because they are typically small and straightforward.', NULL, NULL, 'nocountry4u40', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-02-16 12:28:07', '2026-02-16 12:28:07'),
('57', 'Roofing SEO services', 'seller', '36', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>How is roofing SEO different from standard SEO?</b></p><p>Whatever the size or nature of the business, SEO is crucial. A website needs SEO for a straightforward reason. This is important because they will be able to tell you how to rank your site based on SEO best practices in your industry. You can increase website traffic when it ranks highly in the main search engines. When conducting an online search, the first factor that comes into play are the keywords or phrases that people use to find specific information on the Google Search Engine Results Page (SERP).<br/><br/>These words help them find what they\'re looking for faster than others who might not know exactly what they\'re looking for but want more information about it before deciding whether to buy from one place over another because there\'s no time wasted waiting around wondering whether this business will have exactly what someone needs right now, while another website might not carry anything similar at all but still have lower prices than competing sites. It is a question often asked by marketing agencies.<br/><br/>The first aspect which comes into play when you want to search for things online is keywords or phrases which people use while looking for something specific on Google Search Engine Results Page (SERP). This allows people like us who work hard enough and are diligent enough every single day to avoid falling behind schedule because of a lackadaisical attitude toward certain aspects during the start-up phase, when everyone seems to be busy with major tasks, until suddenly a deep-seated gut feeling asks, We will discuss both technical as well as non-technical aspects of roof repair work so that you can understand better about how they relate to each other.<br/><br/>SEO specialists are constantly experimenting with new methods to guarantee that your website ranks highly on Google. They employ a variety of strategies and will constantly monitor any modifications made by Google so they can adjust as necessary. Why choose a local SEO agency? You want to be as easy as possible for your customers to find you online! Not to mention the many benefits SEO brings like higher rankings within search engines resulting in more traffic going straight to your site through organic searches instead of having someone pay per click ads that may not even result in sales.<br/><br/>You should only collaborate with a leading local SEO company that has built websites and optimized them to rank highly in search results. <a href=\"https://hometriangle.com/blogs/tools-to-monitor-ai-visibility-for-roofing-seo-professionals/\">roofing SEO services</a> SEO (Search Engine Optimization) is the process of improving the visibility of a website in search engine results pages. Using business-related keywords is one way to accomplish this. SEO strategies may be familiar to you. Keeping the content on your website current and user-friendly for your clients is one of the most crucial parts of roofing SEO.<br/><br/>Black hat SEO strategies employ devious means to increase your website\'s visibility, whereas white hat strategies aim to improve your website\'s position in the natural search results.</p>', '50.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '25', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'How is roofing SEO different from standard SEO?', 'Whatever the size or nature of the business, SEO is crucial. A website needs SEO for a straightforward reason. This is important because they will be able to tell you how to rank your site based on SEO best practices in your industry.', NULL, NULL, 'roofing-seo-services', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-02-18 22:27:55', '2026-02-18 22:27:55'),
('58', '4grotatingmobileproxy1959', 'seller', '37', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>What distinguishes a datacenter or residential proxy from a 4G mobile rotating proxy?</b></p><p>Changing countries on our panel will automatically rotate your IP address. Usually, a proxy server can handle multiple computers and networks of various kinds. It\'s important to keep in mind, though, that different servers may have different features. Similar to smartphones, these gadgets are connected to carrier networks. Internet requests are then routed through the device by proxy software, which then returns the results to the user. A 4G mobile rotating proxy uses distributed mobile devices with SIM cards or  <a href=\"https://4g-rotating-proxy-buy-cheap-mobile-ip-ranges.b12sites.com\">4g-rotating-proxy-buy-cheap-mobile-ip-ranges.b12sites.com</a> specialized hardware in the background.<br/><br/>When rotation takes place, traffic moves smoothly to a different mobile IP address that is available, frequently without interfering with ongoing operations. No, we will set up any configuration you want for free. Is there a private or dedicated network available? Does the setup of a proxy network have a cost? Our team can manage your particular business requirements, so please get in touch with us and we will offer you a dedicated network solution.<br/><br/>The capacity of each API server is thousands of ports. Pick a country or a city of your choice and get your IP addresses from it. We use the best proxy hosting infrastructure providers available today, we limit the number of users per location to a minimum, we check each customer\'s proxy usage before onboarding them to our network, and we employ state-of-the-art security on our proxies. One reason mobile IPs are so trusted is that they are hard to come by.<br/><br/>Most platforms are hesitant to block that IP because doing so could lock out legitimate users. Mobile carriers use a technique known as carrier-grade NAT to share IP addresses among numerous users at once, in contrast to home broadband connections or data center servers. Is your pricing flexible? When using a 4G mobile proxy, that precaution is advantageous. Mobile proxies are a type of proxy server that lets businesses access websites that may be geo-restricted or blocked in a specific area.<br/><br/>Compared to Canada (89%) and Mexico (79%), the US has a higher mobile device penetration rate of 91%. Data center proxies are hosted in server farms, while residential proxies use regular home internet connections. It only makes use of the best residential ISP networks. The most potent API endpoint, PrivateProxy, is capable of executing any kind of proxy, including private proxies. What kinds of proxies do we support?<br/><br/>If you want to learn more about the differences between the two, check out our handy guide. This produces a browsing identity that is very similar to how people typically use the internet.</p>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '10', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'What distinguishes a datacenter or residential proxy from a 4G mobile rotating proxy?', 'Changing countries on our panel will automatically rotate your IP address. Usually, a proxy server can handle multiple computers and networks of various kinds.', NULL, NULL, '4grotatingmobileproxy1959', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-03-01 14:41:09', '2026-03-01 14:41:09'),
('59', 'In reality, what is the job of a plumber?', 'seller', '38', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>In reality, what is the job of a plumber?</b></p><p>There are no dangerous chemicals in contemporary plumbing fixtures. Manufacturers have responded by producing new drinking water-safe plumbing fixtures. Ultimately, a lot of contemporary fixtures are made to be safe and environmentally friendly. If your plumbing system is functional and high-performing, it can help you sell your home for more money. Hazardous chemicals are present in conventional plumbing fixtures.<br/><br/>This enables you to simultaneously make your house more aesthetically pleasing and healthier. The best way to prepare your home for resale is to make sure your plumbing system is in good condition. Are my plumbing fixtures environmentally friendly? It\'s simple to make mistakes when attempting to solve plumbing issues. There is a good chance that you will do more harm than good if you are inexperienced.<br/><br/>Expert plumbers understand exactly what needs to be done and how. You\'re unable to solve the issue on your own. In order to avoid trial-and-error solutions that could make the situation worse, professionals are trained to diagnose effectively. In actuality, early intervention frequently results in financial savings. Many people are reluctant to call a plumber because they think the repair will be difficult or  <a href=\"https://seattleplumbers.org\">seattleplumbers.org</a> costly. Then, simply reach out via phone or email to choose your preferred plumber.<br/><br/>Every plumber on our list has undergone a thorough screening process to guarantee their legitimacy and professionalism. While they are best known for fixing plumbing, they can also help with gas work and drainage. Then, just get in touch by phone or email to select the plumber of your choice. Can I hire one from this website? The plumber I want is highly regarded. In daily maintenance, do-it-yourself solutions can still be useful.<br/><br/>Being a responsible homeowner includes knowing where shutoff valves are, keeping an eye on water consumption, and cleaning hair from drains. Avoiding professionals completely is not the aim; rather, it is to identify when expertise truly adds value. A well-rounded strategy blends prompt expert assistance with easy upkeep. Why do I need a qualified plumber? To make sure the work is done safely and correctly. You or other family members could sustain serious injuries if you hire an unqualified plumber because they might not take the necessary safety precautions.<br/><br/>It takes more than just connecting pipes to upgrade kitchens, install new bathrooms, or move appliances. In addition to ensuring installations operate dependably from the start, hiring a plumber during the planning stages helps avoid expensive changes later. Pressure balance, proper layout, and adherence to building codes are all important.</p>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '25', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'In reality, what is the job of a plumber?', 'There are no dangerous chemicals in contemporary plumbing fixtures. Manufacturers have responded by producing new drinking water-safe plumbing fixtures. Ultimately, a lot of contemporary fixtures are made to be safe and environmentally friendly.', NULL, NULL, 'in-reality-what-is-the-job-of-a-plumber', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-03-09 13:11:57', '2026-03-09 13:11:57'),
('60', 'How do THC vapes work?', 'seller', '39', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>How do THC vapes work?</b></p><p>These concentrates can contain cannabinoids like THC, or they can contain CBD oil or other non-psychoactive cannabinoids. An intense, nearly instantaneous experience of the drug\'s effects may result from the vapor from these devices reaching the brain more quickly than smoke. Many people claim that using a vape pen makes them feel more stoned. For this reason, a lot of people who wish to experience the effects of cannabis more gradually opt to consume edibles. There is a chance that people will use THC vape pens because they are effective.<br/><br/>Visit Teens to find out more about the risks associated with THC vape pens. It\'s crucial to keep in mind that using, purchasing, or selling these goods in the US is still prohibited. Are There Any Risks Associated With Vaping THC? The worst thing you can do is buy vape carts online without considering the manufacturer\'s methods or the contents of the product. As long as you\'ve done your homework and bought a high-quality product, there\'s no need to be concerned about vaping <a href=\"https://www.marijuanainmedicine.co.uk/thc-in-vapes/\">THC Vapes</a> products.<br/><br/>While there are many reasons why someone would want to vape, they should always buy high-quality products. Additionally, the effects of vaping cannabis may be very similar to those of smoking cannabis. The answer to this question is that it depends. How safe is cannabis vaping? Durability: Look for vape pens made of premium materials that are difficult to break. Waterproofing: To ensure that you can carry your vape pen around without fear of water damage, make sure it is waterproof.<br/><br/>E-cigarettes and battery-powered vape pens are the two primary varieties of vape pens. What kinds of THC vape pens are there? Design: You should look for a vape pen that is comfortable to carry around and has a sleek, fashionable design. When you inhale or swallow THC, it travels through your body\'s digestive system to your brain. There are a lot of options available to you when searching for a THC vape pen. Vaping-related facts, advice, and resources. However, have you asked yourself, Vaping looks cool.<br/><br/>We understand how tempting it is to try vaping for yourself, your friends, or your loved ones. Additionally, nicotine from e-cigarettes can damage your brain. Vaping information, advice, and resources. It seems cool to vape. Because nicotine addiction lasts a lifetime. Facts, tips and tools about vaping. You can vaporize your preferred strains using the various cartridges that are included with the Pax 3.</p>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'How do THC vapes work?', 'These concentrates can contain cannabinoids like THC, or they can contain CBD oil or other non-psychoactive cannabinoids.', NULL, NULL, 'how-do-thc-vapes-work', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-03-16 18:59:08', '2026-03-17 16:54:12'),
('61', 'vedapocket42', 'seller', '40', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>How does auto shipping operate and what is it?</b></p><p>On the other hand, the price will be influenced by the cost of fuel for the specific model of your vehicle. Other costs, like insurance and even tolls, might need to be added when shipping a car across the nation. Your final bill will include these as well. If you are looking for auto transport companies near me, then the search is over! We did this on purpose in order to provide a quote during the same phone call and secure the customer\'s approval for the carrier of their choice. We are different from the rest of the industry because of this human intervention.<br/><br/>The cost can range from 600 for a short-distance move to thousands of dollars for a cross-country shipment, depending on all the variables we\'ve covered here. All you have to do is consider all of your options before choosing one. It is much less expensive than flying, which is a plus. For this reason, we only collaborate with reliable auto shippers. Why pick All American Auto Transport? In the United States, there are a lot of auto transport companies. We have a nationwide network of auto transport companies that offer services in all 50 states.<br/><br/>We want to provide you with a dependable, cost-effective, and stress-free experience. To determine your needs and provide you with the best shipping option, we at All American Auto Transport take the time to get to know our clients. After all these processes are over the driver will come and pick up your container and drop it off at your new location. After which you have to load the container with your items. You may be able to store your belongings while <a href=\"https://friscoautotransport.com\">you could look here</a> wait for them to be transported with the help of some auto transport companies Most of the time you will receive the vehicle containers at your doorstep and you will have to bring it to the pickup site on your own.<br/><br/>They may charge you some money for the service. The auto transport procedure. If you plan on shipping multiple cars at the same time, then you can also receive a discount on the shipping fees. Why All American Auto Transport is the best option. Since I\'ve never shipped a car, I want to be fully informed before beginning. Most people who have never shipped a car before find it intimidating. If you have any questions, one of our auto shipping specialists will be happy to help!<br/><br/>All American Auto Transport is your go-to partner. Now that you have a better understanding of your options for auto shipping, please feel free to contact us at (88230-2310) if you need assistance or have any questions.</p>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '10', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'How does auto shipping operate and what is it?', 'On the other hand, the price will be influenced by the cost of fuel for the specific model of your vehicle. Other costs, like insurance and even tolls, might need to be added when shipping a car across the nation.', NULL, NULL, 'vedapocket42', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-03-23 12:57:23', '2026-03-23 12:57:23'),
('62', 'lizardsnumberone', 'seller', '42', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>스포츠 베팅이란 무엇입니까?</b></p><p>모든 주요 문의 사항에 대해 BetWinner에는 서비스에 대한 거의 모든 질문에 대한 답변을 찾을 수있는 FAQ 섹션이 있습니다. 다행히 BetWinner는 이메일,  <a href=\"https://www.roobnb77.com/\">https://www.roobnb77.com/</a> 전화 및 소셜 미디어를 포함하여 고객 서비스에 도달 할 수있는 다양한 방법을 제공합니다. BetWinner의 직원들은 친절하며 귀하의 상황을 담당하는 사람이 아니더라도 항상 귀하의 문의 사항에 도움을 드릴 것입니다.<br/><br/>그들의 고객 지원 팀에 영어로 메시지를 보낼 수 있으며 신속하게 답변을 받게됩니다. 온라인 베팅을 할 때 효율적이고 빠른 고객 서비스 시스템을 구축하는 것이 매우 중요합니다. 이러한 예측 불가능성과 통찰력의 혼합은 사람들이 계속 참여하게 만드는 요소 중 하나입니다. 시간이 지남에 따라 많은 베터가 행운과 지식 사이의 균형에 감사하게됩니다.<br/><br/>결과는 결코 보장 될 수 없지만, 정보에 입각 한 선택을하면 전반적인 경험을 향상시킬 수 있습니다. 각 이벤트는 프로세스를 배우고, 조정하고, 즐길 수있는 새로운 기회를 제공합니다. 스포츠 북을 선택하는 방법을 배우십시오. 우리는 귀하의 요구를 충족시키는 북 메이커를 선택하는 방법을 보여줍니다. 신뢰할 수 있고 평판이 좋은 마권업자에게만 가입해야합니다.<br/><br/>예를 들어, 팀 A가 2 점 차이로 승리하고 팀 B가 1 점 차이로 승리한다고 베팅하면 베팅은 2 점 패럴리가 될 것입니다. Parlays는 포인트 스프레드 및 머니 라인과 같은 다른 유형의 베팅과 결합하여 더 복잡한 베팅을 만들 수 있습니다. Parlay: parlay는 한 번의 베팅에서 두 개 이상의 게임에 베팅하는 베팅입니다. 그러나, 베팅이 성공하면 수익을 올릴 것이며 더 큰 베팅을 할 때 더 큰 위험을 감수 할 수 있습니다.<br/><br/>경험을 쌓고 베팅 전략과 선택에 더 자신감을 갖게되면 더 큰 베팅을 시작할 수 있습니다. 처음 시작할 때는 너무 많은 돈을 잃을 위험을 낮추기 위해 신중하고 보수적이어야합니다. 팀 A가 3 점으로 유리하다면 팀 A는 팀 A가 베팅에서 이기려면 팀 B보다 1 점을 더 득점해야합니다. 포인트 스프레드: 이것은 게임에서 두 팀 간의 차이이며, 포인트로 표현됩니다.<br/><br/>이제 포인트 스프레드 베팅이 무엇인지 알고 있으므로 어떤 팀에 베팅을 하고 싶은지 생각하기 시작할 수 있습니다. 많은 사람들이 게임의 엄청난 인기 때문에 내셔널 풋볼 리그와 같은 스포츠에 베팅을 선택합니다. 그러나 MLB, NASCAR, 축구, 심지어 권투를 포함한 다른 유형의 스포츠에도 베팅을 할 수 있습니다. Moneyline: 이것은 팀이 승리하거나 패배 할 확률을 표현하는 또 다른 방법입니다.<br/><br/>예를 들어, 팀 A가 3 점으로 유리하고 팀 B가 1 점으로 유리하다면 머니 라인은 3 : 1이 될 것입니다. 머니라인 베팅은 한 팀이 경기에서 이기거나 패할 것인지를 선택할 때 이루어지며, 머니라인은 각 팀이 이기거나 패할 확률을 기준으로 계산됩니다. 첫 번째 단계는 다른 북 메이커를 보는 것입니다. 우리는 어떤 마권업자가 최고의 배당률, 보너스 및 기능을 가지고 있는지 보여줍니다.<br/><br/>우리는 누가 최고의 마권업자이며 그 이유를 알려줍니다. 친구와 모르는 사람 사이에 공통된 언어를 만들어 통계, 선수 부상, 역사적 추세에 대한 열정적인 논쟁을 불러일으킵니다. 주말이면 승부차기 승리 또는 마지막 초 골의 공유 된 흥분은 경기장 벽을 초월하는 집단적 유대감을 형성합니다. 이 동지애는 중간 계급 팀 간의 화요일 밤 농구 경기를 당신의 전적인 관심을 요구하는 높은 스테이크 드라마로 바꾸는 \"만약에\"의 스릴에 의해 촉진됩니다.<br/><br/>그것은 팀의 수비 포메이션의 작은 변화 또는 투수의 모멘텀의 변화를 알아차리는 헌신적인 추종자에게 보상을 주며, 전문성과 직관이 실제로 보람있는 결과를 낳을 수 있음을 증명합니다.</p>', '25.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '100', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '스포츠 베팅이란 무엇입니까?', '모든 주요 문의 사항에 대해 BetWinner에는 서비스에 대한 거의 모든 질문에 대한 답변을 찾을 수있는 FAQ 섹션이 있습니다.', NULL, NULL, 'lizardsnumberone', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-04-15 23:55:33', '2026-04-15 23:55:33'),
('63', 'How can the Google indexing process be.', 'seller', '43', '4', '3', NULL, NULL, 'youtube', NULL, '', '<p><b>How can the Google indexing process be accelerated?</b></p><p>Increase the number of social media platforms on your website. Increased engagement can be achieved by having a responsive design that displays properly on visitors\' mobile devices. This article, Social Media Marketing Be mobile friendly, describes how to add free social media features to your website. Being mobile friendly doesn\'t just mean having a site that loads and renders well on a mobile phone. Get Google to review your mobile-friendly website: Mobile-Friendly Sites. Here are five Google SEO Ranking Factors. How to make your website mobile-friendly and why it matters. For additional information on being mobile-friendly, visit the following resources. Not only will social media be very helpful in spreading the word about your website but it will also provide more links to your site that Google can use to rank you better. Social media will not only help spread the word about your website, but it will also increase the number of links to it that Google can use to improve your ranking. After setting everything up, select Crawl >Sitemaps >Add/test sitemap.<br/><br/>Google offers a free tool called Google Analytics that lets you know how users are using your website. Visit Google Webmaster Tools and register with your domain name. How to make your site mobile-friendly and why you should care. Google Analytics\' free basic data is already quite potent, particularly the traffic statistics. To find out how you\'re doing, monitor Google Analytics. You must have verified your domain. You can pay a small fee to have the premium package installed if you want to learn more about how your customers use your website.<br/><br/>For instance, classifying web pages makes it easier for Google\'s indexing software to determine which websites to take into account when searching for the appropriate page. Google indexing software does more than just identify whether a page has a particular kind of link. Some examples of these factors are:  <a href=\"https://2index.ninja/\">https://2index.ninja</a> Is your code structured so that you can easily find any errors? In general, we can say that these are the crucial elements that you should consider when indexing your website.<br/><br/>Are you using valid HTML codes on your website? This element encompasses the codes that are utilized to improve your website\'s audience appeal. Is your site accessible from any browser? HTML markup for websites. We\'ll look at additional crucial elements that you should consider in order to improve your website\'s ranking in the following section. Have your website listed in major online search directories like Yahoo!, DMOZ, and Google.<br/><br/>On your home page won\'t impress many people. Make sure your website has high-quality content.</p>', '50.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'How can the Google indexing process be accelerated?', 'Increase the number of social media platforms on your website. Increased engagement can be achieved by having a responsive design that displays properly on visitors\' mobile devices.', NULL, NULL, 'how-can-the-google-indexing-process-be', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-05-04 21:43:37', '2026-05-04 21:43:37'),
('65', 'SONOFF Wi-Fi Smart Switch', 'admin', '9', '4', '4', '193', '193', 'youtube', NULL, '', '<p>SONOFF Wi-Fi Smart Switch</p><p><br></p><p>Control your lights and appliances from anywhere using your smartphone with the SONOFF Wi-Fi Smart Switch. Easily turn devices ON/OFF, set schedules, and enjoy smarter living with remote access and voice control support.</p><p><br></p><p>Key Features</p><p><br></p><p>* Remote Control via Mobile App</p><p>* Wi-Fi Connectivity (2.4GHz)</p><p>* Voice Control Support</p><p>* Timer &amp; Scheduling Functions</p><p>* Energy Saving Solution</p><p>* Smart Home Automation</p><p>* Easy Installation</p><p>* Works with eWeLink App</p><p><br></p><p>Ideal For</p><p><br></p><p>* Home Lighting</p><p>* Fans</p><p>* CCTV Systems</p><p>* Office Equipment</p><p>* Smart Home Setups</p><p><br></p><p>Compatibility</p><p><br></p><p>* Android &amp; iOS</p><p>* Google Assistant</p><p>* Amazon Alexa</p>', '2450.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '1', '0', '10', 'Pc', '-0.01', '1', '1', '100.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '1', 'SONOFF Wi-Fi Smart Switch', 'SONOFF Wi-Fi Smart SwitchControl your lights and appliances from anywhere using your smartphone with the SONOFF Wi-Fi Smart Switch. Easily turn devices ON/OFF, set schedules, and enjoy smarter living with remote access and voice control support.Key Features* Remote Control via Mobile App* Wi-Fi Connectivity (2.4GHz)* Voice Control Support* Timer &amp; Scheduling Functions* Energy Saving Solution* Smart Home Automation* Easy Installation* Works with eWeLink AppIdeal For* Home Lighting* Fans* CCTV Systems* Office Equipment* Smart Home SetupsCompatibility* Android &amp; iOS* Google Assistant* Amazon Alexa', '193', NULL, 'sonoff-wi-fi-smart-switch', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-05-19 13:10:47', '2026-09-01 16:18:42'),
('66', 'peptide products costa rica', 'seller', '45', '4', '4', NULL, NULL, 'youtube', NULL, '', '<p><b>Top 15 Tools to Supercharge Your peptide therapy vacation costa rica Workflow</b></p><p>The injection of CJC-1295 Ipamorelin, also referred to as the MGF growth hormone releasing hormone (GHRH), is one such therapy that has been demonstrated to offer substantial therapeutic value. I will explain this therapy to you in detail. First of all, we know what peptides are. They are synthesized in our bodies and found in food sources like meat and dairy products. Additionally, supplements and pharmaceuticals contain them.<br/><br/>Foods like fish, meat, and dairy contain peptides. Peptides are used in medicine and drug development by pharmaceutical companies worldwide, and they can help with weight loss, skin health, and other issues. The building blocks are the individual amino acids. Cells die far more quickly than is necessary due to human growth hormone deficiency, which is the normal aging process. Actually, apoptosis is inhibited by both human growth hormone and ghrelin agonists. The brain releases more growth hormone when cortisol levels are high.<br/><br/>I will tell you everything about this therapy. What is CJC-1295 and Ipamorelin? One such treatment that has been shown to provide significant therapeutic value is the injection of CJC-1295 Ipamorelin, known as the MGF growth hormone releasing hormone (GHRH). CJC 1295 is a synthetic amino acid chain that, once absorbed into the bloodstream, stimulates the release of a significant amount of growth hormone. What are CJC-1295 and Ipamorelin?<br/><br/>Medical trials on animals have,  <a href=\"https://podcastaddict.com/podcast/peptides-costa-rica/7032045\">podcastaddict.com</a> of course, demonstrated that the peptides may be dangerous for human use. What Are the Risks and Dangers? There are currently no large-scale human-involved scientific trials. Nausea, vomiting, diarrhea, headache, skin rash, itching, and hives are some of these adverse effects. Although they are uncommon, peptides can have adverse effects. Before taking any supplement, you should always speak with your doctor because it may interfere with other medications or conditions you may have.<br/><br/>Peptides are a type of amino acid that are found in the body. They aid in the development of healthy muscle and skin tissues, the preservation of the body\'s ideal vitamin and mineral balance, and the reduction of inflammation. Peptides: Side Effects and Risks. They have a special capacity to move through cellular pathways with ease due to their smaller size, getting past obstacles that larger proteins are unable to.<br/><br/>Once they reach their destination, they give your cells precise instructions on how to act, recover, adapt, and flourish. If you are looking for a natural way to look younger, then try using peptides today! Large, intricate structures called proteins are composed of lengthy chains of organic molecules known as amino acids. Proteins like collagen and elastin are the robust building blocks of our skin, muscles, and organs in the grand architectural design of human biology.</p>', '100.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '10', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Top 15 Tools to Supercharge Your peptide therapy vacation costa rica Workflow', 'The injection of CJC-1295 Ipamorelin, also referred to as the MGF growth hormone releasing hormone (GHRH), is one such therapy that has been demonstrated to offer substantial therapeutic value. I will explain this therapy to you in detail.', NULL, NULL, 'peptide-products-costa-rica', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-05-25 14:06:15', '2026-05-25 14:06:15'),
('67', 'besthistorypodcasts', 'seller', '47', '4', '4', NULL, NULL, 'youtube', NULL, '', '<p><b>Are there beginner-friendly history podcasts on Spotify?</b></p><p>Making playlists based on your listening history is another fantastic Spotify feature. This implies that you can store and retrieve your preferred podcasts whenever you need to. Additionally, you can find what you\'re looking for with ease because the platform is very user-friendly. These are the top history podcasts available on Spotify for learners of all ages, history enthusiasts, and experts alike. Some of the history podcasts are hosted by Ben Raines, Dr. Get some ideas and inspiration by listening to these top history podcasts.<br/><br/>Elizabeth Klett, Katie McKenna, Andrew Dickson, and Bob Barrett. Share your favorites in the space provided for comments below. Start with a topic you already find enjoyable in fiction or movies if you are unsure of where to start. If you enjoy historical dramas, you can probably find a podcast that delves into the true history of your preferred setting. Historical mysteries and unresolved cases from the past provide the same excitement along with additional educational value. You are immersed in a crafted experience designed to hold your attention and spark further exploration.<br/><br/>Are you interested in true crime? Many podcasts are designed with newcomers in mind, explaining complex topics in simple language and providing enough context to make events easy to follow. Instead of sitting down with a textbook, you can absorb information naturally through storytelling. Ancient Rome might be studied one week, and the Industrial Revolution the following. Listeners can sample a variety of topics in this format and find out which eras interest them.<br/><br/>This program, which is hosted by historians Dominic Sandbrook and  <a href=\"https://open.spotify.com/show/033gE1E7y3mvF4DguHuyk4\">open.spotify.com</a> Tom Holland, is excellent at simplifying complicated world events into easily understood and frequently humorous segments. Their chemistry transforms what could otherwise be a dull lecture into a lively discussion between friends, making it simple for listeners to take in information about everything from the subtleties of historical scandals to the rise of empires. It is presented as a shared human story, available to anyone with curiosity and a pair of headphones.<br/><br/>The bottom line is that Spotify has cultivated a rich environment where history is not reserved for specialists. The incredibly popular show The Rest Is History is one of the most welcoming places to start for any newcomer. For anyone who has ever thought of history as a collection of dry facts and far-off dates rather than a series of captivating human dramas, this accessibility is a wonderful gift.<br/><br/>The platform has developed into a top choice for inquisitive minds, offering a smooth transition between lighthearted curiosity and profound scholarly understanding without the intimidation that comes with traditional academic study. Thanks to the dynamic realm of digital audio, learning about the past has never been easier or more interesting.przychodniaspecjalistyczna Anonas, Sta. Mesa, Manila, 1016 Kalakhang Maynila, Filippine +63-933-555-6280</p>', '100.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '10', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Are there beginner-friendly history podcasts on Spotify?', 'Making playlists based on your listening history is another fantastic Spotify feature. This implies that you can store and retrieve your preferred podcasts whenever you need to.', NULL, NULL, 'besthistorypodcasts', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-05-27 11:17:25', '2026-05-27 11:17:25'),
('68', 'What is the effect of internet reviews on my.', 'seller', '48', '4', '4', NULL, NULL, 'youtube', NULL, '', '<p><b>What is the effect of internet reviews on my roofing SEO?</b></p><p>The Benefits of Roofing SEO. Spend less on conventional advertising strategies like print or billboard advertisements. If you work as a roofing contractor, you are undoubtedly aware of the significance of SEO for your company. When people look for roofing services in your area, you want to be there. Boost website traffic. How to Do SEO for Roofing. This is the best way to get in front of potential customers and convince them that you\'re the best roofing contractor for them. Roofing SEO can help with that.<br/><br/>Get your company noticed by search engines like Google and Bing. Once we comprehend them, it\'s time to put those tactics into practice! is to optimize your website for search engines. Roofing Industry Roofing companies provide important services to communities. There will be a greater emphasis on how sustainability fits into overall design plans and how it is an important part of any building project. PPC advertising is a useful tool for promoting your company on websites related to the roofing industry.<br/><br/>This is the most effective way to approach prospective clients and persuade them that you are their ideal roofing contractor. Paid advertising is roofing SEO\'s third category. The more sincere compliments you get, the more the search engine thinks you should be at the top. Online reviews have become one of the most powerful signals for your local search ranking, and for a roofer, they can make the difference between showing up on page one or getting buried where no one looks.<br/><br/>Although Google doesn\'t personally know you, it is aware of what your clients have to say about you. Positive reviews function as online recommendations. Google does not know you personally, but it knows what your customers say about you. However, a lot of businesses are using search engine optimization (SEO) to boost their visibility. We\'ll cover everything from keyword research and website optimization techniques to strategies you can use right now.<br/><br/>For local searches such as This blog will go over the meaning of these rankings and how they are determined. Being found online is the best way for roofing companies to accomplish this. Roofing companies must figure out how to differentiate themselves from the competition because more people are seeking roof replacements or repairs these days. The first step in hiring a roofing SEO company is to conduct keyword research.<br/><br/>How do roofing SEO services operate? Effective use of this strategy will enable a competent <a href=\"https://daltxrealestate.com/roofing-seo-agency-texas/\">Roofing SEO agency</a> contractor to expand their business more quickly than their rivals who aren\'t utilizing local SEO strategies.</p>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '10', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'What is the effect of internet reviews on my roofing SEO?', 'The Benefits of Roofing SEO. Spend less on conventional advertising strategies like print or billboard advertisements. If you work as a roofing contractor, you are undoubtedly aware of the significance of SEO for your company.', NULL, NULL, 'what-is-the-effect-of-internet-reviews-on-my', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-06-16 16:23:39', '2026-06-19 15:20:26'),
('69', 'PoE Switch (10/100Mbps | 4 Port | 1G SFP Gigabit)', 'admin', '9', '7', NULL, '205', '205', 'youtube', NULL, '', '<p class=\"MsoNormal\"><b>Product Overview</b><br>\r\nReliable and efficient PoE (Power over Ethernet) switch designed for CCTV\r\nsurveillance and network applications. Supports both power and data\r\ntransmission through a single Ethernet cable, reducing installation complexity\r\nand cost.<o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features:</b><br>\r\n• 4 × 10/100Mbps PoE Ethernet Ports<br>\r\n• 1 × Gigabit SFP Uplink Port<br>\r\n• Supports Power over Ethernet (PoE) transmission<br>\r\n• Data + Power through a single LAN cable<br>\r\n• Stable network performance for IP devices<br>\r\n• Easy Plug &amp; Play installation<br>\r\n• Compact and durable metal housing<br>\r\n• Suitable for long-distance surveillance deployments<br>\r\n• Built-in protection for stable operation<o:p></o:p></p><p class=\"MsoNormal\"><b>Technical Specifications:</b><o:p></o:p></p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Model:\r\n     CX-1004 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Ports:\r\n     4 × 10/100Mbps PoE Ports <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Uplink:\r\n     1 × 1G SFP Gigabit Port <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Transmission:\r\n     Ethernet + Power over single cable <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Network\r\n     Standard: IEEE 802.3 / IEEE 802.3u <o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Standard: IEEE 802.3af / IEEE 802.3at <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Switching\r\n     Capacity: High-speed data forwarding <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Installation:\r\n     Desktop / Wall Mount <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Housing:\r\n     Metal Body <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Application:\r\n     Indoor Use <o:p></o:p></li>\r\n</ul><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\"><b>Ideal For:</b><br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> IP CCTV Camera Systems<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Office Networks<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Shops &amp; Commercial Buildings<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Small Business Network Expansion<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Security Monitoring Systems<o:p></o:p></p>', '8000.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '10', 'pc', '0.00', '1', '1', '300.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'PoE Switch (10/100Mbps | 4 Port | 1G SFP Gigabit)', 'Product Overview\r\nReliable and efficient PoE (Power over Ethernet) switch designed for CCTV\r\nsurveillance and network applications. Supports both power and data\r\ntransmission through a single Ethernet cable, reducing installation complexity\r\nand cost.Key Features:\r\n• 4 × 10/100Mbps PoE Ethernet Ports\r\n• 1 × Gigabit SFP Uplink Port\r\n• Supports Power over Ethernet (PoE) transmission\r\n• Data + Power through a single LAN cable\r\n• Stable network performance for IP devices\r\n• Easy Plug &amp; Play installation\r\n• Compact and durable metal housing\r\n• Suitable for long-distance surveillance deployments\r\n• Built-in protection for stable operationTechnical Specifications:\r\n Model:\r\n     CX-1004 \r\n Ports:\r\n     4 × 10/100Mbps PoE Ports \r\n Uplink:\r\n     1 × 1G SFP Gigabit Port \r\n Transmission:\r\n     Ethernet + Power over single cable \r\n Network\r\n     Standard: IEEE 802.3 / IEEE 802.3u \r\n PoE\r\n     Standard: IEEE 802.3af / IEEE 802.3at \r\n Switching\r\n     Capacity: High-speed data forwarding \r\n Installation:\r\n     Desktop / Wall Mount \r\n Housing:\r\n     Metal Body \r\n Application:\r\n     Indoor Use \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nIdeal For:\r\n✔ IP CCTV Camera Systems\r\n✔ Office Networks\r\n✔ Shops &amp; Commercial Buildings\r\n✔ Small Business Network Expansion\r\n✔ Security Monitoring Systems', '205', NULL, 'poe-switch-10100mbps-4-port-1g-sfp-gigabit', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-06-22 09:09:08', '2026-06-22 09:11:58'),
('70', 'PoE Switch (10/100Mbps | 8 Port | 2 Uplink + 1G SFP Gigabit)', 'admin', '9', '7', NULL, '206', '206', 'youtube', NULL, '', '<p class=\"MsoNormal\"><b>Product Overview</b><br>\r\nProfessional PoE switch designed for CCTV surveillance and network deployment.\r\nSupports simultaneous power and data transmission through a single Ethernet\r\ncable, making installation faster and more efficient for IP camera systems and\r\nbusiness networking. <o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features:</b><br>\r\n• 8 × 10/100Mbps PoE Ethernet Ports<br>\r\n• 2 × Uplink Ports for stable network expansion<br>\r\n• 1 × Gigabit SFP Fiber Uplink Port<br>\r\n• Power + Data transmission over one cable<br>\r\n• Plug &amp; Play operation – easy installation<br>\r\n• Stable transmission for CCTV monitoring systems<br>\r\n• Intelligent power management<br>\r\n• Metal body for durability and heat dissipation<br>\r\n• Suitable for long-distance network deployment<o:p></o:p></p><p class=\"MsoNormal\"><b>Technical Specifications:</b><o:p></o:p></p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Model:\r\n     CX-1008 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Ports: 8 × 10/100Mbps RJ45 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Uplink\r\n     Ports: 2 × Uplink Ethernet Ports <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Fiber\r\n     Port: 1 × 1G SFP Gigabit <o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Standard: IEEE 802.3af / IEEE 802.3at<o:p></o:p></li>\r\n <li class=\"MsoNormal\">Transmission\r\n     Method: Store-and-Forward <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Installation\r\n     Type: Desktop / Wall Mount <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Housing:\r\n     Industrial Metal Casing <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Application:\r\n     Indoor Network &amp; Surveillance Use <o:p></o:p></li>\r\n</ul><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\"><span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;\r\nmso-bidi-font-family:&quot;Segoe UI Symbol&quot;\">✔</span> IP CCTV Camera Systems<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Office Network Expansion<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Shops &amp; Commercial Buildings<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Warehouse Monitoring<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Security Surveillance Projects<o:p></o:p></p>', '12000.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '10', 'Pc', '0.00', '1', '1', '500.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'PoE Switch (10/100Mbps | 8 Port | 2 Uplink + 1G SFP Gigabit)', 'Product Overview\r\nProfessional PoE switch designed for CCTV surveillance and network deployment.\r\nSupports simultaneous power and data transmission through a single Ethernet\r\ncable, making installation faster and more efficient for IP camera systems and\r\nbusiness networking. Key Features:\r\n• 8 × 10/100Mbps PoE Ethernet Ports\r\n• 2 × Uplink Ports for stable network expansion\r\n• 1 × Gigabit SFP Fiber Uplink Port\r\n• Power + Data transmission over one cable\r\n• Plug &amp; Play operation – easy installation\r\n• Stable transmission for CCTV monitoring systems\r\n• Intelligent power management\r\n• Metal body for durability and heat dissipation\r\n• Suitable for long-distance network deploymentTechnical Specifications:\r\n Model:\r\n     CX-1008 \r\n PoE\r\n     Ports: 8 × 10/100Mbps RJ45 \r\n Uplink\r\n     Ports: 2 × Uplink Ethernet Ports \r\n Fiber\r\n     Port: 1 × 1G SFP Gigabit \r\n PoE\r\n     Standard: IEEE 802.3af / IEEE 802.3at\r\n Transmission\r\n     Method: Store-and-Forward \r\n Installation\r\n     Type: Desktop / Wall Mount \r\n Housing:\r\n     Industrial Metal Casing \r\n Application:\r\n     Indoor Network &amp; Surveillance Use \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n✔ IP CCTV Camera Systems\r\n✔ Office Network Expansion\r\n✔ Shops &amp; Commercial Buildings\r\n✔ Warehouse Monitoring\r\n✔ Security Surveillance Projects', '206', NULL, 'poe-switch-10100mbps-8-port-2-uplink-1g-sfp-gigabit', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-06-22 09:13:52', '2026-06-22 09:13:52'),
('71', 'PoE Switch (10/100Mbps | 16 Port | 2 Uplink | 2 SFP Gigabit)', 'admin', '9', '7', NULL, '204', '204', 'youtube', NULL, '', '<p class=\"MsoNormal\"><b>Product Overview</b><br>\r\nHigh-performance PoE switch designed for CCTV surveillance and network\r\ndeployment. Delivers both power and data through a single Ethernet cable for\r\nsimplified installation and stable connectivity across multiple devices.\r\nCommonly used for IP camera systems, office networking, and security projects. <o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features:</b><br>\r\n• 16 × 10/100Mbps PoE Ethernet Ports<br>\r\n• 2 × Gigabit RJ45 Uplink Ports<br>\r\n• 2 × Gigabit SFP Fiber Uplink Ports<br>\r\n• Power + Data transmission through one LAN cable<br>\r\n• Plug &amp; Play installation<br>\r\n• Stable transmission for IP CCTV systems<br>\r\n• Intelligent PoE power management<br>\r\n• Metal body for durability and heat control<br>\r\n• Suitable for long-distance surveillance networking <o:p></o:p></p><p class=\"MsoNormal\"><b>Technical Specifications:</b><o:p></o:p></p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Model:\r\n     CX-3016<o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Ports: 16 × 10/100Mbps RJ45 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Uplink\r\n     Ports: 2 × Gigabit RJ45 <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Fiber\r\n     Ports: 2 × Gigabit SFP <o:p></o:p></li>\r\n <li class=\"MsoNormal\">PoE\r\n     Standard: IEEE 802.3af / IEEE 802.3at <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Transmission\r\n     Method: Store &amp; Forward <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Installation:\r\n     Rack Mount / Desktop <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Housing:\r\n     Industrial Metal Casing <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Application:\r\n     Indoor CCTV &amp; Network Use <o:p></o:p></li>\r\n</ul><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoNormal\"><b>Best For:</b><br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> IP CCTV Camera Systems<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Office Networks<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Warehouses &amp; Commercial Buildings<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Security Monitoring Projects<br>\r\n<span style=\"font-family:&quot;Segoe UI Symbol&quot;,sans-serif;mso-bidi-font-family:\r\n&quot;Segoe UI Symbol&quot;\">✔</span> Network Expansion with Fiber Connectivity<o:p></o:p></p>', '25000.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '10', 'Pc', '0.00', '1', '1', '500.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'PoE Switch (10/100Mbps | 16 Port | 2 Uplink | 2 SFP Gigabit)', 'Product Overview\r\nHigh-performance PoE switch designed for CCTV surveillance and network\r\ndeployment. Delivers both power and data through a single Ethernet cable for\r\nsimplified installation and stable connectivity across multiple devices.\r\nCommonly used for IP camera systems, office networking, and security projects. Key Features:\r\n• 16 × 10/100Mbps PoE Ethernet Ports\r\n• 2 × Gigabit RJ45 Uplink Ports\r\n• 2 × Gigabit SFP Fiber Uplink Ports\r\n• Power + Data transmission through one LAN cable\r\n• Plug &amp; Play installation\r\n• Stable transmission for IP CCTV systems\r\n• Intelligent PoE power management\r\n• Metal body for durability and heat control\r\n• Suitable for long-distance surveillance networking Technical Specifications:\r\n Model:\r\n     CX-3016\r\n PoE\r\n     Ports: 16 × 10/100Mbps RJ45 \r\n Uplink\r\n     Ports: 2 × Gigabit RJ45 \r\n Fiber\r\n     Ports: 2 × Gigabit SFP \r\n PoE\r\n     Standard: IEEE 802.3af / IEEE 802.3at \r\n Transmission\r\n     Method: Store &amp; Forward \r\n Installation:\r\n     Rack Mount / Desktop \r\n Housing:\r\n     Industrial Metal Casing \r\n Application:\r\n     Indoor CCTV &amp; Network Use \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nBest For:\r\n✔ IP CCTV Camera Systems\r\n✔ Office Networks\r\n✔ Warehouses &amp; Commercial Buildings\r\n✔ Security Monitoring Projects\r\n✔ Network Expansion with Fiber Connectivity', '204', NULL, 'poe-switch-10100mbps-16-port-2-uplink-2-sfp-gigabit', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-06-22 09:18:09', '2026-06-22 09:18:09'),
('72', 'Explore the figures', 'seller', '51', '4', '5', NULL, NULL, 'youtube', NULL, '', '<p><b>Over the last five years, how quickly has OnlyFans expanded?</b></p><p>For example, it is possible to post pictures, videos and messages to your fans for free. For their fans, creators can post exclusive content for a fee. Bitcoin can also be used to purchase presents for your favorite artists. This is a platform for professional content creators. There is a membership option in addition to a donation and tip jar. You can operate a shop, offer commissions, or sell digital goods. Ko-fi is a supplement to many creators\' primary platforms.<br/><br/>Ko-fi is the amiable substitute. It\'s not always the case that fans come to support you in order to obtain locked-in content. The platform is extremely affordable; it only processes payments and does not charge for tips. Many creators use Ko-fi as a supplement to their main platform. Ko-fi is the friendly alternative. The cut is likewise minimal for memberships. You can follow all of your favorite creators without creating multiple accounts by using this fantastic method.<br/><br/>These tokens can then be used to unlock premium content or to tip the creator. A number of payment methods are available, such as gift cards and bitcoin. You determine what interests your subscribers,  <a href=\"https://www.pressconnects.com/story/news/nation/california/2026/02/12/californians-spent-over-350m-on-onlyfans-in-2025-see-top-cities/88648527007/\">pressconnects.com</a> when to publish, and how to communicate with them. Additionally, you develop trust, which results in more tips and subscribers who stick around longer. It\'s also reasonable to take into account the fact that many novices see a three- to six-month increase in revenue.<br/><br/>Because you find out what works. Another realistic figure to consider is that many beginners see their revenue triple after three to six months. That first hundred dollars could grow to three hundred or four hundred dollars. Her account thrives on high-quality visuals and a curated sense of intimacy. She leveraged her existing fame but kept subscribers engaged with daily updates and themed content drops.<br/><br/>High-quality images and a carefully chosen feeling of intimacy are what make her account so successful. Adult content stars like Lana Rhoades dominate the charts too. She offers tiered subscription levels, giving fans options from basic access to exclusive one-one messaging. Fans can choose from basic access to exclusive one-on-one messaging through her tiered subscription levels. Reddit and Twitter promotions attract new users, while devoted followers get freebies or loyalty discounts.<br/><br/>To keep a visible presence, they release content on a rigid schedule, frequently several times a day. Fitness coach Katarina Van Derham posts custom workout plans and nutrition guides, filming routines specifically for her subscribers. Top earners also use pay-per-view messages for special releases, sell merchandise, and take tips for personalized requests to diversify their revenue streams.</p>', '10.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '50', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Over the last five years, how quickly has OnlyFans expanded?', 'For example, it is possible to post pictures, videos and messages to your fans for free. For their fans, creators can post exclusive content for a fee. Bitcoin can also be used to purchase presents for your favorite artists.', NULL, NULL, 'explore-the-figures', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-06-23 08:57:27', '2026-06-23 08:57:27'),
('73', 'Handboss Multi-Purpose Foam Cleaner (450ml)', 'admin', '9', '8', NULL, '209', '209', 'youtube', NULL, '', '<p class=\"MsoNormal\"><b>Product Description</b><br>\r\nHandboss Multi-Purpose Foam Cleaner is a powerful cleaning solution designed to\r\nremove dust, dirt, grease, and stains from a wide range of surfaces. Its rich\r\nfoam formula cleans effectively without damaging delicate equipment, making it\r\nideal for electronics, office equipment, and household applications.<o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features</b><o:p></o:p></p><p>\r\n\r\n\r\n\r\n</p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Powerful\r\n     foam cleaning action <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Removes\r\n     dust, dirt, and grime <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Safe\r\n     on most surfaces <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Fast\r\n     and easy to use <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Suitable\r\n     for electronics and office equipment<o:p></o:p></li>\r\n</ul>', '1400.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '10', 'Pc', '0.00', '1', '1', '182.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'Handboss Multi-Purpose Foam Cleaner (450ml)', 'Product Description\r\nHandboss Multi-Purpose Foam Cleaner is a powerful cleaning solution designed to\r\nremove dust, dirt, grease, and stains from a wide range of surfaces. Its rich\r\nfoam formula cleans effectively without damaging delicate equipment, making it\r\nideal for electronics, office equipment, and household applications.Key Features\r\n\r\n\r\n\r\n\r\n Powerful\r\n     foam cleaning action \r\n Removes\r\n     dust, dirt, and grime \r\n Safe\r\n     on most surfaces \r\n Fast\r\n     and easy to use \r\n Suitable\r\n     for electronics and office equipment', '209', NULL, 'handboss-multi-purpose-foam-cleaner-450ml', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-06-24 09:19:00', '2026-06-24 09:19:19'),
('74', 'CN-60 Adhesive & Sticker Remover (450ml)', 'admin', '9', '8', NULL, '207', '207', 'youtube', NULL, '', '<p class=\"MsoNormal\"><b>Product Description</b><br>\r\nCN-60 Adhesive Remover is specially formulated to remove stickers, labels, glue\r\nresidue, tape marks, and adhesive stains quickly and efficiently. It leaves\r\nsurfaces clean without leaving residue behind, making it perfect for electronic\r\ndevices, glass, metal, plastic, and other surfaces.<o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features</b><o:p></o:p></p><p class=\"MsoNormal\">\r\n\r\n\r\n\r\n</p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Removes\r\n     stickers and adhesive residue <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Fast-acting\r\n     formula <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Leaves\r\n     no sticky residue <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Safe\r\n     for most surfaces <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Easy\r\n     spray application<o:p></o:p></li>\r\n</ul>', '950.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '10', 'Pc', '0.00', '1', '1', '110.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'CN-60 Adhesive & Sticker Remover (450ml)', 'Product Description\r\nCN-60 Adhesive Remover is specially formulated to remove stickers, labels, glue\r\nresidue, tape marks, and adhesive stains quickly and efficiently. It leaves\r\nsurfaces clean without leaving residue behind, making it perfect for electronic\r\ndevices, glass, metal, plastic, and other surfaces.Key Features\r\n\r\n\r\n\r\n\r\n Removes\r\n     stickers and adhesive residue \r\n Fast-acting\r\n     formula \r\n Leaves\r\n     no sticky residue \r\n Safe\r\n     for most surfaces \r\n Easy\r\n     spray application\r\n', '207', NULL, 'cn-60-adhesive-sticker-remover-450ml', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-06-24 09:21:05', '2026-06-24 09:21:05'),
('75', 'CN-10 Electronics Cleaner (450ml)', 'admin', '9', '8', NULL, '208', '208', 'youtube', NULL, '', '<p class=\"MsoNormal\"><b>Product Description</b><br>\r\nCN-10 Electronics Cleaner is a professional-grade cleaning spray designed for\r\nsensitive electronic components and equipment. It effectively removes dust,\r\ndirt, and contaminants while drying quickly, helping maintain optimal\r\nperformance and extending the life of your devices.<o:p></o:p></p><p class=\"MsoNormal\"><b>Key Features</b><o:p></o:p></p><p>\r\n\r\n\r\n\r\n</p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\">Designed\r\n     for electronic equipment <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Removes\r\n     dust and contaminants <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Quick-drying\r\n     formula <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Safe\r\n     for electronic components <o:p></o:p></li>\r\n <li class=\"MsoNormal\">Ideal\r\n     for computers, networking devices, and office equipment<o:p></o:p></li>\r\n</ul>', '850.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '1', '0', '0', '10', 'Pc', '0.00', '1', '1', '80.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', 'CN-10 Electronics Cleaner (450ml)', 'Product Description\r\nCN-10 Electronics Cleaner is a professional-grade cleaning spray designed for\r\nsensitive electronic components and equipment. It effectively removes dust,\r\ndirt, and contaminants while drying quickly, helping maintain optimal\r\nperformance and extending the life of your devices.Key Features\r\n\r\n\r\n\r\n\r\n Designed\r\n     for electronic equipment \r\n Removes\r\n     dust and contaminants \r\n Quick-drying\r\n     formula \r\n Safe\r\n     for electronic components \r\n Ideal\r\n     for computers, networking devices, and office equipment\r\n', '208', NULL, 'cn-10-electronics-cleaner-450ml', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-06-24 09:22:40', '2026-06-24 09:22:40'),
('76', 'keenanlrfosf', 'seller', '52', '4', '5', NULL, NULL, 'youtube', NULL, '', '<p><b>스포츠 베팅이란 무엇입니까?</b></p><p>이러한 추세가 2026 년까지 지속됨에 따라 플레이어가 기대할 수있는 흥미 진진한 출시가 많이있을 것입니다. 실제로 지난 2년 동안 거의 매달 새로운 게임이 출시되었습니다. 결론적으로, 우리는 매년 출시되는 많은 새로운 카지노 게임이 있음을 알 수 있습니다. 궁극적으로 온라인 카지노에서 플레이하는 목표는 큰 승리입니다. 웹 사이트의 역사와 고객 지원을 확인하는 것도 도움이됩니다.<br/><br/>또한 각 예금에 필요한 최소 금액을 살펴봐야합니다. 여기에는 카지노의 합법성, 예금 옵션 및 제공하는 게임이 포함됩니다. 어떤 온라인 카지노가 가장 좋은지 결정하기 전에 고려해야 할 여러 가지 요소가 있습니다. 이 경우 그러나 위험이 더 높으며, 돈은 즉시 좋아하는 팀에 투자됩니다. 따라서 베팅의 Moneyline 방법을 사용할 때,이 시스템에서 당신은 승리의 가능성에만 베팅하고 있으므로 당신의 팀이 승리 할 것임을 확신해야합니다.<br/><br/>또한 베팅 볼륨은 개별 게임 및 운동 선수에 따라 다릅니다. 베팅 볼륨은 연중 변동하며 주요 스포츠 이벤트 중에 피크가 발생합니다. 예를 들어, 월드 시리즈와 슈퍼볼은 다른 게임보다 더 많은 베터를 유치합니다. 따라서 스포츠 북의 수익은 월별 및 시즌별로 변동 할 것입니다. 단순히 고정 된 금액을 이기거나 잃는 것보다 귀하의 이익이나 손실은 귀하가 얼마나 옳거나 틀렸는지에 비례합니다.<br/><br/>당신이 10에서 팀의 총 코너를 구입하고 그들이 14로 끝나면, 당신은 단위 당 베팅 금액의 4 배를 얻습니다. 그런 다음 약간 다르게 작동하는 스프레드 베팅이 있습니다. 그것은 깊은 지식과 신중한 사고를 보상하는 형식이며, 스포츠뿐만 아니라 금융 시장에서 특히 인기가 있습니다. 더 깊은 수준에서 스포츠에 참여할 자유가 있습니다. 숙련 된 팬이든 단순히 호기심이 있든 스포츠 북의 세계는 환영하는 입구를 제공합니다.<br/><br/>단순히 팀 대신 이야기 나 통계를 뿌리 뽑을 수 있습니다. 궁극적으로 스포츠 북은 옵션에 관한 것입니다. 수동적인 시청을 능동적인 취미로 바꿔줍니다. 호기심과 가벼운 마음으로 그것에 접근하십시오, 그것은 당신이 사랑하는 게임에 보람있는 새로운 차원을 추가 할 것입니다. 확률에 대한 지식을 테스트 할 수 있습니다. 숫자, 전략, 순수한 흥분의 영역입니다.<br/><br/>팬들은 통계를 추적하고 배당률을 비교하고 게임을 라이브로 시청하고 스마트 폰에서 직접 계정을 관리 할 수 ​​있습니다. 기술은 지난 10 년 동안 산업을 완전히 변화시켰습니다. 오늘날 모바일 앱과 온라인 스포츠 북을 통해 사용자는 거의 모든 곳에서 베팅을 할 수 있습니다. 과거에는 대부분의 베팅이 실제 베팅 상점이나 카지노에서 이루어졌습니다.<br/><br/>당신은 실제 선수들로 구성된 가상 팀을 드래프트하고, 그들의 실제 통계는 당신의 라인업에 대한 포인트로 변환됩니다. 이것은 종종 재미를 위해 플레이되는 반면,  <a href=\"https://xn--2s2b2n48exwm75m.isweb.co.kr/\">https://루벳코리아.isweb.co.kr/</a> 유료 콘테스트는 심각한 상금 풀과 전문 스카우트만큼 매치업을 연구하는 데 많은 시간을 보내는 전담 분석가 커뮤니티가있는 경쟁 추구로 바뀌었습니다. 판타지 스포츠는이 세계에 인접해 앉아 있습니다.<br/><br/>시간이 지남에 따라 이것은 어떤 전략이 당신에게 가장 잘 작동하는지 보는 데 도움이됩니다. 돈 관리가 어떻게 작동하는지 이해하는 것은 베팅을 아는 것만큼 중요합니다. 좋은 규칙은 단일 베팅에서 자금의 소량만을 위험에 빠뜨리는 것입니다. 많은 숙련 된 베터는 자신의 선택에 대한 간단한 기록을 유지합니다. 이렇게 하면 스트레스 없이 오르락 내리락을 즐길 수 있습니다.</p>', '25.00', NULL, '0', '[]', '[]', '[]', NULL, '0', '1', '1', 'quantity', '0', '0', '0', '10', 'pc', '0.00', '1', '1', '0.00', 'amount', NULL, NULL, NULL, NULL, 'free', '0.00', '0', NULL, '0', '스포츠 베팅이란 무엇입니까?', '이러한 추세가 2026 년까지 지속됨에 따라 플레이어가 기대할 수있는 흥미 진진한 출시가 많이있을 것입니다. 실제로 지난 2년 동안 거의 매달 새로운 게임이 출시되었습니다.', NULL, NULL, 'keenanlrfosf', '0.00', NULL, '0', '0', NULL, NULL, NULL, NULL, '0', 'product', '0', NULL, NULL, '2026-06-29 20:20:14', '2026-06-29 20:20:14');

-- ----------------------------------------
-- Table structure for `proxypay_payments`
-- ----------------------------------------

DROP TABLE IF EXISTS `proxypay_payments`;
CREATE TABLE `proxypay_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_type` varchar(20) NOT NULL,
  `reference_id` varchar(20) NOT NULL,
  `order_id` int(11) DEFAULT NULL,
  `package_id` int(11) DEFAULT NULL,
  `user_id` int(11) NOT NULL,
  `amount` double(25,2) NOT NULL DEFAULT 0.00,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `proxypay_payments`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `reviews`;
CREATE TABLE `reviews` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(10) NOT NULL DEFAULT 'real',
  `product_id` int(11) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `custom_reviewer_name` varchar(100) DEFAULT NULL,
  `custom_reviewer_image` varchar(100) DEFAULT NULL,
  `rating` int(11) NOT NULL DEFAULT 0,
  `comment` mediumtext NOT NULL,
  `photos` varchar(191) DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT 1,
  `viewed` int(1) NOT NULL DEFAULT 0,
  `created_at_is_custom` tinyint(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `reviews`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `role_has_permissions`
-- ----------------------------------------

DROP TABLE IF EXISTS `role_has_permissions`;
CREATE TABLE `role_has_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL,
  `role_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`permission_id`,`role_id`),
  KEY `role_has_permissions_role_id_foreign` (`role_id`),
  CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE,
  CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `role_has_permissions`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `role_translations`;
CREATE TABLE `role_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `role_id` bigint(20) NOT NULL,
  `name` varchar(50) NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `role_translations`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `roles`;
CREATE TABLE `roles` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `guard_name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `roles_name_guard_name_unique` (`name`,`guard_name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- ----------------------------------------
-- Data for `roles`
-- ----------------------------------------

INSERT INTO `roles` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES
('1', 'Super Admin', 'web', '2022-06-13 05:59:58', '2022-06-12 17:30:00');

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

DROP TABLE IF EXISTS `searches`;
CREATE TABLE `searches` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `query` varchar(1000) NOT NULL,
  `count` int(11) NOT NULL DEFAULT 1,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `searches`
-- ----------------------------------------

INSERT INTO `searches` (`id`, `query`, `count`, `created_at`, `updated_at`) VALUES
('2', 'dcs', '1', '2020-03-08 05:59:09', '2020-03-08 05:59:09'),
('3', 'das', '3', '2020-03-08 05:59:15', '2020-03-08 05:59:50'),
('4', 'Case', '3', '2025-08-30 11:51:20', '2025-11-11 09:44:32'),
('5', '16 Plus', '1', '2025-11-13 05:44:15', '2025-11-13 05:44:15'),
('6', 'S24', '1', '2025-11-27 16:18:51', '2025-11-27 16:18:51'),
('7', 'esp32', '1', '2025-12-02 23:40:51', '2025-12-02 23:40:51'),
('8', 'Pixel 8 pro case', '1', '2025-12-22 15:33:32', '2025-12-22 15:33:32'),
('9', 'inductor', '2', '2026-03-03 16:02:14', '2026-03-03 16:02:28'),
('10', 'Watch', '4', '2026-03-27 19:31:55', '2026-03-27 19:32:09'),
('11', 'Soundcore', '1', '2026-04-03 17:30:35', '2026-04-03 17:30:35'),
('12', 'pt2257', '1', '2026-04-29 12:32:41', '2026-04-29 12:32:41'),
('13', 'vfd', '1', '2026-05-21 18:46:59', '2026-05-21 18:46:59'),
('14', 'TW-THVFD004', '1', '2026-05-21 18:47:16', '2026-05-21 18:47:16'),
('15', 'lead screw', '4', '2026-06-16 23:55:43', '2026-08-11 14:36:24'),
('16', 'rail', '1', '2026-06-16 23:57:26', '2026-06-16 23:57:26'),
('17', 'railing', '1', '2026-06-16 23:57:35', '2026-06-16 23:57:35'),
('18', 'linear', '1', '2026-06-16 23:57:45', '2026-06-16 23:57:45'),
('19', 'Samsung Galaxy A36 backcover', '1', '2026-07-09 19:45:34', '2026-07-09 19:45:34'),
('20', '3053', '1', '2026-07-22 13:09:57', '2026-07-22 13:09:57'),
('21', 'Earbuds', '1', '2026-08-02 09:57:14', '2026-08-02 09:57:14'),
('22', 'starter motor', '1', '2026-08-07 17:45:43', '2026-08-07 17:45:43'),
('23', 'starter motor 3 phase 230v,50Hz', '1', '2026-08-07 17:46:09', '2026-08-07 17:46:09'),
('24', '2026', '3', '2026-08-27 01:24:39', '2026-08-30 18:19:20'),
('25', '2027', '1', '2026-08-29 03:00:15', '2026-08-29 03:00:15');

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

DROP TABLE IF EXISTS `seller_withdraw_requests`;
CREATE TABLE `seller_withdraw_requests` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `amount` double(20,2) DEFAULT NULL,
  `message` longtext DEFAULT NULL,
  `status` int(1) DEFAULT NULL,
  `viewed` int(1) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `seller_withdraw_requests`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `sellers`;
CREATE TABLE `sellers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `rating` double(3,2) NOT NULL DEFAULT 0.00,
  `num_of_reviews` int(11) NOT NULL DEFAULT 0,
  `num_of_sale` int(11) NOT NULL DEFAULT 0,
  `verification_status` int(1) NOT NULL DEFAULT 0,
  `verification_info` longtext DEFAULT NULL,
  `cash_on_delivery_status` int(1) NOT NULL DEFAULT 0,
  `admin_to_pay` double(20,2) NOT NULL DEFAULT 0.00,
  `bank_name` varchar(255) DEFAULT NULL,
  `bank_acc_name` varchar(200) DEFAULT NULL,
  `bank_acc_no` varchar(50) DEFAULT NULL,
  `bank_routing_no` int(50) DEFAULT NULL,
  `bank_payment_status` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `sellers`
-- ----------------------------------------

INSERT INTO `sellers` (`id`, `user_id`, `rating`, `num_of_reviews`, `num_of_sale`, `verification_status`, `verification_info`, `cash_on_delivery_status`, `admin_to_pay`, `bank_name`, `bank_acc_name`, `bank_acc_no`, `bank_routing_no`, `bank_payment_status`, `created_at`, `updated_at`) VALUES
('1', '3', '0.00', '0', '0', '1', '[{\"type\":\"text\",\"label\":\"Name\",\"value\":\"Mr. Seller\"},{\"type\":\"select\",\"label\":\"Marital Status\",\"value\":\"Married\"},{\"type\":\"multi_select\",\"label\":\"Company\",\"value\":\"[\\\"Company\\\"]\"},{\"type\":\"select\",\"label\":\"Gender\",\"value\":\"Male\"},{\"type\":\"file\",\"label\":\"Image\",\"value\":\"uploads\\/verification_form\\/CRWqFifcbKqibNzllBhEyUSkV6m1viknGXMEhtiW.png\"}]', '1', '78.40', NULL, NULL, NULL, NULL, '0', '2018-10-07 10:12:57', '2020-01-26 09:51:11');

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

DROP TABLE IF EXISTS `shops`;
CREATE TABLE `shops` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `name` varchar(200) DEFAULT NULL,
  `logo` varchar(255) DEFAULT NULL,
  `sliders` longtext DEFAULT NULL,
  `top_banner` varchar(191) DEFAULT NULL,
  `banner_full_width_1` varchar(191) DEFAULT NULL,
  `banners_half_width` varchar(191) DEFAULT NULL,
  `banner_full_width_2` varchar(191) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `address` varchar(500) DEFAULT NULL,
  `rating` double(3,2) NOT NULL DEFAULT 0.00,
  `num_of_reviews` int(11) NOT NULL DEFAULT 0,
  `num_of_sale` int(11) NOT NULL DEFAULT 0,
  `seller_package_id` int(11) DEFAULT NULL,
  `product_upload_limit` int(11) NOT NULL DEFAULT 0,
  `package_invalid_at` date DEFAULT NULL,
  `verification_status` int(1) NOT NULL DEFAULT 0,
  `verification_info` longtext DEFAULT NULL,
  `cash_on_delivery_status` int(1) NOT NULL DEFAULT 0,
  `admin_to_pay` double(20,2) NOT NULL DEFAULT 0.00,
  `facebook` varchar(255) DEFAULT NULL,
  `instagram` varchar(255) DEFAULT NULL,
  `google` varchar(255) DEFAULT NULL,
  `twitter` varchar(255) DEFAULT NULL,
  `youtube` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `meta_title` varchar(255) DEFAULT NULL,
  `meta_description` text DEFAULT NULL,
  `pick_up_point_id` text DEFAULT NULL,
  `shipping_cost` double(20,2) NOT NULL DEFAULT 0.00,
  `commission_percentage` double(8,2) NOT NULL DEFAULT 0.00,
  `delivery_pickup_latitude` float(17,15) DEFAULT NULL,
  `delivery_pickup_longitude` float(17,15) DEFAULT NULL,
  `bank_name` varchar(255) DEFAULT NULL,
  `bank_acc_name` varchar(200) DEFAULT NULL,
  `bank_acc_no` varchar(50) DEFAULT NULL,
  `bank_routing_no` int(50) DEFAULT NULL,
  `bank_payment_status` int(11) NOT NULL DEFAULT 0,
  `top_banner_image` longtext DEFAULT NULL,
  `top_banner_link` longtext DEFAULT NULL,
  `slider_images` longtext DEFAULT NULL,
  `slider_links` longtext DEFAULT NULL,
  `banner_full_width_1_images` longtext DEFAULT NULL,
  `banner_full_width_1_links` longtext DEFAULT NULL,
  `banners_half_width_images` longtext DEFAULT NULL,
  `banners_half_width_links` longtext DEFAULT NULL,
  `banner_full_width_2_images` longtext DEFAULT NULL,
  `banner_full_width_2_links` longtext DEFAULT NULL,
  `custom_followers` int(11) DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `shops`
-- ----------------------------------------

INSERT INTO `shops` (`id`, `user_id`, `name`, `logo`, `sliders`, `top_banner`, `banner_full_width_1`, `banners_half_width`, `banner_full_width_2`, `phone`, `address`, `rating`, `num_of_reviews`, `num_of_sale`, `seller_package_id`, `product_upload_limit`, `package_invalid_at`, `verification_status`, `verification_info`, `cash_on_delivery_status`, `admin_to_pay`, `facebook`, `instagram`, `google`, `twitter`, `youtube`, `slug`, `meta_title`, `meta_description`, `pick_up_point_id`, `shipping_cost`, `commission_percentage`, `delivery_pickup_latitude`, `delivery_pickup_longitude`, `bank_name`, `bank_acc_name`, `bank_acc_no`, `bank_routing_no`, `bank_payment_status`, `top_banner_image`, `top_banner_link`, `slider_images`, `slider_links`, `banner_full_width_1_images`, `banner_full_width_1_links`, `banners_half_width_images`, `banners_half_width_links`, `banner_full_width_2_images`, `banner_full_width_2_links`, `custom_followers`, `created_at`, `updated_at`) VALUES
('6', '15', 'grettasonedge', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1 Burn Heads Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'grettasonedge', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-09-01 11:10:08', '2025-09-09 21:22:27'),
('7', '17', 'pugiwjmia', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '61 Dean Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'pugiwjmia', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-10-09 14:43:51', '2025-10-09 14:43:51'),
('8', '18', 'desporteeieza7', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '4 Stoke Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'desporteeieza7', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-10-12 20:30:21', '2025-10-12 20:30:21'),
('9', '20', 'mrsticky', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '39 Cliffe Lane South', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'mrsticky', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-10-16 19:23:00', '2025-10-16 19:23:00'),
('10', '21', '16immenseballs', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Sherborne Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, '16immenseballs', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-10-16 20:20:13', '2025-10-16 20:20:13'),
('11', '23', '2006architectwilton', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '32 Lansdowne Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, '2006architectwilton', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-10-20 13:06:20', '2025-10-20 13:06:20'),
('12', '24', 'counsellor1967', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '31 Somerton Avenue', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'counsellor1967', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-11-11 14:51:58', '2025-11-11 14:51:58'),
('13', '25', 'princecharles1968', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '5 Pier Street', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'princecharles1968', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-11-14 23:24:57', '2025-11-14 23:24:57'),
('14', '26', 'xboxemulator1974', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '19A Leicester Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'xboxemulator1974', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-11-15 23:05:32', '2025-11-15 23:05:32'),
('15', '27', 'missttiny', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Station Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'missttiny', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-11-22 15:13:01', '2025-11-22 15:13:01'),
('16', '28', 'atlastvo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1 Charlemont Close', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'atlastvo', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-12-07 14:29:09', '2025-12-07 14:29:09'),
('17', '29', 'raspydamagingceline', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '47 Beaconhill Drive', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'raspydamagingceline', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2025-12-23 03:32:53', '2025-12-23 03:32:53'),
('18', '30', 'goldfishcamba', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2 Dorset Street', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'goldfishcamba', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-01-05 12:02:41', '2026-01-05 12:02:41'),
('19', '31', '2more4uw', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '15 Middleton Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, '2more4uw', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-01-05 13:08:38', '2026-01-05 13:08:38'),
('20', '32', 'steviesfruit', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Kidman Close', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'steviesfruit', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-02-01 15:02:26', '2026-02-01 15:02:26'),
('21', '33', '4grotatingproxies687', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '7 Old Malthouse Court Brewery Walk', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, '4grotatingproxies687', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-02-01 20:04:00', '2026-02-01 20:04:00'),
('22', '34', '60lupekincaide', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '24 Mill Crescent', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, '60lupekincaide', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-02-02 13:00:47', '2026-02-02 13:00:47'),
('23', '35', 'nocountry4u40', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '6 Brines Orchard', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'nocountry4u40', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-02-16 12:28:03', '2026-02-16 12:28:03'),
('24', '36', 'gainfuleducatedflynn232', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '13 Southey Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'gainfuleducatedflynn232', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-02-18 22:27:52', '2026-02-18 22:27:52'),
('25', '37', '4grotatingmobileproxy1959', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '10 Underhill Drive', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, '4grotatingmobileproxy1959', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-03-01 14:41:05', '2026-03-01 14:41:05'),
('26', '38', 'shakygreedypamala', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '38 Essex Drive', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'shakygreedypamala', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-03-09 13:11:54', '2026-03-09 13:11:54'),
('27', '39', 'hamster717', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '98 Stoneymoor Drive', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'hamster717', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-03-16 18:59:05', '2026-03-16 18:59:05'),
('28', '40', 'vedapocket42', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '4 Pant Teg', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'vedapocket42', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-03-23 12:57:20', '2026-03-23 12:57:20'),
('29', '42', 'lizardsnumberone', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '3 Brynmawr Terrace', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'lizardsnumberone', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-04-15 23:55:29', '2026-04-15 23:55:29'),
('30', '43', 'riggles638', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Newquay Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'riggles638', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-05-04 21:43:33', '2026-05-04 21:43:33'),
('31', '45', 'themonthlycreepy301', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2 River View Close', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'themonthlycreepy301', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-05-25 14:05:50', '2026-05-25 14:05:50'),
('32', '47', 'besthistorypodcasts', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '9 St Catherines Road', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'besthistorypodcasts', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-05-27 11:17:20', '2026-05-27 11:17:20'),
('33', '48', 'indianaleaf781', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1 River View', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'indianaleaf781', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-06-16 16:23:34', '2026-06-16 16:23:34'),
('34', '51', 'ernesthemingwaysnews', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '5 Front Street North', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'ernesthemingwaysnews', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-06-23 08:57:21', '2026-06-23 08:57:21'),
('35', '52', 'keenanlrfosf', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '3 The Maples', '0.00', '0', '0', NULL, '0', NULL, '0', NULL, '0', '0.00', NULL, NULL, NULL, NULL, NULL, 'keenanlrfosf', NULL, NULL, NULL, '0.00', '0.00', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', '2026-06-29 20:20:08', '2026-06-29 20:20:08');

-- ----------------------------------------
-- Table structure for `size_chart_details`
-- ----------------------------------------

DROP TABLE IF EXISTS `size_chart_details`;
CREATE TABLE `size_chart_details` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `size_chart_id` int(20) NOT NULL,
  `measurement_point_id` int(20) NOT NULL,
  `attribute_value_id` int(20) NOT NULL,
  `inch_value` varchar(191) DEFAULT NULL,
  `cen_value` varchar(191) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `size_chart_details`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `size_charts`
-- ----------------------------------------

DROP TABLE IF EXISTS `size_charts`;
CREATE TABLE `size_charts` (
  `id` int(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `category_id` int(11) NOT NULL,
  `fit_type` varchar(191) DEFAULT NULL,
  `stretch_type` varchar(191) DEFAULT NULL,
  `photos` varchar(191) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `measurement_points` varchar(255) NOT NULL,
  `size_options` varchar(255) NOT NULL,
  `measurement_option` varchar(191) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `category_id` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `size_charts`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `staff`;
CREATE TABLE `staff` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `role_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `staff`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `states`
-- ----------------------------------------

DROP TABLE IF EXISTS `states`;
CREATE TABLE `states` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `country_id` int(11) NOT NULL,
  `status` int(11) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4122 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `states`
-- ----------------------------------------

INSERT INTO `states` (`id`, `name`, `country_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES
('1', 'Andaman and Nicobar Islands', '101', '1', '2021-04-06 06:41:20', '2021-10-11 06:13:52', NULL),
('2', 'Andhra Pradesh', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3', 'Arunachal Pradesh', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4', 'Assam', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('5', 'Bihar', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('6', 'Chandigarh', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('7', 'Chhattisgarh', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('8', 'Dadra and Nagar Haveli', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('9', 'Daman and Diu', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('10', 'Delhi', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('11', 'Goa', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('12', 'Gujarat', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('13', 'Haryana', '101', '1', '2021-04-06 06:41:20', '2021-10-11 06:23:13', NULL),
('14', 'Himachal Pradesh', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('15', 'Jammu and Kashmir', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('16', 'Jharkhand', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('17', 'Karnataka', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('18', 'Kenmore', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('19', 'Kerala', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('20', 'Lakshadweep', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('21', 'Madhya Pradesh', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('22', 'Maharashtra', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('23', 'Manipur', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('24', 'Meghalaya', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('25', 'Mizoram', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('26', 'Nagaland', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('27', 'Narora', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('28', 'Natwar', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('29', 'Odisha', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('30', 'Paschim Medinipur', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('31', 'Pondicherry', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('32', 'Punjab', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('33', 'Rajasthan', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('34', 'Sikkim', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('35', 'Tamil Nadu', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('36', 'Telangana', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('37', 'Tripura', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('38', 'Uttar Pradesh', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('39', 'Uttarakhand', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('40', 'Vaishali', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('41', 'West Bengal', '101', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('42', 'Badakhshan', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('43', 'Badgis', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('44', 'Baglan', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('45', 'Balkh', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('46', 'Bamiyan', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('47', 'Farah', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('48', 'Faryab', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('49', 'Gawr', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('50', 'Gazni', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('51', 'Herat', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('52', 'Hilmand', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('53', 'Jawzjan', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('54', 'Kabul', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('55', 'Kapisa', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('56', 'Khawst', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('57', 'Kunar', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('58', 'Lagman', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('59', 'Lawghar', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('60', 'Nangarhar', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('61', 'Nimruz', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('62', 'Nuristan', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('63', 'Paktika', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('64', 'Paktiya', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('65', 'Parwan', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('66', 'Qandahar', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('67', 'Qunduz', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('68', 'Samangan', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('69', 'Sar-e Pul', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('70', 'Takhar', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('71', 'Uruzgan', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('72', 'Wardag', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('73', 'Zabul', '1', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('74', 'Berat', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('75', 'Bulqize', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('76', 'Delvine', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('77', 'Devoll', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('78', 'Dibre', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('79', 'Durres', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('80', 'Elbasan', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('81', 'Fier', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('82', 'Gjirokaster', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('83', 'Gramsh', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('84', 'Has', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('85', 'Kavaje', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('86', 'Kolonje', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('87', 'Korce', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('88', 'Kruje', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('89', 'Kucove', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('90', 'Kukes', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('91', 'Kurbin', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('92', 'Lezhe', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('93', 'Librazhd', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('94', 'Lushnje', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('95', 'Mallakaster', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('96', 'Malsi e Madhe', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('97', 'Mat', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('98', 'Mirdite', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('99', 'Peqin', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('100', 'Permet', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('101', 'Pogradec', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('102', 'Puke', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('103', 'Sarande', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('104', 'Shkoder', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('105', 'Skrapar', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('106', 'Tepelene', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('107', 'Tirane', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('108', 'Tropoje', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('109', 'Vlore', '2', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('110', '\'Ayn Daflah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('111', '\'Ayn Tamushanat', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('112', 'Adrar', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('113', 'Algiers', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('114', 'Annabah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('115', 'Bashshar', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('116', 'Batnah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('117', 'Bijayah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('118', 'Biskrah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('119', 'Blidah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('120', 'Buirah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('121', 'Bumardas', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('122', 'Burj Bu Arririj', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('123', 'Ghalizan', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('124', 'Ghardayah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('125', 'Ilizi', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('126', 'Jijili', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('127', 'Jilfah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('128', 'Khanshalah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('129', 'Masilah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('130', 'Midyah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('131', 'Milah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('132', 'Muaskar', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('133', 'Mustaghanam', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('134', 'Naama', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('135', 'Oran', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('136', 'Ouargla', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('137', 'Qalmah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('138', 'Qustantinah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('139', 'Sakikdah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('140', 'Satif', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('141', 'Sayda\'', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('142', 'Sidi ban-al-\'Abbas', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('143', 'Suq Ahras', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('144', 'Tamanghasat', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('145', 'Tibazah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('146', 'Tibissah', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('147', 'Tilimsan', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('148', 'Tinduf', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('149', 'Tisamsilt', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('150', 'Tiyarat', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('151', 'Tizi Wazu', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('152', 'Umm-al-Bawaghi', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('153', 'Wahran', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('154', 'Warqla', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('155', 'Wilaya d Alger', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('156', 'Wilaya de Bejaia', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('157', 'Wilaya de Constantine', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('158', 'al-Aghwat', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('159', 'al-Bayadh', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('160', 'al-Jaza\'ir', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('161', 'al-Wad', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('162', 'ash-Shalif', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('163', 'at-Tarif', '3', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('164', 'Eastern', '4', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('165', 'Manu\'a', '4', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('166', 'Swains Island', '4', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('167', 'Western', '4', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('168', 'Andorra la Vella', '5', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('169', 'Canillo', '5', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('170', 'Encamp', '5', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('171', 'La Massana', '5', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('172', 'Les Escaldes', '5', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('173', 'Ordino', '5', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('174', 'Sant Julia de Loria', '5', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('175', 'Bengo', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('176', 'Benguela', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('177', 'Bie', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('178', 'Cabinda', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('179', 'Cunene', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('180', 'Huambo', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('181', 'Huila', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('182', 'Kuando-Kubango', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('183', 'Kwanza Norte', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('184', 'Kwanza Sul', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('185', 'Luanda', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('186', 'Lunda Norte', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('187', 'Lunda Sul', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('188', 'Malanje', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('189', 'Moxico', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('190', 'Namibe', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('191', 'Uige', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('192', 'Zaire', '6', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('193', 'Other Provinces', '7', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('194', 'Sector claimed by Argentina/Ch', '8', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('195', 'Sector claimed by Argentina/UK', '8', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('196', 'Sector claimed by Australia', '8', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('197', 'Sector claimed by France', '8', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('198', 'Sector claimed by New Zealand', '8', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('199', 'Sector claimed by Norway', '8', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('200', 'Unclaimed Sector', '8', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('201', 'Barbuda', '9', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('202', 'Saint George', '9', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('203', 'Saint John', '9', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('204', 'Saint Mary', '9', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('205', 'Saint Paul', '9', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('206', 'Saint Peter', '9', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('207', 'Saint Philip', '9', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('208', 'Buenos Aires', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('209', 'Catamarca', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('210', 'Chaco', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('211', 'Chubut', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('212', 'Cordoba', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('213', 'Corrientes', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('214', 'Distrito Federal', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('215', 'Entre Rios', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('216', 'Formosa', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('217', 'Jujuy', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('218', 'La Pampa', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('219', 'La Rioja', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('220', 'Mendoza', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('221', 'Misiones', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('222', 'Neuquen', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('223', 'Rio Negro', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('224', 'Salta', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('225', 'San Juan', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('226', 'San Luis', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('227', 'Santa Cruz', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('228', 'Santa Fe', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('229', 'Santiago del Estero', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('230', 'Tierra del Fuego', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('231', 'Tucuman', '10', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('232', 'Aragatsotn', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('233', 'Ararat', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('234', 'Armavir', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('235', 'Gegharkunik', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('236', 'Kotaik', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('237', 'Lori', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('238', 'Shirak', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('239', 'Stepanakert', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('240', 'Syunik', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('241', 'Tavush', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('242', 'Vayots Dzor', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('243', 'Yerevan', '11', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('244', 'Aruba', '12', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('245', 'Auckland', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('246', 'Australian Capital Territory', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('247', 'Balgowlah', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('248', 'Balmain', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('249', 'Bankstown', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('250', 'Baulkham Hills', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('251', 'Bonnet Bay', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('252', 'Camberwell', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('253', 'Carole Park', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('254', 'Castle Hill', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('255', 'Caulfield', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('256', 'Chatswood', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('257', 'Cheltenham', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('258', 'Cherrybrook', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('259', 'Clayton', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('260', 'Collingwood', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('261', 'Frenchs Forest', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('262', 'Hawthorn', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('263', 'Jannnali', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('264', 'Knoxfield', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('265', 'Melbourne', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('266', 'New South Wales', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('267', 'Northern Territory', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('268', 'Perth', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('269', 'Queensland', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('270', 'South Australia', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('271', 'Tasmania', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('272', 'Templestowe', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('273', 'Victoria', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('274', 'Werribee south', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('275', 'Western Australia', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('276', 'Wheeler', '13', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('277', 'Bundesland Salzburg', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('278', 'Bundesland Steiermark', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('279', 'Bundesland Tirol', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('280', 'Burgenland', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('281', 'Carinthia', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('282', 'Karnten', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('283', 'Liezen', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('284', 'Lower Austria', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('285', 'Niederosterreich', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('286', 'Oberosterreich', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('287', 'Salzburg', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('288', 'Schleswig-Holstein', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('289', 'Steiermark', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('290', 'Styria', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('291', 'Tirol', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('292', 'Upper Austria', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('293', 'Vorarlberg', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('294', 'Wien', '14', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('295', 'Abseron', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('296', 'Baki Sahari', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('297', 'Ganca', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('298', 'Ganja', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('299', 'Kalbacar', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('300', 'Lankaran', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('301', 'Mil-Qarabax', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('302', 'Mugan-Salyan', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('303', 'Nagorni-Qarabax', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('304', 'Naxcivan', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('305', 'Priaraks', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('306', 'Qazax', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('307', 'Saki', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('308', 'Sirvan', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('309', 'Xacmaz', '15', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('310', 'Abaco', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('311', 'Acklins Island', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('312', 'Andros', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('313', 'Berry Islands', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('314', 'Biminis', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('315', 'Cat Island', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('316', 'Crooked Island', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('317', 'Eleuthera', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('318', 'Exuma and Cays', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('319', 'Grand Bahama', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('320', 'Inagua Islands', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('321', 'Long Island', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('322', 'Mayaguana', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('323', 'New Providence', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('324', 'Ragged Island', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('325', 'Rum Cay', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('326', 'San Salvador', '16', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('327', '\'Isa', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('328', 'Badiyah', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('329', 'Hidd', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('330', 'Jidd Hafs', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('331', 'Mahama', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('332', 'Manama', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('333', 'Sitrah', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('334', 'al-Manamah', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('335', 'al-Muharraq', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('336', 'ar-Rifa\'a', '17', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('337', 'Bagar Hat', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('338', 'Bandarban', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('339', 'Barguna', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('340', 'Barisal', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('341', 'Bhola', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('342', 'Bogora', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('343', 'Brahman Bariya', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('344', 'Chandpur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('345', 'Chattagam', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('346', 'Chittagong Division', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('347', 'Chuadanga', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('348', 'Dhaka', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('349', 'Dinajpur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('350', 'Faridpur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('351', 'Feni', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('352', 'Gaybanda', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('353', 'Gazipur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('354', 'Gopalganj', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('355', 'Habiganj', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('356', 'Jaipur Hat', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('357', 'Jamalpur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('358', 'Jessor', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('359', 'Jhalakati', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('360', 'Jhanaydah', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('361', 'Khagrachhari', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('362', 'Khulna', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('363', 'Kishorganj', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('364', 'Koks Bazar', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('365', 'Komilla', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('366', 'Kurigram', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('367', 'Kushtiya', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('368', 'Lakshmipur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('369', 'Lalmanir Hat', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('370', 'Madaripur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('371', 'Magura', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('372', 'Maimansingh', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('373', 'Manikganj', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('374', 'Maulvi Bazar', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('375', 'Meherpur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('376', 'Munshiganj', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('377', 'Naral', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('378', 'Narayanganj', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('379', 'Narsingdi', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('380', 'Nator', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('381', 'Naugaon', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('382', 'Nawabganj', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('383', 'Netrakona', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('384', 'Nilphamari', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('385', 'Noakhali', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('386', 'Pabna', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('387', 'Panchagarh', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('388', 'Patuakhali', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('389', 'Pirojpur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('390', 'Rajbari', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('391', 'Rajshahi', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('392', 'Rangamati', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('393', 'Rangpur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('394', 'Satkhira', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('395', 'Shariatpur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('396', 'Sherpur', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('397', 'Silhat', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('398', 'Sirajganj', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('399', 'Sunamganj', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('400', 'Tangayal', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('401', 'Thakurgaon', '18', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('402', 'Christ Church', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('403', 'Saint Andrew', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('404', 'Saint George', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('405', 'Saint James', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('406', 'Saint John', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('407', 'Saint Joseph', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('408', 'Saint Lucy', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('409', 'Saint Michael', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('410', 'Saint Peter', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('411', 'Saint Philip', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('412', 'Saint Thomas', '19', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('413', 'Brest', '20', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('414', 'Homjel\'', '20', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('415', 'Hrodna', '20', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('416', 'Mahiljow', '20', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('417', 'Mahilyowskaya Voblasts', '20', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('418', 'Minsk', '20', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('419', 'Minskaja Voblasts\'', '20', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('420', 'Petrik', '20', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('421', 'Vicebsk', '20', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('422', 'Antwerpen', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('423', 'Berchem', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('424', 'Brabant', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('425', 'Brabant Wallon', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('426', 'Brussel', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('427', 'East Flanders', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('428', 'Hainaut', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('429', 'Liege', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('430', 'Limburg', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('431', 'Luxembourg', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('432', 'Namur', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('433', 'Ontario', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('434', 'Oost-Vlaanderen', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('435', 'Provincie Brabant', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('436', 'Vlaams-Brabant', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('437', 'Wallonne', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('438', 'West-Vlaanderen', '21', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('439', 'Belize', '22', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('440', 'Cayo', '22', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('441', 'Corozal', '22', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('442', 'Orange Walk', '22', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('443', 'Stann Creek', '22', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('444', 'Toledo', '22', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('445', 'Alibori', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('446', 'Atacora', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('447', 'Atlantique', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('448', 'Borgou', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('449', 'Collines', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('450', 'Couffo', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('451', 'Donga', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('452', 'Littoral', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('453', 'Mono', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('454', 'Oueme', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('455', 'Plateau', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('456', 'Zou', '23', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('457', 'Hamilton', '24', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('458', 'Saint George', '24', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('459', 'Bumthang', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('460', 'Chhukha', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('461', 'Chirang', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('462', 'Daga', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('463', 'Geylegphug', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('464', 'Ha', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('465', 'Lhuntshi', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('466', 'Mongar', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('467', 'Pemagatsel', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('468', 'Punakha', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('469', 'Rinpung', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('470', 'Samchi', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('471', 'Samdrup Jongkhar', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('472', 'Shemgang', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('473', 'Tashigang', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('474', 'Timphu', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('475', 'Tongsa', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('476', 'Wangdiphodrang', '25', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('477', 'Beni', '26', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('478', 'Chuquisaca', '26', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('479', 'Cochabamba', '26', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('480', 'La Paz', '26', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('481', 'Oruro', '26', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('482', 'Pando', '26', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('483', 'Potosi', '26', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('484', 'Santa Cruz', '26', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('485', 'Tarija', '26', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('486', 'Federacija Bosna i Hercegovina', '27', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('487', 'Republika Srpska', '27', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('488', 'Central Bobonong', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('489', 'Central Boteti', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('490', 'Central Mahalapye', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('491', 'Central Serowe-Palapye', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('492', 'Central Tutume', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('493', 'Chobe', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('494', 'Francistown', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('495', 'Gaborone', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('496', 'Ghanzi', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('497', 'Jwaneng', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('498', 'Kgalagadi North', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('499', 'Kgalagadi South', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('500', 'Kgatleng', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('501', 'Kweneng', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('502', 'Lobatse', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('503', 'Ngamiland', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('504', 'Ngwaketse', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('505', 'North East', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('506', 'Okavango', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('507', 'Orapa', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('508', 'Selibe Phikwe', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('509', 'South East', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('510', 'Sowa', '28', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('511', 'Bouvet Island', '29', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('512', 'Acre', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('513', 'Alagoas', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('514', 'Amapa', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('515', 'Amazonas', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('516', 'Bahia', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('517', 'Ceara', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('518', 'Distrito Federal', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('519', 'Espirito Santo', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('520', 'Estado de Sao Paulo', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('521', 'Goias', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('522', 'Maranhao', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('523', 'Mato Grosso', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('524', 'Mato Grosso do Sul', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('525', 'Minas Gerais', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('526', 'Para', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('527', 'Paraiba', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('528', 'Parana', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('529', 'Pernambuco', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('530', 'Piaui', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('531', 'Rio Grande do Norte', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('532', 'Rio Grande do Sul', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('533', 'Rio de Janeiro', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('534', 'Rondonia', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('535', 'Roraima', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('536', 'Santa Catarina', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('537', 'Sao Paulo', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('538', 'Sergipe', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('539', 'Tocantins', '30', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('540', 'British Indian Ocean Territory', '31', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('541', 'Belait', '32', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('542', 'Brunei-Muara', '32', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('543', 'Temburong', '32', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('544', 'Tutong', '32', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('545', 'Blagoevgrad', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('546', 'Burgas', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('547', 'Dobrich', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('548', 'Gabrovo', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('549', 'Haskovo', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('550', 'Jambol', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('551', 'Kardzhali', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('552', 'Kjustendil', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('553', 'Lovech', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('554', 'Montana', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('555', 'Oblast Sofiya-Grad', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('556', 'Pazardzhik', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('557', 'Pernik', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('558', 'Pleven', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('559', 'Plovdiv', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('560', 'Razgrad', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('561', 'Ruse', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('562', 'Shumen', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('563', 'Silistra', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('564', 'Sliven', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('565', 'Smoljan', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('566', 'Sofija grad', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('567', 'Sofijska oblast', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('568', 'Stara Zagora', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('569', 'Targovishte', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('570', 'Varna', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('571', 'Veliko Tarnovo', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('572', 'Vidin', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('573', 'Vraca', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('574', 'Yablaniza', '33', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('575', 'Bale', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('576', 'Bam', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('577', 'Bazega', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('578', 'Bougouriba', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('579', 'Boulgou', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('580', 'Boulkiemde', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('581', 'Comoe', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('582', 'Ganzourgou', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('583', 'Gnagna', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('584', 'Gourma', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('585', 'Houet', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('586', 'Ioba', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('587', 'Kadiogo', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('588', 'Kenedougou', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('589', 'Komandjari', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('590', 'Kompienga', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('591', 'Kossi', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('592', 'Kouritenga', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('593', 'Kourweogo', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('594', 'Leraba', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('595', 'Mouhoun', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('596', 'Nahouri', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('597', 'Namentenga', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('598', 'Noumbiel', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('599', 'Oubritenga', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('600', 'Oudalan', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('601', 'Passore', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('602', 'Poni', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('603', 'Sanguie', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('604', 'Sanmatenga', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('605', 'Seno', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('606', 'Sissili', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('607', 'Soum', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('608', 'Sourou', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('609', 'Tapoa', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('610', 'Tuy', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('611', 'Yatenga', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('612', 'Zondoma', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('613', 'Zoundweogo', '34', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('614', 'Bubanza', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('615', 'Bujumbura', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('616', 'Bururi', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('617', 'Cankuzo', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('618', 'Cibitoke', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('619', 'Gitega', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('620', 'Karuzi', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('621', 'Kayanza', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('622', 'Kirundo', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('623', 'Makamba', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('624', 'Muramvya', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('625', 'Muyinga', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('626', 'Ngozi', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('627', 'Rutana', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('628', 'Ruyigi', '35', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('629', 'Banteay Mean Chey', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('630', 'Bat Dambang', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('631', 'Kampong Cham', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('632', 'Kampong Chhnang', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('633', 'Kampong Spoeu', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('634', 'Kampong Thum', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('635', 'Kampot', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('636', 'Kandal', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('637', 'Kaoh Kong', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('638', 'Kracheh', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('639', 'Krong Kaeb', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('640', 'Krong Pailin', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('641', 'Krong Preah Sihanouk', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('642', 'Mondol Kiri', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('643', 'Otdar Mean Chey', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('644', 'Phnum Penh', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('645', 'Pousat', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('646', 'Preah Vihear', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('647', 'Prey Veaeng', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('648', 'Rotanak Kiri', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('649', 'Siem Reab', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('650', 'Stueng Traeng', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('651', 'Svay Rieng', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('652', 'Takaev', '36', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('653', 'Adamaoua', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('654', 'Centre', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('655', 'Est', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('656', 'Littoral', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('657', 'Nord', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('658', 'Nord Extreme', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('659', 'Nordouest', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('660', 'Ouest', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('661', 'Sud', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('662', 'Sudouest', '37', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('663', 'Alberta', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('664', 'British Columbia', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('665', 'Manitoba', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('666', 'New Brunswick', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('667', 'Newfoundland and Labrador', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('668', 'Northwest Territories', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('669', 'Nova Scotia', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('670', 'Nunavut', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('671', 'Ontario', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('672', 'Prince Edward Island', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('673', 'Quebec', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('674', 'Saskatchewan', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('675', 'Yukon', '38', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('676', 'Boavista', '39', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('677', 'Brava', '39', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('678', 'Fogo', '39', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('679', 'Maio', '39', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('680', 'Sal', '39', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('681', 'Santo Antao', '39', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('682', 'Sao Nicolau', '39', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('683', 'Sao Tiago', '39', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('684', 'Sao Vicente', '39', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('685', 'Grand Cayman', '40', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('686', 'Bamingui-Bangoran', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('687', 'Bangui', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('688', 'Basse-Kotto', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('689', 'Haut-Mbomou', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('690', 'Haute-Kotto', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('691', 'Kemo', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('692', 'Lobaye', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('693', 'Mambere-Kadei', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('694', 'Mbomou', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('695', 'Nana-Gribizi', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('696', 'Nana-Mambere', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('697', 'Ombella Mpoko', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('698', 'Ouaka', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('699', 'Ouham', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('700', 'Ouham-Pende', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('701', 'Sangha-Mbaere', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('702', 'Vakaga', '41', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('703', 'Batha', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('704', 'Biltine', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('705', 'Bourkou-Ennedi-Tibesti', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('706', 'Chari-Baguirmi', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('707', 'Guera', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('708', 'Kanem', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('709', 'Lac', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('710', 'Logone Occidental', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('711', 'Logone Oriental', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('712', 'Mayo-Kebbi', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('713', 'Moyen-Chari', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('714', 'Ouaddai', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('715', 'Salamat', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('716', 'Tandjile', '42', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('717', 'Aisen', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('718', 'Antofagasta', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('719', 'Araucania', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('720', 'Atacama', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('721', 'Bio Bio', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('722', 'Coquimbo', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('723', 'Libertador General Bernardo O\'', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('724', 'Los Lagos', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('725', 'Magellanes', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('726', 'Maule', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('727', 'Metropolitana', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('728', 'Metropolitana de Santiago', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('729', 'Tarapaca', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('730', 'Valparaiso', '43', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('731', 'Anhui', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('734', 'Aomen', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('735', 'Beijing', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('736', 'Beijing Shi', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('737', 'Chongqing', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('738', 'Fujian', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('740', 'Gansu', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('741', 'Guangdong', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('743', 'Guangxi', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('744', 'Guizhou', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('745', 'Hainan', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('746', 'Hebei', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('747', 'Heilongjiang', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('748', 'Henan', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('749', 'Hubei', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('750', 'Hunan', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('751', 'Jiangsu', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('753', 'Jiangxi', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('754', 'Jilin', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('755', 'Liaoning', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('757', 'Nei Monggol', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('758', 'Ningxia Hui', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('759', 'Qinghai', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('760', 'Shaanxi', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('761', 'Shandong', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('763', 'Shanghai', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('764', 'Shanxi', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('765', 'Sichuan', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('766', 'Tianjin', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('767', 'Xianggang', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('768', 'Xinjiang', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('769', 'Xizang', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('770', 'Yunnan', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('771', 'Zhejiang', '44', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('773', 'Christmas Island', '45', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('774', 'Cocos (Keeling) Islands', '46', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('775', 'Amazonas', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('776', 'Antioquia', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('777', 'Arauca', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('778', 'Atlantico', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('779', 'Bogota', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('780', 'Bolivar', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('781', 'Boyaca', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('782', 'Caldas', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('783', 'Caqueta', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('784', 'Casanare', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('785', 'Cauca', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('786', 'Cesar', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('787', 'Choco', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('788', 'Cordoba', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('789', 'Cundinamarca', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('790', 'Guainia', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('791', 'Guaviare', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('792', 'Huila', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('793', 'La Guajira', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('794', 'Magdalena', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('795', 'Meta', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('796', 'Narino', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('797', 'Norte de Santander', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('798', 'Putumayo', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('799', 'Quindio', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('800', 'Risaralda', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('801', 'San Andres y Providencia', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('802', 'Santander', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('803', 'Sucre', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('804', 'Tolima', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('805', 'Valle del Cauca', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('806', 'Vaupes', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('807', 'Vichada', '47', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('808', 'Mwali', '48', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('809', 'Njazidja', '48', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('810', 'Nzwani', '48', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('811', 'Bouenza', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('812', 'Brazzaville', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('813', 'Cuvette', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('814', 'Kouilou', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('815', 'Lekoumou', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('816', 'Likouala', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('817', 'Niari', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('818', 'Plateaux', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('819', 'Pool', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('820', 'Sangha', '49', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('821', 'Bandundu', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('822', 'Bas-Congo', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('823', 'Equateur', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('824', 'Haut-Congo', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('825', 'Kasai-Occidental', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('826', 'Kasai-Oriental', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('827', 'Katanga', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('828', 'Kinshasa', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('829', 'Maniema', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('830', 'Nord-Kivu', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('831', 'Sud-Kivu', '50', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('832', 'Aitutaki', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('833', 'Atiu', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('834', 'Mangaia', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('835', 'Manihiki', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('836', 'Mauke', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('837', 'Mitiaro', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('838', 'Nassau', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('839', 'Pukapuka', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('840', 'Rakahanga', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('841', 'Rarotonga', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('842', 'Tongareva', '51', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('843', 'Alajuela', '52', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('844', 'Cartago', '52', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('845', 'Guanacaste', '52', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('846', 'Heredia', '52', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('847', 'Limon', '52', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('848', 'Puntarenas', '52', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('849', 'San Jose', '52', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('850', 'Abidjan', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('851', 'Agneby', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('852', 'Bafing', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('853', 'Denguele', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('854', 'Dix-huit Montagnes', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('855', 'Fromager', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('856', 'Haut-Sassandra', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('857', 'Lacs', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('858', 'Lagunes', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('859', 'Marahoue', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('860', 'Moyen-Cavally', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('861', 'Moyen-Comoe', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('862', 'N\'zi-Comoe', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('863', 'Sassandra', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('864', 'Savanes', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('865', 'Sud-Bandama', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('866', 'Sud-Comoe', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('867', 'Vallee du Bandama', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('868', 'Worodougou', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('869', 'Zanzan', '53', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('870', 'Bjelovar-Bilogora', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('871', 'Dubrovnik-Neretva', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('872', 'Grad Zagreb', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('873', 'Istra', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('874', 'Karlovac', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('875', 'Koprivnica-Krizhevci', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('876', 'Krapina-Zagorje', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('877', 'Lika-Senj', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('878', 'Medhimurje', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('879', 'Medimurska Zupanija', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('880', 'Osijek-Baranja', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('881', 'Osjecko-Baranjska Zupanija', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('882', 'Pozhega-Slavonija', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('883', 'Primorje-Gorski Kotar', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('884', 'Shibenik-Knin', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('885', 'Sisak-Moslavina', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('886', 'Slavonski Brod-Posavina', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('887', 'Split-Dalmacija', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('888', 'Varazhdin', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('889', 'Virovitica-Podravina', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('890', 'Vukovar-Srijem', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('891', 'Zadar', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('892', 'Zagreb', '54', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('893', 'Camaguey', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('894', 'Ciego de Avila', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('895', 'Cienfuegos', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('896', 'Ciudad de la Habana', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('897', 'Granma', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('898', 'Guantanamo', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('899', 'Habana', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('900', 'Holguin', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('901', 'Isla de la Juventud', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('902', 'La Habana', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('903', 'Las Tunas', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('904', 'Matanzas', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('905', 'Pinar del Rio', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('906', 'Sancti Spiritus', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('907', 'Santiago de Cuba', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('908', 'Villa Clara', '55', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('909', 'Government controlled area', '56', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('910', 'Limassol', '56', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('911', 'Nicosia District', '56', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('912', 'Paphos', '56', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('913', 'Turkish controlled area', '56', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('914', 'Central Bohemian', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('915', 'Frycovice', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('916', 'Jihocesky Kraj', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('917', 'Jihochesky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('918', 'Jihomoravsky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('919', 'Karlovarsky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('920', 'Klecany', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('921', 'Kralovehradecky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('922', 'Liberecky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('923', 'Lipov', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('924', 'Moravskoslezsky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('925', 'Olomoucky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('926', 'Olomoucky Kraj', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('927', 'Pardubicky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('928', 'Plzensky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('929', 'Praha', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('930', 'Rajhrad', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('931', 'Smirice', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('932', 'South Moravian', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('933', 'Straz nad Nisou', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('934', 'Stredochesky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('935', 'Unicov', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('936', 'Ustecky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('937', 'Valletta', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('938', 'Velesin', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('939', 'Vysochina', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('940', 'Zlinsky', '57', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('941', 'Arhus', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('942', 'Bornholm', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('943', 'Frederiksborg', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('944', 'Fyn', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('945', 'Hovedstaden', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('946', 'Kobenhavn', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('947', 'Kobenhavns Amt', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('948', 'Kobenhavns Kommune', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('949', 'Nordjylland', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('950', 'Ribe', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('951', 'Ringkobing', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('952', 'Roervig', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('953', 'Roskilde', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('954', 'Roslev', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('955', 'Sjaelland', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('956', 'Soeborg', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('957', 'Sonderjylland', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('958', 'Storstrom', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('959', 'Syddanmark', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('960', 'Toelloese', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('961', 'Vejle', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('962', 'Vestsjalland', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('963', 'Viborg', '58', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('964', '\'Ali Sabih', '59', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('965', 'Dikhil', '59', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('966', 'Jibuti', '59', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('967', 'Tajurah', '59', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('968', 'Ubuk', '59', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('969', 'Saint Andrew', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('970', 'Saint David', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('971', 'Saint George', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('972', 'Saint John', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('973', 'Saint Joseph', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('974', 'Saint Luke', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('975', 'Saint Mark', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('976', 'Saint Patrick', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('977', 'Saint Paul', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('978', 'Saint Peter', '60', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('979', 'Azua', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('980', 'Bahoruco', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('981', 'Barahona', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('982', 'Dajabon', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('983', 'Distrito Nacional', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('984', 'Duarte', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('985', 'El Seybo', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('986', 'Elias Pina', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('987', 'Espaillat', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('988', 'Hato Mayor', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('989', 'Independencia', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('990', 'La Altagracia', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('991', 'La Romana', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('992', 'La Vega', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('993', 'Maria Trinidad Sanchez', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('994', 'Monsenor Nouel', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('995', 'Monte Cristi', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('996', 'Monte Plata', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('997', 'Pedernales', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('998', 'Peravia', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('999', 'Puerto Plata', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1000', 'Salcedo', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1001', 'Samana', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1002', 'San Cristobal', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1003', 'San Juan', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1004', 'San Pedro de Macoris', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1005', 'Sanchez Ramirez', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1006', 'Santiago', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1007', 'Santiago Rodriguez', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1008', 'Valverde', '61', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1009', 'Aileu', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1010', 'Ainaro', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1011', 'Ambeno', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1012', 'Baucau', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1013', 'Bobonaro', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1014', 'Cova Lima', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1015', 'Dili', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1016', 'Ermera', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1017', 'Lautem', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1018', 'Liquica', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1019', 'Manatuto', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1020', 'Manufahi', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1021', 'Viqueque', '62', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1022', 'Azuay', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1023', 'Bolivar', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1024', 'Canar', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1025', 'Carchi', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1026', 'Chimborazo', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1027', 'Cotopaxi', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1028', 'El Oro', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1029', 'Esmeraldas', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1030', 'Galapagos', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1031', 'Guayas', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1032', 'Imbabura', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1033', 'Loja', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1034', 'Los Rios', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1035', 'Manabi', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1036', 'Morona Santiago', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1037', 'Napo', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1038', 'Orellana', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1039', 'Pastaza', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1040', 'Pichincha', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1041', 'Sucumbios', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1042', 'Tungurahua', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1043', 'Zamora Chinchipe', '63', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1044', 'Aswan', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1045', 'Asyut', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1046', 'Bani Suwayf', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1047', 'Bur Sa\'id', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1048', 'Cairo', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1049', 'Dumyat', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1050', 'Kafr-ash-Shaykh', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1051', 'Matruh', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1052', 'Muhafazat ad Daqahliyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1053', 'Muhafazat al Fayyum', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1054', 'Muhafazat al Gharbiyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1055', 'Muhafazat al Iskandariyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1056', 'Muhafazat al Qahirah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1057', 'Qina', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1058', 'Sawhaj', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1059', 'Sina al-Janubiyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1060', 'Sina ash-Shamaliyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1061', 'ad-Daqahliyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1062', 'al-Bahr-al-Ahmar', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1063', 'al-Buhayrah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1064', 'al-Fayyum', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1065', 'al-Gharbiyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1066', 'al-Iskandariyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1067', 'al-Ismailiyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1068', 'al-Jizah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1069', 'al-Minufiyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1070', 'al-Minya', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1071', 'al-Qahira', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1072', 'al-Qalyubiyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1073', 'al-Uqsur', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1074', 'al-Wadi al-Jadid', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1075', 'as-Suways', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1076', 'ash-Sharqiyah', '64', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1077', 'Ahuachapan', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1078', 'Cabanas', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1079', 'Chalatenango', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1080', 'Cuscatlan', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1081', 'La Libertad', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1082', 'La Paz', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1083', 'La Union', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1084', 'Morazan', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1085', 'San Miguel', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1086', 'San Salvador', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1087', 'San Vicente', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1088', 'Santa Ana', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1089', 'Sonsonate', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1090', 'Usulutan', '65', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1091', 'Annobon', '66', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1092', 'Bioko Norte', '66', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1093', 'Bioko Sur', '66', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1094', 'Centro Sur', '66', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1095', 'Kie-Ntem', '66', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1096', 'Litoral', '66', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1097', 'Wele-Nzas', '66', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1098', 'Anseba', '67', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1099', 'Debub', '67', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1100', 'Debub-Keih-Bahri', '67', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1101', 'Gash-Barka', '67', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1102', 'Maekel', '67', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1103', 'Semien-Keih-Bahri', '67', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1104', 'Harju', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1105', 'Hiiu', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1106', 'Ida-Viru', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1107', 'Jarva', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1108', 'Jogeva', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1109', 'Laane', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1110', 'Laane-Viru', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1111', 'Parnu', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1112', 'Polva', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1113', 'Rapla', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1114', 'Saare', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1115', 'Tartu', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1116', 'Valga', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1117', 'Viljandi', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1118', 'Voru', '68', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1119', 'Addis Abeba', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1120', 'Afar', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1121', 'Amhara', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1122', 'Benishangul', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1123', 'Diredawa', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1124', 'Gambella', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1125', 'Harar', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1126', 'Jigjiga', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1127', 'Mekele', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1128', 'Oromia', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1129', 'Somali', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1130', 'Southern', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1131', 'Tigray', '69', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1132', 'Christmas Island', '70', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1133', 'Cocos Islands', '70', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1134', 'Coral Sea Islands', '70', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1135', 'Falkland Islands', '71', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1136', 'South Georgia', '71', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1137', 'Klaksvik', '72', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1138', 'Nor ara Eysturoy', '72', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1139', 'Nor oy', '72', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1140', 'Sandoy', '72', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1141', 'Streymoy', '72', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1142', 'Su uroy', '72', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1143', 'Sy ra Eysturoy', '72', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1144', 'Torshavn', '72', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1145', 'Vaga', '72', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1146', 'Central', '73', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1147', 'Eastern', '73', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1148', 'Northern', '73', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1149', 'South Pacific', '73', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1150', 'Western', '73', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1151', 'Ahvenanmaa', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1152', 'Etela-Karjala', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1153', 'Etela-Pohjanmaa', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1154', 'Etela-Savo', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1155', 'Etela-Suomen Laani', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1156', 'Ita-Suomen Laani', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1157', 'Ita-Uusimaa', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1158', 'Kainuu', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1159', 'Kanta-Hame', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1160', 'Keski-Pohjanmaa', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1161', 'Keski-Suomi', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1162', 'Kymenlaakso', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1163', 'Lansi-Suomen Laani', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1164', 'Lappi', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1165', 'Northern Savonia', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1166', 'Ostrobothnia', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1167', 'Oulun Laani', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1168', 'Paijat-Hame', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1169', 'Pirkanmaa', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1170', 'Pohjanmaa', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1171', 'Pohjois-Karjala', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1172', 'Pohjois-Pohjanmaa', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1173', 'Pohjois-Savo', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1174', 'Saarijarvi', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1175', 'Satakunta', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1176', 'Southern Savonia', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1177', 'Tavastia Proper', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1178', 'Uleaborgs Lan', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1179', 'Uusimaa', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1180', 'Varsinais-Suomi', '74', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1181', 'Ain', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1182', 'Aisne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1183', 'Albi Le Sequestre', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1184', 'Allier', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1185', 'Alpes-Cote dAzur', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1186', 'Alpes-Maritimes', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1187', 'Alpes-de-Haute-Provence', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1188', 'Alsace', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1189', 'Aquitaine', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1190', 'Ardeche', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1191', 'Ardennes', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1192', 'Ariege', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1193', 'Aube', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1194', 'Aude', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1195', 'Auvergne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1196', 'Aveyron', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1197', 'Bas-Rhin', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1198', 'Basse-Normandie', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1199', 'Bouches-du-Rhone', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1200', 'Bourgogne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1201', 'Bretagne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1202', 'Brittany', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1203', 'Burgundy', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1204', 'Calvados', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1205', 'Cantal', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1206', 'Cedex', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1207', 'Centre', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1208', 'Charente', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1209', 'Charente-Maritime', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1210', 'Cher', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1211', 'Correze', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1212', 'Corse-du-Sud', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1213', 'Cote-d\'Or', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1214', 'Cotes-d\'Armor', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1215', 'Creuse', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1216', 'Crolles', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1217', 'Deux-Sevres', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1218', 'Dordogne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1219', 'Doubs', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1220', 'Drome', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1221', 'Essonne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1222', 'Eure', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1223', 'Eure-et-Loir', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1224', 'Feucherolles', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1225', 'Finistere', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1226', 'Franche-Comte', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1227', 'Gard', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1228', 'Gers', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1229', 'Gironde', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1230', 'Haut-Rhin', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1231', 'Haute-Corse', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1232', 'Haute-Garonne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1233', 'Haute-Loire', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1234', 'Haute-Marne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1235', 'Haute-Saone', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1236', 'Haute-Savoie', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1237', 'Haute-Vienne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1238', 'Hautes-Alpes', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1239', 'Hautes-Pyrenees', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1240', 'Hauts-de-Seine', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1241', 'Herault', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1242', 'Ile-de-France', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1243', 'Ille-et-Vilaine', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1244', 'Indre', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1245', 'Indre-et-Loire', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1246', 'Isere', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1247', 'Jura', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1248', 'Klagenfurt', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1249', 'Landes', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1250', 'Languedoc-Roussillon', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1251', 'Larcay', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1252', 'Le Castellet', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1253', 'Le Creusot', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1254', 'Limousin', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1255', 'Loir-et-Cher', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1256', 'Loire', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1257', 'Loire-Atlantique', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1258', 'Loiret', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1259', 'Lorraine', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1260', 'Lot', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1261', 'Lot-et-Garonne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1262', 'Lower Normandy', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1263', 'Lozere', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1264', 'Maine-et-Loire', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1265', 'Manche', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1266', 'Marne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1267', 'Mayenne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1268', 'Meurthe-et-Moselle', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1269', 'Meuse', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1270', 'Midi-Pyrenees', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1271', 'Morbihan', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1272', 'Moselle', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1273', 'Nievre', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1274', 'Nord', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1275', 'Nord-Pas-de-Calais', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1276', 'Oise', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1277', 'Orne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1278', 'Paris', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1279', 'Pas-de-Calais', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1280', 'Pays de la Loire', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1281', 'Pays-de-la-Loire', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1282', 'Picardy', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1283', 'Puy-de-Dome', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1284', 'Pyrenees-Atlantiques', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1285', 'Pyrenees-Orientales', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1286', 'Quelmes', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1287', 'Rhone', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1288', 'Rhone-Alpes', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1289', 'Saint Ouen', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1290', 'Saint Viatre', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1291', 'Saone-et-Loire', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1292', 'Sarthe', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1293', 'Savoie', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1294', 'Seine-Maritime', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1295', 'Seine-Saint-Denis', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1296', 'Seine-et-Marne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1297', 'Somme', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1298', 'Sophia Antipolis', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1299', 'Souvans', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1300', 'Tarn', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1301', 'Tarn-et-Garonne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1302', 'Territoire de Belfort', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1303', 'Treignac', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1304', 'Upper Normandy', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1305', 'Val-d\'Oise', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1306', 'Val-de-Marne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1307', 'Var', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1308', 'Vaucluse', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1309', 'Vellise', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1310', 'Vendee', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1311', 'Vienne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1312', 'Vosges', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1313', 'Yonne', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1314', 'Yvelines', '75', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1315', 'Cayenne', '76', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1316', 'Saint-Laurent-du-Maroni', '76', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1317', 'Iles du Vent', '77', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1318', 'Iles sous le Vent', '77', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1319', 'Marquesas', '77', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1320', 'Tuamotu', '77', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1321', 'Tubuai', '77', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1322', 'Amsterdam', '78', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1323', 'Crozet Islands', '78', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1324', 'Kerguelen', '78', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1325', 'Estuaire', '79', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1326', 'Haut-Ogooue', '79', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1327', 'Moyen-Ogooue', '79', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1328', 'Ngounie', '79', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1329', 'Nyanga', '79', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1330', 'Ogooue-Ivindo', '79', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1331', 'Ogooue-Lolo', '79', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1332', 'Ogooue-Maritime', '79', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1333', 'Woleu-Ntem', '79', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1334', 'Banjul', '80', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1335', 'Basse', '80', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1336', 'Brikama', '80', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1337', 'Janjanbureh', '80', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1338', 'Kanifing', '80', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1339', 'Kerewan', '80', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1340', 'Kuntaur', '80', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1341', 'Mansakonko', '80', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1342', 'Abhasia', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1343', 'Ajaria', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1344', 'Guria', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1345', 'Imereti', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1346', 'Kaheti', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1347', 'Kvemo Kartli', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1348', 'Mcheta-Mtianeti', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1349', 'Racha', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1350', 'Samagrelo-Zemo Svaneti', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1351', 'Samche-Zhavaheti', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1352', 'Shida Kartli', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1353', 'Tbilisi', '81', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1354', 'Auvergne', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1355', 'Baden-Wurttemberg', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1356', 'Bavaria', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1357', 'Bayern', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1358', 'Beilstein Wurtt', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1359', 'Berlin', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1360', 'Brandenburg', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1361', 'Bremen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1362', 'Dreisbach', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1363', 'Freistaat Bayern', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1364', 'Hamburg', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1365', 'Hannover', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1366', 'Heroldstatt', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1367', 'Hessen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1368', 'Kortenberg', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1369', 'Laasdorf', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1370', 'Land Baden-Wurttemberg', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1371', 'Land Bayern', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1372', 'Land Brandenburg', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1373', 'Land Hessen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1374', 'Land Mecklenburg-Vorpommern', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1375', 'Land Nordrhein-Westfalen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1376', 'Land Rheinland-Pfalz', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1377', 'Land Sachsen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1378', 'Land Sachsen-Anhalt', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1379', 'Land Thuringen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1380', 'Lower Saxony', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1381', 'Mecklenburg-Vorpommern', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1382', 'Mulfingen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1383', 'Munich', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1384', 'Neubeuern', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1385', 'Niedersachsen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1386', 'Noord-Holland', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1387', 'Nordrhein-Westfalen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1388', 'North Rhine-Westphalia', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1389', 'Osterode', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1390', 'Rheinland-Pfalz', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1391', 'Rhineland-Palatinate', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1392', 'Saarland', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1393', 'Sachsen', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1394', 'Sachsen-Anhalt', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1395', 'Saxony', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1396', 'Schleswig-Holstein', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1397', 'Thuringia', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1398', 'Webling', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1399', 'Weinstrabe', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1400', 'schlobborn', '82', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1401', 'Ashanti', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1402', 'Brong-Ahafo', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1403', 'Central', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1404', 'Eastern', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1405', 'Greater Accra', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1406', 'Northern', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1407', 'Upper East', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1408', 'Upper West', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1409', 'Volta', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1410', 'Western', '83', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1411', 'Gibraltar', '84', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1412', 'Acharnes', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1413', 'Ahaia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1414', 'Aitolia kai Akarnania', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1415', 'Argolis', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1416', 'Arkadia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1417', 'Arta', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1418', 'Attica', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1419', 'Attiki', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1420', 'Ayion Oros', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1421', 'Crete', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1422', 'Dodekanisos', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1423', 'Drama', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1424', 'Evia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1425', 'Evritania', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1426', 'Evros', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1427', 'Evvoia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1428', 'Florina', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1429', 'Fokis', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1430', 'Fthiotis', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1431', 'Grevena', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1432', 'Halandri', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1433', 'Halkidiki', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1434', 'Hania', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1435', 'Heraklion', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1436', 'Hios', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1437', 'Ilia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1438', 'Imathia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1439', 'Ioannina', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1440', 'Iraklion', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1441', 'Karditsa', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1442', 'Kastoria', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1443', 'Kavala', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1444', 'Kefallinia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1445', 'Kerkira', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1446', 'Kiklades', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1447', 'Kilkis', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1448', 'Korinthia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1449', 'Kozani', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1450', 'Lakonia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1451', 'Larisa', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1452', 'Lasithi', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1453', 'Lesvos', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1454', 'Levkas', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1455', 'Magnisia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1456', 'Messinia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1457', 'Nomos Attikis', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1458', 'Nomos Zakynthou', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1459', 'Pella', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1460', 'Pieria', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1461', 'Piraios', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1462', 'Preveza', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1463', 'Rethimni', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1464', 'Rodopi', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1465', 'Samos', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1466', 'Serrai', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1467', 'Thesprotia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1468', 'Thessaloniki', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1469', 'Trikala', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1470', 'Voiotia', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1471', 'West Greece', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1472', 'Xanthi', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1473', 'Zakinthos', '85', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1474', 'Aasiaat', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1475', 'Ammassalik', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1476', 'Illoqqortoormiut', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1477', 'Ilulissat', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1478', 'Ivittuut', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1479', 'Kangaatsiaq', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1480', 'Maniitsoq', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1481', 'Nanortalik', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1482', 'Narsaq', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1483', 'Nuuk', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1484', 'Paamiut', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1485', 'Qaanaaq', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1486', 'Qaqortoq', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1487', 'Qasigiannguit', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1488', 'Qeqertarsuaq', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1489', 'Sisimiut', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1490', 'Udenfor kommunal inddeling', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1491', 'Upernavik', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1492', 'Uummannaq', '86', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1493', 'Carriacou-Petite Martinique', '87', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1494', 'Saint Andrew', '87', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1495', 'Saint Davids', '87', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1496', 'Saint George\'s', '87', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1497', 'Saint John', '87', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1498', 'Saint Mark', '87', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1499', 'Saint Patrick', '87', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1500', 'Basse-Terre', '88', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1501', 'Grande-Terre', '88', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1502', 'Iles des Saintes', '88', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1503', 'La Desirade', '88', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1504', 'Marie-Galante', '88', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1505', 'Saint Barthelemy', '88', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1506', 'Saint Martin', '88', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1507', 'Agana Heights', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1508', 'Agat', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1509', 'Barrigada', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1510', 'Chalan-Pago-Ordot', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1511', 'Dededo', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1512', 'Hagatna', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1513', 'Inarajan', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1514', 'Mangilao', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1515', 'Merizo', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1516', 'Mongmong-Toto-Maite', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1517', 'Santa Rita', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1518', 'Sinajana', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1519', 'Talofofo', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1520', 'Tamuning', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1521', 'Yigo', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1522', 'Yona', '89', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1523', 'Alta Verapaz', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1524', 'Baja Verapaz', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1525', 'Chimaltenango', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1526', 'Chiquimula', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1527', 'El Progreso', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1528', 'Escuintla', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1529', 'Guatemala', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1530', 'Huehuetenango', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1531', 'Izabal', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1532', 'Jalapa', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1533', 'Jutiapa', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1534', 'Peten', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1535', 'Quezaltenango', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1536', 'Quiche', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1537', 'Retalhuleu', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1538', 'Sacatepequez', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1539', 'San Marcos', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1540', 'Santa Rosa', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1541', 'Solola', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1542', 'Suchitepequez', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1543', 'Totonicapan', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1544', 'Zacapa', '90', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1545', 'Alderney', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1546', 'Castel', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1547', 'Forest', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1548', 'Saint Andrew', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1549', 'Saint Martin', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1550', 'Saint Peter Port', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1551', 'Saint Pierre du Bois', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1552', 'Saint Sampson', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1553', 'Saint Saviour', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1554', 'Sark', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1555', 'Torteval', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1556', 'Vale', '91', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1557', 'Beyla', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1558', 'Boffa', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1559', 'Boke', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1560', 'Conakry', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1561', 'Coyah', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1562', 'Dabola', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1563', 'Dalaba', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1564', 'Dinguiraye', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1565', 'Faranah', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1566', 'Forecariah', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1567', 'Fria', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1568', 'Gaoual', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1569', 'Gueckedou', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1570', 'Kankan', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1571', 'Kerouane', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1572', 'Kindia', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1573', 'Kissidougou', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1574', 'Koubia', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1575', 'Koundara', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1576', 'Kouroussa', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1577', 'Labe', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1578', 'Lola', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1579', 'Macenta', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1580', 'Mali', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1581', 'Mamou', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1582', 'Mandiana', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1583', 'Nzerekore', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1584', 'Pita', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1585', 'Siguiri', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1586', 'Telimele', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1587', 'Tougue', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1588', 'Yomou', '92', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1589', 'Bafata', '93', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1590', 'Bissau', '93', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1591', 'Bolama', '93', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1592', 'Cacheu', '93', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1593', 'Gabu', '93', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1594', 'Oio', '93', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1595', 'Quinara', '93', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1596', 'Tombali', '93', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1597', 'Barima-Waini', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1598', 'Cuyuni-Mazaruni', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1599', 'Demerara-Mahaica', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1600', 'East Berbice-Corentyne', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1601', 'Essequibo Islands-West Demerar', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1602', 'Mahaica-Berbice', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1603', 'Pomeroon-Supenaam', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1604', 'Potaro-Siparuni', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1605', 'Upper Demerara-Berbice', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1606', 'Upper Takutu-Upper Essequibo', '94', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1607', 'Artibonite', '95', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1608', 'Centre', '95', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1609', 'Grand\'Anse', '95', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1610', 'Nord', '95', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1611', 'Nord-Est', '95', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1612', 'Nord-Ouest', '95', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1613', 'Ouest', '95', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1614', 'Sud', '95', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1615', 'Sud-Est', '95', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1616', 'Heard and McDonald Islands', '96', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1617', 'Atlantida', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1618', 'Choluteca', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1619', 'Colon', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1620', 'Comayagua', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1621', 'Copan', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1622', 'Cortes', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1623', 'Distrito Central', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1624', 'El Paraiso', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1625', 'Francisco Morazan', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1626', 'Gracias a Dios', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1627', 'Intibuca', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1628', 'Islas de la Bahia', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1629', 'La Paz', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1630', 'Lempira', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1631', 'Ocotepeque', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1632', 'Olancho', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1633', 'Santa Barbara', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1634', 'Valle', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1635', 'Yoro', '97', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1636', 'Hong Kong', '98', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1637', 'Bacs-Kiskun', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1638', 'Baranya', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1639', 'Bekes', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1640', 'Borsod-Abauj-Zemplen', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1641', 'Budapest', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1642', 'Csongrad', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1643', 'Fejer', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1644', 'Gyor-Moson-Sopron', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1645', 'Hajdu-Bihar', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1646', 'Heves', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1647', 'Jasz-Nagykun-Szolnok', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1648', 'Komarom-Esztergom', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1649', 'Nograd', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1650', 'Pest', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1651', 'Somogy', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1652', 'Szabolcs-Szatmar-Bereg', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1653', 'Tolna', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1654', 'Vas', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1655', 'Veszprem', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1656', 'Zala', '99', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1657', 'Austurland', '100', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1658', 'Gullbringusysla', '100', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1659', 'Hofu borgarsva i', '100', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1660', 'Nor urland eystra', '100', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1661', 'Nor urland vestra', '100', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1662', 'Su urland', '100', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1663', 'Su urnes', '100', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1664', 'Vestfir ir', '100', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1665', 'Vesturland', '100', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1666', 'Aceh', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1667', 'Bali', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1668', 'Bangka-Belitung', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1669', 'Banten', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1670', 'Bengkulu', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1671', 'Gandaria', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1672', 'Gorontalo', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1673', 'Jakarta', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1674', 'Jambi', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1675', 'Jawa Barat', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1676', 'Jawa Tengah', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1677', 'Jawa Timur', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1678', 'Kalimantan Barat', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1679', 'Kalimantan Selatan', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1680', 'Kalimantan Tengah', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1681', 'Kalimantan Timur', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1682', 'Kendal', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1683', 'Lampung', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1684', 'Maluku', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1685', 'Maluku Utara', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1686', 'Nusa Tenggara Barat', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1687', 'Nusa Tenggara Timur', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1688', 'Papua', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1689', 'Riau', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1690', 'Riau Kepulauan', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1691', 'Solo', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1692', 'Sulawesi Selatan', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1693', 'Sulawesi Tengah', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1694', 'Sulawesi Tenggara', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1695', 'Sulawesi Utara', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1696', 'Sumatera Barat', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1697', 'Sumatera Selatan', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1698', 'Sumatera Utara', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1699', 'Yogyakarta', '102', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1700', 'Ardabil', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1701', 'Azarbayjan-e Bakhtari', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1702', 'Azarbayjan-e Khavari', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1703', 'Bushehr', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1704', 'Chahar Mahal-e Bakhtiari', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1705', 'Esfahan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1706', 'Fars', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1707', 'Gilan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1708', 'Golestan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1709', 'Hamadan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1710', 'Hormozgan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1711', 'Ilam', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1712', 'Kerman', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1713', 'Kermanshah', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1714', 'Khorasan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1715', 'Khuzestan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1716', 'Kohgiluyeh-e Boyerahmad', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1717', 'Kordestan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1718', 'Lorestan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1719', 'Markazi', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1720', 'Mazandaran', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1721', 'Ostan-e Esfahan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1722', 'Qazvin', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1723', 'Qom', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1724', 'Semnan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1725', 'Sistan-e Baluchestan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1726', 'Tehran', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1727', 'Yazd', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1728', 'Zanjan', '103', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1729', 'Babil', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1730', 'Baghdad', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1731', 'Dahuk', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1732', 'Dhi Qar', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1733', 'Diyala', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1734', 'Erbil', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1735', 'Irbil', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1736', 'Karbala', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1737', 'Kurdistan', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1738', 'Maysan', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1739', 'Ninawa', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1740', 'Salah-ad-Din', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1741', 'Wasit', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1742', 'al-Anbar', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1743', 'al-Basrah', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1744', 'al-Muthanna', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1745', 'al-Qadisiyah', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1746', 'an-Najaf', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1747', 'as-Sulaymaniyah', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1748', 'at-Ta\'mim', '104', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1749', 'Armagh', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1750', 'Carlow', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1751', 'Cavan', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1752', 'Clare', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1753', 'Cork', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1754', 'Donegal', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1755', 'Dublin', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1756', 'Galway', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1757', 'Kerry', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1758', 'Kildare', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1759', 'Kilkenny', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1760', 'Laois', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1761', 'Leinster', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1762', 'Leitrim', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1763', 'Limerick', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1764', 'Loch Garman', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1765', 'Longford', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1766', 'Louth', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1767', 'Mayo', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1768', 'Meath', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1769', 'Monaghan', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1770', 'Offaly', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1771', 'Roscommon', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1772', 'Sligo', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1773', 'Tipperary North Riding', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1774', 'Tipperary South Riding', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1775', 'Ulster', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1776', 'Waterford', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1777', 'Westmeath', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1778', 'Wexford', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1779', 'Wicklow', '105', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1780', 'Beit Hanania', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1781', 'Ben Gurion Airport', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1782', 'Bethlehem', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1783', 'Caesarea', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1784', 'Centre', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1785', 'Gaza', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1786', 'Hadaron', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1787', 'Haifa District', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1788', 'Hamerkaz', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1789', 'Hazafon', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1790', 'Hebron', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1791', 'Jaffa', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1792', 'Jerusalem', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1793', 'Khefa', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1794', 'Kiryat Yam', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1795', 'Lower Galilee', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1796', 'Qalqilya', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1797', 'Talme Elazar', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1798', 'Tel Aviv', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1799', 'Tsafon', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1800', 'Umm El Fahem', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1801', 'Yerushalayim', '106', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1802', 'Abruzzi', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1803', 'Abruzzo', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1804', 'Agrigento', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1805', 'Alessandria', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1806', 'Ancona', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1807', 'Arezzo', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1808', 'Ascoli Piceno', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1809', 'Asti', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1810', 'Avellino', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1811', 'Bari', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1812', 'Basilicata', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1813', 'Belluno', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1814', 'Benevento', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1815', 'Bergamo', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1816', 'Biella', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1817', 'Bologna', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1818', 'Bolzano', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1819', 'Brescia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1820', 'Brindisi', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1821', 'Calabria', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1822', 'Campania', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1823', 'Cartoceto', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1824', 'Caserta', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1825', 'Catania', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1826', 'Chieti', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1827', 'Como', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1828', 'Cosenza', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1829', 'Cremona', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1830', 'Cuneo', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1831', 'Emilia-Romagna', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1832', 'Ferrara', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1833', 'Firenze', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1834', 'Florence', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1835', 'Forli-Cesena ', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1836', 'Friuli-Venezia Giulia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1837', 'Frosinone', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1838', 'Genoa', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1839', 'Gorizia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1840', 'L\'Aquila', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1841', 'Lazio', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1842', 'Lecce', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1843', 'Lecco', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1845', 'Liguria', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1846', 'Lodi', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1847', 'Lombardia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1848', 'Lombardy', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1849', 'Macerata', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1850', 'Mantova', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1851', 'Marche', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1852', 'Messina', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1853', 'Milan', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1854', 'Modena', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1855', 'Molise', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1856', 'Molteno', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1857', 'Montenegro', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1858', 'Monza and Brianza', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1859', 'Naples', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1860', 'Novara', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1861', 'Padova', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1862', 'Parma', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1863', 'Pavia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1864', 'Perugia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1865', 'Pesaro-Urbino', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1866', 'Piacenza', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1867', 'Piedmont', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1868', 'Piemonte', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1869', 'Pisa', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1870', 'Pordenone', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1871', 'Potenza', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1872', 'Puglia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1873', 'Reggio Emilia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1874', 'Rimini', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1875', 'Roma', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1876', 'Salerno', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1877', 'Sardegna', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1878', 'Sassari', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1879', 'Savona', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1880', 'Sicilia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1881', 'Siena', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1882', 'Sondrio', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1883', 'South Tyrol', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1884', 'Taranto', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1885', 'Teramo', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1886', 'Torino', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1887', 'Toscana', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1888', 'Trapani', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1889', 'Trentino-Alto Adige', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1890', 'Trento', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1891', 'Treviso', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1892', 'Udine', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1893', 'Umbria', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1894', 'Valle d\'Aosta', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1895', 'Varese', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1896', 'Veneto', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1897', 'Venezia', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1898', 'Verbano-Cusio-Ossola', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1899', 'Vercelli', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1900', 'Verona', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1901', 'Vicenza', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1902', 'Viterbo', '107', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1903', 'Buxoro Viloyati', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1904', 'Clarendon', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1905', 'Hanover', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1906', 'Kingston', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1907', 'Manchester', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1908', 'Portland', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1909', 'Saint Andrews', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1910', 'Saint Ann', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1911', 'Saint Catherine', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1912', 'Saint Elizabeth', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1913', 'Saint James', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1914', 'Saint Mary', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1915', 'Saint Thomas', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1916', 'Trelawney', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1917', 'Westmoreland', '108', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1918', 'Aichi', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1919', 'Akita', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1920', 'Aomori', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1921', 'Chiba', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1922', 'Ehime', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1923', 'Fukui', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1924', 'Fukuoka', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1925', 'Fukushima', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1926', 'Gifu', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1927', 'Gumma', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1928', 'Hiroshima', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1929', 'Hokkaido', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1930', 'Hyogo', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1931', 'Ibaraki', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1932', 'Ishikawa', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1933', 'Iwate', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1934', 'Kagawa', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1935', 'Kagoshima', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1936', 'Kanagawa', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1937', 'Kanto', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1938', 'Kochi', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1939', 'Kumamoto', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1940', 'Kyoto', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1941', 'Mie', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1942', 'Miyagi', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1943', 'Miyazaki', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1944', 'Nagano', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1945', 'Nagasaki', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1946', 'Nara', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1947', 'Niigata', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1948', 'Oita', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1949', 'Okayama', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1950', 'Okinawa', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1951', 'Osaka', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1952', 'Saga', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1953', 'Saitama', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1954', 'Shiga', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1955', 'Shimane', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1956', 'Shizuoka', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1957', 'Tochigi', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1958', 'Tokushima', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1959', 'Tokyo', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1960', 'Tottori', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1961', 'Toyama', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1962', 'Wakayama', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1963', 'Yamagata', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1964', 'Yamaguchi', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1965', 'Yamanashi', '109', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1966', 'Grouville', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1967', 'Saint Brelade', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1968', 'Saint Clement', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1969', 'Saint Helier', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1970', 'Saint John', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1971', 'Saint Lawrence', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1972', 'Saint Martin', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1973', 'Saint Mary', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1974', 'Saint Peter', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1975', 'Saint Saviour', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1976', 'Trinity', '110', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1977', '\'Ajlun', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1978', 'Amman', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1979', 'Irbid', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1980', 'Jarash', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1981', 'Ma\'an', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1982', 'Madaba', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1983', 'al-\'Aqabah', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1984', 'al-Balqa\'', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1985', 'al-Karak', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1986', 'al-Mafraq', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1987', 'at-Tafilah', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1988', 'az-Zarqa\'', '111', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1989', 'Akmecet', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1990', 'Akmola', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1991', 'Aktobe', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1992', 'Almati', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1993', 'Atirau', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1994', 'Batis Kazakstan', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1995', 'Burlinsky Region', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1996', 'Karagandi', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1997', 'Kostanay', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1998', 'Mankistau', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('1999', 'Ontustik Kazakstan', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2000', 'Pavlodar', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2001', 'Sigis Kazakstan', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2002', 'Soltustik Kazakstan', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2003', 'Taraz', '112', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2004', 'Central', '113', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2005', 'Coast', '113', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2006', 'Eastern', '113', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2007', 'Nairobi', '113', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2008', 'North Eastern', '113', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2009', 'Nyanza', '113', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2010', 'Rift Valley', '113', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2011', 'Western', '113', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2012', 'Abaiang', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2013', 'Abemana', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2014', 'Aranuka', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2015', 'Arorae', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2016', 'Banaba', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2017', 'Beru', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2018', 'Butaritari', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2019', 'Kiritimati', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2020', 'Kuria', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2021', 'Maiana', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2022', 'Makin', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2023', 'Marakei', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2024', 'Nikunau', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2025', 'Nonouti', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2026', 'Onotoa', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2027', 'Phoenix Islands', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2028', 'Tabiteuea North', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2029', 'Tabiteuea South', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2030', 'Tabuaeran', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2031', 'Tamana', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2032', 'Tarawa North', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2033', 'Tarawa South', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2034', 'Teraina', '114', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2035', 'Chagangdo', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2036', 'Hamgyeongbukto', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2037', 'Hamgyeongnamdo', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2038', 'Hwanghaebukto', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2039', 'Hwanghaenamdo', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2040', 'Kaeseong', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2041', 'Kangweon', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2042', 'Nampo', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2043', 'Pyeonganbukto', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2044', 'Pyeongannamdo', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2045', 'Pyeongyang', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2046', 'Yanggang', '115', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2047', 'Busan', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2048', 'Cheju', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2049', 'Chollabuk', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2050', 'Chollanam', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2051', 'Chungbuk', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2052', 'Chungcheongbuk', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2053', 'Chungcheongnam', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2054', 'Chungnam', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2055', 'Daegu', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2056', 'Gangwon-do', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2057', 'Goyang-si', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2058', 'Gyeonggi-do', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2059', 'Gyeongsang ', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2060', 'Gyeongsangnam-do', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2061', 'Incheon', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2062', 'Jeju-Si', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2063', 'Jeonbuk', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2064', 'Kangweon', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2065', 'Kwangju', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2066', 'Kyeonggi', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2067', 'Kyeongsangbuk', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2068', 'Kyeongsangnam', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2069', 'Kyonggi-do', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2070', 'Kyungbuk-Do', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2071', 'Kyunggi-Do', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2072', 'Kyunggi-do', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2073', 'Pusan', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2074', 'Seoul', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2075', 'Sudogwon', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2076', 'Taegu', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2077', 'Taejeon', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2078', 'Taejon-gwangyoksi', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2079', 'Ulsan', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2080', 'Wonju', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2081', 'gwangyoksi', '116', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2082', 'Al Asimah', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2083', 'Hawalli', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2084', 'Mishref', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2085', 'Qadesiya', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2086', 'Safat', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2087', 'Salmiya', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2088', 'al-Ahmadi', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2089', 'al-Farwaniyah', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2090', 'al-Jahra', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2091', 'al-Kuwayt', '117', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2092', 'Batken', '118', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2093', 'Bishkek', '118', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2094', 'Chui', '118', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2095', 'Issyk-Kul', '118', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2096', 'Jalal-Abad', '118', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2097', 'Naryn', '118', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2098', 'Osh', '118', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2099', 'Talas', '118', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2100', 'Attopu', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2101', 'Bokeo', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2102', 'Bolikhamsay', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2103', 'Champasak', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2104', 'Houaphanh', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2105', 'Khammouane', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2106', 'Luang Nam Tha', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2107', 'Luang Prabang', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2108', 'Oudomxay', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2109', 'Phongsaly', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2110', 'Saravan', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2111', 'Savannakhet', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2112', 'Sekong', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2113', 'Viangchan Prefecture', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2114', 'Viangchan Province', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2115', 'Xaignabury', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2116', 'Xiang Khuang', '119', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2117', 'Aizkraukles', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2118', 'Aluksnes', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2119', 'Balvu', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2120', 'Bauskas', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2121', 'Cesu', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2122', 'Daugavpils', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2123', 'Daugavpils City', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2124', 'Dobeles', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2125', 'Gulbenes', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2126', 'Jekabspils', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2127', 'Jelgava', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2128', 'Jelgavas', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2129', 'Jurmala City', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2130', 'Kraslavas', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2131', 'Kuldigas', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2132', 'Liepaja', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2133', 'Liepajas', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2134', 'Limbazhu', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2135', 'Ludzas', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2136', 'Madonas', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2137', 'Ogres', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2138', 'Preilu', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2139', 'Rezekne', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2140', 'Rezeknes', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2141', 'Riga', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2142', 'Rigas', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2143', 'Saldus', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2144', 'Talsu', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2145', 'Tukuma', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2146', 'Valkas', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2147', 'Valmieras', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2148', 'Ventspils', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2149', 'Ventspils City', '120', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2150', 'Beirut', '121', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2151', 'Jabal Lubnan', '121', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2152', 'Mohafazat Liban-Nord', '121', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2153', 'Mohafazat Mont-Liban', '121', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2154', 'Sidon', '121', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2155', 'al-Biqa', '121', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2156', 'al-Janub', '121', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2157', 'an-Nabatiyah', '121', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2158', 'ash-Shamal', '121', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2159', 'Berea', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2160', 'Butha-Buthe', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2161', 'Leribe', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2162', 'Mafeteng', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2163', 'Maseru', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2164', 'Mohale\'s Hoek', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2165', 'Mokhotlong', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2166', 'Qacha\'s Nek', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2167', 'Quthing', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2168', 'Thaba-Tseka', '122', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2169', 'Bomi', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2170', 'Bong', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2171', 'Grand Bassa', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2172', 'Grand Cape Mount', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2173', 'Grand Gedeh', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2174', 'Loffa', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2175', 'Margibi', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2176', 'Maryland and Grand Kru', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2177', 'Montserrado', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2178', 'Nimba', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2179', 'Rivercess', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2180', 'Sinoe', '123', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2181', 'Ajdabiya', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2182', 'Fezzan', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2183', 'Banghazi', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2184', 'Darnah', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2185', 'Ghadamis', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2186', 'Gharyan', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2187', 'Misratah', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2188', 'Murzuq', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2189', 'Sabha', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2190', 'Sawfajjin', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2191', 'Surt', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2192', 'Tarabulus', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2193', 'Tarhunah', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2194', 'Tripolitania', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2195', 'Tubruq', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2196', 'Yafran', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2197', 'Zlitan', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2198', 'al-\'Aziziyah', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2199', 'al-Fatih', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2200', 'al-Jabal al Akhdar', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2201', 'al-Jufrah', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2202', 'al-Khums', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2203', 'al-Kufrah', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2204', 'an-Nuqat al-Khams', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2205', 'ash-Shati\'', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2206', 'az-Zawiyah', '124', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2207', 'Balzers', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2208', 'Eschen', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2209', 'Gamprin', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2210', 'Mauren', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2211', 'Planken', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2212', 'Ruggell', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2213', 'Schaan', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2214', 'Schellenberg', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2215', 'Triesen', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2216', 'Triesenberg', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2217', 'Vaduz', '125', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2218', 'Alytaus', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2219', 'Anyksciai', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2220', 'Kauno', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2221', 'Klaipedos', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2222', 'Marijampoles', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2223', 'Panevezhio', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2224', 'Panevezys', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2225', 'Shiauliu', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2226', 'Taurages', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2227', 'Telshiu', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2228', 'Telsiai', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2229', 'Utenos', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2230', 'Vilniaus', '126', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2231', 'Capellen', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2232', 'Clervaux', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2233', 'Diekirch', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2234', 'Echternach', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2235', 'Esch-sur-Alzette', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2236', 'Grevenmacher', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2237', 'Luxembourg', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2238', 'Mersch', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2239', 'Redange', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2240', 'Remich', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2241', 'Vianden', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2242', 'Wiltz', '127', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2243', 'Macau', '128', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2244', 'Berovo', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2245', 'Bitola', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2246', 'Brod', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2247', 'Debar', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2248', 'Delchevo', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2249', 'Demir Hisar', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2250', 'Gevgelija', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2251', 'Gostivar', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2252', 'Kavadarci', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2253', 'Kichevo', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2254', 'Kochani', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2255', 'Kratovo', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2256', 'Kriva Palanka', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2257', 'Krushevo', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2258', 'Kumanovo', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2259', 'Negotino', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2260', 'Ohrid', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2261', 'Prilep', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2262', 'Probishtip', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2263', 'Radovish', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2264', 'Resen', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2265', 'Shtip', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2266', 'Skopje', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2267', 'Struga', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2268', 'Strumica', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2269', 'Sveti Nikole', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2270', 'Tetovo', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2271', 'Valandovo', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2272', 'Veles', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2273', 'Vinica', '129', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2274', 'Antananarivo', '130', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2275', 'Antsiranana', '130', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2276', 'Fianarantsoa', '130', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2277', 'Mahajanga', '130', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2278', 'Toamasina', '130', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2279', 'Toliary', '130', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2280', 'Balaka', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2281', 'Blantyre City', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2282', 'Chikwawa', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2283', 'Chiradzulu', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2284', 'Chitipa', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2285', 'Dedza', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2286', 'Dowa', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2287', 'Karonga', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2288', 'Kasungu', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2289', 'Lilongwe City', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2290', 'Machinga', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2291', 'Mangochi', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2292', 'Mchinji', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2293', 'Mulanje', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2294', 'Mwanza', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2295', 'Mzimba', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2296', 'Mzuzu City', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2297', 'Nkhata Bay', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2298', 'Nkhotakota', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2299', 'Nsanje', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2300', 'Ntcheu', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2301', 'Ntchisi', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2302', 'Phalombe', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2303', 'Rumphi', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2304', 'Salima', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2305', 'Thyolo', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2306', 'Zomba Municipality', '131', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2307', 'Johor', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2308', 'Kedah', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2309', 'Kelantan', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2310', 'Kuala Lumpur', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2311', 'Labuan', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2312', 'Melaka', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2313', 'Negeri Johor', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2314', 'Negeri Sembilan', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2315', 'Pahang', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2316', 'Penang', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2317', 'Perak', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2318', 'Perlis', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2319', 'Pulau Pinang', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2320', 'Sabah', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2321', 'Sarawak', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2322', 'Selangor', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2323', 'Sembilan', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2324', 'Terengganu', '132', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2325', 'Alif Alif', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2326', 'Alif Dhaal', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2327', 'Baa', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2328', 'Dhaal', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2329', 'Faaf', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2330', 'Gaaf Alif', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2331', 'Gaaf Dhaal', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2332', 'Ghaviyani', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2333', 'Haa Alif', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2334', 'Haa Dhaal', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2335', 'Kaaf', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2336', 'Laam', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2337', 'Lhaviyani', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2338', 'Male', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2339', 'Miim', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2340', 'Nuun', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2341', 'Raa', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2342', 'Shaviyani', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2343', 'Siin', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2344', 'Thaa', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2345', 'Vaav', '133', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2346', 'Bamako', '134', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2347', 'Gao', '134', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2348', 'Kayes', '134', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2349', 'Kidal', '134', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2350', 'Koulikoro', '134', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2351', 'Mopti', '134', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2352', 'Segou', '134', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2353', 'Sikasso', '134', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2354', 'Tombouctou', '134', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2355', 'Gozo and Comino', '135', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2356', 'Inner Harbour', '135', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2357', 'Northern', '135', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2358', 'Outer Harbour', '135', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2359', 'South Eastern', '135', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2360', 'Valletta', '135', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2361', 'Western', '135', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2362', 'Castletown', '136', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2363', 'Douglas', '136', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2364', 'Laxey', '136', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2365', 'Onchan', '136', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2366', 'Peel', '136', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2367', 'Port Erin', '136', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2368', 'Port Saint Mary', '136', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2369', 'Ramsey', '136', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2370', 'Ailinlaplap', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2371', 'Ailuk', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2372', 'Arno', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2373', 'Aur', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2374', 'Bikini', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2375', 'Ebon', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2376', 'Enewetak', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2377', 'Jabat', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2378', 'Jaluit', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2379', 'Kili', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2380', 'Kwajalein', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2381', 'Lae', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2382', 'Lib', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2383', 'Likiep', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2384', 'Majuro', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2385', 'Maloelap', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2386', 'Mejit', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2387', 'Mili', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2388', 'Namorik', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2389', 'Namu', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2390', 'Rongelap', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2391', 'Ujae', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2392', 'Utrik', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2393', 'Wotho', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2394', 'Wotje', '137', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2395', 'Fort-de-France', '138', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2396', 'La Trinite', '138', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2397', 'Le Marin', '138', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2398', 'Saint-Pierre', '138', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2399', 'Adrar', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2400', 'Assaba', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2401', 'Brakna', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2402', 'Dhakhlat Nawadibu', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2403', 'Hudh-al-Gharbi', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2404', 'Hudh-ash-Sharqi', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2405', 'Inshiri', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2406', 'Nawakshut', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2407', 'Qidimagha', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2408', 'Qurqul', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2409', 'Taqant', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2410', 'Tiris Zammur', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2411', 'Trarza', '139', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2412', 'Black River', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2413', 'Eau Coulee', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2414', 'Flacq', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2415', 'Floreal', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2416', 'Grand Port', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2417', 'Moka', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2418', 'Pamplempousses', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2419', 'Plaines Wilhelm', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2420', 'Port Louis', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2421', 'Riviere du Rempart', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2422', 'Rodrigues', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2423', 'Rose Hill', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2424', 'Savanne', '140', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2425', 'Mayotte', '141', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2426', 'Pamanzi', '141', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2427', 'Aguascalientes', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2428', 'Baja California', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2429', 'Baja California Sur', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2430', 'Campeche', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2431', 'Chiapas', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2432', 'Chihuahua', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2433', 'Coahuila', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2434', 'Colima', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2435', 'Distrito Federal', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2436', 'Durango', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2437', 'Estado de Mexico', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2438', 'Guanajuato', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2439', 'Guerrero', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2440', 'Hidalgo', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2441', 'Jalisco', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2442', 'Mexico', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2443', 'Michoacan', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2444', 'Morelos', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2445', 'Nayarit', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2446', 'Nuevo Leon', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2447', 'Oaxaca', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2448', 'Puebla', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2449', 'Queretaro', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2450', 'Quintana Roo', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2451', 'San Luis Potosi', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2452', 'Sinaloa', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2453', 'Sonora', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2454', 'Tabasco', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2455', 'Tamaulipas', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2456', 'Tlaxcala', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2457', 'Veracruz', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2458', 'Yucatan', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2459', 'Zacatecas', '142', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2460', 'Chuuk', '143', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2461', 'Kusaie', '143', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2462', 'Pohnpei', '143', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2463', 'Yap', '143', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2464', 'Balti', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2465', 'Cahul', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2466', 'Chisinau', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2467', 'Chisinau Oras', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2468', 'Edinet', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2469', 'Gagauzia', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2470', 'Lapusna', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2471', 'Orhei', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2472', 'Soroca', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2473', 'Taraclia', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2474', 'Tighina', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2475', 'Transnistria', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2476', 'Ungheni', '144', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2477', 'Fontvieille', '145', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2478', 'La Condamine', '145', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2479', 'Monaco-Ville', '145', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2480', 'Monte Carlo', '145', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2481', 'Arhangaj', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2482', 'Bajan-Olgij', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2483', 'Bajanhongor', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2484', 'Bulgan', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2485', 'Darhan-Uul', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2486', 'Dornod', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2487', 'Dornogovi', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2488', 'Dundgovi', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2489', 'Govi-Altaj', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2490', 'Govisumber', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2491', 'Hentij', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2492', 'Hovd', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2493', 'Hovsgol', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2494', 'Omnogovi', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2495', 'Orhon', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2496', 'Ovorhangaj', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2497', 'Selenge', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2498', 'Suhbaatar', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2499', 'Tov', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2500', 'Ulaanbaatar', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2501', 'Uvs', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2502', 'Zavhan', '146', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2503', 'Montserrat', '147', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2504', 'Agadir', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2505', 'Casablanca', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2506', 'Chaouia-Ouardigha', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2507', 'Doukkala-Abda', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2508', 'Fes-Boulemane', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2509', 'Gharb-Chrarda-Beni Hssen', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2510', 'Guelmim', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2511', 'Kenitra', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2512', 'Marrakech-Tensift-Al Haouz', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2513', 'Meknes-Tafilalet', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2514', 'Oriental', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2515', 'Oujda', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2516', 'Province de Tanger', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2517', 'Rabat-Sale-Zammour-Zaer', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2518', 'Sala Al Jadida', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2519', 'Settat', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2520', 'Souss Massa-Draa', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2521', 'Tadla-Azilal', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2522', 'Tangier-Tetouan', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2523', 'Taza-Al Hoceima-Taounate', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2524', 'Wilaya de Casablanca', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2525', 'Wilaya de Rabat-Sale', '148', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2526', 'Cabo Delgado', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2527', 'Gaza', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2528', 'Inhambane', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2529', 'Manica', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2530', 'Maputo', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2531', 'Maputo Provincia', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2532', 'Nampula', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2533', 'Niassa', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2534', 'Sofala', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2535', 'Tete', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2536', 'Zambezia', '149', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2537', 'Ayeyarwady', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2538', 'Bago', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2539', 'Chin', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2540', 'Kachin', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2541', 'Kayah', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2542', 'Kayin', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2543', 'Magway', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2544', 'Mandalay', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2545', 'Mon', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2546', 'Nay Pyi Taw', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2547', 'Rakhine', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2548', 'Sagaing', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2549', 'Shan', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2550', 'Tanintharyi', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2551', 'Yangon', '150', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2552', 'Caprivi', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2553', 'Erongo', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2554', 'Hardap', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2555', 'Karas', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2556', 'Kavango', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2557', 'Khomas', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2558', 'Kunene', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2559', 'Ohangwena', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2560', 'Omaheke', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2561', 'Omusati', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2562', 'Oshana', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2563', 'Oshikoto', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2564', 'Otjozondjupa', '151', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2565', 'Yaren', '152', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2566', 'Bagmati', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2567', 'Bheri', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2568', 'Dhawalagiri', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2569', 'Gandaki', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2570', 'Janakpur', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2571', 'Karnali', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2572', 'Koshi', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2573', 'Lumbini', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2574', 'Mahakali', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2575', 'Mechi', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2576', 'Narayani', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2577', 'Rapti', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2578', 'Sagarmatha', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2579', 'Seti', '153', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2580', 'Bonaire', '154', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2581', 'Curacao', '154', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2582', 'Saba', '154', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2583', 'Sint Eustatius', '154', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2584', 'Sint Maarten', '154', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2585', 'Amsterdam', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2586', 'Benelux', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2587', 'Drenthe', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2588', 'Flevoland', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2589', 'Friesland', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2590', 'Gelderland', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2591', 'Groningen', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2592', 'Limburg', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2593', 'Noord-Brabant', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2594', 'Noord-Holland', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2595', 'Overijssel', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2596', 'South Holland', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2597', 'Utrecht', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2598', 'Zeeland', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2599', 'Zuid-Holland', '155', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2600', 'Iles', '156', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2601', 'Nord', '156', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2602', 'Sud', '156', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2603', 'Area Outside Region', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2604', 'Auckland', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2605', 'Bay of Plenty', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2606', 'Canterbury', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2607', 'Christchurch', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2608', 'Gisborne', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2609', 'Hawke\'s Bay', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2610', 'Manawatu-Wanganui', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2611', 'Marlborough', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2612', 'Nelson', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2613', 'Northland', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2614', 'Otago', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2615', 'Rodney', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2616', 'Southland', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2617', 'Taranaki', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2618', 'Tasman', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2619', 'Waikato', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2620', 'Wellington', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2621', 'West Coast', '157', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2622', 'Atlantico Norte', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2623', 'Atlantico Sur', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2624', 'Boaco', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2625', 'Carazo', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2626', 'Chinandega', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2627', 'Chontales', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2628', 'Esteli', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2629', 'Granada', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2630', 'Jinotega', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2631', 'Leon', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2632', 'Madriz', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2633', 'Managua', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2634', 'Masaya', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2635', 'Matagalpa', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2636', 'Nueva Segovia', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2637', 'Rio San Juan', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2638', 'Rivas', '158', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2639', 'Agadez', '159', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2640', 'Diffa', '159', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2641', 'Dosso', '159', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2642', 'Maradi', '159', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2643', 'Niamey', '159', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2644', 'Tahoua', '159', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2645', 'Tillabery', '159', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2646', 'Zinder', '159', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2647', 'Abia', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2648', 'Abuja Federal Capital Territory', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2649', 'Adamawa', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2650', 'Akwa Ibom', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2651', 'Anambra', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2652', 'Bauchi', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2653', 'Bayelsa', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2654', 'Benue', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2655', 'Borno', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2656', 'Cross River', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2657', 'Delta', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2658', 'Ebonyi', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2659', 'Edo', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2660', 'Ekiti', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2661', 'Enugu', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2662', 'Gombe', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2663', 'Imo', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2664', 'Jigawa', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2665', 'Kaduna', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2666', 'Kano', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2667', 'Katsina', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2668', 'Kebbi', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2669', 'Kogi', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2670', 'Kwara', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2671', 'Lagos', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2672', 'Nassarawa', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2673', 'Niger', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2674', 'Ogun', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2675', 'Ondo', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2676', 'Osun', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2677', 'Oyo', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2678', 'Plateau', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2679', 'Rivers', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2680', 'Sokoto', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2681', 'Taraba', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2682', 'Yobe', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2683', 'Zamfara', '160', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2684', 'Niue', '161', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2685', 'Norfolk Island', '162', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2686', 'Northern Islands', '163', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2687', 'Rota', '163', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2688', 'Saipan', '163', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2689', 'Tinian', '163', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2690', 'Akershus', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2691', 'Aust Agder', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2692', 'Bergen', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2693', 'Buskerud', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2694', 'Finnmark', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2695', 'Hedmark', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2696', 'Hordaland', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2697', 'Moere og Romsdal', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2698', 'Nord Trondelag', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2699', 'Nordland', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2700', 'Oestfold', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2701', 'Oppland', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2702', 'Oslo', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2703', 'Rogaland', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2704', 'Soer Troendelag', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2705', 'Sogn og Fjordane', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2706', 'Stavern', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2707', 'Sykkylven', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2708', 'Telemark', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2709', 'Troms', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2710', 'Vest Agder', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2711', 'Vestfold', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2712', 'ÃƒÂ˜stfold', '164', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2713', 'Al Buraimi', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2714', 'Dhufar', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2715', 'Masqat', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2716', 'Musandam', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2717', 'Rusayl', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2718', 'Wadi Kabir', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2719', 'ad-Dakhiliyah', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2720', 'adh-Dhahirah', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2721', 'al-Batinah', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2722', 'ash-Sharqiyah', '165', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2723', 'Baluchistan', '166', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2724', 'Federal Capital Area', '166', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2725', 'Federally administered Tribal ', '166', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2726', 'North-West Frontier', '166', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2727', 'Northern Areas', '166', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2728', 'Punjab', '166', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2729', 'Sind', '166', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2730', 'Aimeliik', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2731', 'Airai', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2732', 'Angaur', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2733', 'Hatobohei', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2734', 'Kayangel', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2735', 'Koror', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2736', 'Melekeok', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2737', 'Ngaraard', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2738', 'Ngardmau', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2739', 'Ngaremlengui', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2740', 'Ngatpang', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2741', 'Ngchesar', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2742', 'Ngerchelong', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2743', 'Ngiwal', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2744', 'Peleliu', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2745', 'Sonsorol', '167', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2746', 'Ariha', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2747', 'Bayt Lahm', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2748', 'Bethlehem', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2749', 'Dayr-al-Balah', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2750', 'Ghazzah', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2751', 'Ghazzah ash-Shamaliyah', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2752', 'Janin', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2753', 'Khan Yunis', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2754', 'Nabulus', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2755', 'Qalqilyah', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2756', 'Rafah', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2757', 'Ram Allah wal-Birah', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2758', 'Salfit', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2759', 'Tubas', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2760', 'Tulkarm', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2761', 'al-Khalil', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2762', 'al-Quds', '168', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2763', 'Bocas del Toro', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2764', 'Chiriqui', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2765', 'Cocle', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2766', 'Colon', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2767', 'Darien', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2768', 'Embera', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2769', 'Herrera', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2770', 'Kuna Yala', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2771', 'Los Santos', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2772', 'Ngobe Bugle', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2773', 'Panama', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2774', 'Veraguas', '169', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2775', 'East New Britain', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2776', 'East Sepik', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2777', 'Eastern Highlands', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2778', 'Enga', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2779', 'Fly River', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2780', 'Gulf', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2781', 'Madang', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2782', 'Manus', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2783', 'Milne Bay', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2784', 'Morobe', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2785', 'National Capital District', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2786', 'New Ireland', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2787', 'North Solomons', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2788', 'Oro', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2789', 'Sandaun', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2790', 'Simbu', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2791', 'Southern Highlands', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2792', 'West New Britain', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2793', 'Western Highlands', '170', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2794', 'Alto Paraguay', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2795', 'Alto Parana', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2796', 'Amambay', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2797', 'Asuncion', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2798', 'Boqueron', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2799', 'Caaguazu', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2800', 'Caazapa', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2801', 'Canendiyu', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2802', 'Central', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2803', 'Concepcion', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2804', 'Cordillera', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2805', 'Guaira', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2806', 'Itapua', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2807', 'Misiones', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2808', 'Neembucu', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2809', 'Paraguari', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2810', 'Presidente Hayes', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2811', 'San Pedro', '171', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2812', 'Amazonas', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2813', 'Ancash', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2814', 'Apurimac', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2815', 'Arequipa', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2816', 'Ayacucho', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2817', 'Cajamarca', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2818', 'Cusco', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2819', 'Huancavelica', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2820', 'Huanuco', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2821', 'Ica', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2822', 'Junin', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2823', 'La Libertad', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2824', 'Lambayeque', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2825', 'Lima y Callao', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2826', 'Loreto', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2827', 'Madre de Dios', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2828', 'Moquegua', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2829', 'Pasco', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2830', 'Piura', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2831', 'Puno', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2832', 'San Martin', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2833', 'Tacna', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2834', 'Tumbes', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2835', 'Ucayali', '172', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2836', 'Batangas', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2837', 'Bicol', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2838', 'Bulacan', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2839', 'Cagayan', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2840', 'Caraga', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2841', 'Central Luzon', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2842', 'Central Mindanao', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2843', 'Central Visayas', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2844', 'Cordillera', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2845', 'Davao', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2846', 'Eastern Visayas', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2847', 'Greater Metropolitan Area', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2848', 'Ilocos', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2849', 'Laguna', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2850', 'Luzon', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2851', 'Mactan', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2852', 'Metropolitan Manila Area', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2853', 'Muslim Mindanao', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2854', 'Northern Mindanao', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2855', 'Southern Mindanao', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2856', 'Southern Tagalog', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2857', 'Western Mindanao', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2858', 'Western Visayas', '173', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2859', 'Pitcairn Island', '174', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2860', 'Biale Blota', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2861', 'Dobroszyce', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2862', 'Dolnoslaskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2863', 'Dziekanow Lesny', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2864', 'Hopowo', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2865', 'Kartuzy', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2866', 'Koscian', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2867', 'Krakow', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2868', 'Kujawsko-Pomorskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2869', 'Lodzkie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2870', 'Lubelskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2871', 'Lubuskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2872', 'Malomice', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2873', 'Malopolskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2874', 'Mazowieckie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2875', 'Mirkow', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2876', 'Opolskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2877', 'Ostrowiec', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2878', 'Podkarpackie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2879', 'Podlaskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2880', 'Polska', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2881', 'Pomorskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2882', 'Poznan', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2883', 'Pruszkow', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2884', 'Rymanowska', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2885', 'Rzeszow', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2886', 'Slaskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2887', 'Stare Pole', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2888', 'Swietokrzyskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2889', 'Warminsko-Mazurskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2890', 'Warsaw', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2891', 'Wejherowo', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2892', 'Wielkopolskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2893', 'Wroclaw', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2894', 'Zachodnio-Pomorskie', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2895', 'Zukowo', '175', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2896', 'Abrantes', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2897', 'Acores', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2898', 'Alentejo', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2899', 'Algarve', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2900', 'Braga', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2901', 'Centro', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2902', 'Distrito de Leiria', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2903', 'Distrito de Viana do Castelo', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2904', 'Distrito de Vila Real', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2905', 'Distrito do Porto', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2906', 'Lisboa e Vale do Tejo', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2907', 'Madeira', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2908', 'Norte', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2909', 'Paivas', '176', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2910', 'Arecibo', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2911', 'Bayamon', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2912', 'Carolina', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2913', 'Florida', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2914', 'Guayama', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2915', 'Humacao', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2916', 'Mayaguez-Aguadilla', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2917', 'Ponce', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2918', 'Salinas', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2919', 'San Juan', '177', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2920', 'Doha', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2921', 'Jarian-al-Batnah', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2922', 'Umm Salal', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2923', 'ad-Dawhah', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2924', 'al-Ghuwayriyah', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2925', 'al-Jumayliyah', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2926', 'al-Khawr', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2927', 'al-Wakrah', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2928', 'ar-Rayyan', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2929', 'ash-Shamal', '178', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2930', 'Saint-Benoit', '179', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2931', 'Saint-Denis', '179', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2932', 'Saint-Paul', '179', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2933', 'Saint-Pierre', '179', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2934', 'Alba', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2935', 'Arad', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2936', 'Arges', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2937', 'Bacau', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2938', 'Bihor', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2939', 'Bistrita-Nasaud', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2940', 'Botosani', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2941', 'Braila', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2942', 'Brasov', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2943', 'Bucuresti', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2944', 'Buzau', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2945', 'Calarasi', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2946', 'Caras-Severin', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2947', 'Cluj', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2948', 'Constanta', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2949', 'Covasna', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2950', 'Dambovita', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2951', 'Dolj', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2952', 'Galati', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2953', 'Giurgiu', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2954', 'Gorj', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2955', 'Harghita', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2956', 'Hunedoara', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2957', 'Ialomita', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2958', 'Iasi', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2959', 'Ilfov', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2960', 'Maramures', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2961', 'Mehedinti', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2962', 'Mures', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2963', 'Neamt', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2964', 'Olt', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2965', 'Prahova', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2966', 'Salaj', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2967', 'Satu Mare', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2968', 'Sibiu', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2969', 'Sondelor', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2970', 'Suceava', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2971', 'Teleorman', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2972', 'Timis', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2973', 'Tulcea', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2974', 'Valcea', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2975', 'Vaslui', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2976', 'Vrancea', '180', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2977', 'Adygeja', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2978', 'Aga', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2979', 'Alanija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2980', 'Altaj', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2981', 'Amur', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2982', 'Arhangelsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2983', 'Astrahan', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2984', 'Bashkortostan', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2985', 'Belgorod', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2986', 'Brjansk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2987', 'Burjatija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2988', 'Chechenija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2989', 'Cheljabinsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2990', 'Chita', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2991', 'Chukotka', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2992', 'Chuvashija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2993', 'Dagestan', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2994', 'Evenkija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2995', 'Gorno-Altaj', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2996', 'Habarovsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2997', 'Hakasija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2998', 'Hanty-Mansija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('2999', 'Ingusetija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3000', 'Irkutsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3001', 'Ivanovo', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3002', 'Jamalo-Nenets', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3003', 'Jaroslavl', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3004', 'Jevrej', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3005', 'Kabardino-Balkarija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3006', 'Kaliningrad', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3007', 'Kalmykija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3008', 'Kaluga', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3009', 'Kamchatka', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3010', 'Karachaj-Cherkessija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3011', 'Karelija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3012', 'Kemerovo', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3013', 'Khabarovskiy Kray', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3014', 'Kirov', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3015', 'Komi', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3016', 'Komi-Permjakija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3017', 'Korjakija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3018', 'Kostroma', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3019', 'Krasnodar', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3020', 'Krasnojarsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3021', 'Krasnoyarskiy Kray', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3022', 'Kurgan', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3023', 'Kursk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3024', 'Leningrad', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3025', 'Lipeck', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3026', 'Magadan', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3027', 'Marij El', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3028', 'Mordovija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3029', 'Moscow', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3030', 'Moskovskaja Oblast', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3031', 'Moskovskaya Oblast', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3032', 'Moskva', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3033', 'Murmansk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3034', 'Nenets', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3035', 'Nizhnij Novgorod', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3036', 'Novgorod', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3037', 'Novokusnezk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3038', 'Novosibirsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3039', 'Omsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3040', 'Orenburg', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3041', 'Orjol', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3042', 'Penza', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3043', 'Perm', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3044', 'Primorje', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3045', 'Pskov', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3046', 'Pskovskaya Oblast', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3047', 'Rjazan', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3048', 'Rostov', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3049', 'Saha', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3050', 'Sahalin', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3051', 'Samara', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3052', 'Samarskaya', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3053', 'Sankt-Peterburg', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3054', 'Saratov', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3055', 'Smolensk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3056', 'Stavropol', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3057', 'Sverdlovsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3058', 'Tajmyrija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3059', 'Tambov', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3060', 'Tatarstan', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3061', 'Tjumen', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3062', 'Tomsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3063', 'Tula', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3064', 'Tver', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3065', 'Tyva', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3066', 'Udmurtija', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3067', 'Uljanovsk', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3068', 'Ulyanovskaya Oblast', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3069', 'Ust-Orda', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3070', 'Vladimir', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3071', 'Volgograd', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3072', 'Vologda', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3073', 'Voronezh', '181', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3074', 'Butare', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3075', 'Byumba', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3076', 'Cyangugu', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3077', 'Gikongoro', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3078', 'Gisenyi', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3079', 'Gitarama', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3080', 'Kibungo', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3081', 'Kibuye', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3082', 'Kigali-ngali', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3083', 'Ruhengeri', '182', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3084', 'Ascension', '183', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3085', 'Gough Island', '183', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3086', 'Saint Helena', '183', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3087', 'Tristan da Cunha', '183', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3088', 'Christ Church Nichola Town', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3089', 'Saint Anne Sandy Point', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3090', 'Saint George Basseterre', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3091', 'Saint George Gingerland', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3092', 'Saint James Windward', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3093', 'Saint John Capesterre', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3094', 'Saint John Figtree', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3095', 'Saint Mary Cayon', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3096', 'Saint Paul Capesterre', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3097', 'Saint Paul Charlestown', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3098', 'Saint Peter Basseterre', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3099', 'Saint Thomas Lowland', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3100', 'Saint Thomas Middle Island', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3101', 'Trinity Palmetto Point', '184', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3102', 'Anse-la-Raye', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3103', 'Canaries', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3104', 'Castries', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3105', 'Choiseul', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3106', 'Dennery', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3107', 'Gros Inlet', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3108', 'Laborie', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3109', 'Micoud', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3110', 'Soufriere', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3111', 'Vieux Fort', '185', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3112', 'Miquelon-Langlade', '186', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3113', 'Saint-Pierre', '186', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3114', 'Charlotte', '187', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3115', 'Grenadines', '187', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3116', 'Saint Andrew', '187', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3117', 'Saint David', '187', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3118', 'Saint George', '187', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3119', 'Saint Patrick', '187', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3120', 'A\'ana', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3121', 'Aiga-i-le-Tai', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3122', 'Atua', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3123', 'Fa\'asaleleaga', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3124', 'Gaga\'emauga', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3125', 'Gagaifomauga', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3126', 'Palauli', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3127', 'Satupa\'itea', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3128', 'Tuamasaga', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3129', 'Va\'a-o-Fonoti', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3130', 'Vaisigano', '188', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3131', 'Acquaviva', '189', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3132', 'Borgo Maggiore', '189', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3133', 'Chiesanuova', '189', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3134', 'Domagnano', '189', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3135', 'Faetano', '189', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3136', 'Fiorentino', '189', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3137', 'Montegiardino', '189', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3138', 'San Marino', '189', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3139', 'Serravalle', '189', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3140', 'Agua Grande', '190', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3141', 'Cantagalo', '190', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3142', 'Lemba', '190', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3143', 'Lobata', '190', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3144', 'Me-Zochi', '190', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3145', 'Pague', '190', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3146', 'Al Khobar', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3147', 'Aseer', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3148', 'Ash Sharqiyah', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3149', 'Asir', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3150', 'Central Province', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3151', 'Eastern Province', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3152', 'Ha\'il', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3153', 'Jawf', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3154', 'Jizan', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3155', 'Makkah', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3156', 'Najran', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3157', 'Qasim', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3158', 'Tabuk', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3159', 'Western Province', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3160', 'al-Bahah', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3161', 'al-Hudud-ash-Shamaliyah', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3162', 'al-Madinah', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3163', 'ar-Riyad', '191', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3164', 'Dakar', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3165', 'Diourbel', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3166', 'Fatick', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3167', 'Kaolack', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3168', 'Kolda', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3169', 'Louga', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3170', 'Saint-Louis', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3171', 'Tambacounda', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3172', 'Thies', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3173', 'Ziguinchor', '192', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3174', 'Central Serbia', '193', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3175', 'Kosovo and Metohija', '193', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3176', 'Vojvodina', '193', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3177', 'Anse Boileau', '194', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3178', 'Anse Royale', '194', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3179', 'Cascade', '194', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3180', 'Takamaka', '194', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3181', 'Victoria', '194', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3182', 'Eastern', '195', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3183', 'Northern', '195', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3184', 'Southern', '195', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3185', 'Western', '195', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3186', 'Singapore', '196', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3187', 'Banskobystricky', '197', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3188', 'Bratislavsky', '197', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3189', 'Kosicky', '197', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3190', 'Nitriansky', '197', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3191', 'Presovsky', '197', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3192', 'Trenciansky', '197', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3193', 'Trnavsky', '197', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3194', 'Zilinsky', '197', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3195', 'Benedikt', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3196', 'Gorenjska', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3197', 'Gorishka', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3198', 'Jugovzhodna Slovenija', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3199', 'Koroshka', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3200', 'Notranjsko-krashka', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3201', 'Obalno-krashka', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3202', 'Obcina Domzale', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3203', 'Obcina Vitanje', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3204', 'Osrednjeslovenska', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3205', 'Podravska', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3206', 'Pomurska', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3207', 'Savinjska', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3208', 'Slovenian Littoral', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3209', 'Spodnjeposavska', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3210', 'Zasavska', '198', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3211', 'Pitcairn', '199', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3212', 'Central', '200', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3213', 'Choiseul', '200', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3214', 'Guadalcanal', '200', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3215', 'Isabel', '200', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3216', 'Makira and Ulawa', '200', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3217', 'Malaita', '200', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3218', 'Rennell and Bellona', '200', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3219', 'Temotu', '200', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3220', 'Western', '200', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3221', 'Awdal', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3222', 'Bakol', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3223', 'Banadir', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3224', 'Bari', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3225', 'Bay', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3226', 'Galgudug', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3227', 'Gedo', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3228', 'Hiran', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3229', 'Jubbada Hose', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3230', 'Jubbadha Dexe', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3231', 'Mudug', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3232', 'Nugal', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3233', 'Sanag', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3234', 'Shabellaha Dhexe', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3235', 'Shabellaha Hose', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3236', 'Togdher', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3237', 'Woqoyi Galbed', '201', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3238', 'Eastern Cape', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3239', 'Free State', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3240', 'Gauteng', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3241', 'Kempton Park', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3242', 'Kramerville', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3243', 'KwaZulu Natal', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3244', 'Limpopo', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3245', 'Mpumalanga', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3246', 'North West', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3247', 'Northern Cape', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3248', 'Parow', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3249', 'Table View', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3250', 'Umtentweni', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3251', 'Western Cape', '202', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3252', 'South Georgia', '203', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3253', 'Central Equatoria', '204', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3254', 'A Coruna', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3255', 'Alacant', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3256', 'Alava', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3257', 'Albacete', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3258', 'Almeria', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3260', 'Asturias', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3261', 'Avila', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3262', 'Badajoz', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3263', 'Balears', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3264', 'Barcelona', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3267', 'Burgos', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3268', 'Caceres', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3269', 'Cadiz', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3270', 'Cantabria', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3271', 'Castello', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3273', 'Ceuta', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3274', 'Ciudad Real', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3281', 'Cordoba', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3282', 'Cuenca', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3284', 'Girona', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3285', 'Granada', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3286', 'Guadalajara', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3287', 'Guipuzcoa', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3288', 'Huelva', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3289', 'Huesca', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3290', 'Jaen', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3291', 'La Rioja', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3292', 'Las Palmas', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3293', 'Leon', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3295', 'Lleida', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3296', 'Lugo', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3297', 'Madrid', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3298', 'Malaga', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3299', 'Melilla', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3300', 'Murcia', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3301', 'Navarra', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3302', 'Ourense', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3303', 'Pais Vasco', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3304', 'Palencia', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3305', 'Pontevedra', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3306', 'Salamanca', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3308', 'Segovia', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3309', 'Sevilla', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3310', 'Soria', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3311', 'Tarragona', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3312', 'Santa Cruz de Tenerife', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3313', 'Teruel', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3314', 'Toledo', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3315', 'Valencia', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3316', 'Valladolid', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3317', 'Vizcaya', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3318', 'Zamora', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3319', 'Zaragoza', '205', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3320', 'Amparai', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3321', 'Anuradhapuraya', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3322', 'Badulla', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3323', 'Boralesgamuwa', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3324', 'Colombo', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3325', 'Galla', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3326', 'Gampaha', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3327', 'Hambantota', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3328', 'Kalatura', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3329', 'Kegalla', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3330', 'Kilinochchi', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3331', 'Kurunegala', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3332', 'Madakalpuwa', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3333', 'Maha Nuwara', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3334', 'Malwana', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3335', 'Mannarama', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3336', 'Matale', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3337', 'Matara', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3338', 'Monaragala', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3339', 'Mullaitivu', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3340', 'North Eastern Province', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3341', 'North Western Province', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3342', 'Nuwara Eliya', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3343', 'Polonnaruwa', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3344', 'Puttalama', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3345', 'Ratnapuraya', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3346', 'Southern Province', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3347', 'Tirikunamalaya', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3348', 'Tuscany', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3349', 'Vavuniyawa', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3350', 'Western Province', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3351', 'Yapanaya', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3352', 'kadawatha', '206', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3353', 'A\'ali-an-Nil', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3354', 'Bahr-al-Jabal', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3355', 'Central Equatoria', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3356', 'Gharb Bahr-al-Ghazal', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3357', 'Gharb Darfur', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3358', 'Gharb Kurdufan', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3359', 'Gharb-al-Istiwa\'iyah', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3360', 'Janub Darfur', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3361', 'Janub Kurdufan', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3362', 'Junqali', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3363', 'Kassala', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3364', 'Nahr-an-Nil', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3365', 'Shamal Bahr-al-Ghazal', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3366', 'Shamal Darfur', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3367', 'Shamal Kurdufan', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3368', 'Sharq-al-Istiwa\'iyah', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3369', 'Sinnar', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3370', 'Warab', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3371', 'Wilayat al Khartum', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3372', 'al-Bahr-al-Ahmar', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3373', 'al-Buhayrat', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3374', 'al-Jazirah', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3375', 'al-Khartum', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3376', 'al-Qadarif', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3377', 'al-Wahdah', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3378', 'an-Nil-al-Abyad', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3379', 'an-Nil-al-Azraq', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3380', 'ash-Shamaliyah', '207', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3381', 'Brokopondo', '208', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3382', 'Commewijne', '208', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3383', 'Coronie', '208', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3384', 'Marowijne', '208', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3385', 'Nickerie', '208', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3386', 'Para', '208', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3387', 'Paramaribo', '208', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3388', 'Saramacca', '208', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3389', 'Wanica', '208', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3390', 'Svalbard', '209', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3391', 'Hhohho', '210', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3392', 'Lubombo', '210', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3393', 'Manzini', '210', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3394', 'Shiselweni', '210', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3395', 'Alvsborgs Lan', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3396', 'Angermanland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3397', 'Blekinge', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3398', 'Bohuslan', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3399', 'Dalarna', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3400', 'Gavleborg', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3401', 'Gaza', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3402', 'Gotland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3403', 'Halland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3404', 'Jamtland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3405', 'Jonkoping', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3406', 'Kalmar', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3407', 'Kristianstads', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3408', 'Kronoberg', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3409', 'Norrbotten', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3410', 'Orebro', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3411', 'Ostergotland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3412', 'Saltsjo-Boo', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3413', 'Skane', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3414', 'Smaland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3415', 'Sodermanland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3416', 'Stockholm', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3417', 'Uppsala', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3418', 'Varmland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3419', 'Vasterbotten', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3420', 'Vastergotland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3421', 'Vasternorrland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3422', 'Vastmanland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3423', 'Vastra Gotaland', '211', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3424', 'Aargau', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3425', 'Appenzell Inner-Rhoden', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3426', 'Appenzell-Ausser Rhoden', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3427', 'Basel-Landschaft', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3428', 'Basel-Stadt', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3429', 'Bern', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3430', 'Canton Ticino', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3431', 'Fribourg', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3432', 'Geneve', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3433', 'Glarus', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3434', 'Graubunden', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3435', 'Heerbrugg', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3436', 'Jura', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3437', 'Kanton Aargau', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3438', 'Luzern', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3439', 'Morbio Inferiore', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3440', 'Muhen', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3441', 'Neuchatel', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3442', 'Nidwalden', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3443', 'Obwalden', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3444', 'Sankt Gallen', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3445', 'Schaffhausen', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3446', 'Schwyz', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3447', 'Solothurn', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3448', 'Thurgau', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3449', 'Ticino', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3450', 'Uri', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3451', 'Valais', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3452', 'Vaud', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3453', 'Vauffelin', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3454', 'Zug', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3455', 'Zurich', '212', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3456', 'Aleppo', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3457', 'Dar\'a', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3458', 'Dayr-az-Zawr', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3459', 'Dimashq', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3460', 'Halab', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3461', 'Hamah', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3462', 'Hims', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3463', 'Idlib', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3464', 'Madinat Dimashq', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3465', 'Tartus', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3466', 'al-Hasakah', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3467', 'al-Ladhiqiyah', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3468', 'al-Qunaytirah', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3469', 'ar-Raqqah', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3470', 'as-Suwayda', '213', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3471', 'Changhua County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3472', 'Chiayi County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3473', 'Chiayi City', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3474', 'Taipei City', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3475', 'Hsinchu County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3476', 'Hsinchu City', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3477', 'Hualien County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3480', 'Kaohsiung City', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3481', 'Keelung City', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3482', 'Kinmen County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3483', 'Miaoli County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3484', 'Nantou County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3486', 'Penghu County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3487', 'Pingtung County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3488', 'Taichung City', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3492', 'Tainan City', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3493', 'New Taipei City', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3495', 'Taitung County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3496', 'Taoyuan City', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3497', 'Yilan County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3498', 'YunLin County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3500', 'Dushanbe', '215', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3501', 'Gorno-Badakhshan', '215', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3502', 'Karotegin', '215', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3503', 'Khatlon', '215', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3504', 'Sughd', '215', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3505', 'Arusha', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3506', 'Dar es Salaam', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3507', 'Dodoma', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3508', 'Iringa', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3509', 'Kagera', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3510', 'Kigoma', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3511', 'Kilimanjaro', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3512', 'Lindi', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3513', 'Mara', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3514', 'Mbeya', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3515', 'Morogoro', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3516', 'Mtwara', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3517', 'Mwanza', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3518', 'Pwani', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3519', 'Rukwa', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3520', 'Ruvuma', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3521', 'Shinyanga', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3522', 'Singida', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3523', 'Tabora', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3524', 'Tanga', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3525', 'Zanzibar and Pemba', '216', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3526', 'Amnat Charoen', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3527', 'Ang Thong', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3528', 'Bangkok', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3529', 'Buri Ram', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3530', 'Chachoengsao', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3531', 'Chai Nat', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3532', 'Chaiyaphum', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3533', 'Changwat Chaiyaphum', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3534', 'Chanthaburi', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3535', 'Chiang Mai', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3536', 'Chiang Rai', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3537', 'Chon Buri', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3538', 'Chumphon', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3539', 'Kalasin', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3540', 'Kamphaeng Phet', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3541', 'Kanchanaburi', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3542', 'Khon Kaen', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3543', 'Krabi', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3544', 'Krung Thep', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3545', 'Lampang', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3546', 'Lamphun', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3547', 'Loei', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3548', 'Lop Buri', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3549', 'Mae Hong Son', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3550', 'Maha Sarakham', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3551', 'Mukdahan', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3552', 'Nakhon Nayok', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3553', 'Nakhon Pathom', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3554', 'Nakhon Phanom', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3555', 'Nakhon Ratchasima', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3556', 'Nakhon Sawan', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3557', 'Nakhon Si Thammarat', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3558', 'Nan', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3559', 'Narathiwat', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3560', 'Nong Bua Lam Phu', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3561', 'Nong Khai', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3562', 'Nonthaburi', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3563', 'Pathum Thani', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3564', 'Pattani', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3565', 'Phangnga', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3566', 'Phatthalung', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3567', 'Phayao', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3568', 'Phetchabun', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3569', 'Phetchaburi', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3570', 'Phichit', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3571', 'Phitsanulok', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3572', 'Phra Nakhon Si Ayutthaya', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3573', 'Phrae', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3574', 'Phuket', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3575', 'Prachin Buri', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3576', 'Prachuap Khiri Khan', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3577', 'Ranong', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3578', 'Ratchaburi', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3579', 'Rayong', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3580', 'Roi Et', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3581', 'Sa Kaeo', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3582', 'Sakon Nakhon', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3583', 'Samut Prakan', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3584', 'Samut Sakhon', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3585', 'Samut Songkhran', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3586', 'Saraburi', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3587', 'Satun', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3588', 'Si Sa Ket', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3589', 'Sing Buri', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3590', 'Songkhla', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3591', 'Sukhothai', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3592', 'Suphan Buri', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3593', 'Surat Thani', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3594', 'Surin', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3595', 'Tak', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3596', 'Trang', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3597', 'Trat', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3598', 'Ubon Ratchathani', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3599', 'Udon Thani', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3600', 'Uthai Thani', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3601', 'Uttaradit', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3602', 'Yala', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3603', 'Yasothon', '217', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3604', 'Centre', '218', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3605', 'Kara', '218', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3606', 'Maritime', '218', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3607', 'Plateaux', '218', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3608', 'Savanes', '218', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3609', 'Atafu', '219', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3610', 'Fakaofo', '219', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3611', 'Nukunonu', '219', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3612', 'Eua', '220', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3613', 'Ha\'apai', '220', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3614', 'Niuas', '220', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3615', 'Tongatapu', '220', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3616', 'Vava\'u', '220', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3617', 'Arima-Tunapuna-Piarco', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3618', 'Caroni', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3619', 'Chaguanas', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3620', 'Couva-Tabaquite-Talparo', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3621', 'Diego Martin', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3622', 'Glencoe', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3623', 'Penal Debe', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3624', 'Point Fortin', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3625', 'Port of Spain', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3626', 'Princes Town', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3627', 'Saint George', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3628', 'San Fernando', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3629', 'San Juan', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3630', 'Sangre Grande', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3631', 'Siparia', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3632', 'Tobago', '221', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3633', 'Aryanah', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3634', 'Bajah', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3635', 'Bin \'Arus', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3636', 'Binzart', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3637', 'Gouvernorat de Ariana', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3638', 'Gouvernorat de Nabeul', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3639', 'Gouvernorat de Sousse', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3640', 'Hammamet Yasmine', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3641', 'Jundubah', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3642', 'Madaniyin', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3643', 'Manubah', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3644', 'Monastir', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3645', 'Nabul', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3646', 'Qabis', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3647', 'Qafsah', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3648', 'Qibili', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3649', 'Safaqis', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3650', 'Sfax', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3651', 'Sidi Bu Zayd', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3652', 'Silyanah', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3653', 'Susah', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3654', 'Tatawin', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3655', 'Tawzar', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3656', 'Tunis', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3657', 'Zaghwan', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3658', 'al-Kaf', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3659', 'al-Mahdiyah', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3660', 'al-Munastir', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3661', 'al-Qasrayn', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3662', 'al-Qayrawan', '222', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3663', 'Adana', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3664', 'Adiyaman', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3665', 'Afyon', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3666', 'Agri', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3667', 'Aksaray', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3668', 'Amasya', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3669', 'Ankara', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3670', 'Antalya', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3671', 'Ardahan', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3672', 'Artvin', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3673', 'Aydin', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3674', 'Balikesir', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3675', 'Bartin', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3676', 'Batman', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3677', 'Bayburt', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3678', 'Bilecik', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3679', 'Bingol', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3680', 'Bitlis', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3681', 'Bolu', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3682', 'Burdur', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3683', 'Bursa', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3684', 'Canakkale', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3685', 'Cankiri', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3686', 'Corum', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3687', 'Denizli', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3688', 'Diyarbakir', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3689', 'Duzce', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3690', 'Edirne', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3691', 'Elazig', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3692', 'Erzincan', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3693', 'Erzurum', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3694', 'Eskisehir', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3695', 'Gaziantep', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3696', 'Giresun', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3697', 'Gumushane', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3698', 'Hakkari', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3699', 'Hatay', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3700', 'Icel', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3701', 'Igdir', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3702', 'Isparta', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3703', 'Istanbul', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3704', 'Izmir', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3705', 'Kahramanmaras', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3706', 'Karabuk', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3707', 'Karaman', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3708', 'Kars', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3709', 'Karsiyaka', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3710', 'Kastamonu', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3711', 'Kayseri', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3712', 'Kilis', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3713', 'Kirikkale', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3714', 'Kirklareli', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3715', 'Kirsehir', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3716', 'Kocaeli', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3717', 'Konya', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3718', 'Kutahya', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3719', 'Lefkosa', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3720', 'Malatya', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3721', 'Manisa', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3722', 'Mardin', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3723', 'Mugla', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3724', 'Mus', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3725', 'Nevsehir', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3726', 'Nigde', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3727', 'Ordu', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3728', 'Osmaniye', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3729', 'Rize', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3730', 'Sakarya', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3731', 'Samsun', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3732', 'Sanliurfa', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3733', 'Siirt', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3734', 'Sinop', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3735', 'Sirnak', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3736', 'Sivas', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3737', 'Tekirdag', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3738', 'Tokat', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3739', 'Trabzon', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3740', 'Tunceli', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3741', 'Usak', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3742', 'Van', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3743', 'Yalova', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3744', 'Yozgat', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3745', 'Zonguldak', '223', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3746', 'Ahal', '224', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3747', 'Asgabat', '224', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3748', 'Balkan', '224', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3749', 'Dasoguz', '224', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3750', 'Lebap', '224', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3751', 'Mari', '224', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3752', 'Grand Turk', '225', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3753', 'South Caicos and East Caicos', '225', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3754', 'Funafuti', '226', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3755', 'Nanumanga', '226', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3756', 'Nanumea', '226', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3757', 'Niutao', '226', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3758', 'Nui', '226', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3759', 'Nukufetau', '226', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3760', 'Nukulaelae', '226', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3761', 'Vaitupu', '226', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3762', 'Central', '227', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3763', 'Eastern', '227', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3764', 'Northern', '227', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3765', 'Western', '227', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3766', 'Cherkas\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3767', 'Chernihivs\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3768', 'Chernivets\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3769', 'Crimea', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3770', 'Dnipropetrovska', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3771', 'Donets\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3772', 'Ivano-Frankivs\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3773', 'Kharkiv', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3774', 'Kharkov', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3775', 'Khersonska', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3776', 'Khmel\'nyts\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3777', 'Kirovohrad', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3778', 'Krym', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3779', 'Kyyiv', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3780', 'Kyyivs\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3781', 'L\'vivs\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3782', 'Luhans\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3783', 'Mykolayivs\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3784', 'Odes\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3785', 'Odessa', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3786', 'Poltavs\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3787', 'Rivnens\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3788', 'Sevastopol\'', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3789', 'Sums\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3790', 'Ternopil\'s\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3791', 'Volyns\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3792', 'Vynnyts\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3793', 'Zakarpats\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3794', 'Zaporizhia', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3795', 'Zhytomyrs\'ka', '228', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3796', 'Abu Zabi', '229', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3797', 'Ajman', '229', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3798', 'Dubai', '229', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3799', 'Ras al-Khaymah', '229', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3800', 'Sharjah', '229', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3801', 'Sharjha', '229', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3802', 'Umm al Qaywayn', '229', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3803', 'al-Fujayrah', '229', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3804', 'ash-Shariqah', '229', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3805', 'Aberdeen', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3806', 'Aberdeenshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3807', 'Argyll', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3808', 'Armagh', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3809', 'Bedfordshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3810', 'Belfast', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3811', 'Berkshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3812', 'Birmingham', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3813', 'Brechin', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3814', 'Bridgnorth', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3815', 'Bristol', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3816', 'Buckinghamshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3817', 'Cambridge', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3818', 'Cambridgeshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3819', 'Channel Islands', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3820', 'Cheshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3821', 'Cleveland', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3822', 'Co Fermanagh', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3823', 'Conwy', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3824', 'Cornwall', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3825', 'Coventry', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3826', 'Craven Arms', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3827', 'Cumbria', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3828', 'Denbighshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3829', 'Derby', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3830', 'Derbyshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3831', 'Devon', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3832', 'Dial Code Dungannon', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3833', 'Didcot', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3834', 'Dorset', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3835', 'Dunbartonshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3836', 'Durham', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3837', 'East Dunbartonshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3838', 'East Lothian', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3839', 'East Midlands', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3840', 'East Sussex', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3841', 'East Yorkshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3842', 'England', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3843', 'Essex', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3844', 'Fermanagh', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3845', 'Fife', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3846', 'Flintshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3847', 'Fulham', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3848', 'Gainsborough', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3849', 'Glocestershire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3850', 'Gwent', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3851', 'Hampshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3852', 'Hants', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3853', 'Herefordshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3854', 'Hertfordshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3855', 'Ireland', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3856', 'Isle Of Man', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3857', 'Isle of Wight', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3858', 'Kenford', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3859', 'Kent', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3860', 'Kilmarnock', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3861', 'Lanarkshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3862', 'Lancashire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3863', 'Leicestershire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3864', 'Lincolnshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3865', 'Llanymynech', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3866', 'London', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3867', 'Ludlow', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3868', 'Manchester', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3869', 'Mayfair', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3870', 'Merseyside', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3871', 'Mid Glamorgan', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3872', 'Middlesex', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3873', 'Mildenhall', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3874', 'Monmouthshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3875', 'Newton Stewart', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3876', 'Norfolk', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3877', 'North Humberside', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3878', 'North Yorkshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3879', 'Northamptonshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3880', 'Northants', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3881', 'Northern Ireland', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3882', 'Northumberland', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3883', 'Nottinghamshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3884', 'Oxford', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3885', 'Powys', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3886', 'Roos-shire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3887', 'SUSSEX', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3888', 'Sark', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3889', 'Scotland', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3890', 'Scottish Borders', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3891', 'Shropshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3892', 'Somerset', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3893', 'South Glamorgan', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3894', 'South Wales', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3895', 'South Yorkshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3896', 'Southwell', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3897', 'Staffordshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3898', 'Strabane', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3899', 'Suffolk', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3900', 'Surrey', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3901', 'Sussex', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3902', 'Twickenham', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3903', 'Tyne and Wear', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3904', 'Tyrone', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3905', 'Utah', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3906', 'Wales', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3907', 'Warwickshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3908', 'West Lothian', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3909', 'West Midlands', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3910', 'West Sussex', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3911', 'West Yorkshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3912', 'Whissendine', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3913', 'Wiltshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3914', 'Wokingham', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3915', 'Worcestershire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3916', 'Wrexham', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3917', 'Wurttemberg', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3918', 'Yorkshire', '230', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3919', 'Alabama', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3920', 'Alaska', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3921', 'Arizona', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3922', 'Arkansas', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3923', 'Byram', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3924', 'California', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3925', 'Cokato', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3926', 'Colorado', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3927', 'Connecticut', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3928', 'Delaware', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3929', 'District of Columbia', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3930', 'Florida', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3931', 'Georgia', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3932', 'Hawaii', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3933', 'Idaho', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3934', 'Illinois', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3935', 'Indiana', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3936', 'Iowa', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3937', 'Kansas', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3938', 'Kentucky', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3939', 'Louisiana', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3940', 'Lowa', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3941', 'Maine', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3942', 'Maryland', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3943', 'Massachusetts', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3944', 'Medfield', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3945', 'Michigan', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3946', 'Minnesota', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3947', 'Mississippi', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3948', 'Missouri', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3949', 'Montana', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3950', 'Nebraska', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3951', 'Nevada', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3952', 'New Hampshire', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3953', 'New Jersey', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3954', 'New Jersy', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3955', 'New Mexico', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3956', 'New York', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3957', 'North Carolina', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3958', 'North Dakota', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3959', 'Ohio', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3960', 'Oklahoma', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3961', 'Ontario', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3962', 'Oregon', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3963', 'Pennsylvania', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3964', 'Ramey', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3965', 'Rhode Island', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3966', 'South Carolina', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3967', 'South Dakota', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3968', 'Sublimity', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3969', 'Tennessee', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3970', 'Texas', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3971', 'Trimble', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3972', 'Utah', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3973', 'Vermont', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3974', 'Virginia', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3975', 'Washington', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3976', 'West Virginia', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3977', 'Wisconsin', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3978', 'Wyoming', '231', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3979', 'United States Minor Outlying I', '232', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3980', 'Artigas', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3981', 'Canelones', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3982', 'Cerro Largo', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3983', 'Colonia', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3984', 'Durazno', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3985', 'FLorida', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3986', 'Flores', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3987', 'Lavalleja', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3988', 'Maldonado', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3989', 'Montevideo', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3990', 'Paysandu', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3991', 'Rio Negro', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3992', 'Rivera', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3993', 'Rocha', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3994', 'Salto', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3995', 'San Jose', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3996', 'Soriano', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3997', 'Tacuarembo', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3998', 'Treinta y Tres', '233', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('3999', 'Andijon', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4000', 'Buhoro', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4001', 'Buxoro Viloyati', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4002', 'Cizah', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4003', 'Fargona', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4004', 'Horazm', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4005', 'Kaskadar', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4006', 'Korakalpogiston', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4007', 'Namangan', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4008', 'Navoi', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4009', 'Samarkand', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4010', 'Sirdare', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4011', 'Surhondar', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4012', 'Toskent', '234', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4013', 'Malampa', '235', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4014', 'Penama', '235', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4015', 'Sanma', '235', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4016', 'Shefa', '235', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4017', 'Tafea', '235', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4018', 'Torba', '235', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4019', 'Vatican City State (Holy See)', '236', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4020', 'Amazonas', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4021', 'Anzoategui', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4022', 'Apure', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4023', 'Aragua', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4024', 'Barinas', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4025', 'Bolivar', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4026', 'Carabobo', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4027', 'Cojedes', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4028', 'Delta Amacuro', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4029', 'Distrito Federal', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4030', 'Falcon', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4031', 'Guarico', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4032', 'Lara', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4033', 'Merida', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4034', 'Miranda', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4035', 'Monagas', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4036', 'Nueva Esparta', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4037', 'Portuguesa', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4038', 'Sucre', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4039', 'Tachira', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4040', 'Trujillo', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4041', 'Vargas', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4042', 'Yaracuy', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4043', 'Zulia', '237', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4044', 'Bac Giang', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4045', 'Binh Dinh', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4046', 'Binh Duong', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4047', 'Da Nang', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4048', 'Dong Bang Song Cuu Long', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4049', 'Dong Bang Song Hong', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4050', 'Dong Nai', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4051', 'Dong Nam Bo', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4052', 'Duyen Hai Mien Trung', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4053', 'Hanoi', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4054', 'Hung Yen', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4055', 'Khu Bon Cu', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4056', 'Long An', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4057', 'Mien Nui Va Trung Du', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4058', 'Thai Nguyen', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4059', 'Thanh Pho Ho Chi Minh', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4060', 'Thu Do Ha Noi', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4061', 'Tinh Can Tho', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4062', 'Tinh Da Nang', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4063', 'Tinh Gia Lai', '238', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4064', 'Anegada', '239', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4065', 'Jost van Dyke', '239', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4066', 'Tortola', '239', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4067', 'Saint Croix', '240', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4068', 'Saint John', '240', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4069', 'Saint Thomas', '240', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4070', 'Alo', '241', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4071', 'Singave', '241', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4072', 'Wallis', '241', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4073', 'Bu Jaydur', '242', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4074', 'Wad-adh-Dhahab', '242', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4075', 'al-\'Ayun', '242', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4076', 'as-Samarah', '242', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4077', '\'Adan', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4078', 'Abyan', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4079', 'Dhamar', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4080', 'Hadramaut', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4081', 'Hajjah', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4082', 'Hudaydah', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4083', 'Ibb', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4084', 'Lahij', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4085', 'Ma\'rib', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4086', 'Madinat San\'a', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4087', 'Sa\'dah', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4088', 'Sana', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4089', 'Shabwah', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4090', 'Ta\'izz', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4091', 'al-Bayda', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4092', 'al-Hudaydah', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4093', 'al-Jawf', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4094', 'al-Mahrah', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4095', 'al-Mahwit', '243', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4096', 'Central Serbia', '244', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4097', 'Kosovo and Metohija', '244', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4098', 'Montenegro', '244', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4099', 'Republic of Serbia', '244', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4100', 'Serbia', '244', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4101', 'Vojvodina', '244', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4102', 'Central', '245', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4103', 'Copperbelt', '245', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4104', 'Eastern', '245', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4105', 'Luapala', '245', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4106', 'Lusaka', '245', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4107', 'North-Western', '245', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4108', 'Northern', '245', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4109', 'Southern', '245', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4110', 'Western', '245', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4111', 'Bulawayo', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4112', 'Harare', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4113', 'Manicaland', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4114', 'Mashonaland Central', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4115', 'Mashonaland East', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4116', 'Mashonaland West', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4117', 'Masvingo', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4118', 'Matabeleland North', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4119', 'Matabeleland South', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4120', 'Midlands', '246', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL),
('4121', 'Lienchiang County', '214', '1', '2021-04-06 06:41:20', '2021-04-06 06:41:20', NULL);

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

DROP TABLE IF EXISTS `subscribers`;
CREATE TABLE `subscribers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(50) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `subscribers`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `taxes`
-- ----------------------------------------

DROP TABLE IF EXISTS `taxes`;
CREATE TABLE `taxes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `tax_status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0 = Inactive, 1 = Active',
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `taxes`
-- ----------------------------------------

INSERT INTO `taxes` (`id`, `name`, `tax_status`, `created_at`, `updated_at`) VALUES
('3', 'Tax', '1', '2021-03-07 17:15:33', '2021-03-07 17:15:33');

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

DROP TABLE IF EXISTS `ticket_replies`;
CREATE TABLE `ticket_replies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ticket_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `reply` longtext NOT NULL,
  `files` longtext DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `ticket_replies`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `tickets`;
CREATE TABLE `tickets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` bigint(23) NOT NULL,
  `user_id` int(11) NOT NULL,
  `subject` varchar(255) NOT NULL,
  `details` longtext DEFAULT NULL,
  `files` longtext DEFAULT NULL,
  `status` varchar(10) NOT NULL DEFAULT 'pending',
  `viewed` int(1) NOT NULL DEFAULT 0,
  `client_viewed` int(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `tickets`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `transactions`
-- ----------------------------------------

DROP TABLE IF EXISTS `transactions`;
CREATE TABLE `transactions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `gateway` varchar(255) DEFAULT NULL,
  `payment_type` varchar(255) DEFAULT NULL,
  `additional_content` text DEFAULT NULL,
  `mpesa_request` varchar(255) DEFAULT NULL,
  `mpesa_receipt` varchar(255) DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;

-- ----------------------------------------
-- Data for `transactions`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `translations`;
CREATE TABLE `translations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `lang` varchar(10) DEFAULT NULL,
  `lang_key` text DEFAULT NULL,
  `lang_value` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=27599 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `translations`
-- ----------------------------------------

INSERT INTO `translations` (`id`, `lang`, `lang_key`, `lang_value`, `created_at`, `updated_at`) VALUES
('3', 'en', 'all_category', 'All Category', '2020-11-02 13:10:38', '2021-09-20 12:59:07'),
('4', 'en', 'all', 'All', '2020-11-02 13:10:38', '2021-09-20 12:59:07'),
('5', 'en', 'flash_sale', 'Flash Sale', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('6', 'en', 'view_more', 'View More', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('7', 'en', 'add_to_wishlist', 'Add to wishlist', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('8', 'en', 'add_to_compare', 'Add to compare', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('9', 'en', 'add_to_cart', 'Add to cart', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('10', 'en', 'club_point', 'Club Point', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('11', 'en', 'classified_ads', 'Classified Ads', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('13', 'en', 'used', 'Used', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('14', 'en', 'top_10_categories', 'Top 10 Categories', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('15', 'en', 'view_all_categories', 'View All Categories', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('16', 'en', 'top_10_brands', 'Top 10 Brands', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('17', 'en', 'view_all_brands', 'View All Brands', '2020-11-02 13:10:40', '2021-09-20 12:59:07'),
('43', 'en', 'terms__conditions', 'Terms & conditions', '2020-11-02 13:10:41', '2021-09-20 12:59:07'),
('51', 'en', 'best_selling', 'Best Selling', '2020-11-02 13:10:42', '2021-09-20 12:59:07'),
('53', 'en', 'top_20', 'Top 20', '2020-11-02 13:10:42', '2021-09-20 12:59:07'),
('55', 'en', 'featured_products', 'Featured Products', '2020-11-02 13:10:42', '2021-09-20 12:59:07'),
('56', 'en', 'best_sellers', 'Best Sellers', '2020-11-02 13:10:43', '2021-09-20 12:59:07'),
('57', 'en', 'visit_store', 'Visit Store', '2020-11-02 13:10:43', '2021-09-20 12:59:07'),
('58', 'en', 'popular_suggestions', 'Popular Suggestions', '2020-11-02 13:16:59', '2021-09-20 12:59:07'),
('59', 'en', 'category_suggestions', 'Category Suggestions', '2020-11-02 13:16:59', '2021-09-20 12:59:07'),
('62', 'en', 'automobile__motorcycle', 'Automobile & Motorcycle', '2020-11-02 13:17:01', '2021-09-20 12:59:07'),
('63', 'en', 'price_range', 'Price range', '2020-11-02 13:17:01', '2021-09-20 12:59:07'),
('64', 'en', 'filter_by_color', 'Filter by color', '2020-11-02 13:17:02', '2021-09-20 12:59:07'),
('65', 'en', 'home', 'Home', '2020-11-02 13:17:02', '2021-09-20 12:59:07'),
('67', 'en', 'newest', 'Newest', '2020-11-02 13:17:02', '2021-09-20 12:59:07'),
('68', 'en', 'oldest', 'Oldest', '2020-11-02 13:17:02', '2021-09-20 12:59:07'),
('69', 'en', 'price_low_to_high', 'Price low to high', '2020-11-02 13:17:02', '2021-09-20 12:59:07'),
('70', 'en', 'price_high_to_low', 'Price high to low', '2020-11-02 13:17:02', '2021-09-20 12:59:07'),
('71', 'en', 'brands', 'Brands', '2020-11-02 13:17:02', '2021-09-20 12:59:07'),
('72', 'en', 'all_brands', 'All Brands', '2020-11-02 13:17:02', '2021-09-20 12:59:07'),
('74', 'en', 'all_sellers', 'All Sellers', '2020-11-02 13:17:02', '2021-09-20 12:59:07'),
('78', 'en', 'inhouse_product', 'Inhouse product', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('79', 'en', 'message_seller', 'Message Seller', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('80', 'en', 'price', 'Price', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('81', 'en', 'discount_price', 'Discount Price', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('82', 'en', 'color', 'Color', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('83', 'en', 'quantity', 'Quantity', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('84', 'en', 'available', 'available', '2020-11-02 13:48:03', '2021-02-09 12:22:36'),
('85', 'en', 'total_price', 'Total Price', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('86', 'en', 'out_of_stock', 'Out of Stock', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('87', 'en', 'refund', 'Refund', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('88', 'en', 'share', 'Share', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('89', 'en', 'sold_by', 'Sold By', '2020-11-02 13:48:03', '2021-09-20 13:06:54'),
('90', 'en', 'customer_reviews', 'customer reviews', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('91', 'en', 'top_selling_products', 'Top Selling Products', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('92', 'en', 'description', 'Description', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('93', 'en', 'video', 'Video', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('94', 'en', 'reviews', 'Reviews', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('95', 'en', 'download', 'Download', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('96', 'en', 'there_have_been_no_reviews_for_this_product_yet', 'There have been no reviews for this product yet.', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('97', 'en', 'related_products', 'Related products', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('98', 'en', 'any_query_about_this_product', 'Any query about this product', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('99', 'en', 'product_name', 'Product Name', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('100', 'en', 'your_question', 'Your Question', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('101', 'en', 'send', 'Send', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('103', 'en', 'use_country_code_before_number', 'Use country code before number', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('105', 'en', 'remember_me', 'Remember Me', '2020-11-02 13:48:03', '2021-09-20 12:59:07'),
('107', 'en', 'dont_have_an_account', 'Dont have an account?', '2020-11-02 13:48:04', '2021-09-20 12:59:07'),
('108', 'en', 'register_now', 'Register Now', '2020-11-02 13:48:04', '2021-09-20 12:59:07'),
('109', 'en', 'or_login_with', 'Or Login With', '2020-11-02 13:48:04', '2021-09-20 12:59:07'),
('110', 'en', 'oops', 'oops..', '2020-11-02 15:59:04', '2021-09-20 12:59:07'),
('111', 'en', 'this_item_is_out_of_stock', 'This item is out of stock!', '2020-11-02 15:59:04', '2021-09-20 12:59:07'),
('112', 'en', 'back_to_shopping', 'Back to shopping', '2020-11-02 15:59:04', '2021-09-20 12:59:07'),
('113', 'en', 'login_to_your_account', 'Login to your account.', '2020-11-02 16:57:41', '2021-09-20 12:59:07'),
('115', 'en', 'purchase_history', 'Purchase History', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('116', 'en', 'new', 'New', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('117', 'en', 'downloads', 'Downloads', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('118', 'en', 'sent_refund_request', 'Sent Refund Request', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('119', 'en', 'product_bulk_upload', 'Product Bulk Upload', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('123', 'en', 'orders', 'Orders', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('124', 'en', 'recieved_refund_request', 'Recieved Refund Request', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('126', 'en', 'shop_setting', 'Shop Setting', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('127', 'en', 'payment_history', 'Payment History', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('128', 'en', 'money_withdraw', 'Money Withdraw', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('129', 'en', 'conversations', 'Conversations', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('130', 'en', 'my_wallet', 'My Wallet', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('131', 'en', 'earning_points', 'Earning Points', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('132', 'en', 'support_ticket', 'Support Ticket', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('133', 'en', 'manage_profile', 'Manage Profile', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('134', 'en', 'sold_amount', 'Sold Amount', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('135', 'en', 'your_sold_amount_current_month', 'Your sold amount (current month)', '2020-11-02 16:57:53', '2021-09-20 12:59:07'),
('136', 'en', 'total_sold', 'Total Sold', '2020-11-02 16:57:54', '2021-09-20 12:59:07'),
('137', 'en', 'last_month_sold', 'Last Month Sold', '2020-11-02 16:57:54', '2021-09-20 12:59:07'),
('138', 'en', 'total_sale', 'Total sale', '2020-11-02 16:57:54', '2021-09-20 12:59:07'),
('139', 'en', 'total_earnings', 'Total earnings', '2020-11-02 16:57:54', '2021-09-20 12:59:07'),
('140', 'en', 'successful_orders', 'Successful orders', '2020-11-02 16:57:54', '2021-09-20 12:59:07'),
('141', 'en', 'total_orders', 'Total orders', '2020-11-02 16:57:54', '2021-09-20 12:59:07'),
('142', 'en', 'pending_orders', 'Pending orders', '2020-11-02 16:57:54', '2021-09-20 12:59:07'),
('143', 'en', 'cancelled_orders', 'Cancelled orders', '2020-11-02 16:57:54', '2021-09-20 12:59:07'),
('145', 'en', 'product', 'Product', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('147', 'en', 'purchased_package', 'Purchased Package', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('148', 'en', 'package_not_found', 'Package Not Found', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('149', 'en', 'upgrade_package', 'Upgrade Package', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('150', 'en', 'shop', 'Shop', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('151', 'en', 'manage__organize_your_shop', 'Manage & organize your shop', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('152', 'en', 'go_to_setting', 'Go to setting', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('153', 'en', 'payment', 'Payment', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('154', 'en', 'configure_your_payment_method', 'Configure your payment method', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('156', 'en', 'my_panel', 'My Panel', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('158', 'en', 'item_has_been_added_to_wishlist', 'Item has been added to wishlist', '2020-11-02 16:57:55', '2021-09-20 12:59:07'),
('159', 'en', 'my_points', 'My Points', '2020-11-02 16:58:15', '2021-09-20 12:59:07'),
('160', 'en', '_points', 'Points', '2020-11-02 16:58:15', '2021-09-20 12:59:07'),
('161', 'en', 'wallet_money', 'Wallet Money', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('162', 'en', 'exchange_rate', 'Exchange Rate', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('163', 'en', 'point_earning_history', 'Point Earning history', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('164', 'en', 'date', 'Date', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('165', 'en', 'points', 'Points', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('166', 'en', 'converted', 'Converted', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('167', 'en', 'action', 'Action', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('168', 'en', 'no_history_found', 'No history found.', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('169', 'en', 'convert_has_been_done_successfully_check_your_wallets', 'Convert has been done successfully Check your Wallets', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('170', 'en', 'something_went_wrong', 'Something went wrong', '2020-11-02 16:58:16', '2021-09-20 12:59:07'),
('171', 'en', 'remaining_uploads', 'Remaining Uploads', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('172', 'en', 'no_package_found', 'No Package Found', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('173', 'en', 'search_product', 'Search product', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('174', 'en', 'name', 'Name', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('176', 'en', 'current_qty', 'Current Qty', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('177', 'en', 'base_price', 'Base Price', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('178', 'en', 'published', 'Published', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('179', 'en', 'featured', 'Featured', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('180', 'en', 'options', 'Options', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('181', 'en', 'edit', 'Edit', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('182', 'en', 'duplicate', 'Duplicate', '2020-11-02 17:07:13', '2021-09-20 12:59:07'),
('184', 'en', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Download the skeleton file and fill it with data.', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('185', 'en', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. You can download the example file to understand how the data must be filled.', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('186', 'en', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Once you have downloaded and filled the skeleton file, upload it in the form below and submit.', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('187', 'en', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. After uploading products you need to edit them and set products images and choices.', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('188', 'en', 'download_csv', 'Download CSV', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('189', 'en', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Category,Sub category,Sub Sub category and Brand should be in numerical ids.', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('190', 'en', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. You can download the pdf to get Category,Sub category,Sub Sub category and Brand id.', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('191', 'en', 'download_category', 'Download Category', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('192', 'en', 'download_sub_category', 'Download Sub category', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('193', 'en', 'download_sub_sub_category', 'Download Sub Sub category', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('194', 'en', 'download_brand', 'Download Brand', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('195', 'en', 'upload_csv_file', 'Upload CSV File', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('196', 'en', 'csv', 'CSV', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('197', 'en', 'choose_csv_file', 'Choose CSV File', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('198', 'en', 'upload', 'Upload', '2020-11-02 17:07:20', '2021-09-20 12:59:07'),
('199', 'en', 'add_new_digital_product', 'Add New Digital Product', '2020-11-02 17:07:25', '2021-09-20 12:59:07'),
('200', 'en', 'available_status', 'Available Status', '2020-11-02 17:07:29', '2021-09-20 12:59:07'),
('201', 'en', 'admin_status', 'Admin Status', '2020-11-02 17:07:29', '2021-09-20 12:59:07'),
('202', 'en', 'pending_balance', 'Pending Balance', '2020-11-02 17:08:07', '2021-09-20 12:59:07'),
('203', 'en', 'send_withdraw_request', 'Send Withdraw Request', '2020-11-02 17:08:07', '2021-09-20 12:59:07'),
('204', 'en', 'withdraw_request_history', 'Withdraw Request history', '2020-11-02 17:08:07', '2021-09-20 12:59:07'),
('205', 'en', 'amount', 'Amount', '2020-11-02 17:08:07', '2021-09-20 12:59:07'),
('206', 'en', 'status', 'Status', '2020-11-02 17:08:07', '2021-09-20 12:59:07'),
('207', 'en', 'message', 'Message', '2020-11-02 17:08:07', '2021-09-20 12:59:07'),
('208', 'en', 'send_a_withdraw_request', 'Send A Withdraw Request', '2020-11-02 17:08:07', '2021-09-20 12:59:07'),
('209', 'en', 'basic_info', 'Basic Info', '2020-11-02 17:08:13', '2021-09-20 12:59:07'),
('211', 'en', 'your_phone', 'Your Phone', '2020-11-02 17:08:13', '2021-09-20 12:59:07'),
('212', 'en', 'photo', 'Photo', '2020-11-02 17:08:13', '2021-09-20 12:59:07'),
('213', 'en', 'browse', 'Browse', '2020-11-02 17:08:13', '2021-09-20 12:59:07'),
('215', 'en', 'your_password', 'Your Password', '2020-11-02 17:08:13', '2021-09-20 12:59:07'),
('216', 'en', 'new_password', 'New Password', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('217', 'en', 'confirm_password', 'Confirm Password', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('218', 'en', 'add_new_address', 'Add New Address', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('219', 'en', 'payment_setting', 'Payment Setting', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('220', 'en', 'cash_payment', 'Cash Payment', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('221', 'en', 'bank_payment', 'Bank Payment', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('222', 'en', 'bank_name', 'Bank Name', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('223', 'en', 'bank_account_name', 'Bank Account Name', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('224', 'en', 'bank_account_number', 'Bank Account Number', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('225', 'en', 'bank_routing_number', 'Bank Routing Number', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('226', 'en', 'update_profile', 'Update Profile', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('227', 'en', 'change_your_email', 'Change your email', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('228', 'en', 'your_email', 'Your Email', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('229', 'en', 'sending_email', 'Sending Email...', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('230', 'en', 'verify', 'Verify', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('231', 'en', 'update_email', 'Update Email', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('232', 'en', 'new_address', 'New Address', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('233', 'en', 'your_address', 'Your Address', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('234', 'en', 'country', 'Country', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('235', 'en', 'select_your_country', 'Select your country', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('236', 'en', 'city', 'City', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('237', 'en', 'your_city', 'Your City', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('239', 'en', 'your_postal_code', 'Your Postal Code', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('240', 'en', '880', '+880', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('241', 'en', 'save', 'Save', '2020-11-02 17:08:14', '2021-09-20 12:59:07'),
('242', 'en', 'received_refund_request', 'Received Refund Request', '2020-11-02 17:26:20', '2021-09-20 12:59:07'),
('244', 'en', 'delete_confirmation', 'Delete Confirmation', '2020-11-02 17:26:20', '2021-09-20 12:59:07'),
('245', 'en', 'are_you_sure_to_delete_this', 'Are you sure to delete this?', '2020-11-02 17:26:21', '2021-09-20 12:59:07'),
('246', 'en', 'premium_packages_for_sellers', 'Premium Packages for Sellers', '2020-11-02 17:27:36', '2021-09-20 12:59:07'),
('247', 'en', 'product_upload', 'Product Upload', '2020-11-02 17:27:36', '2021-09-20 12:59:07'),
('248', 'en', 'digital_product_upload', 'Digital Product Upload', '2020-11-02 17:27:36', '2021-09-20 12:59:07'),
('250', 'en', 'purchase_package', 'Purchase Package', '2020-11-02 17:27:36', '2021-09-20 12:59:07'),
('251', 'en', 'select_payment_type', 'Select Payment Type', '2020-11-02 17:27:36', '2021-09-20 12:59:07'),
('252', 'en', 'payment_type', 'Payment Type', '2020-11-02 17:27:36', '2021-09-20 12:59:07'),
('253', 'en', 'select_one', 'Select One', '2020-11-02 17:27:36', '2021-09-20 12:59:07'),
('254', 'en', 'online_payment', 'Online payment', '2020-11-02 17:27:37', '2021-09-20 12:59:07'),
('255', 'en', 'offline_payment', 'Offline payment', '2020-11-02 17:27:37', '2021-09-20 12:59:07'),
('256', 'en', 'purchase_your_package', 'Purchase Your Package', '2020-11-02 17:27:37', '2021-09-20 12:59:07'),
('258', 'en', 'paypal', 'Paypal', '2020-11-02 17:27:37', '2021-09-20 12:59:07'),
('259', 'en', 'stripe', 'Stripe', '2020-11-02 17:27:37', '2021-09-20 12:59:07'),
('260', 'en', 'sslcommerz', 'sslcommerz', '2020-11-02 17:27:37', '2020-11-02 17:27:37'),
('265', 'en', 'confirm', 'Confirm', '2020-11-02 17:27:37', '2021-09-20 12:59:08'),
('266', 'en', 'offline_package_payment', 'Offline Package Payment', '2020-11-02 17:27:37', '2021-09-20 12:59:08'),
('267', 'en', 'transaction_id', 'Transaction ID', '2020-11-02 18:00:12', '2021-09-20 12:59:08'),
('268', 'en', 'choose_image', 'Choose image', '2020-11-02 18:00:12', '2021-09-20 12:59:08'),
('269', 'en', 'code', 'Code', '2020-11-02 18:12:00', '2021-09-20 12:59:08'),
('270', 'en', 'delivery_status', 'Delivery Status', '2020-11-02 18:12:00', '2021-09-20 12:59:08'),
('271', 'en', 'payment_status', 'Payment Status', '2020-11-02 18:12:00', '2021-09-20 12:59:08'),
('272', 'en', 'paid', 'Paid', '2020-11-02 18:12:00', '2021-09-20 12:59:08'),
('273', 'en', 'order_details', 'Order Details', '2020-11-02 18:12:00', '2021-09-20 12:59:08'),
('274', 'en', 'download_invoice', 'Download Invoice', '2020-11-02 18:12:00', '2021-09-20 12:59:08'),
('275', 'en', 'unpaid', 'Unpaid', '2020-11-02 18:12:00', '2021-09-20 12:59:08'),
('277', 'en', 'order_placed', 'Order placed', '2020-11-02 18:13:59', '2021-09-20 12:59:08'),
('278', 'en', 'confirmed', 'Confirmed', '2020-11-02 18:13:59', '2021-09-20 12:59:08'),
('279', 'en', 'on_delivery', 'On delivery', '2020-11-02 18:13:59', '2021-09-20 12:59:08'),
('280', 'en', 'delivered', 'Delivered', '2020-11-02 18:13:59', '2021-09-20 12:59:08'),
('281', 'en', 'order_summary', 'Order Summary', '2020-11-02 18:13:59', '2021-09-20 12:59:08'),
('282', 'en', 'order_code', 'Order Code', '2020-11-02 18:13:59', '2021-09-20 12:59:08'),
('283', 'en', 'customer', 'Customer', '2020-11-02 18:13:59', '2021-09-20 12:59:08'),
('287', 'en', 'total_order_amount', 'Total order amount', '2020-11-02 18:13:59', '2021-09-20 12:59:08'),
('288', 'en', 'shipping_metdod', 'Shipping metdod', '2020-11-02 18:13:59', '2021-09-20 12:59:08'),
('289', 'en', 'flat_shipping_rate', 'Flat shipping rate', '2020-11-02 18:14:00', '2021-09-20 12:59:08'),
('290', 'en', 'payment_metdod', 'Payment metdod', '2020-11-02 18:14:00', '2021-09-20 12:59:08'),
('291', 'en', 'variation', 'Variation', '2020-11-02 18:14:00', '2021-09-20 12:59:08'),
('292', 'en', 'delivery_type', 'Delivery Type', '2020-11-02 18:14:00', '2021-09-20 12:59:08'),
('293', 'en', 'home_delivery', 'Home Delivery', '2020-11-02 18:14:00', '2021-09-20 12:59:08'),
('294', 'en', 'order_ammount', 'Order Ammount', '2020-11-02 18:14:00', '2021-09-20 12:59:08'),
('295', 'en', 'subtotal', 'Subtotal', '2020-11-02 18:14:00', '2021-09-20 12:59:08'),
('296', 'en', 'shipping', 'Shipping', '2020-11-02 18:14:00', '2021-09-20 12:59:08'),
('298', 'en', 'coupon_discount', 'Coupon Discount', '2020-11-02 18:14:00', '2021-09-20 12:59:08'),
('300', 'en', 'na', 'N/A', '2020-11-02 18:14:20', '2021-09-20 12:59:08'),
('301', 'en', 'in_stock', 'In stock', '2020-11-02 18:24:52', '2021-09-20 12:59:08'),
('302', 'en', 'buy_now', 'Buy Now', '2020-11-02 18:24:52', '2021-09-20 12:59:08'),
('303', 'en', 'item_added_to_your_cart', 'Item added to your cart!', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('304', 'en', 'proceed_to_checkout', 'Proceed to Checkout', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('305', 'en', 'cart_items', 'Cart Items', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('306', 'en', '1_my_cart', '1. My Cart', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('307', 'en', 'view_cart', 'View cart', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('308', 'en', '2_shipping_info', '2. Shipping info', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('309', 'en', 'checkout', 'Checkout', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('310', 'en', '3_delivery_info', '3. Delivery info', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('311', 'en', '4_payment', '4. Payment', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('312', 'en', '5_confirmation', '5. Confirmation', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('313', 'en', 'remove', 'Remove', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('314', 'en', 'return_to_shop', 'Return to shop', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('315', 'en', 'continue_to_shipping', 'Continue to Shipping', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('316', 'en', 'or', 'Or', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('317', 'en', 'guest_checkout', 'Guest Checkout', '2020-11-02 18:26:46', '2021-09-20 12:59:08'),
('318', 'en', 'continue_to_delivery_info', 'Continue to Delivery Info', '2020-11-02 18:27:44', '2021-09-20 12:59:08'),
('319', 'en', 'postal_code', 'Postal Code', '2020-11-02 18:31:01', '2021-09-20 12:59:08'),
('320', 'en', 'choose_delivery_type', 'Choose Delivery Type', '2020-11-02 18:31:04', '2021-09-20 12:59:08'),
('321', 'en', 'local_pickup', 'Local Pickup', '2020-11-02 18:31:04', '2021-09-20 12:59:08'),
('322', 'en', 'select_your_nearest_pickup_point', 'Select your nearest pickup point', '2020-11-02 18:31:04', '2021-09-20 12:59:08'),
('323', 'en', 'continue_to_payment', 'Continue to Payment', '2020-11-02 18:31:04', '2021-09-20 12:59:08'),
('324', 'en', 'select_a_payment_option', 'Select a payment option', '2020-11-02 18:31:13', '2021-09-20 12:59:08'),
('325', 'en', 'razorpay', 'Razorpay', '2020-11-02 18:31:13', '2021-09-20 12:59:08'),
('326', 'en', 'paystack', 'Paystack', '2020-11-02 18:31:13', '2021-09-20 12:59:08'),
('327', 'en', 'voguepay', 'VoguePay', '2020-11-02 18:31:13', '2021-09-20 12:59:08'),
('328', 'en', 'payhere', 'payhere', '2020-11-02 18:31:13', '2021-02-09 12:22:37'),
('329', 'en', 'ngenius', 'ngenius', '2020-11-02 18:31:13', '2020-11-02 18:31:13'),
('330', 'en', 'paytm', 'Paytm', '2020-11-02 18:31:13', '2021-09-20 12:59:08'),
('331', 'en', 'cash_on_delivery', 'Cash on Delivery', '2020-11-02 18:31:13', '2021-09-20 12:59:08'),
('332', 'en', 'your_wallet_balance_', 'Your wallet balance :', '2020-11-02 18:31:13', '2021-09-20 12:59:08'),
('333', 'en', 'insufficient_balance', 'Insufficient balance', '2020-11-02 18:31:13', '2021-09-20 12:59:08'),
('334', 'en', 'i_agree_to_the', 'I agree to the', '2020-11-02 18:31:14', '2021-09-20 12:59:08'),
('338', 'en', 'complete_order', 'Complete Order', '2020-11-02 18:31:14', '2021-09-20 12:59:08'),
('339', 'en', 'summary', 'Summary', '2020-11-02 18:31:14', '2021-09-20 12:59:08'),
('340', 'en', 'items', 'Items', '2020-11-02 18:31:14', '2021-09-20 12:59:08'),
('341', 'en', 'total_club_point', 'Total Club point', '2020-11-02 18:31:14', '2021-09-20 12:59:08'),
('342', 'en', 'total_shipping', 'Total Shipping', '2020-11-02 18:31:14', '2021-09-20 12:59:08'),
('343', 'en', 'have_coupon_code_enter_here', 'Have coupon code? Enter here', '2020-11-02 18:31:14', '2021-09-20 12:59:08'),
('344', 'en', 'apply', 'Apply', '2020-11-02 18:31:14', '2021-09-20 12:59:08'),
('345', 'en', 'you_need_to_agree_with_our_policies', 'You need to agree with our policies', '2020-11-02 18:31:14', '2021-09-20 12:59:08'),
('346', 'en', 'forgot_password', 'Forgot password', '2020-11-02 18:31:25', '2021-09-20 12:59:08'),
('469', 'en', 'seo_setting', 'SEO Setting', '2020-11-02 18:31:33', '2021-09-20 12:59:08'),
('474', 'en', 'system_update', 'System Update', '2020-11-02 18:31:34', '2021-09-20 12:59:08'),
('480', 'en', 'add_new_payment_method', 'Add New Payment Method', '2020-11-02 18:31:38', '2021-09-20 12:59:08'),
('481', 'en', 'manual_payment_method', 'Manual Payment Method', '2020-11-02 18:31:38', '2021-09-20 12:59:08'),
('482', 'en', 'heading', 'Heading', '2020-11-02 18:31:38', '2021-09-20 12:59:08'),
('483', 'en', 'logo', 'Logo', '2020-11-02 18:31:38', '2021-09-20 12:59:08'),
('484', 'en', 'manual_payment_information', 'Manual Payment Information', '2020-11-02 18:31:42', '2021-09-20 12:59:08'),
('485', 'en', 'type', 'Type', '2020-11-02 18:31:42', '2021-09-20 12:59:08'),
('486', 'en', 'custom_payment', 'Custom Payment', '2020-11-02 18:31:42', '2021-09-20 12:59:08'),
('487', 'en', 'check_payment', 'Check Payment', '2020-11-02 18:31:42', '2021-09-20 12:59:08'),
('488', 'en', 'checkout_thumbnail', 'Checkout Thumbnail', '2020-11-02 18:31:42', '2021-09-20 12:59:08'),
('489', 'en', 'payment_instruction', 'Payment Instruction', '2020-11-02 18:31:42', '2021-09-20 12:59:08'),
('490', 'en', 'bank_information', 'Bank Information', '2020-11-02 18:31:42', '2021-09-20 12:59:08'),
('491', 'en', 'select_file', 'Select File', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('492', 'en', 'upload_new', 'Upload New', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('493', 'en', 'sort_by_newest', 'Sort by newest', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('494', 'en', 'sort_by_oldest', 'Sort by oldest', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('495', 'en', 'sort_by_smallest', 'Sort by smallest', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('496', 'en', 'sort_by_largest', 'Sort by largest', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('497', 'en', 'selected_only', 'Selected Only', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('498', 'en', 'no_files_found', 'No files found', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('499', 'en', '0_file_selected', '0 File selected', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('500', 'en', 'clear', 'Clear', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('501', 'en', 'prev', 'Prev', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('502', 'en', 'next', 'Next', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('503', 'en', 'add_files', 'Add Files', '2020-11-02 18:31:53', '2021-09-20 12:59:08'),
('504', 'en', 'method_has_been_inserted_successfully', 'Method has been inserted successfully', '2020-11-02 18:32:03', '2021-09-20 12:59:08'),
('506', 'en', 'order_date', 'Order Date', '2020-11-02 18:32:42', '2021-09-20 12:59:08'),
('507', 'en', 'bill_to', 'Bill to', '2020-11-02 18:32:42', '2021-09-20 12:59:08'),
('510', 'en', 'sub_total', 'Sub Total', '2020-11-02 18:32:42', '2021-09-20 12:59:08'),
('512', 'en', 'total_tax', 'Total Tax', '2020-11-02 18:32:42', '2021-09-20 12:59:08'),
('513', 'en', 'grand_total', 'Grand Total', '2020-11-02 18:32:42', '2021-09-20 12:59:08'),
('514', 'en', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Your order has been placed successfully. Please submit payment information from purchase history', '2020-11-02 18:32:47', '2021-09-20 12:59:08'),
('515', 'en', 'thank_you_for_your_order', 'Thank You for Your Order!', '2020-11-02 18:32:48', '2021-09-20 12:59:08'),
('516', 'en', 'order_code', 'Order Code:', '2020-11-02 18:32:48', '2021-09-20 12:59:08'),
('517', 'en', 'a_copy_or_your_order_summary_has_been_sent_to', 'A copy or your order summary has been sent to', '2020-11-02 18:32:48', '2021-09-20 12:59:08'),
('518', 'en', 'make_payment', 'Make Payment', '2020-11-02 18:33:26', '2021-09-20 12:59:08'),
('519', 'en', 'payment_screenshot', 'Payment screenshot', '2020-11-02 18:33:29', '2021-09-20 12:59:08'),
('520', 'en', 'paypal_credential', 'Paypal Credential', '2020-11-02 18:42:20', '2021-09-20 12:59:08'),
('522', 'en', 'paypal_client_id', 'Paypal Client ID', '2020-11-02 18:42:20', '2021-09-20 12:59:08'),
('523', 'en', 'paypal_client_secret', 'Paypal Client Secret', '2020-11-02 18:42:20', '2021-09-20 12:59:08'),
('524', 'en', 'paypal_sandbox_mode', 'Paypal Sandbox Mode', '2020-11-02 18:42:20', '2021-09-20 12:59:08'),
('525', 'en', 'sslcommerz_credential', 'Sslcommerz Credential', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('526', 'en', 'sslcz_store_id', 'Sslcz Store Id', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('527', 'en', 'sslcz_store_password', 'Sslcz store password', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('528', 'en', 'sslcommerz_sandbox_mode', 'Sslcommerz Sandbox Mode', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('529', 'en', 'stripe_credential', 'Stripe Credential', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('531', 'en', 'stripe_key', 'STRIPE KEY', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('533', 'en', 'stripe_secret', 'STRIPE SECRET', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('534', 'en', 'razorpay_credential', 'RazorPay Credential', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('535', 'en', 'razor_key', 'RAZOR KEY', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('536', 'en', 'razor_secret', 'RAZOR SECRET', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('537', 'en', 'instamojo_credential', 'Instamojo Credential', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('538', 'en', 'api_key', 'API KEY', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('539', 'en', 'im_api_key', 'IM API KEY', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('540', 'en', 'auth_token', 'AUTH TOKEN', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('541', 'en', 'im_auth_token', 'IM AUTH TOKEN', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('542', 'en', 'instamojo_sandbox_mode', 'Instamojo Sandbox Mode', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('543', 'en', 'paystack_credential', 'PayStack Credential', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('544', 'en', 'public_key', 'PUBLIC KEY', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('545', 'en', 'secret_key', 'SECRET KEY', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('546', 'en', 'merchant_email', 'MERCHANT EMAIL', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('547', 'en', 'voguepay_credential', 'VoguePay Credential', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('548', 'en', 'merchant_id', 'MERCHANT ID', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('549', 'en', 'sandbox_mode', 'Sandbox Mode', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('550', 'en', 'payhere_credential', 'Payhere Credential', '2020-11-02 18:42:21', '2021-09-20 12:59:08'),
('551', 'en', 'payhere_merchant_id', 'PAYHERE MERCHANT ID', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('552', 'en', 'payhere_secret', 'PAYHERE SECRET', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('553', 'en', 'payhere_currency', 'PAYHERE CURRENCY', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('554', 'en', 'payhere_sandbox_mode', 'Payhere Sandbox Mode', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('555', 'en', 'ngenius_credential', 'Ngenius Credential', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('556', 'en', 'ngenius_outlet_id', 'NGENIUS OUTLET ID', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('557', 'en', 'ngenius_api_key', 'NGENIUS API KEY', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('558', 'en', 'ngenius_currency', 'NGENIUS CURRENCY', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('559', 'en', 'mpesa_credential', 'Mpesa Credential', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('560', 'en', 'mpesa_consumer_key', 'MPESA CONSUMER KEY', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('561', 'en', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('562', 'en', 'mpesa_consumer_secret', 'MPESA CONSUMER SECRET', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('563', 'en', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('564', 'en', 'mpesa_short_code', 'MPESA SHORT CODE', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('565', 'en', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('566', 'en', 'mpesa_sandbox_activation', 'MPESA SANDBOX ACTIVATION', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('567', 'en', 'flutterwave_credential', 'Flutterwave Credential', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('568', 'en', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('569', 'en', 'rave_secret_key', 'RAVE_SECRET_KEY', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('570', 'en', 'rave_title', 'RAVE_TITLE', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('571', 'en', 'stagin_activation', 'STAGIN ACTIVATION', '2020-11-02 18:42:22', '2021-09-20 12:59:08'),
('573', 'en', 'all_product', 'All Product', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('574', 'en', 'sort_by', 'Sort By', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('575', 'en', 'rating_high__low', 'Rating (High > Low)', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('576', 'en', 'rating_low__high', 'Rating (Low > High)', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('577', 'en', 'num_of_sale_high__low', 'Num of Sale (High > Low)', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('578', 'en', 'num_of_sale_low__high', 'Num of Sale (Low > High)', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('579', 'en', 'base_price_high__low', 'Base Price (High > Low)', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('580', 'en', 'base_price_low__high', 'Base Price (Low > High)', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('581', 'en', 'type__enter', 'Type & Enter', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('582', 'en', 'added_by', 'Added By', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('583', 'en', 'num_of_sale', 'Num of Sale', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('584', 'en', 'total_stock', 'Total Stock', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('585', 'en', 'todays_deal', 'Todays Deal', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('586', 'en', 'rating', 'Rating', '2020-11-02 18:45:01', '2021-09-20 12:59:08'),
('587', 'en', 'times', 'times', '2020-11-02 18:45:01', '2021-02-09 12:22:38'),
('588', 'en', 'add_nerw_product', 'Add Nerw Product', '2020-11-02 18:45:02', '2021-09-20 12:59:08'),
('589', 'en', 'product_information', 'Product Information', '2020-11-02 18:45:02', '2021-09-20 12:59:08'),
('590', 'en', 'unit', 'Unit', '2020-11-02 18:45:02', '2021-09-20 12:59:08'),
('591', 'en', 'unit_eg_kg_pc_etc', 'Unit (e.g. KG, Pc etc)', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('592', 'en', 'minimum_qty', 'Minimum Qty', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('593', 'en', 'tags', 'Tags', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('594', 'en', 'type_and_hit_enter_to_add_a_tag', 'Type and hit enter to add a tag', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('595', 'en', 'barcode', 'Barcode', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('596', 'en', 'refundable', 'Refundable', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('597', 'en', 'product_images', 'Product Images', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('598', 'en', 'gallery_images', 'Gallery Images', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('599', 'en', 'todays_deal_updated_successfully', 'Todays Deal updated successfully', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('600', 'en', 'published_products_updated_successfully', 'Published products updated successfully', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('601', 'en', 'thumbnail_image', 'Thumbnail Image', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('602', 'en', 'featured_products_updated_successfully', 'Featured products updated successfully', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('603', 'en', 'product_videos', 'Product Videos', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('604', 'en', 'video_provider', 'Video Provider', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('605', 'en', 'youtube', 'Youtube', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('606', 'en', 'dailymotion', 'Dailymotion', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('607', 'en', 'vimeo', 'Vimeo', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('608', 'en', 'video_link', 'Video Link', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('609', 'en', 'product_variation', 'Product Variation', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('610', 'en', 'colors', 'Colors', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('611', 'en', 'attributes', 'Attributes', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('612', 'en', 'choose_attributes', 'Choose Attributes', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('613', 'en', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Choose the attributes of this product and then input values of each attribute', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('614', 'en', 'product_price__stock', 'Product price + stock', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('616', 'en', 'unit_price', 'Unit price', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('617', 'en', 'purchase_price', 'Purchase price', '2020-11-02 18:45:03', '2021-09-20 12:59:08'),
('618', 'en', 'flat', 'Flat', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('619', 'en', 'percent', 'Percent', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('620', 'en', 'discount', 'Discount', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('621', 'en', 'product_description', 'Product Description', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('622', 'en', 'product_shipping_cost', 'Product Shipping Cost', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('623', 'en', 'free_shipping', 'Free Shipping', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('624', 'en', 'flat_rate', 'Flat Rate', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('625', 'en', 'shipping_cost', 'Shipping cost', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('626', 'en', 'pdf_specification', 'PDF Specification', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('627', 'en', 'seo_meta_tags', 'SEO Meta Tags', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('628', 'en', 'meta_title', 'Meta Title', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('629', 'en', 'meta_image', 'Meta Image', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('630', 'en', 'choice_title', 'Choice Title', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('631', 'en', 'enter_choice_values', 'Enter choice values', '2020-11-02 18:45:04', '2021-09-20 12:59:08'),
('632', 'en', 'all_categories', 'All categories A', '2020-11-03 12:42:19', '2021-09-20 13:10:46'),
('633', 'en', 'add_new_category', 'Add New category', '2020-11-03 12:42:19', '2021-09-20 12:59:08'),
('634', 'en', 'type_name__enter', 'Type name & Enter', '2020-11-03 12:42:19', '2021-09-20 12:59:08'),
('635', 'en', 'banner', 'Banner', '2020-11-03 12:42:19', '2021-09-20 12:59:08'),
('637', 'en', 'commission', 'Commission', '2020-11-03 12:42:19', '2021-09-20 12:59:08'),
('638', 'en', 'icon', 'icon', '2020-11-03 12:42:19', '2021-02-09 12:22:38'),
('639', 'en', 'featured_categories_updated_successfully', 'Featured categories updated successfully', '2020-11-03 12:42:20', '2021-09-20 12:59:08'),
('640', 'en', 'hot', 'Hot', '2020-11-03 12:43:12', '2021-09-20 12:59:08'),
('641', 'en', 'filter_by_payment_status', 'Filter by Payment Status', '2020-11-03 12:45:15', '2021-09-20 12:59:08'),
('642', 'en', 'unpaid', 'Un-Paid', '2020-11-03 12:45:15', '2021-09-20 12:59:08'),
('643', 'en', 'filter_by_deliver_status', 'Filter by Deliver Status', '2020-11-03 12:45:15', '2021-09-20 12:59:08'),
('644', 'en', 'pending', 'Pending', '2020-11-03 12:45:15', '2021-09-20 12:59:08'),
('645', 'en', 'type_order_code__hit_enter', 'Type Order code & hit Enter', '2020-11-03 12:45:15', '2021-09-20 12:59:08'),
('646', 'en', 'num_of_products', 'Num. of Products', '2020-11-03 12:45:15', '2021-09-20 12:59:08'),
('647', 'en', 'walk_in_customer', 'Walk In Customer', '2020-11-03 15:33:20', '2021-09-20 12:59:08'),
('648', 'en', 'qty', 'QTY', '2020-11-03 15:33:20', '2021-09-20 12:59:08'),
('649', 'en', 'without_shipping_charge', 'Without Shipping Charge', '2020-11-03 15:33:20', '2021-09-20 12:59:08'),
('650', 'en', 'with_shipping_charge', 'With Shipping Charge', '2020-11-03 15:33:20', '2021-09-20 12:59:08'),
('651', 'en', 'pay_with_cash', 'Pay With Cash', '2020-11-03 15:33:20', '2021-09-20 12:59:08'),
('652', 'en', 'shipping_address', 'Shipping Address', '2020-11-03 15:33:20', '2021-09-20 12:59:08'),
('653', 'en', 'close', 'Close', '2020-11-03 15:33:20', '2021-09-20 12:59:08'),
('654', 'en', 'select_country', 'Select country', '2020-11-03 15:33:21', '2021-09-20 12:59:08'),
('655', 'en', 'order_confirmation', 'Order Confirmation', '2020-11-03 15:33:21', '2021-09-20 12:59:08'),
('656', 'en', 'are_you_sure_to_confirm_this_order', 'Are you sure to confirm this order?', '2020-11-03 15:33:21', '2021-09-20 12:59:08'),
('657', 'en', 'comfirm_order', 'Comfirm Order', '2020-11-03 15:33:21', '2021-09-20 12:59:08'),
('659', 'en', 'personal_info', 'Personal Info', '2020-11-03 17:08:15', '2021-09-20 12:59:08'),
('660', 'en', 'repeat_password', 'Repeat Password', '2020-11-03 17:08:15', '2021-09-20 12:59:08'),
('661', 'en', 'shop_name', 'Shop Name', '2020-11-03 17:08:15', '2021-09-20 12:59:08'),
('662', 'en', 'register_your_shop', 'Register Your Shop', '2020-11-03 17:08:15', '2021-09-20 12:59:08'),
('663', 'en', 'affiliate_informations', 'Affiliate Informations', '2020-11-03 17:09:06', '2021-09-20 12:59:08'),
('664', 'en', 'affiliate', 'Affiliate', '2020-11-03 17:09:06', '2021-09-20 12:59:08'),
('665', 'en', 'user_info', 'User Info', '2020-11-03 17:09:06', '2021-09-20 12:59:08'),
('667', 'en', 'installed_addon', 'Installed Addon', '2020-11-03 17:18:13', '2021-09-20 12:59:08'),
('668', 'en', 'available_addon', 'Available Addon', '2020-11-03 17:18:13', '2021-09-20 12:59:08'),
('669', 'en', 'install_new_addon', 'Install New Addon', '2020-11-03 17:18:13', '2021-09-20 12:59:08'),
('670', 'en', 'version', 'Version', '2020-11-03 17:18:13', '2021-09-20 12:59:08'),
('671', 'en', 'activated', 'Activated', '2020-11-03 17:18:13', '2021-09-20 12:59:08'),
('672', 'en', 'deactivated', 'Deactivated', '2020-11-03 17:18:13', '2021-09-20 12:59:08'),
('673', 'en', 'activate_otp', 'Activate OTP', '2020-11-03 17:18:20', '2021-09-20 12:59:08'),
('674', 'en', 'otp_will_be_used_for', 'OTP will be Used For', '2020-11-03 17:18:20', '2021-09-20 12:59:08'),
('675', 'en', 'settings_updated_successfully', 'Settings updated successfully', '2020-11-03 17:18:20', '2021-09-20 12:59:08'),
('676', 'en', 'product_owner', 'Product Owner', '2020-11-03 17:18:46', '2021-09-20 12:59:08'),
('677', 'en', 'point', 'Point', '2020-11-03 17:18:46', '2021-09-20 12:59:08'),
('678', 'en', 'set_point_for_product_within_a_range', 'Set Point for Product Within a Range', '2020-11-03 17:18:47', '2021-09-20 12:59:08'),
('679', 'en', 'set_point_for_multiple_products', 'Set Point for multiple products', '2020-11-03 17:18:47', '2021-09-20 12:59:08'),
('680', 'en', 'min_price', 'Min Price', '2020-11-03 17:18:47', '2021-09-20 12:59:08'),
('681', 'en', 'max_price', 'Max Price', '2020-11-03 17:18:47', '2021-09-20 12:59:08'),
('682', 'en', 'set_point_for_all_products', 'Set Point for all Products', '2020-11-03 17:18:47', '2021-09-20 12:59:08'),
('683', 'en', 'set_point_for_', 'Set Point For', '2020-11-03 17:18:47', '2021-09-20 12:59:08'),
('684', 'en', 'convert_status', 'Convert Status', '2020-11-03 17:18:58', '2021-09-20 12:59:08'),
('685', 'en', 'earned_at', 'Earned At', '2020-11-03 17:18:59', '2021-09-20 12:59:08'),
('686', 'en', 'seller_based_selling_report', 'Seller Based Selling Report', '2020-11-03 17:19:35', '2021-09-20 12:59:08'),
('687', 'en', 'sort_by_verificarion_status', 'Sort by verificarion status', '2020-11-03 17:19:35', '2021-09-20 12:59:08'),
('688', 'en', 'approved', 'Approved', '2020-11-03 17:19:35', '2021-09-20 12:59:08'),
('689', 'en', 'non_approved', 'Non Approved', '2020-11-03 17:19:35', '2021-09-20 12:59:08'),
('690', 'en', 'filter', 'Filter', '2020-11-03 17:19:35', '2021-09-20 12:59:08'),
('691', 'en', 'seller_name', 'Seller Name', '2020-11-03 17:19:35', '2021-09-20 12:59:08'),
('692', 'en', 'number_of_product_sale', 'Number of Product Sale', '2020-11-03 17:19:36', '2021-09-20 12:59:08'),
('693', 'en', 'order_amount', 'Order Amount', '2020-11-03 17:19:36', '2021-09-20 12:59:08'),
('694', 'en', 'facebook_chat_setting', 'Facebook Chat Setting', '2020-11-03 17:21:14', '2021-09-20 12:59:08'),
('695', 'en', 'facebook_page_id', 'Facebook Page ID', '2020-11-03 17:21:14', '2021-09-20 12:59:08'),
('696', 'en', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Please be carefull when you are configuring Facebook chat. For incorrect configuration you will not get messenger icon on your user-end site.', '2020-11-03 17:21:14', '2021-09-20 12:59:08'),
('697', 'en', 'login_into_your_facebook_page', 'Login into your facebook page', '2020-11-03 17:21:14', '2021-09-20 12:59:08'),
('698', 'en', 'find_the_about_option_of_your_facebook_page', 'Find the About option of your facebook page', '2020-11-03 17:21:14', '2021-09-20 12:59:08'),
('699', 'en', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'At the very bottom, you can find the \\“Facebook Page ID\\”', '2020-11-03 17:21:14', '2021-09-20 12:59:08'),
('700', 'en', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Go to Settings of your page and find the option of \\\"Advance Messaging\\\"', '2020-11-03 17:21:14', '2021-09-20 12:59:08'),
('701', 'en', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Scroll down that page and you will get \\\"white listed domain\\\"', '2020-11-03 17:21:14', '2021-09-20 12:59:08'),
('702', 'en', 'set_your_website_domain_name', 'Set your website domain name', '2020-11-03 17:21:14', '2021-09-20 12:59:08'),
('703', 'en', 'google_recaptcha_setting', 'Google reCAPTCHA Setting', '2020-11-03 17:21:25', '2021-09-20 12:59:08'),
('704', 'en', 'site_key', 'Site KEY', '2020-11-03 17:21:25', '2021-09-20 12:59:08'),
('705', 'en', 'select_shipping_method', 'Select Shipping Method', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('706', 'en', 'product_wise_shipping_cost', 'Product Wise Shipping Cost', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('707', 'en', 'flat_rate_shipping_cost', 'Flat Rate Shipping Cost', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('708', 'en', 'seller_wise_flat_shipping_cost', 'Seller Wise Flat Shipping Cost', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('709', 'en', 'note', 'Note', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('710', 'en', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Product Wise Shipping Cost calulation: Shipping cost is calculate by addition of each product shipping cost', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('711', 'en', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Flat Rate Shipping Cost calulation: How many products a customer purchase, doesn\'t matter. Shipping cost is fixed', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('712', 'en', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Seller Wise Flat Shipping Cost calulation: Fixed rate for each seller. If a customer purchase 2 product from two seller shipping cost is calculate by addition of each seller flat shipping cost', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('713', 'en', 'flat_rate_cost', 'Flat Rate Cost', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('714', 'en', 'shipping_cost_for_admin_products', 'Shipping Cost for Admin Products', '2020-11-03 17:21:32', '2021-09-20 12:59:08'),
('715', 'en', 'countries', 'Countries', '2020-11-03 17:22:02', '2021-09-20 12:59:08'),
('716', 'en', 'showhide', 'Show/Hide', '2020-11-03 17:22:02', '2021-09-20 12:59:08'),
('717', 'en', 'country_status_updated_successfully', 'Country status updated successfully', '2020-11-03 17:22:02', '2021-09-20 12:59:08'),
('718', 'en', 'all_subcategories', 'All Subcategories', '2020-11-03 17:57:55', '2021-09-20 12:59:08'),
('719', 'en', 'add_new_subcategory', 'Add New Subcategory', '2020-11-03 17:57:55', '2021-09-20 12:59:08'),
('720', 'en', 'subcategories', 'Sub-Categories', '2020-11-03 17:57:55', '2021-09-20 12:59:08'),
('721', 'en', 'sub_category_information', 'Sub Category Information', '2020-11-03 17:58:07', '2021-09-20 12:59:08'),
('723', 'en', 'slug', 'Slug', '2020-11-03 17:58:07', '2021-09-20 12:59:08'),
('724', 'en', 'all_sub_subcategories', 'All Sub Subcategories', '2020-11-03 17:59:12', '2021-09-20 12:59:08'),
('725', 'en', 'add_new_sub_subcategory', 'Add New Sub Subcategory', '2020-11-03 17:59:12', '2021-09-20 12:59:08'),
('726', 'en', 'subsubcategories', 'Sub-Sub-categories', '2020-11-03 17:59:12', '2021-09-20 12:59:08'),
('727', 'en', 'make_this_default', 'Make This Default', '2020-11-04 13:54:24', '2021-09-20 12:59:08'),
('728', 'en', 'shops', 'Shops', '2020-11-04 16:47:10', '2021-09-20 12:59:08'),
('729', 'en', 'women_clothing__fashion', 'Women Clothing & Fashion', '2020-11-04 16:53:12', '2021-09-20 12:59:08'),
('730', 'en', 'cellphones__tabs', 'Cellphones & Tabs', '2020-11-04 17:40:41', '2021-09-20 12:59:08'),
('731', 'en', 'welcome_to', 'Welcome to', '2020-11-07 12:44:43', '2021-09-20 12:59:08'),
('732', 'en', 'create_a_new_account', 'Create a New Account', '2020-11-07 13:02:15', '2021-09-20 12:59:08'),
('733', 'en', 'full_name', 'Full Name', '2020-11-07 13:02:15', '2021-09-20 12:59:08'),
('734', 'en', 'password', 'password', '2020-11-07 13:02:15', '2021-02-09 12:22:50'),
('735', 'en', 'confrim_password', 'Confrim Password', '2020-11-07 13:02:15', '2021-09-20 12:59:08'),
('736', 'en', 'i_agree_with_the', 'I agree with the', '2020-11-07 13:02:15', '2021-09-20 12:59:08'),
('737', 'en', 'terms_and_conditions', 'Terms and Conditions', '2020-11-07 13:02:15', '2021-09-20 12:59:08'),
('738', 'en', 'register', 'Register', '2020-11-07 13:02:15', '2021-09-20 12:59:08'),
('739', 'en', 'already_have_an_account', 'Already have an account', '2020-11-07 13:02:16', '2021-09-20 12:59:08'),
('741', 'en', 'sign_up_with', 'Sign Up with', '2020-11-07 13:02:16', '2021-09-20 12:59:08'),
('742', 'en', 'i_agree_with_the_terms_and_conditions', 'I agree with the Terms and Conditions', '2020-11-07 13:04:49', '2021-09-20 12:59:08'),
('745', 'en', 'all_role', 'All Role', '2020-11-07 13:14:28', '2021-09-20 12:59:08'),
('746', 'en', 'add_new_role', 'Add New Role', '2020-11-07 13:14:28', '2021-09-20 12:59:08'),
('747', 'en', 'roles', 'Roles', '2020-11-07 13:14:28', '2021-09-20 12:59:08'),
('749', 'en', 'add_new_staffs', 'Add New Staffs', '2020-11-07 13:14:36', '2021-09-20 12:59:08'),
('750', 'en', 'role', 'Role', '2020-11-07 13:14:36', '2021-09-20 12:59:08'),
('751', 'en', 'frontend_website_name', 'Frontend Website Name', '2020-11-07 13:14:59', '2021-09-20 12:59:08'),
('752', 'en', 'website_name', 'Website Name', '2020-11-07 13:14:59', '2021-09-20 12:59:08'),
('753', 'en', 'site_motto', 'Site Motto', '2020-11-07 13:14:59', '2021-09-20 12:59:08'),
('754', 'en', 'best_ecommerce_website', 'Best eCommerce Website', '2020-11-07 13:14:59', '2021-09-20 12:59:08'),
('755', 'en', 'site_icon', 'Site Icon', '2020-11-07 13:14:59', '2021-09-20 12:59:09'),
('756', 'en', 'website_favicon_32x32_png', 'Website favicon. 32x32 .png', '2020-11-07 13:14:59', '2021-09-20 12:59:09'),
('757', 'en', 'website_base_color', 'Website Base Color', '2020-11-07 13:14:59', '2021-09-20 12:59:09'),
('758', 'en', 'hex_color_code', 'Hex Color Code', '2020-11-07 13:14:59', '2021-09-20 12:59:09'),
('759', 'en', 'website_base_hover_color', 'Website Base Hover Color', '2020-11-07 13:14:59', '2021-09-20 12:59:09'),
('760', 'en', 'update', 'Update', '2020-11-07 13:15:00', '2021-09-20 12:59:09'),
('761', 'en', 'global_seo', 'Global Seo', '2020-11-07 13:15:00', '2021-09-20 12:59:09'),
('762', 'en', 'meta_description', 'Meta description', '2020-11-07 13:15:00', '2021-09-20 12:59:09'),
('763', 'en', 'keywords', 'Keywords', '2020-11-07 13:15:00', '2021-09-20 12:59:09'),
('764', 'en', 'separate_with_coma', 'Separate with coma', '2020-11-07 13:15:00', '2021-09-20 12:59:09'),
('765', 'en', 'website_pages', 'Website Pages', '2020-11-07 13:19:04', '2021-09-20 12:59:09'),
('766', 'en', 'all_pages', 'All Pages', '2020-11-07 13:19:04', '2021-09-20 12:59:09'),
('767', 'en', 'add_new_page', 'Add New Page', '2020-11-07 13:19:04', '2021-09-20 12:59:09'),
('768', 'en', 'url', 'URL', '2020-11-07 13:19:04', '2021-09-20 12:59:09'),
('769', 'en', 'actions', 'Actions', '2020-11-07 13:19:04', '2021-09-20 12:59:09'),
('770', 'en', 'edit_page_information', 'Edit Page Information', '2020-11-07 13:19:22', '2021-09-20 12:59:09'),
('771', 'en', 'page_content', 'Page Content', '2020-11-07 13:19:22', '2021-09-20 12:59:09'),
('772', 'en', 'title', 'Title', '2020-11-07 13:19:22', '2021-09-20 12:59:09'),
('773', 'en', 'link', 'Link', '2020-11-07 13:19:22', '2021-09-20 12:59:09'),
('774', 'en', 'use_character_number_hypen_only', 'Use character, number, hypen only', '2020-11-07 13:19:22', '2021-09-20 12:59:09'),
('775', 'en', 'add_content', 'Add Content', '2020-11-07 13:19:22', '2021-09-20 12:59:09'),
('776', 'en', 'seo_fields', 'Seo Fields', '2020-11-07 13:19:22', '2021-09-20 12:59:09'),
('777', 'en', 'update_page', 'Update Page', '2020-11-07 13:19:22', '2021-09-20 12:59:09'),
('778', 'en', 'default_language', 'Default Language', '2020-11-07 13:20:09', '2021-09-20 12:59:09'),
('779', 'en', 'add_new_language', 'Add New Language', '2020-11-07 13:20:09', '2021-09-20 12:59:09'),
('780', 'en', 'rtl', 'RTL', '2020-11-07 13:20:09', '2021-09-20 12:59:09'),
('781', 'en', 'translation', 'Translation', '2020-11-07 13:20:09', '2021-09-20 12:59:09'),
('782', 'en', 'language_information', 'Language Information', '2020-11-07 13:20:23', '2021-09-20 12:59:09'),
('783', 'en', 'save_page', 'Save Page', '2020-11-07 13:21:27', '2021-09-20 12:59:09'),
('784', 'en', 'home_page_settings', 'Home Page Settings', '2020-11-07 13:21:35', '2021-09-20 12:59:09'),
('785', 'en', 'home_slider', 'Home Slider', '2020-11-07 13:21:35', '2021-09-20 12:59:09'),
('786', 'en', 'photos__links', 'Photos & Links', '2020-11-07 13:21:35', '2021-09-20 12:59:09'),
('787', 'en', 'add_new', 'Add New', '2020-11-07 13:21:35', '2021-09-20 12:59:09'),
('788', 'en', 'home_categories', 'Home Categories', '2020-11-07 13:21:35', '2021-09-20 12:59:09'),
('789', 'en', 'home_banner_1_max_3', 'Home Banner 1 (Max 3)', '2020-11-07 13:21:35', '2021-09-20 12:59:09'),
('790', 'en', 'banner__links', 'Banner & Links', '2020-11-07 13:21:35', '2021-09-20 12:59:09'),
('791', 'en', 'home_banner_2_max_3', 'Home Banner 2 (Max 3)', '2020-11-07 13:21:36', '2021-09-20 12:59:09'),
('792', 'en', 'top_10', 'Top 10', '2020-11-07 13:21:36', '2021-09-20 12:59:09'),
('793', 'en', 'top_categories_max_10', 'Top Categories (Max 10)', '2020-11-07 13:21:36', '2021-09-20 12:59:09'),
('794', 'en', 'top_brands_max_10', 'Top Brands (Max 10)', '2020-11-07 13:21:36', '2021-09-20 12:59:09'),
('795', 'en', 'system_name', 'System Name', '2020-11-07 13:24:22', '2021-09-20 12:59:09'),
('796', 'en', 'system_logo__white', 'System Logo - White', '2020-11-07 13:24:22', '2021-09-20 12:59:09'),
('797', 'en', 'choose_files', 'Choose Files', '2020-11-07 13:24:22', '2021-09-20 12:59:09'),
('798', 'en', 'will_be_used_in_admin_panel_side_menu', 'Will be used in admin panel side menu', '2020-11-07 13:24:23', '2021-09-20 12:59:09'),
('799', 'en', 'system_logo__black', 'System Logo - Black', '2020-11-07 13:24:23', '2021-09-20 12:59:09'),
('800', 'en', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Will be used in admin panel topbar in mobile + Admin login page', '2020-11-07 13:24:23', '2021-09-20 12:59:09'),
('801', 'en', 'system_timezone', 'System Timezone', '2020-11-07 13:24:23', '2021-09-20 12:59:09'),
('802', 'en', 'admin_login_page_background', 'Admin login page background', '2020-11-07 13:24:23', '2021-09-20 12:59:09'),
('803', 'en', 'website_header', 'Website Header', '2020-11-07 13:51:36', '2021-09-20 12:59:09'),
('804', 'en', 'header_setting', 'Header Setting', '2020-11-07 13:51:36', '2021-09-20 12:59:09'),
('805', 'en', 'header_logo', 'Header Logo', '2020-11-07 13:51:36', '2021-09-20 12:59:09'),
('806', 'en', 'show_language_switcher', 'Show Language Switcher?', '2020-11-07 13:51:36', '2021-09-20 12:59:09'),
('807', 'en', 'show_currency_switcher', 'Show Currency Switcher?', '2020-11-07 13:51:36', '2021-09-20 12:59:09'),
('808', 'en', 'enable_stikcy_header', 'Enable stikcy header?', '2020-11-07 13:51:36', '2021-09-20 12:59:09'),
('809', 'en', 'website_footer', 'Website Footer', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('810', 'en', 'footer_widget', 'Footer Widget', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('811', 'en', 'about_widget', 'About Widget', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('812', 'en', 'footer_logo', 'Footer Logo', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('813', 'en', 'about_description', 'About description', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('814', 'en', 'contact_info_widget', 'Contact Info Widget', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('815', 'en', 'footer_contact_address', 'Footer contact address', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('816', 'en', 'footer_contact_phone', 'Footer contact phone', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('817', 'en', 'footer_contact_email', 'Footer contact email', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('818', 'en', 'link_widget_one', 'Link Widget One', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('819', 'en', 'links', 'Links', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('820', 'en', 'footer_bottom', 'Footer Bottom', '2020-11-07 13:51:56', '2021-09-20 12:59:09'),
('821', 'en', 'copyright_widget_', 'Copyright Widget', '2020-11-07 13:51:57', '2021-09-20 12:59:09'),
('822', 'en', 'copyright_text', 'Copyright Text', '2020-11-07 13:51:57', '2021-09-20 12:59:09'),
('823', 'en', 'social_link_widget_', 'Social Link Widget', '2020-11-07 13:51:57', '2021-09-20 12:59:09'),
('824', 'en', 'show_social_links', 'Show Social Links?', '2020-11-07 13:51:57', '2021-09-20 12:59:09'),
('825', 'en', 'social_links', 'Social Links', '2020-11-07 13:51:57', '2021-09-20 12:59:09'),
('826', 'en', 'payment_methods_widget_', 'Payment Methods Widget', '2020-11-07 13:51:57', '2021-09-20 12:59:09'),
('827', 'en', 'rtl_status_updated_successfully', 'RTL status updated successfully', '2020-11-07 14:06:11', '2021-09-20 12:59:09'),
('828', 'en', 'language_changed_to_', 'Language changed to', '2020-11-07 14:06:27', '2021-09-20 12:59:09'),
('829', 'en', 'inhouse_product_sale_report', 'Inhouse Product sale report', '2020-11-07 15:00:25', '2021-09-20 12:59:09'),
('830', 'en', 'sort_by_category', 'Sort by Category', '2020-11-07 15:00:25', '2021-09-20 12:59:09'),
('831', 'en', 'product_wise_stock_report', 'Product wise stock report', '2020-11-07 15:01:02', '2021-09-20 12:59:09'),
('832', 'en', 'currency_changed_to_', 'Currency changed to', '2020-11-07 18:06:28', '2021-09-20 12:59:09'),
('833', 'en', 'avatar', 'Avatar', '2020-11-08 15:02:35', '2021-09-20 12:59:09'),
('834', 'en', 'copy', 'Copy', '2020-11-08 15:33:42', '2021-09-20 12:59:09'),
('835', 'en', 'variant', 'Variant', '2020-11-08 16:13:02', '2021-09-20 12:59:09'),
('836', 'en', 'variant_price', 'Variant Price', '2020-11-08 16:13:03', '2021-09-20 12:59:09'),
('837', 'en', 'sku', 'SKU', '2020-11-08 16:13:03', '2021-09-20 12:59:09'),
('838', 'en', 'key', 'Key', '2020-11-08 18:05:09', '2021-09-20 12:59:09'),
('839', 'en', 'value', 'Value', '2020-11-08 18:05:09', '2021-09-20 12:59:09'),
('840', 'en', 'copy_translations', 'Copy Translations', '2020-11-08 18:05:10', '2021-09-20 12:59:09'),
('841', 'en', 'all_pickup_points', 'All Pick-up Points', '2020-11-08 18:05:43', '2021-09-20 12:59:09'),
('842', 'en', 'add_new_pickup_point', 'Add New Pick-up Point', '2020-11-08 18:05:43', '2021-09-20 12:59:09'),
('843', 'en', 'manager', 'Manager', '2020-11-08 18:05:43', '2021-09-20 12:59:09'),
('844', 'en', 'location', 'Location', '2020-11-08 18:05:43', '2021-09-20 12:59:09'),
('845', 'en', 'pickup_station_contact', 'Pickup Station Contact', '2020-11-08 18:05:43', '2021-09-20 12:59:09'),
('846', 'en', 'open', 'Open', '2020-11-08 18:05:43', '2021-09-20 12:59:09'),
('847', 'en', 'pos_activation_for_seller', 'POS Activation for Seller', '2020-11-08 18:05:55', '2021-09-20 12:59:09'),
('848', 'en', 'order_completed_successfully', 'Order Completed Successfully.', '2020-11-08 18:06:02', '2021-09-20 12:59:09'),
('849', 'en', 'text_input', 'Text Input', '2020-11-08 18:08:40', '2021-09-20 12:59:09'),
('850', 'en', 'select', 'Select', '2020-11-08 18:08:40', '2021-09-20 12:59:09'),
('851', 'en', 'multiple_select', 'Multiple Select', '2020-11-08 18:08:40', '2021-09-20 12:59:09'),
('852', 'en', 'radio', 'Radio', '2020-11-08 18:08:40', '2021-09-20 12:59:09'),
('853', 'en', 'file', 'File', '2020-11-08 18:08:40', '2021-09-20 12:59:09'),
('854', 'en', 'email_address', 'Email Address', '2020-11-08 18:09:32', '2021-09-20 12:59:09'),
('855', 'en', 'verification_info', 'Verification Info', '2020-11-08 18:09:32', '2021-09-20 12:59:09'),
('856', 'en', 'approval', 'Approval', '2020-11-08 18:09:32', '2021-09-20 12:59:09'),
('857', 'en', 'due_amount', 'Due Amount', '2020-11-08 18:09:32', '2021-09-20 12:59:09'),
('858', 'en', 'show', 'Show', '2020-11-08 18:09:32', '2021-09-20 12:59:09'),
('859', 'en', 'pay_now', 'Pay Now', '2020-11-08 18:09:32', '2021-09-20 12:59:09'),
('860', 'en', 'affiliate_user_verification', 'Affiliate User Verification', '2020-11-08 18:10:01', '2021-09-20 12:59:09'),
('861', 'en', 'reject', 'Reject', '2020-11-08 18:10:01', '2021-09-20 12:59:09'),
('862', 'en', 'accept', 'Accept', '2020-11-08 18:10:01', '2021-09-20 12:59:09'),
('863', 'en', 'beauty_health__hair', 'Beauty, Health & Hair', '2020-11-08 18:24:17', '2021-09-20 12:59:09'),
('864', 'en', 'comparison', 'Comparison', '2020-11-08 18:24:33', '2021-09-20 12:59:09'),
('865', 'en', 'reset_compare_list', 'Reset Compare List', '2020-11-08 18:24:33', '2021-09-20 12:59:09'),
('866', 'en', 'your_comparison_list_is_empty', 'Your comparison list is empty', '2020-11-08 18:24:33', '2021-09-20 12:59:09'),
('867', 'en', 'convert_point_to_wallet', 'Convert Point To Wallet', '2020-11-08 18:34:42', '2021-09-20 12:59:09'),
('868', 'en', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Note: You need to activate wallet option first before using club point addon.', '2020-11-08 18:34:43', '2021-09-20 12:59:09'),
('869', 'en', 'create_an_account', 'Create an account.', '2020-11-09 11:47:11', '2021-09-20 12:59:09'),
('870', 'en', 'use_email_instead', 'Use Email Instead', '2020-11-09 11:47:11', '2021-09-20 12:59:09'),
('871', 'en', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'By signing up you agree to our terms and conditions.', '2020-11-09 11:47:11', '2021-09-20 12:59:09'),
('872', 'en', 'create_account', 'Create Account', '2020-11-09 11:47:11', '2021-09-20 12:59:09'),
('873', 'en', 'or_join_with', 'Or Join With', '2020-11-09 11:47:11', '2021-09-20 12:59:09'),
('874', 'en', 'already_have_an_account', 'Already have an account?', '2020-11-09 11:47:11', '2021-09-20 12:59:09'),
('875', 'en', 'log_in', 'Log In', '2020-11-09 11:47:11', '2021-09-20 12:59:09'),
('876', 'en', 'computer__accessories', 'Computer & Accessories', '2020-11-09 13:22:05', '2021-09-20 12:59:09'),
('878', 'en', 'products', 'Product(s)', '2020-11-09 13:22:23', '2021-09-20 12:59:09'),
('879', 'en', 'in_your_cart', 'in your cart', '2020-11-09 13:22:23', '2021-09-20 12:59:09'),
('880', 'en', 'in_your_wishlist', 'in your wishlist', '2020-11-09 13:22:23', '2021-09-20 12:59:09'),
('881', 'en', 'you_ordered', 'you ordered', '2020-11-09 13:22:24', '2021-09-20 12:59:09'),
('882', 'en', 'default_shipping_address', 'Default Shipping Address', '2020-11-09 13:22:24', '2021-09-20 12:59:09'),
('883', 'en', 'sports__outdoor', 'Sports & outdoor', '2020-11-09 13:23:32', '2021-09-20 12:59:09'),
('884', 'en', 'copied', 'Copied', '2020-11-09 13:24:19', '2021-09-20 12:59:09'),
('885', 'en', 'copy_the_promote_link', 'Copy the Promote Link', '2020-11-09 13:24:19', '2021-09-20 12:59:09'),
('886', 'en', 'write_a_review', 'Write a review', '2020-11-09 13:24:20', '2021-09-20 12:59:09'),
('887', 'en', 'your_name', 'Your name', '2020-11-09 13:24:20', '2021-09-20 12:59:09'),
('888', 'en', 'comment', 'Comment', '2020-11-09 13:24:20', '2021-09-20 12:59:09'),
('889', 'en', 'your_review', 'Your review', '2020-11-09 13:24:20', '2021-09-20 12:59:09'),
('890', 'en', 'submit_review', 'Submit review', '2020-11-09 13:24:20', '2021-09-20 12:59:09'),
('891', 'en', 'claire_willis', 'Claire Willis', '2020-11-09 13:35:00', '2021-09-20 12:59:09'),
('892', 'en', 'germaine_greene', 'Germaine Greene', '2020-11-09 13:35:00', '2021-09-20 12:59:09'),
('893', 'en', 'product_file', 'Product File', '2020-11-09 13:37:08', '2021-09-20 12:59:09'),
('894', 'en', 'choose_file', 'Choose file', '2020-11-09 13:37:08', '2021-09-20 12:59:09'),
('895', 'en', 'type_to_add_a_tag', 'Type to add a tag', '2020-11-09 13:37:08', '2021-09-20 12:59:09'),
('896', 'en', 'images', 'Images', '2020-11-09 13:37:08', '2021-09-20 12:59:09'),
('897', 'en', 'main_images', 'Main Images', '2020-11-09 13:37:08', '2021-09-20 12:59:09'),
('898', 'en', 'meta_tags', 'Meta Tags', '2020-11-09 13:37:08', '2021-09-20 12:59:09'),
('899', 'en', 'digital_product_has_been_inserted_successfully', 'Digital Product has been inserted successfully', '2020-11-09 13:44:25', '2021-09-20 12:59:09'),
('900', 'en', 'edit_digital_product', 'Edit Digital Product', '2020-11-09 13:44:34', '2021-09-20 12:59:09'),
('901', 'en', 'select_an_option', 'Select an option', '2020-11-09 13:44:34', '2021-09-20 12:59:09'),
('902', 'en', 'tax', 'Tax', '2020-11-09 13:44:35', '2021-02-11 09:45:27'),
('903', 'en', 'any_question_about_this_product', 'Any question about this product?', '2020-11-09 13:45:11', '2021-09-20 12:59:09'),
('904', 'en', 'sign_in', 'Sign in', '2020-11-09 13:45:11', '2021-09-20 12:59:09'),
('905', 'en', 'login_with_google', 'Login with Google', '2020-11-09 13:45:11', '2021-09-20 12:59:09'),
('906', 'en', 'login_with_facebook', 'Login with Facebook', '2020-11-09 13:45:11', '2021-09-20 12:59:09'),
('907', 'en', 'login_with_twitter', 'Login with Twitter', '2020-11-09 13:45:11', '2021-09-20 12:59:09'),
('908', 'en', 'click_to_show_phone_number', 'Click to show phone number', '2020-11-09 13:45:51', '2021-09-20 12:59:09'),
('909', 'en', 'other_ads_of', 'Other Ads of', '2020-11-09 13:45:52', '2021-09-20 12:59:09'),
('910', 'en', 'store_home', 'Store Home', '2020-11-09 14:24:23', '2021-09-20 12:59:09'),
('911', 'en', 'top_selling', 'Top Selling', '2020-11-09 14:24:23', '2021-09-20 12:59:09'),
('912', 'en', 'shop_settings', 'Shop Settings', '2020-11-09 14:25:38', '2021-09-20 12:59:09'),
('913', 'en', 'visit_shop', 'Visit Shop', '2020-11-09 14:25:38', '2021-09-20 12:59:09'),
('914', 'en', 'pickup_points', 'Pickup Points', '2020-11-09 14:25:38', '2021-09-20 12:59:09'),
('915', 'en', 'select_pickup_point', 'Select Pickup Point', '2020-11-09 14:25:38', '2021-09-20 12:59:09'),
('916', 'en', 'slider_settings', 'Slider Settings', '2020-11-09 14:25:39', '2021-09-20 12:59:09'),
('917', 'en', 'social_media_link', 'Social Media Link', '2020-11-09 14:25:39', '2021-09-20 12:59:09'),
('918', 'en', 'facebook', 'Facebook', '2020-11-09 14:25:39', '2021-09-20 12:59:09'),
('919', 'en', 'twitter', 'Twitter', '2020-11-09 14:25:39', '2021-09-20 12:59:09'),
('920', 'en', 'google', 'Google', '2020-11-09 14:25:39', '2021-09-20 12:59:09'),
('921', 'en', 'new_arrival_products', 'New Arrival Products', '2020-11-09 14:26:26', '2021-09-20 12:59:09'),
('922', 'en', 'check_your_order_status', 'Check Your Order Status', '2020-11-09 14:53:32', '2021-09-20 12:59:09'),
('923', 'en', 'shipping_method', 'Shipping method', '2020-11-09 14:57:40', '2021-09-20 12:59:09'),
('924', 'en', 'shipped_by', 'Shipped By', '2020-11-09 14:57:41', '2021-09-20 12:59:09'),
('925', 'en', 'image', 'Image', '2020-11-09 14:59:37', '2021-09-20 12:59:09'),
('926', 'en', 'sub_sub_category', 'Sub Sub Category', '2020-11-09 14:59:37', '2021-09-20 12:59:09'),
('927', 'en', 'inhouse_products', 'Inhouse Products', '2020-11-09 15:52:32', '2021-09-20 12:59:09'),
('928', 'en', 'forgot_password', 'Forgot Password?', '2020-11-09 16:03:21', '2021-09-20 12:59:09'),
('929', 'en', 'enter_your_email_address_to_recover_your_password', 'Enter your email address to recover your password.', '2020-11-09 16:03:21', '2021-09-20 12:59:09'),
('930', 'en', 'email_or_phone', 'Email or Phone', '2020-11-09 16:03:21', '2021-09-20 12:59:09'),
('931', 'en', 'send_password_reset_link', 'Send Password Reset Link', '2020-11-09 16:03:21', '2021-09-20 12:59:09'),
('932', 'en', 'back_to_login', 'Back to Login', '2020-11-09 16:03:21', '2021-09-20 12:59:09'),
('933', 'en', 'index', 'index', '2020-11-09 16:05:29', '2021-02-09 12:22:51'),
('934', 'en', 'download_your_product', 'Download Your Product', '2020-11-09 16:05:30', '2021-09-20 12:59:09'),
('935', 'en', 'option', 'Option', '2020-11-09 16:05:30', '2021-09-20 12:59:09'),
('936', 'en', 'applied_refund_request', 'Applied Refund Request', '2020-11-09 16:05:39', '2021-09-20 12:59:09'),
('937', 'en', 'item_has_been_renoved_from_wishlist', 'Item has been renoved from wishlist', '2020-11-09 16:06:04', '2021-09-20 12:59:09'),
('938', 'en', 'bulk_products_upload', 'Bulk Products Upload', '2020-11-09 16:09:24', '2021-09-20 12:59:09'),
('939', 'en', 'upload_csv', 'Upload CSV', '2020-11-09 16:09:25', '2021-09-20 12:59:09'),
('940', 'en', 'create_a_ticket', 'Create a Ticket', '2020-11-09 16:10:25', '2021-09-20 12:59:09'),
('941', 'en', 'tickets', 'Tickets', '2020-11-09 16:10:25', '2021-09-20 12:59:09'),
('942', 'en', 'ticket_id', 'Ticket ID', '2020-11-09 16:10:25', '2021-09-20 12:59:09'),
('943', 'en', 'sending_date', 'Sending Date', '2020-11-09 16:10:25', '2021-09-20 12:59:09'),
('944', 'en', 'subject', 'Subject', '2020-11-09 16:10:25', '2021-09-20 12:59:09'),
('945', 'en', 'view_details', 'View Details', '2020-11-09 16:10:25', '2021-09-20 12:59:09'),
('946', 'en', 'provide_a_detailed_description', 'Provide a detailed description', '2020-11-09 16:10:26', '2021-09-20 12:59:09'),
('947', 'en', 'type_your_reply', 'Type your reply', '2020-11-09 16:10:26', '2021-09-20 12:59:09'),
('948', 'en', 'send_ticket', 'Send Ticket', '2020-11-09 16:10:26', '2021-09-20 12:59:09'),
('949', 'en', 'load_more', 'Load More', '2020-11-09 16:10:57', '2021-09-20 12:59:09'),
('950', 'en', 'jewelry__watches', 'Jewelry & Watches', '2020-11-09 16:17:38', '2021-09-20 12:59:09'),
('951', 'en', 'filters', 'Filters', '2020-11-09 16:23:54', '2021-09-20 12:59:09'),
('952', 'en', 'contact_address', 'Contact address', '2020-11-09 16:28:46', '2021-09-20 12:59:09'),
('953', 'en', 'contact_phone', 'Contact phone', '2020-11-09 16:28:47', '2021-09-20 12:59:09'),
('954', 'en', 'contact_email', 'Contact email', '2020-11-09 16:28:47', '2021-09-20 12:59:09'),
('955', 'en', 'filter_by', 'Filter by', '2020-11-09 16:30:03', '2021-09-20 12:59:09'),
('956', 'en', 'condition', 'Condition', '2020-11-09 17:26:13', '2021-09-20 12:59:09'),
('957', 'en', 'all_type', 'All Type', '2020-11-09 17:26:13', '2021-09-20 12:59:09'),
('960', 'en', 'pay_with_wallet', 'Pay with wallet', '2020-11-09 18:26:34', '2021-09-20 12:59:09'),
('961', 'en', 'select_variation', 'Select variation', '2020-11-10 13:24:29', '2021-09-20 12:59:09'),
('962', 'en', 'no_product_added', 'No Product Added', '2020-11-10 13:37:53', '2021-09-20 12:59:09'),
('963', 'en', 'status_has_been_updated_successfully', 'Status has been updated successfully', '2020-11-10 14:11:23', '2021-09-20 12:59:09'),
('964', 'en', 'all_seller_packages', 'All Seller Packages', '2020-11-10 14:44:10', '2021-09-20 12:59:09'),
('965', 'en', 'add_new_package', 'Add New Package', '2020-11-10 14:44:10', '2021-09-20 12:59:09'),
('966', 'en', 'package_logo', 'Package Logo', '2020-11-10 14:44:10', '2021-09-20 12:59:09'),
('967', 'en', 'days', 'days', '2020-11-10 14:44:10', '2021-02-09 12:22:51'),
('968', 'en', 'create_new_seller_package', 'Create New Seller Package', '2020-11-10 14:44:31', '2021-09-20 12:59:09'),
('969', 'en', 'package_name', 'Package Name', '2020-11-10 14:44:31', '2021-09-20 12:59:09'),
('970', 'en', 'duration', 'Duration', '2020-11-10 14:44:31', '2021-09-20 12:59:09'),
('971', 'en', 'validity_in_number_of_days', 'Validity in number of days', '2020-11-10 14:44:31', '2021-09-20 12:59:09'),
('972', 'en', 'update_package_information', 'Update Package Information', '2020-11-10 14:44:59', '2021-09-20 12:59:09'),
('973', 'en', 'package_has_been_inserted_successfully', 'Package has been inserted successfully', '2020-11-10 14:45:14', '2021-09-20 12:59:09'),
('974', 'en', 'refund_request', 'Refund Request', '2020-11-10 14:47:25', '2021-09-20 12:59:09'),
('975', 'en', 'reason', 'Reason', '2020-11-10 14:47:25', '2021-09-20 12:59:09'),
('976', 'en', 'label', 'Label', '2020-11-10 14:50:13', '2021-09-20 12:59:09'),
('977', 'en', 'select_label', 'Select Label', '2020-11-10 14:50:13', '2021-09-20 12:59:09'),
('978', 'en', 'multiple_select_label', 'Multiple Select Label', '2020-11-10 14:50:13', '2021-09-20 12:59:09'),
('979', 'en', 'radio_label', 'Radio Label', '2020-11-10 14:50:13', '2021-09-20 12:59:09'),
('980', 'en', 'pickup_point_orders', 'Pickup Point Orders', '2020-11-10 14:55:40', '2021-09-20 12:59:09'),
('981', 'en', 'view', 'View', '2020-11-10 14:55:40', '2021-09-20 12:59:09'),
('982', 'en', 'order_', 'Order #', '2020-11-10 14:55:48', '2021-09-20 12:59:09'),
('983', 'en', 'order_status', 'Order Status', '2020-11-10 14:55:48', '2021-09-20 12:59:09'),
('984', 'en', 'total_amount', 'Total amount', '2020-11-10 14:55:48', '2021-09-20 12:59:09'),
('986', 'en', 'total', 'TOTAL', '2020-11-10 14:55:49', '2021-09-20 12:59:09'),
('987', 'en', 'delivery_status_has_been_updated', 'Delivery status has been updated', '2020-11-10 14:55:49', '2021-09-20 12:59:09'),
('988', 'en', 'payment_status_has_been_updated', 'Payment status has been updated', '2020-11-10 14:55:49', '2021-09-20 12:59:09'),
('989', 'en', 'invoice', 'INVOICE', '2020-11-10 14:55:58', '2021-09-20 12:59:09'),
('990', 'en', 'set_refund_time', 'Set Refund Time', '2020-11-10 15:04:04', '2021-09-20 12:59:09'),
('991', 'en', 'set_time_for_sending_refund_request', 'Set Time for sending Refund Request', '2020-11-10 15:04:04', '2021-09-20 12:59:09'),
('992', 'en', 'set_refund_sticker', 'Set Refund Sticker', '2020-11-10 15:04:05', '2021-09-20 12:59:09'),
('993', 'en', 'sticker', 'Sticker', '2020-11-10 15:04:05', '2021-09-20 12:59:09'),
('994', 'en', 'refund_request_all', 'Refund Request All', '2020-11-10 15:04:12', '2021-09-20 12:59:09'),
('995', 'en', 'order_id', 'Order Id', '2020-11-10 15:04:12', '2021-09-20 12:59:09'),
('996', 'en', 'seller_approval', 'Seller Approval', '2020-11-10 15:04:12', '2021-09-20 12:59:09'),
('997', 'en', 'admin_approval', 'Admin Approval', '2020-11-10 15:04:12', '2021-09-20 12:59:09'),
('998', 'en', 'refund_status', 'Refund Status', '2020-11-10 15:04:12', '2021-09-20 12:59:09'),
('1000', 'en', 'no_refund', 'No Refund', '2020-11-10 15:05:27', '2021-09-20 12:59:09'),
('1001', 'en', 'status_updated_successfully', 'Status updated successfully', '2020-11-10 15:24:20', '2021-09-20 12:59:09'),
('1002', 'en', 'user_search_report', 'User Search Report', '2020-11-11 12:13:24', '2021-09-20 12:59:09'),
('1003', 'en', 'search_by', 'Search By', '2020-11-11 12:13:24', '2021-09-20 12:59:09'),
('1004', 'en', 'number_searches', 'Number searches', '2020-11-11 12:13:24', '2021-09-20 12:59:09'),
('1005', 'en', 'sender', 'Sender', '2020-11-11 12:21:49', '2021-09-20 12:59:09'),
('1006', 'en', 'receiver', 'Receiver', '2020-11-11 12:21:49', '2021-09-20 12:59:09'),
('1007', 'en', 'verification_form_updated_successfully', 'Verification form updated successfully', '2020-11-11 12:23:29', '2021-09-20 12:59:09'),
('1008', 'en', 'invalid_email_or_password', 'Invalid email or password', '2020-11-11 12:37:49', '2021-09-20 12:59:09'),
('1009', 'en', 'all_coupons', 'All Coupons', '2020-11-11 12:44:04', '2021-09-20 12:59:09'),
('1010', 'en', 'add_new_coupon', 'Add New Coupon', '2020-11-11 12:44:04', '2021-09-20 12:59:09'),
('1011', 'en', 'coupon_information', 'Coupon Information', '2020-11-11 12:44:04', '2021-09-20 12:59:09'),
('1012', 'en', 'start_date', 'Start Date', '2020-11-11 12:44:04', '2021-09-20 12:59:09'),
('1013', 'en', 'end_date', 'End Date', '2020-11-11 12:44:05', '2021-09-20 12:59:09'),
('1014', 'en', 'product_base', 'Product Base', '2020-11-11 12:44:05', '2021-09-20 12:59:09'),
('1015', 'en', 'send_newsletter', 'Send Newsletter', '2020-11-11 12:44:10', '2021-09-20 12:59:09'),
('1016', 'en', 'mobile_users', 'Mobile Users', '2020-11-11 12:44:10', '2021-09-20 12:59:09'),
('1017', 'en', 'sms_subject', 'SMS subject', '2020-11-11 12:44:10', '2021-09-20 12:59:09'),
('1018', 'en', 'sms_content', 'SMS content', '2020-11-11 12:44:10', '2021-09-20 12:59:09'),
('1019', 'en', 'all_flash_delas', 'All Flash Delas', '2020-11-11 12:46:06', '2021-09-20 12:59:09'),
('1020', 'en', 'create_new_flash_dela', 'Create New Flash Dela', '2020-11-11 12:46:06', '2021-09-20 12:59:09'),
('1022', 'en', 'page_link', 'Page Link', '2020-11-11 12:46:06', '2021-09-20 12:59:09'),
('1023', 'en', 'flash_deal_information', 'Flash Deal Information', '2020-11-11 12:46:14', '2021-09-20 12:59:09'),
('1024', 'en', 'background_color', 'Background Color', '2020-11-11 12:46:14', '2021-09-20 12:59:09'),
('1025', 'en', '0000ff', '#0000ff', '2020-11-11 12:46:14', '2021-09-20 12:59:09'),
('1026', 'en', 'text_color', 'Text Color', '2020-11-11 12:46:14', '2021-09-20 12:59:09'),
('1027', 'en', 'white', 'White', '2020-11-11 12:46:14', '2021-09-20 12:59:09'),
('1028', 'en', 'dark', 'Dark', '2020-11-11 12:46:15', '2021-09-20 12:59:09'),
('1029', 'en', 'choose_products', 'Choose Products', '2020-11-11 12:46:15', '2021-09-20 12:59:09'),
('1030', 'en', 'discounts', 'Discounts', '2020-11-11 12:46:20', '2021-09-20 12:59:09'),
('1031', 'en', 'discount_type', 'Discount Type', '2020-11-11 12:46:20', '2021-09-20 12:59:09'),
('1032', 'en', 'twillo_credential', 'Twillo Credential', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1033', 'en', 'twilio_sid', 'TWILIO SID', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1034', 'en', 'twilio_auth_token', 'TWILIO AUTH TOKEN', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1035', 'en', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1036', 'en', 'valid_twillo_number', 'VALID TWILLO NUMBER', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1037', 'en', 'nexmo_credential', 'Nexmo Credential', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1038', 'en', 'nexmo_key', 'NEXMO KEY', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1039', 'en', 'nexmo_secret', 'NEXMO SECRET', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1040', 'en', 'ssl_wireless_credential', 'SSL Wireless Credential', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1041', 'en', 'ssl_sms_api_token', 'SSL SMS API TOKEN', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1042', 'en', 'ssl_sms_sid', 'SSL SMS SID', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1043', 'en', 'ssl_sms_url', 'SSL SMS URL', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1044', 'en', 'fast2sms_credential', 'Fast2SMS Credential', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1045', 'en', 'auth_key', 'AUTH KEY', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1046', 'en', 'route', 'ROUTE', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1047', 'en', 'promotional_use', 'Promotional Use', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1048', 'en', 'transactional_use', 'Transactional Use', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1050', 'en', 'sender_id', 'SENDER ID', '2020-11-11 12:47:35', '2021-09-20 12:59:09'),
('1051', 'en', 'nexmo_otp', 'Nexmo OTP', '2020-11-11 12:47:42', '2021-09-20 12:59:09'),
('1052', 'en', 'twillo_otp', 'Twillo OTP', '2020-11-11 12:47:43', '2021-09-20 12:59:09'),
('1053', 'en', 'ssl_wireless_otp', 'SSL Wireless OTP', '2020-11-11 12:47:43', '2021-09-20 12:59:09'),
('1054', 'en', 'fast2sms_otp', 'Fast2SMS OTP', '2020-11-11 12:47:43', '2021-09-20 12:59:09'),
('1055', 'en', 'order_placement', 'Order Placement', '2020-11-11 12:47:43', '2021-09-20 12:59:09'),
('1056', 'en', 'delivery_status_changing_time', 'Delivery Status Changing Time', '2020-11-11 12:47:43', '2021-09-20 12:59:09'),
('1057', 'en', 'paid_status_changing_time', 'Paid Status Changing Time', '2020-11-11 12:47:43', '2021-09-20 12:59:09'),
('1058', 'en', 'send_bulk_sms', 'Send Bulk SMS', '2020-11-11 12:49:14', '2021-09-20 12:59:09'),
('1059', 'en', 'all_subscribers', 'All Subscribers', '2020-11-11 12:51:51', '2021-09-20 12:59:09'),
('1060', 'en', 'coupon_information_adding', 'Coupon Information Adding', '2020-11-11 12:52:25', '2021-09-20 12:59:09'),
('1061', 'en', 'coupon_type', 'Coupon Type', '2020-11-11 12:52:25', '2021-09-20 12:59:09'),
('1062', 'en', 'for_products', 'For Products', '2020-11-11 12:52:25', '2021-09-20 12:59:09'),
('1063', 'en', 'for_total_orders', 'For Total Orders', '2020-11-11 12:52:25', '2021-09-20 12:59:09'),
('1064', 'en', 'add_your_product_base_coupon', 'Add Your Product Base Coupon', '2020-11-11 12:52:42', '2021-09-20 12:59:09'),
('1065', 'en', 'coupon_code', 'Coupon code', '2020-11-11 12:52:42', '2021-09-20 12:59:09'),
('1066', 'en', 'sub_category', 'Sub Category', '2020-11-11 12:52:42', '2021-09-20 12:59:09'),
('1067', 'en', 'add_more', 'Add More', '2020-11-11 12:52:43', '2021-09-20 12:59:09'),
('1068', 'en', 'add_your_cart_base_coupon', 'Add Your Cart Base Coupon', '2020-11-11 12:59:40', '2021-09-20 12:59:09'),
('1069', 'en', 'minimum_shopping', 'Minimum Shopping', '2020-11-11 12:59:40', '2021-09-20 12:59:09'),
('1070', 'en', 'maximum_discount_amount', 'Maximum Discount Amount', '2020-11-11 12:59:41', '2021-09-20 12:59:09'),
('1071', 'en', 'coupon_information_update', 'Coupon Information Update', '2020-11-11 13:48:34', '2021-09-20 12:59:09'),
('1073', 'en', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Please Configure SMTP Setting to work all email sending funtionality', '2020-11-11 18:40:18', '2021-09-20 12:59:09'),
('1074', 'en', 'configure_now', 'Configure Now', '2020-11-11 18:40:18', '2021-09-20 12:59:09'),
('1076', 'en', 'total_published_products', 'Total published products', '2020-11-11 18:40:18', '2021-09-20 12:59:09'),
('1077', 'en', 'total_sellers_products', 'Total sellers products', '2020-11-11 18:40:18', '2021-09-20 12:59:09'),
('1078', 'en', 'total_admin_products', 'Total admin products', '2020-11-11 18:40:18', '2021-09-20 12:59:09'),
('1079', 'en', 'manage_products', 'Manage Products', '2020-11-11 18:40:18', '2021-09-20 12:59:09'),
('1080', 'en', 'total_product_category', 'Total product category', '2020-11-11 18:40:18', '2021-09-20 12:59:09'),
('1081', 'en', 'create_category', 'Create Category', '2020-11-11 18:40:18', '2021-09-20 12:59:09'),
('1082', 'en', 'total_product_sub_sub_category', 'Total product sub sub category', '2020-11-11 18:40:18', '2021-09-20 12:59:10'),
('1083', 'en', 'create_sub_sub_category', 'Create Sub Sub Category', '2020-11-11 18:40:18', '2021-09-20 12:59:10'),
('1084', 'en', 'total_product_sub_category', 'Total product sub category', '2020-11-11 18:40:18', '2021-09-20 12:59:10'),
('1085', 'en', 'create_sub_category', 'Create Sub Category', '2020-11-11 18:40:18', '2021-09-20 12:59:10'),
('1086', 'en', 'total_product_brand', 'Total product brand', '2020-11-11 18:40:18', '2021-09-20 12:59:10'),
('1087', 'en', 'create_brand', 'Create Brand', '2020-11-11 18:40:18', '2021-09-20 12:59:10'),
('1089', 'en', 'total_sellers', 'Total sellers', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1091', 'en', 'total_approved_sellers', 'Total approved sellers', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1093', 'en', 'total_pending_sellers', 'Total pending sellers', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1094', 'en', 'manage_sellers', 'Manage Sellers', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1095', 'en', 'category_wise_product_sale', 'Category wise product sale', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1097', 'en', 'sale', 'Sale', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1098', 'en', 'category_wise_product_stock', 'Category wise product stock', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1099', 'en', 'category_name', 'Category Name', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1100', 'en', 'stock', 'Stock', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1101', 'en', 'frontend', 'Frontend', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1103', 'en', 'home_page', 'Home page', '2020-11-11 18:40:19', '2021-09-20 12:59:10'),
('1104', 'en', 'setting', 'setting', '2020-11-11 18:40:19', '2021-02-09 12:22:51'),
('1106', 'en', 'policy_page', 'Policy page', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1107', 'en', 'setting', 'setting', '2020-11-11 18:40:20', '2020-11-11 18:40:20'),
('1109', 'en', 'general', 'General', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1110', 'en', 'setting', 'setting', '2020-11-11 18:40:20', '2020-11-11 18:40:20'),
('1111', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1112', 'en', 'useful_link', 'Useful link', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1113', 'en', 'setting', 'setting', '2020-11-11 18:40:20', '2020-11-11 18:40:20'),
('1114', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1115', 'en', 'activation', 'Activation', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1116', 'en', 'setting', 'setting', '2020-11-11 18:40:20', '2020-11-11 18:40:20'),
('1117', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1118', 'en', 'smtp', 'SMTP', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1119', 'en', 'setting', 'setting', '2020-11-11 18:40:20', '2020-11-11 18:40:20'),
('1120', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1121', 'en', 'payment_method', 'Payment method', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1122', 'en', 'setting', 'setting', '2020-11-11 18:40:20', '2020-11-11 18:40:20'),
('1123', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1124', 'en', 'social_media', 'Social media', '2020-11-11 18:40:20', '2021-09-20 12:59:10'),
('1125', 'en', 'setting', 'setting', '2020-11-11 18:40:20', '2020-11-11 18:40:20'),
('1126', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1127', 'en', 'business', 'Business', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1128', 'en', 'setting', 'setting', '2020-11-11 18:40:21', '2020-11-11 18:40:21'),
('1130', 'en', 'setting', 'setting', '2020-11-11 18:40:21', '2020-11-11 18:40:21'),
('1131', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1132', 'en', 'seller_verification', 'Seller verification', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1133', 'en', 'form_setting', 'form setting', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1134', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1135', 'en', 'language', 'Language', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1136', 'en', 'setting', 'setting', '2020-11-11 18:40:21', '2020-11-11 18:40:21'),
('1137', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1139', 'en', 'setting', 'setting', '2020-11-11 18:40:21', '2020-11-11 18:40:21'),
('1140', 'en', 'click_here', 'Click Here', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1141', 'en', 'dashboard', 'Dashboard', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1142', 'en', 'pos_system', 'POS System', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1143', 'en', 'pos_manager', 'POS Manager', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1144', 'en', 'pos_configuration', 'POS Configuration', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1145', 'en', 'products', 'Products', '2020-11-11 18:40:21', '2021-09-20 12:59:10'),
('1146', 'en', 'add_new_product', 'Add New product', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1147', 'en', 'all_products', 'All Products', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1148', 'en', 'in_house_products', 'In House Products', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1149', 'en', 'seller_products', 'Seller Products', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1150', 'en', 'digital_products', 'Digital Products', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1151', 'en', 'bulk_import', 'Bulk Import', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1152', 'en', 'bulk_export', 'Bulk Export', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1153', 'en', 'category', 'Category', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1154', 'en', 'subcategory', 'Subcategory', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1155', 'en', 'sub_subcategory', 'Sub Subcategory', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1156', 'en', 'brand', 'Brand', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1157', 'en', 'attribute', 'Attribute', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1158', 'en', 'product_reviews', 'Product Reviews', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1159', 'en', 'sales', 'Sales', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1160', 'en', 'all_orders', 'All Orders', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1161', 'en', 'inhouse_orders', 'Inhouse orders', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1162', 'en', 'seller_orders', 'Seller Orders', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1163', 'en', 'pickup_point_order', 'Pick-up Point Order', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1164', 'en', 'refunds', 'Refunds', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1165', 'en', 'refund_requests', 'Refund Requests', '2020-11-11 18:40:22', '2021-09-20 12:59:10'),
('1166', 'en', 'approved_refund', 'Approved Refund', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1167', 'en', 'refund_configuration', 'Refund Configuration', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1168', 'en', 'customers', 'Customers', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1169', 'en', 'customer_list', 'Customer list', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1170', 'en', 'classified_products', 'Classified Products', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1171', 'en', 'classified_packages', 'Classified Packages', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1172', 'en', 'sellers', 'Sellers', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1173', 'en', 'all_seller', 'All Seller', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1174', 'en', 'payouts', 'Payouts', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1175', 'en', 'payout_requests', 'Payout Requests', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1176', 'en', 'seller_commission', 'Seller Commission', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1177', 'en', 'seller_packages', 'Seller Packages', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1178', 'en', 'seller_verification_form', 'Seller Verification Form', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1179', 'en', 'reports', 'Reports', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1180', 'en', 'in_house_product_sale', 'In House Product Sale', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1181', 'en', 'seller_products_sale', 'Seller Products Sale', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1182', 'en', 'products_stock', 'Products Stock', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1183', 'en', 'products_wishlist', 'Products wishlist', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1184', 'en', 'user_searches', 'User Searches', '2020-11-11 18:40:23', '2021-09-20 12:59:10'),
('1185', 'en', 'marketing', 'Marketing', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1186', 'en', 'flash_deals', 'Flash deals', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1187', 'en', 'newsletters', 'Newsletters', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1188', 'en', 'bulk_sms', 'Bulk SMS', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1189', 'en', 'subscribers', 'Subscribers', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1190', 'en', 'coupon', 'Coupon', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1191', 'en', 'support', 'Support', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1192', 'en', 'ticket', 'Ticket', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1193', 'en', 'product_queries', 'Product Queries', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1194', 'en', 'website_setup', 'Website Setup', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1195', 'en', 'header', 'Header', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1196', 'en', 'footer', 'Footer', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1197', 'en', 'pages', 'Pages', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1198', 'en', 'appearance', 'Appearance', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1199', 'en', 'setup__configurations', 'Setup & Configurations', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1200', 'en', 'general_settings', 'General Settings', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1201', 'en', 'features_activation', 'Features activation', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1202', 'en', 'languages', 'Languages', '2020-11-11 18:40:24', '2021-09-20 12:59:10'),
('1203', 'en', 'currency', 'Currency', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1204', 'en', 'pickup_point', 'Pickup point', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1205', 'en', 'smtp_settings', 'SMTP Settings', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1206', 'en', 'payment_methods', 'Payment Methods', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1207', 'en', 'file_system_configuration', 'File System Configuration', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1208', 'en', 'social_media_logins', 'Social media Logins', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1209', 'en', 'analytics_tools', 'Analytics Tools', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1210', 'en', 'facebook_chat', 'Facebook Chat', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1211', 'en', 'google_recaptcha', 'Google reCAPTCHA', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1212', 'en', 'shipping_configuration', 'Shipping Configuration', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1213', 'en', 'shipping_countries', 'Shipping Countries', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1214', 'en', 'affiliate_system', 'Affiliate System', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1215', 'en', 'affiliate_registration_form', 'Affiliate Registration Form', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1216', 'en', 'affiliate_configurations', 'Affiliate Configurations', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1217', 'en', 'affiliate_users', 'Affiliate Users', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1218', 'en', 'referral_users', 'Referral Users', '2020-11-11 18:40:25', '2021-09-20 12:59:10'),
('1219', 'en', 'affiliate_withdraw_requests', 'Affiliate Withdraw Requests', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1220', 'en', 'offline_payment_system', 'Offline Payment System', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1221', 'en', 'manual_payment_methods', 'Manual Payment Methods', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1222', 'en', 'offline_wallet_recharge', 'Offline Wallet Recharge', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1223', 'en', 'offline_customer_package_payments', 'Offline Customer Package Payments', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1224', 'en', 'offline_seller_package_payments', 'Offline Seller Package Payments', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1225', 'en', 'paytm_payment_gateway', 'Paytm Payment Gateway', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1226', 'en', 'set_paytm_credentials', 'Set Paytm Credentials', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1227', 'en', 'club_point_system', 'Club Point System', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1228', 'en', 'club_point_configurations', 'Club Point Configurations', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1229', 'en', 'set_product_point', 'Set Product Point', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1230', 'en', 'user_points', 'User Points', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1231', 'en', 'otp_system', 'OTP System', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1232', 'en', 'otp_configurations', 'OTP Configurations', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1233', 'en', 'set_otp_credentials', 'Set OTP Credentials', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1234', 'en', 'staffs', 'Staffs', '2020-11-11 18:40:26', '2021-09-20 12:59:10'),
('1235', 'en', 'all_staffs', 'All staffs', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1236', 'en', 'staff_permissions', 'Staff permissions', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1237', 'en', 'addon_manager', 'Addon Manager', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1238', 'en', 'browse_website', 'Browse Website', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1239', 'en', 'pos', 'POS', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1240', 'en', 'notifications', 'Notifications', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1241', 'en', 'new_orders', 'new orders', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1242', 'en', 'userimage', 'user-image', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1243', 'en', 'profile', 'Profile', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1244', 'en', 'logout', 'Logout', '2020-11-11 18:40:27', '2021-09-20 12:59:10'),
('1247', 'en', 'page_not_found', 'Page Not Found!', '2020-11-11 18:40:28', '2021-09-20 12:59:10'),
('1249', 'en', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'The page you are looking for has not been found on our server.', '2020-11-11 18:40:28', '2021-09-20 12:59:10'),
('1253', 'en', 'registration', 'Registration', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1255', 'en', 'i_am_shopping_for', 'I am shopping for...', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1257', 'en', 'compare', 'Compare', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1259', 'en', 'wishlist', 'Wishlist', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1261', 'en', 'cart', 'Cart', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1263', 'en', 'your_cart_is_empty', 'Your Cart is empty', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1265', 'en', 'categories', 'Categories', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1267', 'en', 'see_all', 'See All', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1269', 'en', 'seller_policy', 'Seller Policy', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1271', 'en', 'return_policy', 'Return Policy', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1273', 'en', 'support_policy', 'Support Policy', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1275', 'en', 'privacy_policy', 'Privacy Policy', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1277', 'en', 'your_email_address', 'Your Email Address', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1279', 'en', 'subscribe', 'Subscribe', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1281', 'en', 'contact_info', 'Contact Info', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1283', 'en', 'address', 'Address', '2020-11-11 18:40:29', '2021-09-20 12:59:10'),
('1285', 'en', 'phone', 'Phone', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1287', 'en', 'email', 'Email', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1288', 'en', 'login', 'Login', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1289', 'en', 'my_account', 'My Account', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1291', 'en', 'login', 'Login', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1293', 'en', 'order_history', 'Order History', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1295', 'en', 'my_wishlist', 'My Wishlist', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1297', 'en', 'track_order', 'Track Order', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1299', 'en', 'be_an_affiliate_partner', 'Be an affiliate partner', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1301', 'en', 'be_a_seller', 'Be a Seller', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1303', 'en', 'apply_now', 'Apply Now', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1305', 'en', 'confirmation', 'Confirmation', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1307', 'en', 'delete_confirmation_message', 'Delete confirmation message', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1309', 'en', 'cancel', 'Cancel', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1312', 'en', 'delete', 'Delete', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1313', 'en', 'item_has_been_added_to_compare_list', 'Item has been added to compare list', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1314', 'en', 'please_login_first', 'Please login first', '2020-11-11 18:40:30', '2021-09-20 12:59:10'),
('1315', 'en', 'total_earnings_from', 'Total Earnings From', '2020-11-12 13:31:11', '2021-09-20 12:59:10'),
('1316', 'en', 'client_subscription', 'Client Subscription', '2020-11-12 13:31:12', '2021-09-20 12:59:10'),
('1317', 'en', 'product_category', 'Product category', '2020-11-12 13:33:46', '2021-09-20 12:59:10'),
('1318', 'en', 'product_sub_sub_category', 'Product sub sub category', '2020-11-12 13:33:46', '2021-09-20 12:59:10'),
('1319', 'en', 'product_sub_category', 'Product sub category', '2020-11-12 13:33:46', '2021-09-20 12:59:10'),
('1320', 'en', 'product_brand', 'Product brand', '2020-11-12 13:33:46', '2021-09-20 12:59:10'),
('1321', 'en', 'top_client_packages', 'Top Client Packages', '2020-11-12 13:35:21', '2021-09-20 12:59:10'),
('1322', 'en', 'top_freelancer_packages', 'Top Freelancer Packages', '2020-11-12 13:35:21', '2021-09-20 12:59:10'),
('1323', 'en', 'number_of_sale', 'Number of sale', '2020-11-12 14:43:09', '2021-09-20 12:59:10'),
('1324', 'en', 'number_of_stock', 'Number of Stock', '2020-11-12 14:46:02', '2021-09-20 12:59:10'),
('1325', 'en', 'top_10_products', 'Top 10 Products', '2020-11-12 15:32:29', '2021-09-20 12:59:10'),
('1326', 'en', 'top_12_products', 'Top 12 Products', '2020-11-12 15:32:39', '2021-09-20 12:59:10'),
('1327', 'en', 'admin_can_not_be_a_seller', 'Admin cannot be a seller', '2020-11-12 17:00:19', '2021-09-20 12:59:10'),
('1328', 'en', 'filter_by_rating', 'Filter by Rating', '2020-11-15 13:31:15', '2021-09-20 12:59:10'),
('1329', 'en', 'published_reviews_updated_successfully', 'Published reviews updated successfully', '2020-11-15 13:31:15', '2021-09-20 12:59:10'),
('1330', 'en', 'refund_sticker_has_been_updated_successfully', 'Refund Sticker has been updated successfully', '2020-11-15 13:47:12', '2021-09-20 12:59:10'),
('1331', 'en', 'edit_product', 'Edit Product', '2020-11-15 16:01:54', '2021-09-20 12:59:10'),
('1332', 'en', 'meta_images', 'Meta Images', '2020-11-15 16:02:12', '2021-09-20 12:59:10'),
('1333', 'en', 'update_product', 'Update Product', '2020-11-15 16:02:12', '2021-09-20 12:59:10'),
('1334', 'en', 'product_has_been_deleted_successfully', 'Product has been deleted successfully', '2020-11-15 16:02:57', '2021-09-20 12:59:10'),
('1335', 'en', 'your_profile_has_been_updated_successfully', 'Your Profile has been updated successfully!', '2020-11-15 16:40:42', '2021-09-20 12:59:10'),
('1336', 'en', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Upload limit has been reached. Please upgrade your package.', '2020-11-15 16:43:45', '2021-09-20 12:59:10'),
('1337', 'en', 'add_your_product', 'Add Your Product', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1338', 'en', 'select_a_category', 'Select a category', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1339', 'en', 'select_a_brand', 'Select a brand', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1340', 'en', 'product_unit', 'Product Unit', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1341', 'en', 'minimum_qty', 'Minimum Qty.', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1342', 'en', 'product_tag', 'Product Tag', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1343', 'en', 'type__hit_enter', 'Type & hit enter', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1344', 'en', 'videos', 'Videos', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1345', 'en', 'video_from', 'Video From', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1346', 'en', 'video_url', 'Video URL', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1347', 'en', 'customer_choice', 'Customer Choice', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1348', 'en', 'pdf', 'PDF', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1349', 'en', 'choose_pdf', 'Choose PDF', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1350', 'en', 'select_category', 'Select Category', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1351', 'en', 'target_category', 'Target Category', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1352', 'en', 'subsubcategory', 'subsubcategory', '2020-11-15 16:47:56', '2021-02-09 12:23:13'),
('1353', 'en', 'search_category', 'Search Category', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1354', 'en', 'search_subcategory', 'Search SubCategory', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1355', 'en', 'search_subsubcategory', 'Search SubSubCategory', '2020-11-15 16:47:56', '2021-09-20 12:59:10'),
('1356', 'en', 'update_your_product', 'Update your product', '2020-11-15 17:09:14', '2021-09-20 12:59:10'),
('1357', 'en', 'product_has_been_updated_successfully', 'Product has been updated successfully', '2020-11-15 17:21:36', '2021-09-20 12:59:10'),
('1358', 'en', 'add_your_digital_product', 'Add Your Digital Product', '2020-11-15 17:54:21', '2021-09-20 12:59:10'),
('1359', 'en', 'active_ecommerce_cms_update_process', 'Active eCommerce CMS Update Process', '2020-11-16 13:23:31', '2021-09-20 12:59:10'),
('1361', 'en', 'codecanyon_purchase_code', 'Codecanyon purchase code', '2020-11-16 13:23:31', '2021-09-20 12:59:10'),
('1362', 'en', 'database_name', 'Database Name', '2020-11-16 13:23:31', '2021-09-20 12:59:10'),
('1363', 'en', 'database_username', 'Database Username', '2020-11-16 13:23:31', '2021-09-20 12:59:10'),
('1364', 'en', 'database_password', 'Database Password', '2020-11-16 13:23:31', '2021-09-20 12:59:10'),
('1365', 'en', 'database_hostname', 'Database Hostname', '2020-11-16 13:23:31', '2021-09-20 12:59:10'),
('1366', 'en', 'update_now', 'Update Now', '2020-11-16 13:23:31', '2021-09-20 12:59:10'),
('1368', 'en', 'congratulations', 'Congratulations', '2020-11-16 13:25:14', '2021-09-20 12:59:10'),
('1369', 'en', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'You have successfully completed the updating process. Please Login to continue', '2020-11-16 13:25:14', '2021-09-20 12:59:10'),
('1370', 'en', 'go_to_home', 'Go to Home', '2020-11-16 13:25:14', '2021-09-20 12:59:10'),
('1371', 'en', 'login_to_admin_panel', 'Login to Admin panel', '2020-11-16 13:25:14', '2021-09-20 12:59:10'),
('1372', 'en', 's3_file_system_credentials', 'S3 File System Credentials', '2020-11-16 18:29:57', '2021-09-20 12:59:10'),
('1373', 'en', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2020-11-16 18:29:57', '2021-09-20 12:59:10'),
('1374', 'en', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2020-11-16 18:29:57', '2021-09-20 12:59:10'),
('1375', 'en', 'aws_default_region', 'AWS_DEFAULT_REGION', '2020-11-16 18:29:57', '2021-09-20 12:59:10'),
('1376', 'en', 'aws_bucket', 'AWS_BUCKET', '2020-11-16 18:29:57', '2021-09-20 12:59:10'),
('1377', 'en', 'aws_url', 'AWS_URL', '2020-11-16 18:29:57', '2021-09-20 12:59:10'),
('1378', 'en', 's3_file_system_activation', 'S3 File System Activation', '2020-11-16 18:29:57', '2021-09-20 12:59:10'),
('1379', 'en', 'your_phone_number', 'Your phone number', '2020-11-17 11:20:10', '2021-09-20 12:59:10'),
('1380', 'en', 'zip_file', 'Zip File', '2020-11-17 12:28:45', '2021-09-20 12:59:10'),
('1381', 'en', 'install', 'Install', '2020-11-17 12:28:45', '2021-09-20 12:59:10'),
('1382', 'en', 'this_version_is_not_capable_of_installing_addons_please_update', 'This version is not capable of installing Addons, Please update.', '2020-11-17 12:29:11', '2021-09-20 12:59:10'),
('1383', 'bd', 'categories', 'Categories', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1384', 'bd', 'see_all', 'See All', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1385', 'bd', 'top_10_categories', 'Top 10 Categories', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1386', 'bd', 'view_all_categories', 'View All Categories', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1387', 'bd', 'top_10_brands', 'Top 10 Brands', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1388', 'bd', 'view_all_brands', 'View All Brands', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1389', 'bd', 'login', 'Login', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1390', 'bd', 'registration', 'Registration', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1391', 'bd', 'i_am_shopping_for', 'I am shopping for...', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1392', 'bd', 'compare', 'Compare', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1393', 'bd', 'wishlist', 'Wishlist', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1394', 'bd', 'cart', 'Cart', '2021-02-03 09:20:34', '2021-09-20 12:59:10'),
('1395', 'bd', 'your_cart_is_empty', 'Your Cart is empty', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1396', 'bd', 'terms__conditions', 'Terms & conditions', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1397', 'bd', 'return_policy', 'Return Policy', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1398', 'bd', 'support_policy', 'Support Policy', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1399', 'bd', 'privacy_policy', 'Privacy Policy', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1400', 'bd', 'your_email_address', 'Your Email Address', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1401', 'bd', 'subscribe', 'Subscribe', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1402', 'bd', 'contact_info', 'Contact Info', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1403', 'bd', 'address', 'Address', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1404', 'bd', 'phone', 'Phone', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1405', 'bd', 'email', 'Email', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1406', 'bd', 'my_account', 'My Account', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1407', 'bd', 'order_history', 'Order History', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1408', 'bd', 'my_wishlist', 'My Wishlist', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1409', 'bd', 'track_order', 'Track Order', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1410', 'bd', 'welcome_to', 'Welcome to', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1411', 'bd', 'login_to_your_account', 'Login to your account.', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1412', 'bd', 'be_a_seller', 'Be a Seller', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1413', 'bd', 'apply_now', 'Apply Now', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1414', 'bd', 'password', 'Password', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1415', 'bd', 'remember_me', 'Remember Me', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1416', 'bd', 'confirmation', 'Confirmation', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1417', 'bd', 'delete_confirmation_message', 'Delete confirmation message', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1418', 'bd', 'cancel', 'Cancel', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1419', 'bd', 'delete', 'Delete', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1420', 'bd', 'item_has_been_added_to_compare_list', 'Item has been added to compare list', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1421', 'bd', 'please_login_first', 'Please login first', '2021-02-03 09:20:35', '2021-09-20 12:59:10'),
('1422', 'bd', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Please Configure SMTP Setting to work all email sending functionality', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1423', 'bd', 'configure_now', 'Configure Now', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1424', 'bd', 'total', 'Total', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1425', 'bd', 'customer', 'Customer', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1426', 'bd', 'order', 'Order', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1427', 'bd', 'product_category', 'Product category', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1428', 'bd', 'product_brand', 'Product brand', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1429', 'bd', 'products', 'Products', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1430', 'bd', 'sellers', 'Sellers', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1431', 'bd', 'category_wise_product_sale', 'Category wise product sale', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1432', 'bd', 'category_wise_product_stock', 'Category wise product stock', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1433', 'bd', 'top_12_products', 'Top 12 Products', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1434', 'bd', 'total_published_products', 'Total published products', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1435', 'bd', 'total_sellers_products', 'Total sellers products', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1436', 'bd', 'total_admin_products', 'Total admin products', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1437', 'bd', 'total_sellers', 'Total sellers', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1438', 'bd', 'total_approved_sellers', 'Total approved sellers', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1439', 'bd', 'total_pending_sellers', 'Total pending sellers', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1440', 'bd', 'number_of_sale', 'Number of sale', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1441', 'bd', 'number_of_stock', 'Number of Stock', '2021-02-03 09:20:41', '2021-09-20 12:59:10'),
('1442', 'bd', 'search_in_menu', 'Search in menu', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1443', 'bd', 'dashboard', 'Dashboard', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1444', 'bd', 'add_new_product', 'Add New product', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1445', 'bd', 'all_products', 'All Products', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1446', 'bd', 'in_house_products', 'In House Products', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1447', 'bd', 'seller_products', 'Seller Products', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1448', 'bd', 'digital_products', 'Digital Products', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1449', 'bd', 'bulk_import', 'Bulk Import', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1450', 'bd', 'bulk_export', 'Bulk Export', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1451', 'bd', 'category', 'Category', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1452', 'bd', 'brand', 'Brand', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1453', 'bd', 'attribute', 'Attribute', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1454', 'bd', 'product_reviews', 'Product Reviews', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1455', 'bd', 'sales', 'Sales', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1456', 'bd', 'all_orders', 'All Orders', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1457', 'bd', 'inhouse_orders', 'Inhouse orders', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1458', 'bd', 'seller_orders', 'Seller Orders', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1459', 'bd', 'pickup_point_order', 'Pick-up Point Order', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1460', 'bd', 'customers', 'Customers', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1461', 'bd', 'customer_list', 'Customer list', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1462', 'bd', 'all_seller', 'All Seller', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1463', 'bd', 'payouts', 'Payouts', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1464', 'bd', 'payout_requests', 'Payout Requests', '2021-02-03 09:20:42', '2021-09-20 12:59:10'),
('1465', 'bd', 'seller_commission', 'Seller Commission', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1466', 'bd', 'seller_verification_form', 'Seller Verification Form', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1467', 'bd', 'uploaded_files', 'Uploaded Files', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1468', 'bd', 'reports', 'Reports', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1469', 'bd', 'in_house_product_sale', 'In House Product Sale', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1470', 'bd', 'seller_products_sale', 'Seller Products Sale', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1471', 'bd', 'products_stock', 'Products Stock', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1472', 'bd', 'products_wishlist', 'Products wishlist', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1473', 'bd', 'user_searches', 'User Searches', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1474', 'bd', 'marketing', 'Marketing', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1475', 'bd', 'flash_deals', 'Flash deals', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1476', 'bd', 'newsletters', 'Newsletters', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1477', 'bd', 'subscribers', 'Subscribers', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1478', 'bd', 'coupon', 'Coupon', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1479', 'bd', 'support', 'Support', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1480', 'bd', 'ticket', 'Ticket', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1481', 'bd', 'product_queries', 'Product Queries', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1482', 'bd', 'website_setup', 'Website Setup', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1483', 'bd', 'header', 'Header', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1484', 'bd', 'footer', 'Footer', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1485', 'bd', 'pages', 'Pages', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1486', 'bd', 'appearance', 'Appearance', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1487', 'bd', 'setup__configurations', 'Setup & Configurations', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1488', 'bd', 'general_settings', 'General Settings', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1489', 'bd', 'features_activation', 'Features activation', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1490', 'bd', 'languages', 'Languages', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1491', 'bd', 'currency', 'Currency', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1492', 'bd', 'pickup_point', 'Pickup point', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1493', 'bd', 'smtp_settings', 'SMTP Settings', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1494', 'bd', 'payment_methods', 'Payment Methods', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1495', 'bd', 'file_system_configuration', 'File System Configuration', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1496', 'bd', 'social_media_logins', 'Social media Logins', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1497', 'bd', 'analytics_tools', 'Analytics Tools', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1498', 'bd', 'facebook_chat', 'Facebook Chat', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1499', 'bd', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1500', 'bd', 'shipping_configuration', 'Shipping Configuration', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1501', 'bd', 'shipping_countries', 'Shipping Countries', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1502', 'bd', 'shipping_cities', 'Shipping Cities', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1503', 'bd', 'staffs', 'Staffs', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1504', 'bd', 'all_staffs', 'All staffs', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1505', 'bd', 'staff_permissions', 'Staff permissions', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1506', 'bd', 'system', 'System', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1507', 'bd', 'update', 'Update', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1508', 'bd', 'server_status', 'Server status', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1509', 'bd', 'addon_manager', 'Addon Manager', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1510', 'bd', 'browse_website', 'Browse Website', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1511', 'bd', 'notifications', 'Notifications', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1512', 'bd', 'profile', 'Profile', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1513', 'bd', 'logout', 'Logout', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1514', 'bd', 'nothing_found', 'Nothing Found', '2021-02-03 09:20:42', '2021-09-20 12:59:11'),
('1515', 'bd', 'my_panel', 'My Panel', '2021-02-03 09:24:10', '2021-09-20 12:59:11'),
('1516', 'bd', 'featured_products', 'Featured Products', '2021-02-03 09:24:11', '2021-09-20 12:59:11'),
('1517', 'bd', 'all_brands', 'All Brands', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1518', 'bd', 'brands', 'Brands', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1519', 'bd', 'type_name__enter', 'Type name & Enter', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1520', 'bd', 'name', 'Name', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1521', 'bd', 'logo', 'Logo', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1522', 'bd', 'options', 'Options', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1523', 'bd', 'edit', 'Edit', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1524', 'bd', 'add_new_brand', 'Add New Brand', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1525', 'bd', '120x80', '120x80', '2021-02-03 09:24:25', '2021-02-03 09:24:25'),
('1526', 'bd', 'browse', 'Browse', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1527', 'bd', 'choose_file', 'Choose File', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1528', 'bd', 'meta_title', 'Meta Title', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1529', 'bd', 'meta_description', 'Meta Description', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1530', 'bd', 'save', 'Save', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1531', 'bd', 'delete_confirmation', 'Delete Confirmation', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1532', 'bd', 'are_you_sure_to_delete_this', 'Are you sure to delete this?', '2021-02-03 09:24:25', '2021-09-20 12:59:11'),
('1533', 'bd', 'all_categories', 'All categories', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1534', 'bd', 'add_new_category', 'Add New category', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1535', 'bd', 'parent_category', 'Parent Category', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1536', 'bd', 'level', 'Level', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1537', 'bd', 'banner', 'Banner', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1538', 'bd', 'icon', 'Icon', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1539', 'bd', 'featured', 'Featured', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1540', 'bd', 'commission', 'Commission', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1541', 'bd', 'featured_categories_updated_successfully', 'Featured categories updated successfully', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1542', 'bd', 'something_went_wrong', 'Something went wrong', '2021-02-03 09:24:30', '2021-09-20 12:59:11'),
('1543', 'bd', 'category_information', 'Category Information', '2021-02-03 09:25:29', '2021-09-20 12:59:11'),
('1544', 'bd', 'translatable', 'Translatable', '2021-02-03 09:25:29', '2021-09-20 12:59:11'),
('1545', 'bd', 'no_parent', 'No Parent', '2021-02-03 09:25:29', '2021-09-20 12:59:11'),
('1546', 'bd', 'type', 'Type', '2021-02-03 09:25:30', '2021-09-20 12:59:11'),
('1547', 'bd', 'physical', 'Physical', '2021-02-03 09:25:30', '2021-09-20 12:59:11'),
('1548', 'bd', 'digital', 'Digital', '2021-02-03 09:25:30', '2021-09-20 12:59:11'),
('1549', 'bd', '200x200', '200x200', '2021-02-03 09:25:30', '2021-02-03 09:25:30'),
('1550', 'bd', '32x32', '32x32', '2021-02-03 09:25:30', '2021-02-03 09:25:30'),
('1551', 'bd', 'slug', 'Slug', '2021-02-03 09:25:30', '2021-09-20 12:59:11'),
('1552', 'bd', 'default_language', 'Default Language', '2021-02-03 09:25:45', '2021-09-20 12:59:11'),
('1553', 'bd', 'add_new_language', 'Add New Language', '2021-02-03 09:25:45', '2021-09-20 12:59:11'),
('1554', 'bd', 'language', 'Language', '2021-02-03 09:25:45', '2021-09-20 12:59:11'),
('1555', 'bd', 'code', 'Code', '2021-02-03 09:25:45', '2021-09-20 12:59:11'),
('1556', 'bd', 'rtl', 'RTL', '2021-02-03 09:25:45', '2021-09-20 12:59:11'),
('1557', 'bd', 'translation', 'Translation', '2021-02-03 09:25:45', '2021-09-20 12:59:11'),
('1558', 'bd', 'settings_updated_successfully', 'Settings updated successfully', '2021-02-03 09:25:48', '2021-09-20 12:59:11'),
('1559', 'en', 'search_in_menu', 'Search in menu', '2021-02-03 09:25:48', '2021-09-20 12:59:11'),
('1560', 'en', 'uploaded_files', 'Uploaded Files', '2021-02-03 09:25:48', '2021-09-20 12:59:11'),
('1561', 'en', 'shipping_cities', 'Shipping Cities', '2021-02-03 09:25:48', '2021-09-20 12:59:11'),
('1562', 'en', 'system', 'System', '2021-02-03 09:25:49', '2021-09-20 12:59:11'),
('1563', 'en', 'server_status', 'Server status', '2021-02-03 09:25:49', '2021-09-20 12:59:11'),
('1564', 'en', 'nothing_found', 'Nothing Found', '2021-02-03 09:25:49', '2021-09-20 12:59:11'),
('1565', 'en', 'parent_category', 'Parent Category', '2021-02-03 09:28:00', '2021-09-20 12:59:11'),
('1566', 'en', 'level', 'Level', '2021-02-03 09:28:00', '2021-09-20 12:59:11'),
('1567', 'en', 'category_information', 'Category Information', '2021-02-03 09:28:12', '2021-09-20 12:59:11'),
('1568', 'en', 'translatable', 'Translatable', '2021-02-03 09:28:12', '2021-09-20 12:59:11'),
('1569', 'en', 'no_parent', 'No Parent', '2021-02-03 09:28:12', '2021-09-20 12:59:11'),
('1570', 'en', 'physical', 'Physical', '2021-02-03 09:28:13', '2021-09-20 12:59:11'),
('1571', 'en', 'digital', 'Digital', '2021-02-03 09:28:13', '2021-09-20 12:59:11'),
('1572', 'en', '200x200', '200x200', '2021-02-03 09:28:13', '2021-02-03 09:28:13'),
('1573', 'en', '32x32', '32x32', '2021-02-03 09:28:13', '2021-02-03 09:28:13'),
('1574', 'en', 'search_your_files', 'Search your files', '2021-02-03 09:28:15', '2021-09-20 12:59:11'),
('1575', 'en', 'category_has_been_updated_successfully', 'Category has been updated successfully', '2021-02-03 10:17:29', '2021-09-20 12:59:11'),
('1576', 'en', 'all_uploaded_files', 'All uploaded files', '2021-02-03 11:55:30', '2021-09-20 12:59:11'),
('1577', 'en', 'upload_new_file', 'Upload New File', '2021-02-03 11:55:30', '2021-09-20 12:59:11'),
('1578', 'en', 'all_files', 'All files', '2021-02-03 11:55:30', '2021-09-20 12:59:11'),
('1579', 'en', 'search', 'Search', '2021-02-03 11:55:30', '2021-09-20 12:59:11'),
('1580', 'en', 'details_info', 'Details Info', '2021-02-03 11:55:30', '2021-09-20 12:59:11'),
('1581', 'en', 'copy_link', 'Copy Link', '2021-02-03 11:55:30', '2021-09-20 12:59:11'),
('1582', 'en', 'are_you_sure_to_delete_this_file', 'Are you sure to delete this file?', '2021-02-03 11:55:31', '2021-09-20 12:59:11'),
('1583', 'en', 'file_info', 'File Info', '2021-02-03 11:55:31', '2021-09-20 12:59:11'),
('1584', 'en', 'link_copied_to_clipboard', 'Link copied to clipboard', '2021-02-03 11:55:31', '2021-09-20 12:59:11'),
('1585', 'en', 'oops_unable_to_copy', 'Oops, unable to copy', '2021-02-03 11:55:31', '2021-09-20 12:59:11'),
('1586', 'en', 'file_deleted_successfully', 'File deleted successfully', '2021-02-03 11:56:02', '2021-09-20 12:59:11'),
('1587', 'en', 'add_new_brand', 'Add New Brand', '2021-02-03 12:34:22', '2021-09-20 12:59:11'),
('1588', 'en', '120x80', '120x80', '2021-02-03 12:34:22', '2021-02-03 12:34:22'),
('1589', 'en', 'brand_information', 'Brand Information', '2021-02-03 12:34:29', '2021-09-20 12:59:11'),
('1590', 'en', 'brand_has_been_updated_successfully', 'Brand has been updated successfully', '2021-02-03 12:36:52', '2021-09-20 12:59:11'),
('1591', 'en', 'brand_has_been_deleted_successfully', 'Brand has been deleted successfully', '2021-02-03 12:37:54', '2021-09-20 12:59:11'),
('1592', 'en', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'This is used for search. Input those words by which cutomer can find this product.', '2021-02-04 08:41:06', '2021-09-20 12:59:11'),
('1593', 'en', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'These images are visible in product details page gallery. Use 600x600 sizes images.', '2021-02-04 08:41:06', '2021-09-20 12:59:11'),
('1594', 'en', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.', '2021-02-04 08:41:06', '2021-09-20 12:59:11'),
('1595', 'en', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Use proper link without extra parameter. Don\'t use short share link/embeded iframe code.', '2021-02-04 08:41:06', '2021-09-20 12:59:11'),
('1596', 'en', 'save_product', 'Save Product', '2021-02-04 08:41:07', '2021-09-20 12:59:11'),
('1597', 'en', 'product_has_been_inserted_successfully', 'Product has been inserted successfully', '2021-02-04 08:59:35', '2021-09-20 12:59:11'),
('1598', 'en', 'something_went_wrong', 'Something went wrong!', '2021-02-04 10:02:50', '2021-09-20 12:59:11'),
('1599', 'en', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Sorry for the inconvenience, but we\'re working on it.', '2021-02-04 10:02:50', '2021-09-20 12:59:11'),
('1600', 'en', 'error_code', 'Error code', '2021-02-04 10:02:50', '2021-09-20 12:59:11'),
('1601', 'en', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Please Configure SMTP Setting to work all email sending functionality', '2021-02-04 10:03:06', '2021-09-20 12:59:11'),
('1602', 'en', 'order', 'Order', '2021-02-04 10:03:06', '2021-09-20 12:59:11'),
('1603', 'en', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'We have limited banner height to maintain UI. We had to crop from both left & right side in view for different devices to make it responsive. Before designing banner keep these points in mind.', '2021-02-04 11:40:35', '2021-09-20 12:59:11'),
('1604', 'en', 'home_banner_3_max_3', 'Home Banner 3 (Max 3)', '2021-02-04 11:40:36', '2021-09-20 12:59:11'),
('1605', 'en', 'add_new_seller', 'Add New Seller', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1606', 'en', 'filter_by_approval', 'Filter by Approval', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1607', 'en', 'nonapproved', 'Non-Approved', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1608', 'en', 'type_name_or_email__enter', 'Type name or email & Enter', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1609', 'en', 'due_to_seller', 'Due to seller', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1610', 'en', 'log_in_as_this_seller', 'Log in as this Seller', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1611', 'en', 'go_to_payment', 'Go to Payment', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1612', 'en', 'ban_this_seller', 'Ban this seller', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1613', 'en', 'do_you_really_want_to_ban_this_seller', 'Do you really want to ban this seller?', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1614', 'en', 'proceed', 'Proceed!', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1615', 'en', 'approved_sellers_updated_successfully', 'Approved sellers updated successfully', '2021-02-04 12:58:20', '2021-09-20 12:59:11'),
('1616', 'en', 'seller_has_been_deleted_successfully', 'Seller has been deleted successfully', '2021-02-04 12:58:26', '2021-09-20 12:59:11'),
('1617', 'en', 'seller_information', 'Seller Information', '2021-02-04 12:59:05', '2021-09-20 12:59:11'),
('1618', 'en', 'seller_has_been_inserted_successfully', 'Seller has been inserted successfully', '2021-02-04 13:05:31', '2021-09-20 12:59:11'),
('1619', 'en', 'email_already_exists', 'Email already exists!', '2021-02-04 13:08:36', '2021-09-20 12:59:11'),
('1620', 'en', 'verify_your_email_address', 'Verify Your Email Address', '2021-02-04 13:10:03', '2021-09-20 12:59:11'),
('1621', 'en', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Before proceeding, please check your email for a verification link.', '2021-02-04 13:10:03', '2021-09-20 12:59:11'),
('1622', 'en', 'if_you_did_not_receive_the_email', 'If you did not receive the email.', '2021-02-04 13:10:03', '2021-09-20 12:59:11'),
('1623', 'en', 'click_here_to_request_another', 'Click here to request another', '2021-02-04 13:10:03', '2021-09-20 12:59:11'),
('1624', 'en', 'email_verification', 'Email Verification', '2021-02-04 13:10:09', '2021-09-20 12:59:11'),
('1625', 'en', 'email_verification__', 'Email Verification -', '2021-02-04 13:10:09', '2021-09-20 12:59:11'),
('1626', 'en', 'https_activation', 'HTTPS Activation', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1627', 'en', 'maintenance_mode', 'Maintenance Mode', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1628', 'en', 'maintenance_mode_activation', 'Maintenance Mode Activation', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1629', 'en', 'classified_product_activate', 'Classified Product Activate', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1630', 'en', 'classified_product', 'Classified Product', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1631', 'en', 'business_related', 'Business Related', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1632', 'en', 'vendor_system_activation', 'Vendor System Activation', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1633', 'en', 'wallet_system_activation', 'Wallet System Activation', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1634', 'en', 'coupon_system_activation', 'Coupon System Activation', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1635', 'en', 'pickup_point_activation', 'Pickup Point Activation', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1636', 'en', 'conversation_activation', 'Conversation Activation', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1637', 'en', 'guest_checkout_activation', 'Guest Checkout Activation', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1638', 'en', 'categorybased_commission', 'Category-based Commission', '2021-02-04 13:13:50', '2021-09-20 12:59:11'),
('1639', 'en', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'After activate this option Seller commision will be disabled and You need to set commission on each category otherwise Admin will not get any commision', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1640', 'en', 'set_commisssion_now', 'Set Commisssion Now', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1641', 'en', 'payment_related', 'Payment Related', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1642', 'en', 'paypal_payment_activation', 'Paypal Payment Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1643', 'en', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'You need to configure Paypal correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1644', 'en', 'stripe_payment_activation', 'Stripe Payment Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1645', 'en', 'sslcommerz_activation', 'SSlCommerz Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1646', 'en', 'instamojo_payment_activation', 'Instamojo Payment Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1647', 'en', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'You need to configure Instamojo Payment correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1648', 'en', 'razor_pay_activation', 'Razor Pay Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1649', 'en', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'You need to configure Razor correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1650', 'en', 'paystack_activation', 'PayStack Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1651', 'en', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'You need to configure PayStack correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1652', 'en', 'voguepay_activation', 'VoguePay Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1653', 'en', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'You need to configure VoguePay correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1654', 'en', 'payhere_activation', 'Payhere Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1655', 'en', 'ngenius_activation', 'Ngenius Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1656', 'en', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'You need to configure Ngenius correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1657', 'en', 'iyzico_activation', 'Iyzico Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1658', 'en', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'You need to configure iyzico correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1659', 'en', 'bkash_activation', 'Bkash Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1660', 'en', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'You need to configure bkash correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1661', 'en', 'nagad_activation', 'Nagad Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1662', 'en', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'You need to configure nagad correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1663', 'en', 'cash_payment_activation', 'Cash Payment Activation', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1664', 'en', 'social_media_login', 'Social Media Login', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1665', 'en', 'facebook_login', 'Facebook login', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1666', 'en', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'You need to configure Facebook Client correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1667', 'en', 'google_login', 'Google login', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1668', 'en', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'You need to configure Google Client correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1669', 'en', 'twitter_login', 'Twitter login', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1670', 'en', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'You need to configure Twitter Client correctly to enable this feature', '2021-02-04 13:13:51', '2021-09-20 12:59:11'),
('1671', 'en', 'shop_logo', 'Shop Logo', '2021-02-04 13:15:53', '2021-09-20 12:59:11'),
('1672', 'en', 'shop_address', 'Shop Address', '2021-02-04 13:15:53', '2021-09-20 12:59:11'),
('1673', 'en', 'banner_settings', 'Banner Settings', '2021-02-04 13:15:53', '2021-09-20 12:59:11'),
('1674', 'en', 'banners', 'Banners', '2021-02-04 13:15:53', '2021-09-20 12:59:11'),
('1675', 'en', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'We had to limit height to maintian consistancy. In some device both side of the banner might be cropped for height limitation.', '2021-02-04 13:15:53', '2021-09-20 12:59:11'),
('1676', 'en', 'insert_link_with_https_', 'Insert link with https', '2021-02-04 13:15:53', '2021-09-20 12:59:11'),
('1677', 'en', 'your_shop_has_been_updated_successfully', 'Your Shop has been updated successfully!', '2021-02-04 13:19:29', '2021-09-20 12:59:11'),
('1678', 'en', 'support_ticket', 'Support Ticket', '2021-02-04 19:55:45', '2021-09-20 12:59:11'),
('1679', 'en', 'delete', 'Delete', '2021-02-05 08:36:35', '2021-09-20 12:59:11'),
('1680', 'en', 'search_result_for_', 'Search result for', '2021-02-05 08:45:40', '2021-09-20 12:59:11'),
('1681', 'en', 'brand_has_been_inserted_successfully', 'Brand has been inserted successfully', '2021-02-05 12:57:04', '2021-09-20 12:59:11'),
('1682', 'en', 'about', 'About', '2021-02-07 07:56:32', '2021-09-20 12:59:11'),
('1683', 'en', 'payout_info', 'Payout Info', '2021-02-07 07:56:32', '2021-09-20 12:59:11'),
('1684', 'en', 'bank_acc_name', 'Bank Acc Name', '2021-02-07 07:56:32', '2021-09-20 12:59:11'),
('1685', 'en', 'bank_acc_number', 'Bank Acc Number', '2021-02-07 07:56:32', '2021-09-20 12:59:11'),
('1686', 'en', 'total_products', 'Total Products', '2021-02-07 07:56:32', '2021-09-20 12:59:11'),
('1687', 'en', 'total_sold_amount', 'Total Sold Amount', '2021-02-07 07:56:32', '2021-09-20 12:59:11'),
('1688', 'en', 'wallet_balance', 'Wallet Balance', '2021-02-07 07:56:32', '2021-09-20 12:59:11'),
('1689', 'en', 'cookies_agreement', 'Cookies Agreement', '2021-02-07 09:20:48', '2021-09-20 12:59:11'),
('1690', 'en', 'cookies_agreement_text', 'Cookies Agreement Text', '2021-02-07 09:20:48', '2021-09-20 12:59:11'),
('1691', 'en', 'show_cookies_agreement', 'Show Cookies Agreement?', '2021-02-07 09:20:48', '2021-09-20 12:59:11'),
('1692', 'en', 'custom_script', 'Custom Script', '2021-02-07 09:20:48', '2021-09-20 12:59:11'),
('1693', 'en', 'header_custom_script__before_head', 'Header custom script - before </head>', '2021-02-07 09:20:48', '2021-09-20 12:59:11'),
('1694', 'en', 'write_script_with_script_tag', 'Write script with <script> tag', '2021-02-07 09:20:48', '2021-09-20 12:59:11'),
('1695', 'en', 'footer_custom_script__before_body', 'Footer custom script - before </body>', '2021-02-07 09:20:48', '2021-09-20 12:59:11'),
('1696', 'en', 'category_has_been_inserted_successfully', 'Category has been inserted successfully', '2021-02-07 09:30:49', '2021-09-20 12:59:11'),
('1697', 'en', 'all_flash_deals', 'All Flash Deals', '2021-02-07 12:35:16', '2021-09-20 12:59:11'),
('1698', 'en', 'create_new_flash_deal', 'Create New Flash Deal', '2021-02-07 12:35:16', '2021-09-20 12:59:11'),
('1699', 'en', 'ffffff', '#FFFFFF', '2021-02-07 12:35:19', '2021-09-20 12:59:11'),
('1700', 'en', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'This image is shown as cover banner in flash deal details page.', '2021-02-07 12:35:19', '2021-09-20 12:59:11'),
('1701', 'en', 'flash_deal_has_been_inserted_successfully', 'Flash Deal has been inserted successfully', '2021-02-07 12:37:14', '2021-09-20 12:59:11'),
('1702', 'en', 'flash_deal_status_updated_successfully', 'Flash deal status updated successfully', '2021-02-07 12:37:32', '2021-09-20 12:59:11'),
('1703', 'en', 'flash_deal_has_been_updated_successfully', 'Flash Deal has been updated successfully', '2021-02-08 11:52:46', '2021-09-20 12:59:11'),
('1704', 'en', 'update_language_info', 'update Language Info', '2021-02-09 11:58:04', '2021-09-20 12:59:11'),
('1705', 'en', 'language_has_been_updated_successfully', 'Language has been updated successfully', '2021-02-09 11:58:10', '2021-09-20 12:59:11'),
('1706', 'en', 'type_key__enter', 'Type key & Enter', '2021-02-09 11:59:56', '2021-09-20 12:59:11'),
('1707', 'en', 'translations_updated_for_', 'Translations updated for', '2021-02-09 12:01:12', '2021-09-20 12:59:11'),
('1708', 'sa', 'all_category', 'كل الفئات', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1709', 'sa', 'all', 'الكل', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1710', 'sa', 'flash_sale', 'بيع مفاجئ', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1711', 'sa', 'view_more', 'عرض المزيد', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1712', 'sa', 'add_to_wishlist', 'أضف إلى قائمة الامنيات', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1713', 'sa', 'add_to_compare', 'أضف للمقارنة', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1714', 'sa', 'add_to_cart', 'أضف إلى السلة', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1715', 'sa', 'club_point', 'كلوب بوينت', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1716', 'sa', 'classified_ads', 'الإعلانات المبوبة', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1717', 'sa', 'used', 'مستخدم', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1718', 'sa', 'top_10_categories', 'أعلى 10 فئات', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1719', 'sa', 'view_all_categories', 'عرض جميع الفئات', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1720', 'sa', 'top_10_brands', 'أفضل 10 ماركات', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1721', 'sa', 'view_all_brands', 'عرض كل الماركات', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1722', 'sa', 'terms__conditions', 'البنود و الظروف', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1723', 'sa', 'best_selling', 'أفضل مبيعات', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1724', 'sa', 'top_20', 'أفضل 20', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1725', 'sa', 'featured_products', 'منتجات مميزة', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1726', 'sa', 'best_sellers', 'أفضل البائعين', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1727', 'sa', 'visit_store', 'قم بزيارة المعرض او المتجر', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1728', 'sa', 'popular_suggestions', 'الاقتراحات الشعبية', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1729', 'sa', 'category_suggestions', 'اقتراحات الفئة', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1730', 'sa', 'automobile__motorcycle', 'السيارات والدراجات النارية', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1731', 'sa', 'price_range', 'نطاق السعر', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1732', 'sa', 'filter_by_color', 'تصفية حسب اللون', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1733', 'sa', 'home', 'الصفحة الرئيسية', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1734', 'sa', 'newest', 'الأحدث', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1735', 'sa', 'oldest', 'الأقدم', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1736', 'sa', 'price_low_to_high', 'السعر من الارخص للاعلى', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1737', 'sa', 'price_high_to_low', 'السعر الاعلى الى الادنى', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1738', 'sa', 'brands', 'العلامات التجارية', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1739', 'sa', 'all_brands', 'جميع العلامات التجارية', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1740', 'sa', 'all_sellers', 'كل البائعين', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1741', 'sa', 'inhouse_product', 'منتج داخلي', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1742', 'sa', 'message_seller', 'مراسلة البائع', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1743', 'sa', 'price', 'السعر', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1744', 'sa', 'discount_price', 'سعر الخصم', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1745', 'sa', 'color', 'اللون', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1746', 'sa', 'quantity', 'كمية', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1747', 'sa', 'available', 'متاح', '2021-02-09 12:17:58', '2021-02-09 12:17:58'),
('1748', 'sa', 'total_price', 'السعر الكلي', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1749', 'sa', 'out_of_stock', 'إنتهى من المخزن', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1750', 'sa', 'refund', 'إعادة مال', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1751', 'sa', 'share', 'شارك', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1752', 'sa', 'sold_by', 'تم بيعها من قبل', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1753', 'sa', 'customer_reviews', 'آراء العملاء', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1754', 'sa', 'top_selling_products', 'المنتجات الأكثر مبيعًا', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1755', 'sa', 'description', 'وصف', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1756', 'sa', 'video', 'فيديو', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1757', 'sa', 'reviews', 'المراجعات', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1758', 'sa', 'download', 'تحميل', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1759', 'sa', 'there_have_been_no_reviews_for_this_product_yet', 'لم تكن هناك مراجعات لهذا المنتج حتى الآن.', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1760', 'sa', 'related_products', 'منتجات ذات صله', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1761', 'sa', 'any_query_about_this_product', 'أي استفسار عن هذا المنتج', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1762', 'sa', 'product_name', 'اسم المنتج', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1763', 'sa', 'your_question', 'سؤالك', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1764', 'sa', 'send', 'إرسال', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1765', 'sa', 'use_country_code_before_number', 'استخدم رمز البلد قبل الرقم', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1766', 'sa', 'remember_me', 'تذكرنى', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1767', 'sa', 'dont_have_an_account', 'ليس لديك حساب؟', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1768', 'sa', 'register_now', 'سجل الان', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1769', 'sa', 'or_login_with', 'أو تسجيل الدخول باستخدام', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1770', 'sa', 'oops', 'وجه الفتاة..', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1771', 'sa', 'this_item_is_out_of_stock', 'هذا العنصر غير متوفر في المخزون!', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1772', 'sa', 'back_to_shopping', 'العودة إلى التسوق', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1773', 'sa', 'login_to_your_account', 'تسجيل الدخول إلى حسابك.', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1774', 'sa', 'purchase_history', 'تاريخ شراء', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1775', 'sa', 'new', 'جديد', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1776', 'sa', 'downloads', 'التحميلات', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1777', 'sa', 'sent_refund_request', 'طلب استرداد مرسل', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1778', 'sa', 'product_bulk_upload', 'تحميل مجمع للمنتج', '2021-02-09 12:17:58', '2021-09-20 12:59:11'),
('1779', 'sa', 'orders', 'الطلب #٪ s', '2021-02-09 12:17:58', '2021-09-20 12:59:12'),
('1780', 'sa', 'recieved_refund_request', 'تم استلام طلب استرداد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1781', 'sa', 'shop_setting', 'إعداد المتجر', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1782', 'sa', 'payment_history', 'تاريخ الدفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1783', 'sa', 'money_withdraw', 'سحب الأموال', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1784', 'sa', 'conversations', 'المحادثات', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1785', 'sa', 'my_wallet', 'محفظتى', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1786', 'sa', 'earning_points', 'كسب النقاط', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1787', 'sa', 'support_ticket', 'بطاقة الدعم', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1788', 'sa', 'manage_profile', 'إدارة الملف الشخصي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1789', 'sa', 'sold_amount', 'المبلغ المباع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1790', 'sa', 'your_sold_amount_current_month', 'المبلغ المباع (الشهر الحالي)', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1791', 'sa', 'total_sold', 'إجمالي المبيعات', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1792', 'sa', 'last_month_sold', 'تم بيع الشهر الماضي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1793', 'sa', 'total_sale', 'إجمالي البيع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1794', 'sa', 'total_earnings', 'الأرباح الكلية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1795', 'sa', 'successful_orders', 'الطلبات الناجحة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1796', 'sa', 'total_orders', 'إجمالي الطلبات', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1797', 'sa', 'pending_orders', 'الطلبات المعلقة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1798', 'sa', 'cancelled_orders', 'الطلبات الملغاة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1799', 'sa', 'product', 'المنتج', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1800', 'sa', 'purchased_package', 'الحزمة المشتراة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1801', 'sa', 'package_not_found', 'الحزمة غير موجودة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1802', 'sa', 'upgrade_package', 'حزمة الترقية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1803', 'sa', 'shop', 'متجر', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1804', 'sa', 'manage__organize_your_shop', 'إدارة وتنظيم متجرك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1805', 'sa', 'go_to_setting', 'اذهب إلى الإعداد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1806', 'sa', 'payment', 'دفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1807', 'sa', 'configure_your_payment_method', 'تكوين طريقة الدفع الخاصة بك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1808', 'sa', 'my_panel', 'لوحتي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1809', 'sa', 'item_has_been_added_to_wishlist', 'تمت إضافة العنصر إلى قائمة الرغبات', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1810', 'sa', 'my_points', 'نقاطي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1811', 'sa', '_points', 'نقاط', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1812', 'sa', 'wallet_money', 'أموال المحفظة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1813', 'sa', 'exchange_rate', 'سعر الصرف', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1814', 'sa', 'point_earning_history', 'سجل كسب النقاط', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1815', 'sa', 'date', 'تاريخ', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1816', 'sa', 'points', 'نقاط', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1817', 'sa', 'converted', 'محولة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1818', 'sa', 'action', 'عمل', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1819', 'sa', 'no_history_found', 'لم يتم العثور على سجل.', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1820', 'sa', 'convert_has_been_done_successfully_check_your_wallets', 'تم التحويل بنجاح تحقق من محافظك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1821', 'sa', 'something_went_wrong', 'هناك خطأ ما', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1822', 'sa', 'remaining_uploads', 'التحميلات المتبقية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1823', 'sa', 'no_package_found', 'لم يتم العثور على حزمة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1824', 'sa', 'search_product', 'البحث عن المنتج', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1825', 'sa', 'name', 'اسم', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1826', 'sa', 'current_qty', 'الكمية الحالية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1827', 'sa', 'base_price', 'السعر الأساسي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1828', 'sa', 'published', 'نشرت', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1829', 'sa', 'featured', 'متميز', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1830', 'sa', 'options', 'خيارات', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1831', 'sa', 'edit', 'تعديل', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1832', 'sa', 'duplicate', 'مكرر', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1833', 'sa', '1_download_the_skeleton_file_and_fill_it_with_data', '1. قم بتنزيل ملف الهيكل العظمي واملأه بالبيانات.', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1834', 'sa', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. يمكنك تنزيل ملف المثال لفهم كيفية ملء البيانات.', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1835', 'sa', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. بمجرد تنزيل ملف الهيكل العظمي وتعبئته ، قم بتحميله في النموذج أدناه وأرسله.', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1836', 'sa', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. بعد تحميل المنتجات تحتاج إلى تعديلها وتعيين صور المنتجات والاختيارات.', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1837', 'sa', 'download_csv', 'تنزيل ملف CSV', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1838', 'sa', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. يجب أن تكون الفئة ، والفئة الفرعية ، والفئة الفرعية والعلامة التجارية في هويات رقمية.', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1839', 'sa', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. يمكنك تنزيل ملف pdf للحصول على الفئة والفئة الفرعية والفئة الفرعية ومعرف العلامة التجارية.', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1840', 'sa', 'download_category', 'فئة التحميل', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1841', 'sa', 'download_sub_category', 'تحميل فئة فرعية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1842', 'sa', 'download_sub_sub_category', 'تحميل فئة فرعية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1843', 'sa', 'download_brand', 'تحميل الماركة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1844', 'sa', 'upload_csv_file', 'تحميل ملف CSV', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1845', 'sa', 'csv', 'CSV', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1846', 'sa', 'choose_csv_file', 'اختر ملف CSV', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1847', 'sa', 'upload', 'تحميل', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1848', 'sa', 'add_new_digital_product', 'إضافة منتج رقمي جديد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1849', 'sa', 'available_status', 'الحالة المتاحة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1850', 'sa', 'admin_status', 'حالة المسؤول', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1851', 'sa', 'pending_balance', 'رصيد معلق', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1852', 'sa', 'send_withdraw_request', 'إرسال طلب سحب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1853', 'sa', 'withdraw_request_history', 'سحب تاريخ الطلب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1854', 'sa', 'amount', 'كمية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1855', 'sa', 'status', 'الحالة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1856', 'sa', 'message', 'رسالة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1857', 'sa', 'send_a_withdraw_request', 'إرسال طلب سحب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1858', 'sa', 'basic_info', 'معلومات أساسية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1859', 'sa', 'your_phone', 'هاتفك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1860', 'sa', 'photo', 'صورة فوتوغرافية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1861', 'sa', 'browse', 'تصفح', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1862', 'sa', 'your_password', 'كلمتك السرية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1863', 'sa', 'new_password', 'كلمة المرور الجديدة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1864', 'sa', 'confirm_password', 'تأكيد كلمة المرور', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1865', 'sa', 'add_new_address', 'أضف عنوان جديد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1866', 'sa', 'payment_setting', 'إعداد الدفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1867', 'sa', 'cash_payment', 'دفع نقدا', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1868', 'sa', 'bank_payment', 'الدفع المصرفية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1869', 'sa', 'bank_name', 'اسم البنك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1870', 'sa', 'bank_account_name', 'اسم الحساب المصرفي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1871', 'sa', 'bank_account_number', 'رقم الحساب المصرفي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1872', 'sa', 'bank_routing_number', 'رقم التحويل المصرفي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1873', 'sa', 'update_profile', 'تحديث الملف', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1874', 'sa', 'change_your_email', 'قم بتغيير بريدك الإلكتروني', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1875', 'sa', 'your_email', 'بريدك الالكتروني', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1876', 'sa', 'sending_email', 'إرسال البريد الإلكتروني...', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1877', 'sa', 'verify', 'تحقق', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1878', 'sa', 'update_email', 'تحديث البريد الإلكتروني', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1879', 'sa', 'new_address', 'عنوان جديد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1880', 'sa', 'your_address', 'عنوانك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1881', 'sa', 'country', 'بلد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1882', 'sa', 'select_your_country', 'اختر بلدك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1883', 'sa', 'city', 'مدينة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1884', 'sa', 'your_city', 'مدينتك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1885', 'sa', 'your_postal_code', 'رمزك البريدي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1886', 'sa', '880', '+880', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1887', 'sa', 'save', 'حفظ', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1888', 'sa', 'received_refund_request', 'تم استلام طلب استرداد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1889', 'sa', 'delete_confirmation', 'تأكيد الحذف', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1890', 'sa', 'are_you_sure_to_delete_this', 'هل أنت متأكد من حذف هذا؟', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1891', 'sa', 'premium_packages_for_sellers', 'حزم متميزة للبائعين', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1892', 'sa', 'product_upload', 'تحميل المنتج', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1893', 'sa', 'digital_product_upload', 'تحميل المنتج الرقمي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1894', 'sa', 'purchase_package', 'حزمة الشراء', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1895', 'sa', 'select_payment_type', 'اختر طريقة الدفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1896', 'sa', 'payment_type', 'نوع الدفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1897', 'sa', 'select_one', 'حدد واحد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1898', 'sa', 'online_payment', 'الدفع الالكتروني', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1899', 'sa', 'offline_payment', 'الدفع دون اتصال بالإنترنت', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1900', 'sa', 'purchase_your_package', 'شراء باقتك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1901', 'sa', 'paypal', 'باي بال', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1902', 'sa', 'stripe', 'شريط', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1903', 'sa', 'sslcommerz', 'sslcommerz', '2021-02-09 12:17:59', '2021-02-09 12:17:59'),
('1904', 'sa', 'confirm', 'تؤكد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1905', 'sa', 'offline_package_payment', 'دفع حزمة دون اتصال', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1906', 'sa', 'transaction_id', 'رقم المعاملة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1907', 'sa', 'choose_image', 'اختر صورة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1908', 'sa', 'code', 'الشفرة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1909', 'sa', 'delivery_status', 'حالة التسليم', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1910', 'sa', 'payment_status', 'حالة السداد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1911', 'sa', 'paid', 'دفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1912', 'sa', 'order_details', 'تفاصيل الطلب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1913', 'sa', 'download_invoice', 'تحميل فاتورة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1914', 'sa', 'unpaid', 'غير مدفوعة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1915', 'sa', 'order_placed', 'تم الطلب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1916', 'sa', 'confirmed', 'تم تأكيد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1917', 'sa', 'on_delivery', 'عند التسليم', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1918', 'sa', 'delivered', 'تم التوصيل', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1919', 'sa', 'order_summary', 'ملخص الطلب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1920', 'sa', 'order_code', 'رمز الطلب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1921', 'sa', 'customer', 'الزبون', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1922', 'sa', 'total_order_amount', 'إجمالي مبلغ الطلب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1923', 'sa', 'shipping_metdod', 'metdod الشحن', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1924', 'sa', 'flat_shipping_rate', 'سعر الشحن ثابت', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1925', 'sa', 'payment_metdod', 'metdod الدفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1926', 'sa', 'variation', 'الاختلاف', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1927', 'sa', 'delivery_type', 'نوع التوصيل', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1928', 'sa', 'home_delivery', 'توصيل منزلي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1929', 'sa', 'order_ammount', 'مبلغ الطلب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1930', 'sa', 'subtotal', 'المجموع الفرعي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1931', 'sa', 'shipping', 'الشحن', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1932', 'sa', 'coupon_discount', 'خصم القسيمة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1933', 'sa', 'na', 'غير متاح', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1934', 'sa', 'in_stock', 'في الأوراق المالية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1935', 'sa', 'buy_now', 'اشتري الآن', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1936', 'sa', 'item_added_to_your_cart', 'إضافة السلعة الى سلة التسوق الخاصة بك!', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1937', 'sa', 'proceed_to_checkout', 'الشروع في الخروج', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1938', 'sa', 'cart_items', 'عناصر عربة التسوق', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1939', 'sa', '1_my_cart', '1. عربة التسوق الخاصة بي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1940', 'sa', 'view_cart', 'عرض عربة التسوق', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1941', 'sa', '2_shipping_info', '2. معلومات الشحن', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1942', 'sa', 'checkout', 'الدفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1943', 'sa', '3_delivery_info', '3. معلومات التسليم', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1944', 'sa', '4_payment', '4. الدفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1945', 'sa', '5_confirmation', '5. التأكيد', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1946', 'sa', 'remove', 'إزالة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1947', 'sa', 'return_to_shop', 'العودة الى المتجر', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1948', 'sa', 'continue_to_shipping', 'تابع إلى الشحن', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1949', 'sa', 'or', 'أو', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1950', 'sa', 'guest_checkout', 'ضيف المحاسبة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1951', 'sa', 'continue_to_delivery_info', 'تابع إلى معلومات التسليم', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1952', 'sa', 'postal_code', 'الرمز البريدي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1953', 'sa', 'choose_delivery_type', 'اختر نوع التسليم', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1954', 'sa', 'local_pickup', 'شاحنة محلية', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1955', 'sa', 'select_your_nearest_pickup_point', 'حدد أقرب نقطة التقاط لك', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1956', 'sa', 'continue_to_payment', 'تابع إلى الدفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1957', 'sa', 'select_a_payment_option', 'حدد خيار الدفع', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1958', 'sa', 'razorpay', 'رازورباي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1959', 'sa', 'paystack', 'Paystack', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1960', 'sa', 'voguepay', 'VoguePay', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1961', 'sa', 'payhere', 'ادفع هنا', '2021-02-09 12:17:59', '2021-02-09 12:17:59'),
('1962', 'sa', 'ngenius', 'عبقري', '2021-02-09 12:17:59', '2021-02-09 12:17:59'),
('1963', 'sa', 'paytm', 'Paytm', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1964', 'sa', 'cash_on_delivery', 'الدفع عند الاستلام', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1965', 'sa', 'your_wallet_balance_', 'رصيد محفظتك:', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1966', 'sa', 'insufficient_balance', 'رصيد غير كاف', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1967', 'sa', 'i_agree_to_the', 'أنا أوافق على', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1968', 'sa', 'complete_order', 'اكمل الطلب', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1969', 'sa', 'summary', 'ملخص', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1970', 'sa', 'items', 'العناصر', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1971', 'sa', 'total_club_point', 'مجموع نقاط النادي', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1972', 'sa', 'total_shipping', 'إجمالي الشحن', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1973', 'sa', 'have_coupon_code_enter_here', 'هل لديك رمز قسيمة؟ أدخل هنا', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1974', 'sa', 'apply', 'تطبيق', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1975', 'sa', 'you_need_to_agree_with_our_policies', 'أنت بحاجة إلى الموافقة على سياساتنا', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1976', 'sa', 'forgot_password', 'هل نسيت كلمة المرور', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1977', 'sa', 'seo_setting', 'إعداد SEO', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1978', 'sa', 'system_update', 'تحديث النظام', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1979', 'sa', 'add_new_payment_method', 'أضف طريقة دفع جديدة', '2021-02-09 12:17:59', '2021-09-20 12:59:12'),
('1980', 'sa', 'manual_payment_method', 'طريقة الدفع اليدوي', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1981', 'sa', 'heading', 'عنوان', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1982', 'sa', 'logo', 'شعار', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1983', 'sa', 'manual_payment_information', 'معلومات الدفع اليدوي', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1984', 'sa', 'type', 'اكتب', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1985', 'sa', 'custom_payment', 'الدفع المخصص', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1986', 'sa', 'check_payment', 'التحقق من الدفع', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1987', 'sa', 'checkout_thumbnail', 'صورة مصغرة للخروج', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1988', 'sa', 'payment_instruction', 'تعليمات الدفع', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1989', 'sa', 'bank_information', 'المعلومات المصرفية', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1990', 'sa', 'select_file', 'حدد ملف', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1991', 'sa', 'upload_new', 'تحميل جديد', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1992', 'sa', 'sort_by_newest', 'الترتيب حسب الأحدث', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1993', 'sa', 'sort_by_oldest', 'فرز حسب الأقدم', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1994', 'sa', 'sort_by_smallest', 'فرز حسب الأصغر', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1995', 'sa', 'sort_by_largest', 'فرز حسب الأكبر', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1996', 'sa', 'selected_only', 'المحدد فقط', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1997', 'sa', 'no_files_found', 'لا توجد ملفات', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1998', 'sa', '0_file_selected', '0 ملف محدد', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('1999', 'sa', 'clear', 'واضح', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2000', 'sa', 'prev', 'السابق', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2001', 'sa', 'next', 'التالى', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2002', 'sa', 'add_files', 'إضافة ملفات', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2003', 'sa', 'method_has_been_inserted_successfully', 'تم إدخال الطريقة بنجاح', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2004', 'sa', 'order_date', 'تاريخ الطلب', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2005', 'sa', 'bill_to', 'مشروع قانون ل', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2006', 'sa', 'sub_total', 'المجموع الفرعي', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2007', 'sa', 'total_tax', 'مجموع الضريبة', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2008', 'sa', 'grand_total', 'المبلغ الإجمالي', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2009', 'sa', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'تم وضع طلبك بنجاح. يرجى تقديم معلومات الدفع من سجل الشراء', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2010', 'sa', 'thank_you_for_your_order', 'شكرا لطلبك!', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2011', 'sa', 'order_code', 'رمز الطلب:', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2012', 'sa', 'a_copy_or_your_order_summary_has_been_sent_to', 'تم إرسال نسخة أو ملخص طلبك إلى', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2013', 'sa', 'make_payment', 'قم بالدفع', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2014', 'sa', 'payment_screenshot', 'لقطة شاشة الدفع', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2015', 'sa', 'paypal_credential', 'اعتماد Paypal', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2016', 'sa', 'paypal_client_id', 'معرف عميل Paypal', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2017', 'sa', 'paypal_client_secret', 'سر عميل Paypal', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2018', 'sa', 'paypal_sandbox_mode', 'وضع Paypal Sandbox', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2019', 'sa', 'sslcommerz_credential', 'اعتماد Sslcommerz', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2020', 'sa', 'sslcz_store_id', 'معرف متجر sslcz', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2021', 'sa', 'sslcz_store_password', 'كلمة مرور متجر sslcz', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2022', 'sa', 'sslcommerz_sandbox_mode', 'وضع الحماية Sslcommerz', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2023', 'sa', 'stripe_credential', 'اعتماد شريطي', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2024', 'sa', 'stripe_key', 'مفتاح الشريط', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2025', 'sa', 'stripe_secret', 'سر الشريط', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2026', 'sa', 'razorpay_credential', 'اعتماد RazorPay', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2027', 'sa', 'razor_key', 'مفتاح الحلاقة', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2028', 'sa', 'razor_secret', 'سر الحلاقة', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2029', 'sa', 'instamojo_credential', 'اعتماد Instamojo', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2030', 'sa', 'api_key', 'مفتاح API', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2031', 'sa', 'im_api_key', 'IM API KEY', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2032', 'sa', 'auth_token', 'AUTH TOKEN', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2033', 'sa', 'im_auth_token', 'رمز IM AUTH', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2034', 'sa', 'instamojo_sandbox_mode', 'وضع Instamojo Sandbox', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2035', 'sa', 'paystack_credential', 'اعتماد PayStack', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2036', 'sa', 'public_key', 'المفتاح العمومي', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2037', 'sa', 'secret_key', 'مفتاح سري', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2038', 'sa', 'merchant_email', 'البريد الإلكتروني للتاجر', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2039', 'sa', 'voguepay_credential', 'اعتماد VoguePay', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2040', 'sa', 'merchant_id', 'معرف التاجر', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2041', 'sa', 'sandbox_mode', 'وضع الحماية', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2042', 'sa', 'payhere_credential', 'اعتماد Payhere', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2043', 'sa', 'payhere_merchant_id', 'معرف تاجر بايهير', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2044', 'sa', 'payhere_secret', 'PAYHERE SECRET', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2045', 'sa', 'payhere_currency', 'عملة الدفع', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2046', 'sa', 'payhere_sandbox_mode', 'وضع Payhere Sandbox', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2047', 'sa', 'ngenius_credential', 'Ngenius Credential', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2048', 'sa', 'ngenius_outlet_id', 'معرف منفذ NGENIUS', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2049', 'sa', 'ngenius_api_key', 'NGENIUS API KEY', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2050', 'sa', 'ngenius_currency', 'العملة الأجنبية', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2051', 'sa', 'mpesa_credential', 'اعتماد Mpesa', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2052', 'sa', 'mpesa_consumer_key', 'مفتاح المستهلك MPESA', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2053', 'sa', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2054', 'sa', 'mpesa_consumer_secret', 'سر المستهلك MPESA', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2055', 'sa', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2056', 'sa', 'mpesa_short_code', 'كود MPESA المختصر', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2057', 'sa', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2058', 'sa', 'mpesa_sandbox_activation', 'تنشيط ساندبوكس MPESA', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2059', 'sa', 'flutterwave_credential', 'اعتماد Flutterwave', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2060', 'sa', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2061', 'sa', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2062', 'sa', 'rave_title', 'RAVE_TITLE', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2063', 'sa', 'stagin_activation', 'تنشيط STAGIN', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2064', 'sa', 'all_product', 'كل المنتجات', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2065', 'sa', 'sort_by', 'ترتيب حسب', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2066', 'sa', 'rating_high__low', 'التصنيف (مرتفع> منخفض)', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2067', 'sa', 'rating_low__high', 'التصنيف (منخفض> مرتفع)', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2068', 'sa', 'num_of_sale_high__low', 'عدد المبيعات (مرتفع> منخفض)', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2069', 'sa', 'num_of_sale_low__high', 'عدد المبيعات (منخفض> مرتفع)', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2070', 'sa', 'base_price_high__low', 'السعر الأساسي (مرتفع> منخفض)', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2071', 'sa', 'base_price_low__high', 'السعر الأساسي (منخفض> مرتفع)', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2072', 'sa', 'type__enter', 'اكتب & أدخل', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2073', 'sa', 'added_by', 'أضيفت من قبل', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2074', 'sa', 'num_of_sale', 'رقم البيع', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2075', 'sa', 'total_stock', 'إجمالي المخزون', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2076', 'sa', 'todays_deal', 'صفقة اليوم', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2077', 'sa', 'rating', 'تقييم', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2078', 'sa', 'times', 'مرات', '2021-02-09 12:18:00', '2021-02-09 12:18:00'),
('2079', 'sa', 'add_nerw_product', 'أضف منتج نيرو', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2080', 'sa', 'product_information', 'معلومات المنتج', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2081', 'sa', 'unit', 'وحدة', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2082', 'sa', 'unit_eg_kg_pc_etc', 'الوحدة (مثل KG ، Pc إلخ)', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2083', 'sa', 'minimum_qty', 'الحد الأدنى من الكمية', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2084', 'sa', 'tags', 'العلامات', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2085', 'sa', 'type_and_hit_enter_to_add_a_tag', 'اكتب واضغط على Enter لإضافة علامة', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2086', 'sa', 'barcode', 'الباركود', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2087', 'sa', 'refundable', 'مستردة', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2088', 'sa', 'product_images', 'صور المنتج', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2089', 'sa', 'gallery_images', 'معرض الصور', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2090', 'sa', 'todays_deal_updated_successfully', 'تم تحديث صفقة اليوم بنجاح', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2091', 'sa', 'published_products_updated_successfully', 'تم تحديث المنتجات المنشورة بنجاح', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2092', 'sa', 'thumbnail_image', 'صورة مصغرة', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2093', 'sa', 'featured_products_updated_successfully', 'تم تحديث المنتجات المميزة بنجاح', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2094', 'sa', 'product_videos', 'فيديو المنتج', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2095', 'sa', 'video_provider', 'مزود الفيديو', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2096', 'sa', 'youtube', 'موقع YouTube', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2097', 'sa', 'dailymotion', 'ديلي موشن', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2098', 'sa', 'vimeo', 'فيميو', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2099', 'sa', 'video_link', 'رابط الفيديو', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2100', 'sa', 'product_variation', 'تنوع المنتج', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2101', 'sa', 'colors', 'الألوان', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2102', 'sa', 'attributes', 'السمات', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2103', 'sa', 'choose_attributes', 'اختر السمات', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2104', 'sa', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'اختر سمات هذا المنتج ثم قيم الإدخال لكل سمة', '2021-02-09 12:18:00', '2021-09-20 12:59:12'),
('2105', 'sa', 'product_price__stock', 'سعر المنتج + الأسهم', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2106', 'sa', 'unit_price', 'سعر الوحدة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2107', 'sa', 'purchase_price', 'سعر الشراء', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2108', 'sa', 'flat', 'مسطحة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2109', 'sa', 'percent', 'نسبه مئويه', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2110', 'sa', 'discount', 'خصم', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2111', 'sa', 'product_description', 'وصف المنتج', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2112', 'sa', 'product_shipping_cost', 'تكلفة شحن المنتج', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2113', 'sa', 'free_shipping', 'الشحن مجانا', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2114', 'sa', 'flat_rate', 'سعر موحد', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2115', 'sa', 'shipping_cost', 'تكلفة الشحن', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2116', 'sa', 'pdf_specification', 'مواصفات PDF', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2117', 'sa', 'seo_meta_tags', 'العلامات الوصفية SEO', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2118', 'sa', 'meta_title', 'عنوان الفوقية', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2119', 'sa', 'meta_image', 'صورة ميتا', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2120', 'sa', 'choice_title', 'عنوان الاختيار', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2121', 'sa', 'enter_choice_values', 'أدخل قيم الاختيار', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2122', 'sa', 'all_categories', 'جميع الفئات', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2123', 'sa', 'add_new_category', 'إضافة فئة جديدة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2124', 'sa', 'type_name__enter', 'اكتب الاسم وأدخل', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2125', 'sa', 'banner', 'لافتة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2126', 'sa', 'commission', 'عمولة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2127', 'sa', 'icon', 'أيقونة', '2021-02-09 12:18:00', '2021-02-09 12:18:00'),
('2128', 'sa', 'featured_categories_updated_successfully', 'تم تحديث الفئات المميزة بنجاح', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2129', 'sa', 'hot', 'الحار', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2130', 'sa', 'filter_by_payment_status', 'تصفية حسب حالة الدفع', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2131', 'sa', 'unpaid', 'غير مدفوعة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2132', 'sa', 'filter_by_deliver_status', 'تصفية حسب تسليم الحالة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2133', 'sa', 'pending', 'قيد الانتظار', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2134', 'sa', 'type_order_code__hit_enter', 'اكتب رمز الطلب واضغط على Enter', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2135', 'sa', 'num_of_products', 'رقم. المنتجات', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2136', 'sa', 'walk_in_customer', 'دخول العميل', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2137', 'sa', 'qty', 'الكمية', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2138', 'sa', 'without_shipping_charge', 'بدون رسوم الشحن', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2139', 'sa', 'with_shipping_charge', 'مع رسوم الشحن', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2140', 'sa', 'pay_with_cash', 'الدفع نقدا', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2141', 'sa', 'shipping_address', 'عنوان الشحن', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2142', 'sa', 'close', 'قريب', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2143', 'sa', 'select_country', 'حدد الدولة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2144', 'sa', 'order_confirmation', 'تأكيد الطلب', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2145', 'sa', 'are_you_sure_to_confirm_this_order', 'هل أنت متأكد من تأكيد هذا الطلب؟', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2146', 'sa', 'comfirm_order', 'ترتيب Comfirm', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2147', 'sa', 'personal_info', 'معلومات شخصية', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2148', 'sa', 'repeat_password', 'اعد كلمة السر', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2149', 'sa', 'shop_name', 'اسم المحل', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2150', 'sa', 'register_your_shop', 'سجل متجرك', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2151', 'sa', 'affiliate_informations', 'المعلومات التابعة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2152', 'sa', 'affiliate', 'شركة تابعة', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2153', 'sa', 'user_info', 'معلومات المستخدم', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2154', 'sa', 'installed_addon', 'الملحق المثبت', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2155', 'sa', 'available_addon', 'الملحق المتاح', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2156', 'sa', 'install_new_addon', 'قم بتثبيت ملحق جديد', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2157', 'sa', 'version', 'الإصدار', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2158', 'sa', 'activated', 'مفعل', '2021-02-09 12:18:00', '2021-09-20 12:59:13'),
('2159', 'sa', 'deactivated', 'معطل', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2160', 'sa', 'activate_otp', 'تفعيل OTP', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2161', 'sa', 'otp_will_be_used_for', 'سيتم استخدام OTP لـ', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2162', 'sa', 'settings_updated_successfully', 'تم تحديث الإعدادات بنجاح', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2163', 'sa', 'product_owner', 'مالك المنتج', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2164', 'sa', 'point', 'نقطة', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2165', 'sa', 'set_point_for_product_within_a_range', 'تعيين نقطة للمنتج ضمن النطاق', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2166', 'sa', 'set_point_for_multiple_products', 'تعيين نقطة لمنتجات متعددة', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2167', 'sa', 'min_price', 'سعر دقيقة', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2168', 'sa', 'max_price', 'أقصى سعر', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2169', 'sa', 'set_point_for_all_products', 'تعيين نقطة لجميع المنتجات', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2170', 'sa', 'set_point_for_', 'تعيين نقطة ل', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2171', 'sa', 'convert_status', 'تحويل الحالة', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2172', 'sa', 'earned_at', 'حصل في', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2173', 'sa', 'seller_based_selling_report', 'تقرير البيع القائم على البائع', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2174', 'sa', 'sort_by_verificarion_status', 'فرز حسب حالة التحقق', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2175', 'sa', 'approved', 'وافق', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2176', 'sa', 'non_approved', 'ليس مصدق عليه', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2177', 'sa', 'filter', 'منقي', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2178', 'sa', 'seller_name', 'البائع اسم', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2179', 'sa', 'number_of_product_sale', 'عدد بيع المنتج', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2180', 'sa', 'order_amount', 'كمية الطلب', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2181', 'sa', 'facebook_chat_setting', 'إعداد دردشة Facebook', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2182', 'sa', 'facebook_page_id', 'معرف صفحة الفيسبوك', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2183', 'sa', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'يرجى توخي الحذر عند تكوين دردشة Facebook. للتكوين غير الصحيح ، لن تحصل على أيقونة messenger على موقع المستخدم الخاص بك.', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2184', 'sa', 'login_into_your_facebook_page', 'تسجيل الدخول إلى صفحة الفيسبوك الخاصة بك', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2185', 'sa', 'find_the_about_option_of_your_facebook_page', 'ابحث عن خيار حول صفحتك على Facebook', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2186', 'sa', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'في الجزء السفلي ، يمكنك العثور على \\ \"معرف صفحة Facebook \\\"', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2187', 'sa', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'انتقل إلى إعدادات صفحتك وابحث عن خيار \\ \"تقديم الرسائل \\\"', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2188', 'sa', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'مرر لأسفل تلك الصفحة وستحصل على \\ \"المجال المدرج في القائمة البيضاء \\\"', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2189', 'sa', 'set_your_website_domain_name', 'قم بتعيين اسم مجال موقع الويب الخاص بك', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2190', 'sa', 'google_recaptcha_setting', 'إعداد Google reCAPTCHA', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2191', 'sa', 'site_key', 'مفتاح الموقع', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2192', 'sa', 'select_shipping_method', 'إختر طريقة الشحن', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2193', 'sa', 'product_wise_shipping_cost', 'تكلفة شحن المنتج الحكيمة', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2194', 'sa', 'flat_rate_shipping_cost', 'تكلفة الشحن بسعر موحد', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2195', 'sa', 'seller_wise_flat_shipping_cost', 'البائع شقة الحكمة أجور الشحن', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2196', 'sa', 'note', 'ملحوظة', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2197', 'sa', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'حساب تكلفة الشحن الحكيمة للمنتج: يتم حساب تكلفة الشحن عن طريق إضافة تكلفة شحن كل منتج', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2198', 'sa', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'حساب تكلفة الشحن بالسعر الثابت: لا يهم كم عدد المنتجات التي يشتريها العميل. تكلفة الشحن ثابتة', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2199', 'sa', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'حساب البائع لتكلفة الشحن الثابتة: سعر ثابت لكل بائع. إذا قام العميل بشراء منتجين من اثنين من تكلفة الشحن للبائعين ، يتم حسابها بإضافة تكلفة الشحن الثابتة لكل بائع', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2200', 'sa', 'flat_rate_cost', 'تكلفة السعر الثابت', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2201', 'sa', 'shipping_cost_for_admin_products', 'تكلفة الشحن للمنتجات الإدارية', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2202', 'sa', 'countries', 'بلدان', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2203', 'sa', 'showhide', 'اظهر المخفي', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2204', 'sa', 'country_status_updated_successfully', 'تم تحديث حالة البلد بنجاح', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2205', 'sa', 'all_subcategories', 'جميع الفئات الفرعية', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2206', 'sa', 'add_new_subcategory', 'إضافة فئة فرعية جديدة', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2207', 'sa', 'subcategories', 'الفئات الفرعية', '2021-02-09 12:18:01', '2021-09-20 12:59:13'),
('2208', 'sa', 'sub_category_information', 'معلومات الفئة الفرعية', '2021-02-09 12:18:25', '2021-09-20 12:59:13'),
('2209', 'sa', 'slug', 'سبيكة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2210', 'sa', 'all_sub_subcategories', 'جميع الفئات الفرعية', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2211', 'sa', 'add_new_sub_subcategory', 'إضافة تصنيف فرعي جديد', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2212', 'sa', 'subsubcategories', 'الفئات الفرعية الفرعية', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2213', 'sa', 'make_this_default', 'اجعل هذا الافتراضي', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2214', 'sa', 'shops', 'محلات', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2215', 'sa', 'women_clothing__fashion', 'ملابس وموضة نسائية', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2216', 'sa', 'cellphones__tabs', 'الهواتف المحمولة وعلامات التبويب', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2217', 'sa', 'welcome_to', 'مرحبا بك في', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2218', 'sa', 'create_a_new_account', 'انشاء حساب جديد', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2219', 'sa', 'full_name', 'الاسم الكامل', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2220', 'sa', 'password', 'كلمه السر', '2021-02-09 12:18:26', '2021-02-09 12:18:26'),
('2221', 'sa', 'confrim_password', 'تأكيد كلمة المرور', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2222', 'sa', 'i_agree_with_the', 'وأنا أتفق مع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2223', 'sa', 'terms_and_conditions', 'الأحكام والشروط', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2224', 'sa', 'register', 'تسجيل', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2225', 'sa', 'already_have_an_account', 'هل لديك حساب', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2226', 'sa', 'sign_up_with', 'سجل مع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2227', 'sa', 'i_agree_with_the_terms_and_conditions', 'اني اوافق على الشروط والظروف', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2228', 'sa', 'all_role', 'كل دور', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2229', 'sa', 'add_new_role', 'إضافة دور جديد', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2230', 'sa', 'roles', 'الأدوار', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2231', 'sa', 'add_new_staffs', 'إضافة طاقم عمل جديد', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2232', 'sa', 'role', 'وظيفة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2233', 'sa', 'frontend_website_name', 'اسم موقع الواجهة الأمامية', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2234', 'sa', 'website_name', 'اسم الموقع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2235', 'sa', 'site_motto', 'شعار الموقع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2236', 'sa', 'best_ecommerce_website', 'أفضل موقع للتجارة الإلكترونية', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2237', 'sa', 'site_icon', 'أيقونة الموقع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2238', 'sa', 'website_favicon_32x32_png', 'أيقونة موقع الويب. 32 × 32. png', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2239', 'sa', 'website_base_color', 'لون قاعدة الموقع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2240', 'sa', 'hex_color_code', 'رمز اللون السداسي', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2241', 'sa', 'website_base_hover_color', 'لون قاعدة موقع الويب', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2242', 'sa', 'update', 'تحديث', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2243', 'sa', 'global_seo', 'العالمية سيو', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2244', 'sa', 'meta_description', 'ميتا الوصف', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2245', 'sa', 'keywords', 'الكلمات الدالة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2246', 'sa', 'separate_with_coma', 'فصل مع غيبوبة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2247', 'sa', 'website_pages', 'صفحات الموقع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2248', 'sa', 'all_pages', 'كل الصفحات', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2249', 'sa', 'add_new_page', 'أضف صفحة جديدة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2250', 'sa', 'url', 'URL', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2251', 'sa', 'actions', 'أجراءات', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2252', 'sa', 'edit_page_information', 'تحرير معلومات الصفحة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2253', 'sa', 'page_content', 'محتوى الصفحة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2254', 'sa', 'title', 'عنوان', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2255', 'sa', 'link', 'حلقة الوصل', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2256', 'sa', 'use_character_number_hypen_only', 'استخدم الحرف ، الرقم ، الواصلة فقط', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2257', 'sa', 'add_content', 'إضافة محتوى', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2258', 'sa', 'seo_fields', 'سيو فيلدز', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2259', 'sa', 'update_page', 'تحديث الصفحة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2260', 'sa', 'default_language', 'اللغة الافتراضية', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2261', 'sa', 'add_new_language', 'أضف لغة جديدة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2262', 'sa', 'rtl', 'RTL', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2263', 'sa', 'translation', 'ترجمة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2264', 'sa', 'language_information', 'معلومات اللغة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2265', 'sa', 'save_page', 'احفظ الصفحة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2266', 'sa', 'home_page_settings', 'إعدادات الصفحة الرئيسية', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2267', 'sa', 'home_slider', 'المنزل المنزلق', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2268', 'sa', 'photos__links', 'الصور والروابط', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2269', 'sa', 'add_new', 'اضف جديد', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2270', 'sa', 'home_categories', 'فئات المنزل', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2271', 'sa', 'home_banner_1_max_3', 'لافتة المنزل 1 (الحد الأقصى 3)', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2272', 'sa', 'banner__links', 'لافتة وروابط', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2273', 'sa', 'home_banner_2_max_3', 'لافتة المنزل 2 (الحد الأقصى 3)', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2274', 'sa', 'top_10', 'أعلى 10', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2275', 'sa', 'top_categories_max_10', 'أهم الفئات (بحد أقصى 10)', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2276', 'sa', 'top_brands_max_10', 'أشهر الماركات (بحد أقصى 10)', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2277', 'sa', 'system_name', 'اسم النظام', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2278', 'sa', 'system_logo__white', 'شعار النظام - أبيض', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2279', 'sa', 'choose_files', 'اختر الملفات', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2280', 'sa', 'will_be_used_in_admin_panel_side_menu', 'سيتم استخدامها في القائمة الجانبية للوحة الإدارة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2281', 'sa', 'system_logo__black', 'شعار النظام - أسود', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2282', 'sa', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'سيتم استخدامها في الشريط العلوي للوحة الإدارة في الجوال + صفحة تسجيل دخول المسؤول', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2283', 'sa', 'system_timezone', 'المنطقة الزمنية للنظام', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2284', 'sa', 'admin_login_page_background', 'خلفية صفحة تسجيل دخول المسؤول', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2285', 'sa', 'website_header', 'رأس موقع الويب', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2286', 'sa', 'header_setting', 'إعداد الرأس', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2287', 'sa', 'header_logo', 'رأس الشعار', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2288', 'sa', 'show_language_switcher', 'إظهار محوّل اللغة؟', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2289', 'sa', 'show_currency_switcher', 'إظهار محوّل العملات؟', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2290', 'sa', 'enable_stikcy_header', 'تمكين رأس stikcy؟', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2291', 'sa', 'website_footer', 'تذييل موقع الويب', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2292', 'sa', 'footer_widget', 'القطعة التذييل', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2293', 'sa', 'about_widget', 'حول القطعة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2294', 'sa', 'footer_logo', 'تذييل الشعار', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2295', 'sa', 'about_description', 'حول الوصف', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2296', 'sa', 'contact_info_widget', 'أداة معلومات الاتصال', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2297', 'sa', 'footer_contact_address', 'عنوان اتصال التذييل', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2298', 'sa', 'footer_contact_phone', 'هاتف جهة اتصال التذييل', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2299', 'sa', 'footer_contact_email', 'البريد الإلكتروني لجهة اتصال التذييل', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2300', 'sa', 'link_widget_one', 'رابط القطعة واحد', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2301', 'sa', 'links', 'الروابط', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2302', 'sa', 'footer_bottom', 'أسفل التذييل', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2303', 'sa', 'copyright_widget_', 'القطعة حقوق الطبع والنشر', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2304', 'sa', 'copyright_text', 'نص حقوق النشر', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2305', 'sa', 'social_link_widget_', 'أداة الارتباط الاجتماعي', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2306', 'sa', 'show_social_links', 'إظهار الروابط الاجتماعية؟', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2307', 'sa', 'social_links', 'روابط اجتماعية', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2308', 'sa', 'payment_methods_widget_', 'أداة طرق الدفع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2309', 'sa', 'rtl_status_updated_successfully', 'تم تحديث حالة RTL بنجاح', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2310', 'sa', 'language_changed_to_', 'تغيرت اللغة إلى', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2311', 'sa', 'inhouse_product_sale_report', 'تقرير بيع المنتج الداخلي', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2312', 'sa', 'sort_by_category', 'فرز حسب الفئة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2313', 'sa', 'product_wise_stock_report', 'تقرير مخزون المنتج الحكيم', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2314', 'sa', 'currency_changed_to_', 'تغيرت العملة إلى', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2315', 'sa', 'avatar', 'الصورة الرمزية', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2316', 'sa', 'copy', 'نسخ', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2317', 'sa', 'variant', 'متغير', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2318', 'sa', 'variant_price', 'سعر متغير', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2319', 'sa', 'sku', 'SKU', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2320', 'sa', 'key', 'مفتاح', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2321', 'sa', 'value', 'القيمة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2322', 'sa', 'copy_translations', 'نسخ الترجمات', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2323', 'sa', 'all_pickup_points', 'جميع نقاط الاستلام', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2324', 'sa', 'add_new_pickup_point', 'أضف نقطة التقاط جديدة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2325', 'sa', 'manager', 'مدير', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2326', 'sa', 'location', 'موقعك', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2327', 'sa', 'pickup_station_contact', 'الاتصال بمحطة الالتقاط', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2328', 'sa', 'open', 'افتح', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2329', 'sa', 'pos_activation_for_seller', 'تفعيل نقاط البيع للبائع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2330', 'sa', 'order_completed_successfully', 'اكتمل الطلب بنجاح.', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2331', 'sa', 'text_input', 'إدخال النص', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2332', 'sa', 'select', 'تحديد', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2333', 'sa', 'multiple_select', 'تحديد متعدد', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2334', 'sa', 'radio', 'مذياع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2335', 'sa', 'file', 'ملف', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2336', 'sa', 'email_address', 'عنوان بريد الكتروني', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2337', 'sa', 'verification_info', 'معلومات التحقق', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2338', 'sa', 'approval', 'موافقة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2339', 'sa', 'due_amount', 'مبلغ مستحق', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2340', 'sa', 'show', 'تبين', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2341', 'sa', 'pay_now', 'ادفع الآن', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2342', 'sa', 'affiliate_user_verification', 'التحقق من المستخدم التابع', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2343', 'sa', 'reject', 'رفض', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2344', 'sa', 'accept', 'قبول', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2345', 'sa', 'beauty_health__hair', 'الجمال والصحة والشعر', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2346', 'sa', 'comparison', 'مقارنة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2347', 'sa', 'reset_compare_list', 'إعادة تعيين قائمة المقارنة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2348', 'sa', 'your_comparison_list_is_empty', 'قائمة المقارنة الخاصة بك فارغة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2349', 'sa', 'convert_point_to_wallet', 'تحويل النقطة إلى المحفظة', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2350', 'sa', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'ملاحظة: أنت بحاجة إلى تنشيط خيار المحفظة أولاً قبل استخدام ملحق نقطة النادي.', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2351', 'sa', 'create_an_account', 'انشئ حساب.', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2352', 'sa', 'use_email_instead', 'استخدم البريد الإلكتروني بدلاً من ذلك', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2353', 'sa', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'بالتسجيل فإنك توافق على الشروط والأحكام الخاصة بنا.', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2354', 'sa', 'create_account', 'إنشاء حساب', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2355', 'sa', 'or_join_with', 'أو انضم إلى', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2356', 'sa', 'already_have_an_account', 'هل لديك حساب؟', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2357', 'sa', 'log_in', 'تسجيل الدخول', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2358', 'sa', 'computer__accessories', 'الكمبيوتر وملحقاته', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2359', 'sa', 'products', 'منتجات)', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2360', 'sa', 'in_your_cart', 'في عربة التسوق الخاصة بك', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2361', 'sa', 'in_your_wishlist', 'في قائمة الرغبات الخاصة بك', '2021-02-09 12:18:26', '2021-09-20 12:59:13'),
('2362', 'sa', 'you_ordered', 'لقد طلبت', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2363', 'sa', 'default_shipping_address', 'عنوان الشحن الافتراضي', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2364', 'sa', 'sports__outdoor', 'رياضة وخارجية', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2365', 'sa', 'copied', 'نسخ', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2366', 'sa', 'copy_the_promote_link', 'انسخ رابط الترويج', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2367', 'sa', 'write_a_review', 'أكتب مراجعة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2368', 'sa', 'your_name', 'اسمك', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2369', 'sa', 'comment', 'تعليق', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2370', 'sa', 'your_review', 'مراجعتك', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2371', 'sa', 'submit_review', 'إرسال المراجعة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2372', 'sa', 'claire_willis', 'كلير ويليس', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2373', 'sa', 'germaine_greene', 'جيرمين جرين', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2374', 'sa', 'product_file', 'ملف المنتج', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2375', 'sa', 'choose_file', 'اختر ملف', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2376', 'sa', 'type_to_add_a_tag', 'اكتب لإضافة علامة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2377', 'sa', 'images', 'الصور', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2378', 'sa', 'main_images', 'الصور الرئيسية', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2379', 'sa', 'meta_tags', 'العلامات الفوقية', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2380', 'sa', 'digital_product_has_been_inserted_successfully', 'تم إدخال المنتج الرقمي بنجاح', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2381', 'sa', 'edit_digital_product', 'تحرير المنتج الرقمي', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2382', 'sa', 'select_an_option', 'حدد اختيارا', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2383', 'sa', 'tax', 'ضريبة', '2021-02-09 12:18:27', '2021-02-09 12:18:27'),
('2384', 'sa', 'any_question_about_this_product', 'أي سؤال حول هذا المنتج؟', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2385', 'sa', 'sign_in', 'تسجيل الدخول', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2386', 'sa', 'login_with_google', 'تسجيل الدخول عبر جوجل', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2387', 'sa', 'login_with_facebook', 'تسجيل الدخول باستخدام الفيسبوك', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2388', 'sa', 'login_with_twitter', 'تسجيل الدخول مع Twitter', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2389', 'sa', 'click_to_show_phone_number', 'انقر لإظهار رقم الهاتف', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2390', 'sa', 'other_ads_of', 'إعلانات أخرى من', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2391', 'sa', 'store_home', 'مخزن المنزل', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2392', 'sa', 'top_selling', 'الأكثر مبيعا', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2393', 'sa', 'shop_settings', 'إعدادات المتجر', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2394', 'sa', 'visit_shop', 'قم بزيارة المتجر', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2395', 'sa', 'pickup_points', 'نقاط الالتقاط', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2396', 'sa', 'select_pickup_point', 'حدد نقطة الالتقاط', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2397', 'sa', 'slider_settings', 'إعدادات المنزلق', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2398', 'sa', 'social_media_link', 'رابط التواصل الاجتماعي', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2399', 'sa', 'facebook', 'موقع التواصل الاجتماعي الفيسبوك', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2400', 'sa', 'twitter', 'تويتر', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2401', 'sa', 'google', 'جوجل', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2402', 'sa', 'new_arrival_products', 'منتجات وصول جديدة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2403', 'sa', 'check_your_order_status', 'تحقق من حالة طلبك', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2404', 'sa', 'shipping_method', 'طريقة الشحن', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2405', 'sa', 'shipped_by', 'تم الشحن بواسطة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2406', 'sa', 'image', 'صورة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2407', 'sa', 'sub_sub_category', 'فئة فرعية فرعية', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2408', 'sa', 'inhouse_products', 'المنتجات الداخلية', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2409', 'sa', 'forgot_password', 'هل نسيت كلمة المرور؟', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2410', 'sa', 'enter_your_email_address_to_recover_your_password', 'أدخل عنوان بريدك الإلكتروني لاستعادة كلمة المرور الخاصة بك.', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2411', 'sa', 'email_or_phone', 'بريد الكتروني او هاتف', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2412', 'sa', 'send_password_reset_link', 'إرسال رابط إعادة تعيين كلمة السر', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2413', 'sa', 'back_to_login', 'العودة إلى تسجيل الدخول', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2414', 'sa', 'index', 'فهرس', '2021-02-09 12:18:27', '2021-02-09 12:18:27'),
('2415', 'sa', 'download_your_product', 'قم بتنزيل منتجك', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2416', 'sa', 'option', 'اختيار', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2417', 'sa', 'applied_refund_request', 'طلب استرداد مطبق', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2418', 'sa', 'item_has_been_renoved_from_wishlist', 'تمت إعادة العنصر من قائمة الرغبات', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2419', 'sa', 'bulk_products_upload', 'تحميل المنتجات بالجملة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2420', 'sa', 'upload_csv', 'تحميل CSV', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2421', 'sa', 'create_a_ticket', 'قم بإنشاء تذكرة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2422', 'sa', 'tickets', 'تذاكر', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2423', 'sa', 'ticket_id', 'معرف التذكرة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2424', 'sa', 'sending_date', 'تاريخ إرسال', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2425', 'sa', 'subject', 'موضوع', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2426', 'sa', 'view_details', 'عرض التفاصيل', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2427', 'sa', 'provide_a_detailed_description', 'قدم وصفاً مفصلاً', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2428', 'sa', 'type_your_reply', 'اكتب ردك', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2429', 'sa', 'send_ticket', 'إرسال التذكرة', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2430', 'sa', 'load_more', 'تحميل المزيد', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2431', 'sa', 'jewelry__watches', 'المجوهرات والساعات', '2021-02-09 12:18:27', '2021-09-20 12:59:13'),
('2432', 'sa', 'filters', 'المرشحات', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2433', 'sa', 'contact_address', 'عنوان الإتصال', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2434', 'sa', 'contact_phone', 'هاتف الاتصال', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2435', 'sa', 'contact_email', 'تواصل بالبريد الاكتروني', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2436', 'sa', 'filter_by', 'مصنف بواسطة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2437', 'sa', 'condition', 'شرط', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2438', 'sa', 'all_type', 'كل الأنواع', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2439', 'sa', 'pay_with_wallet', 'ادفع بالمحفظة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2440', 'sa', 'select_variation', 'حدد الاختلاف', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2441', 'sa', 'no_product_added', 'لا يوجد منتج مضاف', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2442', 'sa', 'status_has_been_updated_successfully', 'تم تحديث الحالة بنجاح', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2443', 'sa', 'all_seller_packages', 'جميع حزم البائع', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2444', 'sa', 'add_new_package', 'إضافة حزمة جديدة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2445', 'sa', 'package_logo', 'حزمة الشعار', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2446', 'sa', 'days', 'أيام', '2021-02-09 12:18:27', '2021-02-09 12:18:27'),
('2447', 'sa', 'create_new_seller_package', 'إنشاء حزمة بائع جديدة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2448', 'sa', 'package_name', 'اسم الحزمة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2449', 'sa', 'duration', 'المدة الزمنية', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2450', 'sa', 'validity_in_number_of_days', 'الصلاحية في عدد الأيام', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2451', 'sa', 'update_package_information', 'تحديث معلومات الحزمة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2452', 'sa', 'package_has_been_inserted_successfully', 'تم إدخال الحزمة بنجاح', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2453', 'sa', 'refund_request', 'طلب ارجاع', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2454', 'sa', 'reason', 'السبب', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2455', 'sa', 'label', 'ضع الكلمة المناسبة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2456', 'sa', 'select_label', 'حدد التسمية', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2457', 'sa', 'multiple_select_label', 'متعدد تحديد التسمية', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2458', 'sa', 'radio_label', 'تسمية الراديو', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2459', 'sa', 'pickup_point_orders', 'أوامر نقطة الاستلام', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2460', 'sa', 'view', 'رأي', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2461', 'sa', 'order_', 'طلب #', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2462', 'sa', 'order_status', 'حالة الطلب', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2463', 'sa', 'total_amount', 'المبلغ الإجمالي', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2464', 'sa', 'total', 'مجموع', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2465', 'sa', 'delivery_status_has_been_updated', 'تم تحديث حالة التسليم', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2466', 'sa', 'payment_status_has_been_updated', 'تم تحديث حالة الدفع', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2467', 'sa', 'invoice', 'فاتورة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2468', 'sa', 'set_refund_time', 'ضبط وقت الاسترداد', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2469', 'sa', 'set_time_for_sending_refund_request', 'تعيين الوقت لإرسال طلب استرداد', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2470', 'sa', 'set_refund_sticker', 'تعيين ملصق استرداد', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2471', 'sa', 'sticker', 'ملصق', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2472', 'sa', 'refund_request_all', 'طلب استرداد الكل', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2473', 'sa', 'order_id', 'رقم التعريف الخاص بالطلب', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2474', 'sa', 'seller_approval', 'موافقة البائع', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2475', 'sa', 'admin_approval', 'موافقة المسؤول', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2476', 'sa', 'refund_status', 'حالة رد الأموال', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2477', 'sa', 'no_refund', 'لا رد', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2478', 'sa', 'status_updated_successfully', 'تم تحديث الحالة بنجاح', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2479', 'sa', 'user_search_report', 'تقرير بحث المستخدم', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2480', 'sa', 'search_by', 'البحث عن طريق', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2481', 'sa', 'number_searches', 'عدد عمليات البحث', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2482', 'sa', 'sender', 'مرسل', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2483', 'sa', 'receiver', 'المتلقي', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2484', 'sa', 'verification_form_updated_successfully', 'تم تحديث نموذج التحقق بنجاح', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2485', 'sa', 'invalid_email_or_password', 'البريد الإلكتروني أو كلمة السر خاطئة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2486', 'sa', 'all_coupons', 'جميع القسائم', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2487', 'sa', 'add_new_coupon', 'أضف قسيمة جديدة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2488', 'sa', 'coupon_information', 'معلومات القسيمة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2489', 'sa', 'start_date', 'تاريخ البدء', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2490', 'sa', 'end_date', 'تاريخ الانتهاء', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2491', 'sa', 'product_base', 'قاعدة المنتج', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2492', 'sa', 'send_newsletter', 'إرسال النشرة الإخبارية', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2493', 'sa', 'mobile_users', 'مستخدمو المحمول', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2494', 'sa', 'sms_subject', 'موضوع الرسائل القصيرة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2495', 'sa', 'sms_content', 'محتوى الرسائل القصيرة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2496', 'sa', 'all_flash_delas', 'كل فلاش ديلاس', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2497', 'sa', 'create_new_flash_dela', 'إنشاء فلاش ديلا جديد', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2498', 'sa', 'page_link', 'رابط الصفحة', '2021-02-09 12:18:27', '2021-09-20 12:59:14'),
('2499', 'sa', 'flash_deal_information', 'معلومات صفقة فلاش', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2500', 'sa', 'background_color', 'لون الخلفية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2501', 'sa', '0000ff', '# 0000ff', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2502', 'sa', 'text_color', 'لون الخط', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2503', 'sa', 'white', 'أبيض', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2504', 'sa', 'dark', 'داكن', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2505', 'sa', 'choose_products', 'اختر المنتجات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2506', 'sa', 'discounts', 'الخصومات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2507', 'sa', 'discount_type', 'نوع الخصم', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2508', 'sa', 'twillo_credential', 'اعتماد Twillo', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2509', 'sa', 'twilio_sid', 'TWILIO SID', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2510', 'sa', 'twilio_auth_token', 'رمز TWILIO AUTH', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2511', 'sa', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2512', 'sa', 'valid_twillo_number', 'رقم تويلو صالح', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2513', 'sa', 'nexmo_credential', 'اعتماد Nexmo', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2514', 'sa', 'nexmo_key', 'NEXMO KEY', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2515', 'sa', 'nexmo_secret', 'NEXMO SECRET', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2516', 'sa', 'ssl_wireless_credential', 'اعتماد لاسلكي SSL', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2517', 'sa', 'ssl_sms_api_token', 'SSL SMS API TOKEN', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2518', 'sa', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2519', 'sa', 'ssl_sms_url', 'عنوان URL لـ SSL SMS', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2520', 'sa', 'fast2sms_credential', 'اعتماد Fast2SMS', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2521', 'sa', 'auth_key', 'مفتاح المصادقة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2522', 'sa', 'route', 'طريق', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2523', 'sa', 'promotional_use', 'الاستخدام الترويجي', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2524', 'sa', 'transactional_use', 'استخدام المعاملات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2525', 'sa', 'sender_id', 'هوية المرسل', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2526', 'sa', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2527', 'sa', 'twillo_otp', 'Twillo OTP', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2528', 'sa', 'ssl_wireless_otp', 'SSL Wireless OTP', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2529', 'sa', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2530', 'sa', 'order_placement', 'ترتيب التنسيب', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2531', 'sa', 'delivery_status_changing_time', 'وقت تغيير حالة التسليم', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2532', 'sa', 'paid_status_changing_time', 'وقت تغيير الحالة المدفوعة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2533', 'sa', 'send_bulk_sms', 'إرسال رسائل نصية مجمعة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2534', 'sa', 'all_subscribers', 'كل المشتركين', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2535', 'sa', 'coupon_information_adding', 'إضافة معلومات القسيمة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2536', 'sa', 'coupon_type', 'نوع القسيمة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2537', 'sa', 'for_products', 'للمنتجات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2538', 'sa', 'for_total_orders', 'لإجمالي الطلبات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2539', 'sa', 'add_your_product_base_coupon', 'أضف قسيمة قاعدة المنتج الخاصة بك', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2540', 'sa', 'coupon_code', 'رمز الكوبون', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2541', 'sa', 'sub_category', 'تصنيف فرعي', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2542', 'sa', 'add_more', 'أضف المزيد', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2543', 'sa', 'add_your_cart_base_coupon', 'أضف قسيمة سلة التسوق الخاصة بك', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2544', 'sa', 'minimum_shopping', 'الحد الأدنى من التسوق', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2545', 'sa', 'maximum_discount_amount', 'الحد الأقصى لمبلغ الخصم', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2546', 'sa', 'coupon_information_update', 'تحديث معلومات القسيمة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2547', 'sa', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'يرجى تكوين إعداد SMTP للعمل على جميع وظائف إرسال البريد الإلكتروني', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2548', 'sa', 'configure_now', 'تكوين الآن', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2549', 'sa', 'total_published_products', 'إجمالي المنتجات المنشورة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2550', 'sa', 'total_sellers_products', 'إجمالي منتجات البائعين', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2551', 'sa', 'total_admin_products', 'إجمالي منتجات الإدارة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2552', 'sa', 'manage_products', 'إدارة المنتجات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2553', 'sa', 'total_product_category', 'فئة المنتج الإجمالية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2554', 'sa', 'create_category', 'إنشاء فئة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2555', 'sa', 'total_product_sub_sub_category', 'إجمالي فئة فرعية المنتج', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2556', 'sa', 'create_sub_sub_category', 'تكوين فئة فرعية فرعية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2557', 'sa', 'total_product_sub_category', 'إجمالي فئة المنتج الفرعية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2558', 'sa', 'create_sub_category', 'إنشاء فئة فرعية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2559', 'sa', 'total_product_brand', 'إجمالي العلامة التجارية للمنتج', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2560', 'sa', 'create_brand', 'إنشاء علامة تجارية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2561', 'sa', 'total_sellers', 'مجموع البائعين', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2562', 'sa', 'total_approved_sellers', 'إجمالي البائعين المعتمدين', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2563', 'sa', 'total_pending_sellers', 'إجمالي البائعين المعلقين', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2564', 'sa', 'manage_sellers', 'إدارة البائعين', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2565', 'sa', 'category_wise_product_sale', 'بيع المنتج من فئة الحكمة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2566', 'sa', 'sale', 'تخفيض السعر', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2567', 'sa', 'category_wise_product_stock', 'فئة مخزون المنتج الحكيم', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2568', 'sa', 'category_name', 'اسم التصنيف', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2569', 'sa', 'stock', 'مخزون', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2570', 'sa', 'frontend', 'نهاية المقدمة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2571', 'sa', 'home_page', 'الصفحة الرئيسية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2572', 'sa', 'setting', 'ضبط', '2021-02-09 12:18:28', '2021-02-09 12:18:28'),
('2573', 'sa', 'policy_page', 'صفحة السياسة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2574', 'sa', 'general', 'جنرال لواء', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2575', 'sa', 'click_here', 'انقر هنا', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2576', 'sa', 'useful_link', 'رابط مفيد', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2577', 'sa', 'activation', 'التنشيط', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2578', 'sa', 'smtp', 'SMTP', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2579', 'sa', 'payment_method', 'طريقة الدفع او السداد', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2580', 'sa', 'social_media', 'وسائل التواصل الاجتماعي', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2581', 'sa', 'business', 'اعمال', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2582', 'sa', 'seller_verification', 'التحقق من البائع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2583', 'sa', 'form_setting', 'وضع النموذج', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2584', 'sa', 'language', 'لغة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2585', 'sa', 'dashboard', 'لوحة القيادة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2586', 'sa', 'pos_system', 'نظام نقاط البيع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2587', 'sa', 'pos_manager', 'مدير نقاط البيع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2588', 'sa', 'pos_configuration', 'تكوين نقاط البيع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2589', 'sa', 'products', 'منتجات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2590', 'sa', 'add_new_product', 'اضافة منتج جديد', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2591', 'sa', 'all_products', 'جميع المنتجات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2592', 'sa', 'in_house_products', 'منتجات المنزل', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2593', 'sa', 'seller_products', 'منتجات البائع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2594', 'sa', 'digital_products', 'المنتجات الرقمية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2595', 'sa', 'bulk_import', 'استيراد بالجملة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2596', 'sa', 'bulk_export', 'تصدير بالجملة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2597', 'sa', 'category', 'الفئة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2598', 'sa', 'subcategory', 'تصنيف فرعي', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2599', 'sa', 'sub_subcategory', 'فئة فرعية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2600', 'sa', 'brand', 'الماركة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2601', 'sa', 'attribute', 'ينسب', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2602', 'sa', 'product_reviews', 'تعليقات المنتج', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2603', 'sa', 'sales', 'مبيعات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2604', 'sa', 'all_orders', 'جميع الطلبات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2605', 'sa', 'inhouse_orders', 'أوامر داخلية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2606', 'sa', 'seller_orders', 'طلبات البائع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2607', 'sa', 'pickup_point_order', 'طلب نقطة الاستلام', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2608', 'sa', 'refunds', 'المبالغ المستردة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2609', 'sa', 'refund_requests', 'طلبات الاسترداد', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2610', 'sa', 'approved_refund', 'إعادة الأموال المعتمدة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2611', 'sa', 'refund_configuration', 'تكوين استرداد', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2612', 'sa', 'customers', 'العملاء', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2613', 'sa', 'customer_list', 'قائمة العملاء', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2614', 'sa', 'classified_products', 'المنتجات المبوبة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2615', 'sa', 'classified_packages', 'الحزم المصنفة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2616', 'sa', 'sellers', 'الباعة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2617', 'sa', 'all_seller', 'كل البائع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2618', 'sa', 'payouts', 'المدفوعات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2619', 'sa', 'payout_requests', 'طلبات الدفع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2620', 'sa', 'seller_commission', 'عمولة البائع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2621', 'sa', 'seller_packages', 'حزم البائع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2622', 'sa', 'seller_verification_form', 'نموذج التحقق من البائع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2623', 'sa', 'reports', 'التقارير', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2624', 'sa', 'in_house_product_sale', 'بيع المنتجات في المنزل', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2625', 'sa', 'seller_products_sale', 'بيع منتجات البائع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2626', 'sa', 'products_stock', 'مخزون المنتجات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2627', 'sa', 'products_wishlist', 'قائمة المنتجات المفضلة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2628', 'sa', 'user_searches', 'عمليات بحث المستخدم', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2629', 'sa', 'marketing', 'تسويق', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2630', 'sa', 'flash_deals', 'صفقات فلاش', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2631', 'sa', 'newsletters', 'النشرات الإخبارية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2632', 'sa', 'bulk_sms', 'الرسائل القصيرة بالجملة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2633', 'sa', 'subscribers', 'مشتركين', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2634', 'sa', 'coupon', 'القسيمة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2635', 'sa', 'support', 'الدعم', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2636', 'sa', 'ticket', 'تذكرة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2637', 'sa', 'product_queries', 'استفسارات المنتج', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2638', 'sa', 'website_setup', 'إعداد الموقع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2639', 'sa', 'header', 'رأس', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2640', 'sa', 'footer', 'تذييل', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2641', 'sa', 'pages', 'الصفحات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2642', 'sa', 'appearance', 'مظهر خارجي', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2643', 'sa', 'setup__configurations', 'الإعداد والتكوينات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2644', 'sa', 'general_settings', 'الاعدادات العامة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2645', 'sa', 'features_activation', 'تفعيل الميزات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2646', 'sa', 'languages', 'اللغات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2647', 'sa', 'currency', 'عملة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2648', 'sa', 'pickup_point', 'نقطة الالتقاط', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2649', 'sa', 'smtp_settings', 'إعدادات SMTP', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2650', 'sa', 'payment_methods', 'طرق الدفع', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2651', 'sa', 'file_system_configuration', 'تكوين نظام الملفات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2652', 'sa', 'social_media_logins', 'عمليات تسجيل الدخول إلى وسائل التواصل الاجتماعي', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2653', 'sa', 'analytics_tools', 'أدوات التحليلات', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2654', 'sa', 'facebook_chat', 'دردشة الفيسبوك', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2655', 'sa', 'google_recaptcha', 'جوجل reCAPTCHA', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2656', 'sa', 'shipping_configuration', 'تكوين الشحن', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2657', 'sa', 'shipping_countries', 'دول الشحن', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2658', 'sa', 'affiliate_system', 'نظام الانتساب', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2659', 'sa', 'affiliate_registration_form', 'استمارة تسجيل المنتسبين', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2660', 'sa', 'affiliate_configurations', 'التكوينات التابعة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2661', 'sa', 'affiliate_users', 'المستخدمون المنتسبون', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2662', 'sa', 'referral_users', 'المستخدمون المحالون', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2663', 'sa', 'affiliate_withdraw_requests', 'طلبات السحب التابعة', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2664', 'sa', 'offline_payment_system', 'نظام الدفع دون اتصال بالإنترنت', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2665', 'sa', 'manual_payment_methods', 'طرق الدفع اليدوية', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2666', 'sa', 'offline_wallet_recharge', 'إعادة شحن المحفظة دون اتصال بالإنترنت', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2667', 'sa', 'offline_customer_package_payments', 'مدفوعات حزمة العملاء غير المتصلين', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2668', 'sa', 'offline_seller_package_payments', 'مدفوعات حزمة البائع غير المتصل', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2669', 'sa', 'paytm_payment_gateway', 'بوابة الدفع Paytm', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2670', 'sa', 'set_paytm_credentials', 'قم بتعيين بيانات اعتماد Paytm', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2671', 'sa', 'club_point_system', 'نظام كلوب بوينت', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2672', 'sa', 'club_point_configurations', 'تكوينات كلوب بوينت', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2673', 'sa', 'set_product_point', 'تعيين نقطة المنتج', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2674', 'sa', 'user_points', 'نقاط المستخدم', '2021-02-09 12:18:28', '2021-09-20 12:59:14'),
('2675', 'sa', 'otp_system', 'نظام OTP', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2676', 'sa', 'otp_configurations', 'تكوينات OTP', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2677', 'sa', 'set_otp_credentials', 'قم بتعيين بيانات اعتماد OTP', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2678', 'sa', 'staffs', 'طاقم العمل', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2679', 'sa', 'all_staffs', 'كل فريق العمل', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2680', 'sa', 'staff_permissions', 'أذونات الموظفين', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2681', 'sa', 'addon_manager', 'مدير الملحق', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2682', 'sa', 'browse_website', 'تصفح الموقع', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2683', 'sa', 'pos', 'نقاط البيع', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2684', 'sa', 'notifications', 'إشعارات', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2685', 'sa', 'new_orders', 'طلبات جديدة', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2686', 'sa', 'userimage', 'صورة المستخدم', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2687', 'sa', 'profile', 'الملف الشخصي', '2021-02-09 12:18:29', '2021-09-20 12:59:14'),
('2688', 'sa', 'logout', 'تسجيل خروج', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2689', 'sa', 'page_not_found', 'الصفحة غير موجودة!', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2690', 'sa', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'لم يتم العثور على الصفحة التي تبحث عنها على خادمنا.', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2691', 'sa', 'registration', 'التسجيل', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2692', 'sa', 'i_am_shopping_for', 'انا اتسوق لأجل...', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2693', 'sa', 'compare', 'قارن', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2694', 'sa', 'wishlist', 'قائمة الرغبات', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2695', 'sa', 'cart', 'عربة التسوق', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2696', 'sa', 'your_cart_is_empty', 'عربة التسوق فارغة', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2697', 'sa', 'categories', 'التصنيفات', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2698', 'sa', 'see_all', 'اظهار الكل', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2699', 'sa', 'seller_policy', 'سياسة البائع', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2700', 'sa', 'return_policy', 'سياسة العائدات', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2701', 'sa', 'support_policy', 'سياسة الدعم', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2702', 'sa', 'privacy_policy', 'سياسة خاصة', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2703', 'sa', 'your_email_address', 'عنوان بريدك الإلكتروني', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2704', 'sa', 'subscribe', 'الإشتراك', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2705', 'sa', 'contact_info', 'معلومات الاتصال', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2706', 'sa', 'address', 'عنوان', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2707', 'sa', 'phone', 'هاتف', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2708', 'sa', 'email', 'البريد الإلكتروني', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2709', 'sa', 'login', 'تسجيل الدخول', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2710', 'sa', 'my_account', 'حسابي', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2711', 'sa', 'order_history', 'تاريخ الطلب', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2712', 'sa', 'my_wishlist', 'قائمة امنياتي', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2713', 'sa', 'track_order', 'ترتيب المسار', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2714', 'sa', 'be_an_affiliate_partner', 'كن شريكًا تابعًا', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2715', 'sa', 'be_a_seller', 'كن بائعا', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2716', 'sa', 'apply_now', 'قدم الآن', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2717', 'sa', 'confirmation', 'التأكيد', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2718', 'sa', 'delete_confirmation_message', 'حذف رسالة التأكيد', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2719', 'sa', 'cancel', 'إلغاء', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2720', 'sa', 'delete', 'حذف', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2721', 'sa', 'item_has_been_added_to_compare_list', 'تمت إضافة العنصر إلى قائمة المقارنة', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2722', 'sa', 'please_login_first', 'الرجاء تسجيل الدخول أولا', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2723', 'sa', 'total_earnings_from', 'إجمالي الأرباح من', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2724', 'sa', 'client_subscription', 'اشتراك العميل', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2725', 'sa', 'product_category', 'فئة المنتج', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2726', 'sa', 'product_sub_sub_category', 'الفئة الفرعية للمنتج', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2727', 'sa', 'product_sub_category', 'فئة المنتج الفرعية', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2728', 'sa', 'product_brand', 'العلامة التجارية المنتج', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2729', 'sa', 'top_client_packages', 'حزم العميل الأعلى', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2730', 'sa', 'top_freelancer_packages', 'أفضل الحزم لحسابهم الخاص', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2731', 'sa', 'number_of_sale', 'رقم البيع', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2732', 'sa', 'number_of_stock', 'عدد الأسهم', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2733', 'sa', 'top_10_products', 'أفضل 10 منتجات', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2734', 'sa', 'top_12_products', 'أفضل 12 منتجات', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2735', 'sa', 'admin_can_not_be_a_seller', 'لا يمكن للمسؤول أن يكون بائعًا', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2736', 'sa', 'filter_by_rating', 'تصفية حسب التصنيف', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2737', 'sa', 'published_reviews_updated_successfully', 'تم تحديث المراجعات المنشورة بنجاح', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2738', 'sa', 'refund_sticker_has_been_updated_successfully', 'تم تحديث ملصق رد الأموال بنجاح', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2739', 'sa', 'edit_product', 'تحرير المنتج', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2740', 'sa', 'meta_images', 'ميتا صور', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2741', 'sa', 'update_product', 'تحديث المنتج', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2742', 'sa', 'product_has_been_deleted_successfully', 'تم حذف المنتج بنجاح', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2743', 'sa', 'your_profile_has_been_updated_successfully', 'تم تحديث ملفك الشخصي بنجاح!', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2744', 'sa', 'upload_limit_has_been_reached_please_upgrade_your_package', 'تم الوصول إلى حد التحميل. الرجاء ترقية الحزمة الخاصة بك.', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2745', 'sa', 'add_your_product', 'أضف منتجك', '2021-02-09 12:18:49', '2021-09-20 12:59:14'),
('2746', 'sa', 'select_a_category', 'اختر تصنيف', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2747', 'sa', 'select_a_brand', 'اختر ماركة', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2748', 'sa', 'product_unit', 'وحدة المنتج', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2749', 'sa', 'minimum_qty', 'الحد الأدنى من الكمية.', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2750', 'sa', 'product_tag', 'علامة المنتج', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2751', 'sa', 'type__hit_enter', 'اكتب & اضغط دخول', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2752', 'sa', 'videos', 'أشرطة فيديو', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2753', 'sa', 'video_from', 'فيديو من', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2754', 'sa', 'video_url', 'رابط الفيديو', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2755', 'sa', 'customer_choice', 'اختيار العميل', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2756', 'sa', 'pdf', 'بي دي إف', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2757', 'sa', 'choose_pdf', 'اختر PDF', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2758', 'sa', 'select_category', 'اختر الفئة', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2759', 'sa', 'target_category', 'الفئة المستهدفة', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2760', 'sa', 'subsubcategory', 'فئة فرعية', '2021-02-09 12:18:49', '2021-02-09 12:18:49'),
('2761', 'sa', 'search_category', 'فئة البحث', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2762', 'sa', 'search_subcategory', 'بحث فرعي', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2763', 'sa', 'search_subsubcategory', 'بحث SubSubCategory', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2764', 'sa', 'update_your_product', 'قم بتحديث منتجك', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2765', 'sa', 'product_has_been_updated_successfully', 'تم تحديث المنتج بنجاح', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2766', 'sa', 'add_your_digital_product', 'أضف منتجك الرقمي', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2767', 'sa', 'active_ecommerce_cms_update_process', 'عملية تحديث CMS للتجارة الإلكترونية النشطة', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2768', 'sa', 'codecanyon_purchase_code', 'كود شراء Codecanyon', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2769', 'sa', 'database_name', 'اسم قاعدة البيانات', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2770', 'sa', 'database_username', 'اسم مستخدم قاعدة البيانات', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2771', 'sa', 'database_password', 'كلمة مرور قاعدة البيانات', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2772', 'sa', 'database_hostname', 'اسم مضيف قاعدة البيانات', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2773', 'sa', 'update_now', 'تحديث الان', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2774', 'sa', 'congratulations', 'تهانينا', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2775', 'sa', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'لقد أكملت بنجاح عملية التحديث. الرجاء تسجيل الدخول للمتابعة', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2776', 'sa', 'go_to_home', 'اذهب إلى الصفحة الرئيسية', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2777', 'sa', 'login_to_admin_panel', 'تسجيل الدخول إلى لوحة الإدارة', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2778', 'sa', 's3_file_system_credentials', 'بيانات اعتماد نظام ملف S3', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2779', 'sa', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2780', 'sa', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2781', 'sa', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2782', 'sa', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2783', 'sa', 'aws_url', 'AWS_URL', '2021-02-09 12:18:49', '2021-09-20 12:59:15'),
('2784', 'sa', 's3_file_system_activation', 'تفعيل نظام ملفات S3', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2785', 'sa', 'your_phone_number', 'رقم تليفونك', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2786', 'sa', 'zip_file', 'ملف مضغوط', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2787', 'sa', 'install', 'تثبيت', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2788', 'sa', 'this_version_is_not_capable_of_installing_addons_please_update', 'هذا الإصدار غير قادر على تثبيت الملحقات ، يرجى التحديث.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2789', 'sa', 'search_in_menu', 'البحث في القائمة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2790', 'sa', 'uploaded_files', 'الملفات التي يتم تحميلها', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2791', 'sa', 'shipping_cities', 'مدن الشحن', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2792', 'sa', 'system', 'النظام', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2793', 'sa', 'server_status', 'حالة الملقم', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2794', 'sa', 'nothing_found', 'لا شيء موجود', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2795', 'sa', 'parent_category', 'القسم الرئيسي', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2796', 'sa', 'level', 'مستوى', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2797', 'sa', 'category_information', 'معلومات الفئة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2798', 'sa', 'translatable', 'قابل للترجمة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2799', 'sa', 'no_parent', 'لا يوجد أصل', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2800', 'sa', 'physical', 'جسدي - بدني', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2801', 'sa', 'digital', 'رقمي', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2802', 'sa', '200x200', '200 × 200', '2021-02-09 12:18:50', '2021-02-09 12:18:50'),
('2803', 'sa', '32x32', '32x32', '2021-02-09 12:18:50', '2021-02-09 12:18:50'),
('2804', 'sa', 'search_your_files', 'ابحث في ملفاتك', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2805', 'sa', 'category_has_been_updated_successfully', 'تم تحديث الفئة بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2806', 'sa', 'all_uploaded_files', 'جميع الملفات المرفوعة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2807', 'sa', 'upload_new_file', 'تحميل ملف جديد', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2808', 'sa', 'all_files', 'كل الملفات', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2809', 'sa', 'search', 'بحث', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2810', 'sa', 'details_info', 'تفاصيل معلومات', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2811', 'sa', 'copy_link', 'انسخ الرابط', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2812', 'sa', 'are_you_sure_to_delete_this_file', 'هل أنت متأكد من حذف هذا الملف؟', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2813', 'sa', 'file_info', 'معلومات الملف', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2814', 'sa', 'link_copied_to_clipboard', 'تم نسخ الرابط إلى الحافظة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2815', 'sa', 'oops_unable_to_copy', 'عفوًا ، غير قادر على النسخ', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2816', 'sa', 'file_deleted_successfully', 'تم حذف الملف بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2817', 'sa', 'add_new_brand', 'أضف علامة تجارية جديدة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2818', 'sa', '120x80', '120 × 80', '2021-02-09 12:18:50', '2021-02-09 12:18:50'),
('2819', 'sa', 'brand_information', 'معلومات العلامة التجارية', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2820', 'sa', 'brand_has_been_updated_successfully', 'تم تحديث العلامة التجارية بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2821', 'sa', 'brand_has_been_deleted_successfully', 'تم حذف العلامة التجارية بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2822', 'sa', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'هذا يستخدم للبحث. أدخل تلك الكلمات التي يمكن لـ cutomer العثور على هذا المنتج من خلالها.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2823', 'sa', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'هذه الصور مرئية في معرض صفحة تفاصيل المنتج. استخدم صور بحجم 600 × 600.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2824', 'sa', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'هذه الصورة مرئية في كل علبة المنتج. استخدم صورة بحجم 300 × 300. احتفظ ببعض المساحة الفارغة حول الكائن الرئيسي لصورتك حيث كان علينا قص بعض الحواف في أجهزة مختلفة لجعلها مستجيبة.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2825', 'sa', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'استخدم الارتباط المناسب بدون معلمة إضافية. لا تستخدم رابط المشاركة القصير / كود iframe المضمن.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2826', 'sa', 'save_product', 'حفظ المنتج', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2827', 'sa', 'product_has_been_inserted_successfully', 'تم إدخال المنتج بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2828', 'sa', 'something_went_wrong', 'هناك خطأ ما!', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2829', 'sa', 'sorry_for_the_inconvenience_but_were_working_on_it', 'آسف على الإزعاج ، لكننا نعمل على ذلك.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2830', 'sa', 'error_code', 'خطا بالكود', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2831', 'sa', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'يرجى تكوين إعداد SMTP للعمل على جميع وظائف إرسال البريد الإلكتروني', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2832', 'sa', 'order', 'طلب', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2833', 'sa', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'لدينا ارتفاع محدود للافتة للحفاظ على واجهة المستخدم. كان علينا الاقتصاص من كلا الجانبين الأيسر والأيمن في عرض الأجهزة المختلفة لجعلها مستجيبة. قبل تصميم لافتة ضع هذه النقاط في الاعتبار.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2834', 'sa', 'home_banner_3_max_3', 'لافتة المنزل 3 (الحد الأقصى 3)', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2835', 'sa', 'add_new_seller', 'إضافة بائع جديد', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2836', 'sa', 'filter_by_approval', 'تصفية حسب الموافقة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2837', 'sa', 'nonapproved', 'ليس مصدق عليه', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2838', 'sa', 'type_name_or_email__enter', 'اكتب الاسم أو البريد الإلكتروني وأدخل', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2839', 'sa', 'due_to_seller', 'مستحق للبائع', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2840', 'sa', 'log_in_as_this_seller', 'تسجيل الدخول باسم هذا البائع', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2841', 'sa', 'go_to_payment', 'انتقل إلى الدفع', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2842', 'sa', 'ban_this_seller', 'حظر هذا البائع', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2843', 'sa', 'do_you_really_want_to_ban_this_seller', 'هل تريد حقًا حظر هذا البائع؟', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2844', 'sa', 'proceed', 'تقدم!', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2845', 'sa', 'approved_sellers_updated_successfully', 'تم تحديث البائعين المعتمدين بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2846', 'sa', 'seller_has_been_deleted_successfully', 'تم حذف البائع بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2847', 'sa', 'seller_information', 'معلومات البائع', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2848', 'sa', 'seller_has_been_inserted_successfully', 'تم إدراج البائع بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2849', 'sa', 'email_already_exists', 'البريد الالكتروني موجود بالفعل!', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2850', 'sa', 'verify_your_email_address', 'تحقق من عنوان بريدك الإلكتروني', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2851', 'sa', 'before_proceeding_please_check_your_email_for_a_verification_link', 'قبل المتابعة ، يرجى التحقق من بريدك الإلكتروني للحصول على رابط التحقق.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2852', 'sa', 'if_you_did_not_receive_the_email', 'إذا لم تستلم البريد الإلكتروني.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2853', 'sa', 'click_here_to_request_another', 'انقر هنا لطلب آخر', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2854', 'sa', 'email_verification', 'تأكيد بواسطة البريد الالكتروني', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2855', 'sa', 'email_verification__', 'تأكيد بواسطة البريد الالكتروني -', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2856', 'sa', 'https_activation', 'تفعيل HTTPS', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2857', 'sa', 'maintenance_mode', 'نمط الصيانة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2858', 'sa', 'maintenance_mode_activation', 'تفعيل وضع الصيانة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2859', 'sa', 'classified_product_activate', 'تنشيط المنتج المصنف', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2860', 'sa', 'classified_product', 'منتج مصنف', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2861', 'sa', 'business_related', 'الأعمال ذات الصلة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2862', 'sa', 'vendor_system_activation', 'تفعيل نظام البائع', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2863', 'sa', 'wallet_system_activation', 'تفعيل نظام المحفظة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2864', 'sa', 'coupon_system_activation', 'تفعيل نظام القسيمة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2865', 'sa', 'pickup_point_activation', 'تفعيل نقطة الالتقاط', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2866', 'sa', 'conversation_activation', 'تفعيل المحادثة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2867', 'sa', 'guest_checkout_activation', 'تفعيل تسجيل خروج الضيف', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2868', 'sa', 'categorybased_commission', 'عمولة على أساس الفئة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2869', 'sa', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'بعد تفعيل هذا الخيار ، سيتم تعطيل عمولة البائع وتحتاج إلى تعيين العمولة على كل فئة وإلا فلن يحصل المسؤول على أي عمولة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2870', 'sa', 'set_commisssion_now', 'تعيين كوميسيون الآن', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2871', 'sa', 'payment_related', 'الدفع ذات الصلة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2872', 'sa', 'paypal_payment_activation', 'تفعيل الدفع باي بال', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2873', 'sa', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Paypal بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2874', 'sa', 'stripe_payment_activation', 'تفعيل الدفع عبر الشريط', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2875', 'sa', 'sslcommerz_activation', 'تفعيل SSlCommerz', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2876', 'sa', 'instamojo_payment_activation', 'تفعيل الدفع Instamojo', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2877', 'sa', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Instamojo Payment بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2878', 'sa', 'razor_pay_activation', 'تفعيل دفع الحلاقة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2879', 'sa', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Razor بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2880', 'sa', 'paystack_activation', 'تفعيل PayStack', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2881', 'sa', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'تحتاج إلى تكوين PayStack بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2882', 'sa', 'voguepay_activation', 'تفعيل VoguePay', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2883', 'sa', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'تحتاج إلى تكوين VoguePay بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2884', 'sa', 'payhere_activation', 'تفعيل Payhere', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2885', 'sa', 'ngenius_activation', 'تفعيل Ngenius', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2886', 'sa', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Ngenius بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2887', 'sa', 'iyzico_activation', 'تفعيل Iyzico', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2888', 'sa', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'تحتاج إلى تكوين iyzico بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2889', 'sa', 'bkash_activation', 'تفعيل بكاش', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2890', 'sa', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'تحتاج إلى تكوين bkash بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2891', 'sa', 'nagad_activation', 'تفعيل نجاد', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2892', 'sa', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'تحتاج إلى تكوين nagad بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2893', 'sa', 'cash_payment_activation', 'تفعيل الدفع النقدي', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2894', 'sa', 'social_media_login', 'تسجيل الدخول إلى وسائل التواصل الاجتماعي', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2895', 'sa', 'facebook_login', 'تسجيل الدخول الى الفيسبوك', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2896', 'sa', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Facebook Client بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2897', 'sa', 'google_login', 'تسجيل الدخول إلى Google', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2898', 'sa', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'تحتاج إلى تكوين عميل Google بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2899', 'sa', 'twitter_login', 'تسجيل الدخول إلى Twitter', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2900', 'sa', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'تحتاج إلى تكوين عميل تويتر بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2901', 'sa', 'shop_logo', 'متجر الشعار', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2902', 'sa', 'shop_address', 'عنوان المحل', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2903', 'sa', 'banner_settings', 'إعدادات البانر', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2904', 'sa', 'banners', 'لافتات', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2905', 'sa', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'كان علينا تحديد الارتفاع للحفاظ على الاتساق. في بعض الأجهزة ، قد يتم اقتصاص كلا جانبي الشعار للحد من الارتفاع.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2906', 'sa', 'insert_link_with_https_', 'أدخل الارتباط مع https', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2907', 'sa', 'your_shop_has_been_updated_successfully', 'تم تحديث متجرك بنجاح!', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2908', 'sa', 'search_result_for_', 'نتيجة البحث عن', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2909', 'sa', 'brand_has_been_inserted_successfully', 'تم إدراج العلامة التجارية بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2910', 'sa', 'about', 'حول', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2911', 'sa', 'payout_info', 'معلومات الدفع', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2912', 'sa', 'bank_acc_name', 'اسم حساب البنك', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2913', 'sa', 'bank_acc_number', 'رقم حساب البنك', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2914', 'sa', 'total_products', 'إجمالي المنتجات', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2915', 'sa', 'total_sold_amount', 'إجمالي المبلغ المباع', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2916', 'sa', 'wallet_balance', 'رصيد المحفظة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2917', 'sa', 'cookies_agreement', 'اتفاقية ملفات تعريف الارتباط', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2918', 'sa', 'cookies_agreement_text', 'نص اتفاقية ملفات تعريف الارتباط', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2919', 'sa', 'show_cookies_agreement', 'إظهار اتفاقية ملفات تعريف الارتباط؟', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2920', 'sa', 'custom_script', 'برنامج نصي مخصص', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2921', 'sa', 'header_custom_script__before_head', 'البرنامج النصي المخصص للرأس - قبل </head>', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2922', 'sa', 'write_script_with_script_tag', 'اكتب البرنامج النصي بعلامة <script>', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2923', 'sa', 'footer_custom_script__before_body', 'البرنامج النصي المخصص للتذييل - قبل </ body>', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2924', 'sa', 'category_has_been_inserted_successfully', 'تم ادراج الفئة بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2925', 'sa', 'all_flash_deals', 'جميع عروض فلاش', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2926', 'sa', 'create_new_flash_deal', 'إنشاء صفقة فلاش جديدة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2927', 'sa', 'ffffff', '#FFFFFF', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2928', 'sa', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'تظهر هذه الصورة كبانر غلاف في صفحة تفاصيل صفقة فلاش.', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2929', 'sa', 'flash_deal_has_been_inserted_successfully', 'تم إدراج عرض الفلاش بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2930', 'sa', 'flash_deal_status_updated_successfully', 'تم تحديث حالة صفقة الفلاش بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2931', 'sa', 'flash_deal_has_been_updated_successfully', 'تم تحديث صفقة الفلاش بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2932', 'sa', 'update_language_info', 'تحديث معلومات اللغة', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2933', 'sa', 'language_has_been_updated_successfully', 'تم تحديث اللغة بنجاح', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2934', 'sa', 'type_key__enter', 'اكتب مفتاح وأدخل', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2935', 'sa', 'translations_updated_for_', 'تم تحديث الترجمات لـ', '2021-02-09 12:18:50', '2021-09-20 12:59:15'),
('2936', 'en', 'language_has_been_inserted_successfully', 'Language has been inserted successfully', '2021-02-09 12:24:07', '2021-09-20 12:59:15'),
('2937', 'es', 'all_category', 'Todas las categorías', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2938', 'es', 'all', 'Todos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2939', 'es', 'flash_sale', 'Venta express', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2940', 'es', 'view_more', 'Ver más', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2941', 'es', 'add_to_wishlist', 'Añadir a la lista de deseos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2942', 'es', 'add_to_compare', 'Añadir a comparar', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2943', 'es', 'add_to_cart', 'Añadir a la cesta', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2944', 'es', 'club_point', 'Punto Club', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2945', 'es', 'classified_ads', 'Anuncios clasificados', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2946', 'es', 'used', 'Usado', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2947', 'es', 'top_10_categories', '10 categorías principales', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2948', 'es', 'view_all_categories', 'Ver todas las categorías', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2949', 'es', 'top_10_brands', 'Las 10 mejores marcas', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2950', 'es', 'view_all_brands', 'Ver todas las marcas', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2951', 'es', 'terms__conditions', 'Términos y condiciones', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2952', 'es', 'best_selling', 'Más vendido', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2953', 'es', 'top_20', 'Top 20', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2954', 'es', 'featured_products', 'Productos Destacados', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2955', 'es', 'best_sellers', 'Más vendidos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2956', 'es', 'visit_store', 'Visita la tienda', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2957', 'es', 'popular_suggestions', 'Sugerencias populares', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2958', 'es', 'category_suggestions', 'Sugerencias de categoría', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2959', 'es', 'automobile__motorcycle', 'Automóvil y motocicleta', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2960', 'es', 'price_range', 'Rango de precios', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2961', 'es', 'filter_by_color', 'Filtrar por color', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2962', 'es', 'home', 'Hogar', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2963', 'es', 'newest', 'El más nuevo', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2964', 'es', 'oldest', 'Más antiguo', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2965', 'es', 'price_low_to_high', 'Precios de barato a caro', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2966', 'es', 'price_high_to_low', 'Precio de mayor a menor', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2967', 'es', 'brands', 'Marcas', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2968', 'es', 'all_brands', 'Todas las marcas', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2969', 'es', 'all_sellers', 'Todos los vendedores', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2970', 'es', 'inhouse_product', 'Producto interno', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2971', 'es', 'message_seller', 'Vendedor de mensajes', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2972', 'es', 'price', 'Precio', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2973', 'es', 'discount_price', 'Precio de descuento', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2974', 'es', 'color', 'Color', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2975', 'es', 'quantity', 'Cantidad', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2976', 'es', 'available', 'disponible', '2021-02-09 12:25:44', '2021-02-09 12:25:44'),
('2977', 'es', 'total_price', 'Precio total', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2978', 'es', 'out_of_stock', 'Agotado', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2979', 'es', 'refund', 'Reembolso', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2980', 'es', 'share', 'Compartir', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2981', 'es', 'sold_by', 'Vendido por', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2982', 'es', 'customer_reviews', 'Valoración de los clientes', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2983', 'es', 'top_selling_products', 'Productos más vendidos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2984', 'es', 'description', 'Descripción', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2985', 'es', 'video', 'Vídeo', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2986', 'es', 'reviews', 'Reseñas', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2987', 'es', 'download', 'Descargar', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2988', 'es', 'there_have_been_no_reviews_for_this_product_yet', 'Todavía no ha habido reseñas para este producto.', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2989', 'es', 'related_products', 'Productos relacionados', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2990', 'es', 'any_query_about_this_product', 'Cualquier consulta sobre este producto', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2991', 'es', 'product_name', 'nombre del producto', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2992', 'es', 'your_question', 'Tu pregunta', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2993', 'es', 'send', 'Enviar', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2994', 'es', 'use_country_code_before_number', 'Use el código de país antes del número', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2995', 'es', 'remember_me', 'Recuérdame', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2996', 'es', 'dont_have_an_account', '¿No tienes una cuenta?', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2997', 'es', 'register_now', 'Regístrate ahora', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2998', 'es', 'or_login_with', 'O inicie sesión con', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('2999', 'es', 'oops', 'Ups ..', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3000', 'es', 'this_item_is_out_of_stock', '¡Este artículo no está en inventario!', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3001', 'es', 'back_to_shopping', 'De vuelta a las compras', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3002', 'es', 'login_to_your_account', 'Ingrese a su cuenta.', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3003', 'es', 'purchase_history', 'Historial de compras', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3004', 'es', 'new', 'Nuevo', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3005', 'es', 'downloads', 'Descargas', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3006', 'es', 'sent_refund_request', 'Solicitud de reembolso enviada', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3007', 'es', 'product_bulk_upload', 'Carga masiva de productos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3008', 'es', 'orders', 'Pedidos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3009', 'es', 'recieved_refund_request', 'Solicitud de reembolso recibida', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3010', 'es', 'shop_setting', 'Configuración de la tienda', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3011', 'es', 'payment_history', 'historial de pagos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3012', 'es', 'money_withdraw', 'Retirar dinero', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3013', 'es', 'conversations', 'Conversaciones', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3014', 'es', 'my_wallet', 'Mi billetera', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3015', 'es', 'earning_points', 'Ganar puntos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3016', 'es', 'support_ticket', 'Ticket de soporte', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3017', 'es', 'manage_profile', 'Administrar perfil', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3018', 'es', 'sold_amount', 'Cantidad vendida', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3019', 'es', 'your_sold_amount_current_month', 'Su cantidad vendida (mes actual)', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3020', 'es', 'total_sold', 'Total vendido', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3021', 'es', 'last_month_sold', 'Último mes vendido', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3022', 'es', 'total_sale', 'Venta total', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3023', 'es', 'total_earnings', 'Ganancias Totales', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3024', 'es', 'successful_orders', 'Órdenes exitosas', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3025', 'es', 'total_orders', 'Pedidos totales', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3026', 'es', 'pending_orders', 'Ordenes pendientes', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3027', 'es', 'cancelled_orders', 'Pedidos cancelados', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3028', 'es', 'product', 'Producto', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3029', 'es', 'purchased_package', 'Paquete comprado', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3030', 'es', 'package_not_found', 'Paquete no encontrado', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3031', 'es', 'upgrade_package', 'Paquete de actualización', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3032', 'es', 'shop', 'tienda', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3033', 'es', 'manage__organize_your_shop', 'Administra y organiza tu tienda', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3034', 'es', 'go_to_setting', 'Ir a configuración', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3035', 'es', 'payment', 'Pago', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3036', 'es', 'configure_your_payment_method', 'Configura tu método de pago', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3037', 'es', 'my_panel', 'Mi panel', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3038', 'es', 'item_has_been_added_to_wishlist', 'El artículo ha sido agregado a la lista de deseos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3039', 'es', 'my_points', 'Mis puntos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3040', 'es', '_points', 'Puntos', '2021-02-09 12:25:44', '2021-09-20 12:59:15'),
('3041', 'es', 'wallet_money', 'Monedero de dinero', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3042', 'es', 'exchange_rate', 'Tipo de cambio', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3043', 'es', 'point_earning_history', 'Historial de obtención de puntos', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3044', 'es', 'date', 'Fecha', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3045', 'es', 'points', 'Puntos', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3046', 'es', 'converted', 'Convertido', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3047', 'es', 'action', 'Acción', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3048', 'es', 'no_history_found', 'No se encontró historial.', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3049', 'es', 'convert_has_been_done_successfully_check_your_wallets', 'La conversión se ha realizado correctamente. Compruebe sus carteras.', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3050', 'es', 'something_went_wrong', 'Algo salió mal', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3051', 'es', 'remaining_uploads', 'Cargas restantes', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3052', 'es', 'no_package_found', 'Ningún paquete encontrado', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3053', 'es', 'search_product', 'Buscar producto', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3054', 'es', 'name', 'Nombre', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3055', 'es', 'current_qty', 'Cantidad actual', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3056', 'es', 'base_price', 'Precio base', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3057', 'es', 'published', 'Publicado', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3058', 'es', 'featured', 'Destacados', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3059', 'es', 'options', 'Opciones', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3060', 'es', 'edit', 'Editar', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3061', 'es', 'duplicate', 'Duplicar', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3062', 'es', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Descargue el archivo esqueleto y rellénelo con datos.', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3063', 'es', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Puede descargar el archivo de ejemplo para comprender cómo se deben completar los datos.', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3064', 'es', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Una vez que haya descargado y llenado el archivo esqueleto, cárguelo en el formulario a continuación y envíelo.', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3065', 'es', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Después de cargar productos, debe editarlos y establecer imágenes y opciones de productos.', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3066', 'es', 'download_csv', 'Descarga CSV', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3067', 'es', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. La categoría, subcategoría, sub subcategoría y marca deben estar en ID numéricos.', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3068', 'es', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Puede descargar el pdf para obtener Categoría, Subcategoría, Sub Subcategoría y Identificación de marca.', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3069', 'es', 'download_category', 'Categoría de descarga', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3070', 'es', 'download_sub_category', 'Descargar subcategoría', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3071', 'es', 'download_sub_sub_category', 'Descargar sub categoría', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3072', 'es', 'download_brand', 'Descargar marca', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3073', 'es', 'upload_csv_file', 'Subir archivo CSV', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3074', 'es', 'csv', 'CSV', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3075', 'es', 'choose_csv_file', 'Elija archivo CSV', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3076', 'es', 'upload', 'Subir', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3077', 'es', 'add_new_digital_product', 'Agregar nuevo producto digital', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3078', 'es', 'available_status', 'Estado disponible', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3079', 'es', 'admin_status', 'Estado de administrador', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3080', 'es', 'pending_balance', 'Balance pendiente', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3081', 'es', 'send_withdraw_request', 'Enviar solicitud de retiro', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3082', 'es', 'withdraw_request_history', 'Retirar historial de solicitudes', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3083', 'es', 'amount', 'Cantidad', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3084', 'es', 'status', 'Estado', '2021-02-09 12:25:45', '2021-09-20 12:59:15'),
('3085', 'es', 'message', 'Mensaje', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3086', 'es', 'send_a_withdraw_request', 'Enviar una solicitud de retiro', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3087', 'es', 'basic_info', 'Información básica', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3088', 'es', 'your_phone', 'Su teléfono', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3089', 'es', 'photo', 'Foto', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3090', 'es', 'browse', 'Vistazo', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3091', 'es', 'your_password', 'Tu contraseña', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3092', 'es', 'new_password', 'Nueva contraseña', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3093', 'es', 'confirm_password', 'confirmar Contraseña', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3094', 'es', 'add_new_address', 'Agregar nueva dirección', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3095', 'es', 'payment_setting', 'Configuración de pago', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3096', 'es', 'cash_payment', 'Pago en efectivo', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3097', 'es', 'bank_payment', 'Pago bancario', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3098', 'es', 'bank_name', 'Nombre del banco', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3099', 'es', 'bank_account_name', 'Nombre de la cuenta bancaria', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3100', 'es', 'bank_account_number', 'Número de cuenta bancaria', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3101', 'es', 'bank_routing_number', 'Número de ruta bancaria', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3102', 'es', 'update_profile', 'Actualización del perfil', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3103', 'es', 'change_your_email', 'Cambia tu correo electrónico', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3104', 'es', 'your_email', 'Tu correo electrónico', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3105', 'es', 'sending_email', 'Enviando correo electrónico ...', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3106', 'es', 'verify', 'Verificar', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3107', 'es', 'update_email', 'Actualizar correo electrónico', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3108', 'es', 'new_address', 'Nueva direccion', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3109', 'es', 'your_address', 'Su dirección', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3110', 'es', 'country', 'País', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3111', 'es', 'select_your_country', 'Selecciona tu pais', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3112', 'es', 'city', 'Ciudad', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3113', 'es', 'your_city', 'Tu ciudad', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3114', 'es', 'your_postal_code', 'Tu código postal', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3115', 'es', '880', '+880', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3116', 'es', 'save', 'Salvar', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3117', 'es', 'received_refund_request', 'Solicitud de reembolso recibida', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3118', 'es', 'delete_confirmation', 'Eliminar confirmación', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3119', 'es', 'are_you_sure_to_delete_this', '¿Estás seguro de eliminar esto?', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3120', 'es', 'premium_packages_for_sellers', 'Paquetes premium para vendedores', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3121', 'es', 'product_upload', 'Carga de producto', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3122', 'es', 'digital_product_upload', 'Carga de productos digitales', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3123', 'es', 'purchase_package', 'Paquete de compra', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3124', 'es', 'select_payment_type', 'Seleccione el tipo de pago', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3125', 'es', 'payment_type', 'Tipo de pago', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3126', 'es', 'select_one', 'Seleccione uno', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3127', 'es', 'online_payment', 'Pago en línea', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3128', 'es', 'offline_payment', 'Pago fuera de línea', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3129', 'es', 'purchase_your_package', 'Compra tu paquete', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3130', 'es', 'paypal', 'Paypal', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3131', 'es', 'stripe', 'Raya', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3132', 'es', 'sslcommerz', 'sslcommerz', '2021-02-09 12:25:45', '2021-02-09 12:25:45'),
('3133', 'es', 'confirm', 'Confirmar', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3134', 'es', 'offline_package_payment', 'Pago del paquete sin conexión', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3135', 'es', 'transaction_id', 'ID de transacción', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3136', 'es', 'choose_image', 'Elegir imagen', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3137', 'es', 'code', 'Código', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3138', 'es', 'delivery_status', 'Estado de entrega', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3139', 'es', 'payment_status', 'Estado de pago', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3140', 'es', 'paid', 'Pagado', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3141', 'es', 'order_details', 'Detalles del pedido', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3142', 'es', 'download_invoice', 'Descargar factura', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3143', 'es', 'unpaid', 'No pagado', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3144', 'es', 'order_placed', 'Pedido realizado', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3145', 'es', 'confirmed', 'Confirmado', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3146', 'es', 'on_delivery', 'En la entrega', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3147', 'es', 'delivered', 'Entregado', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3148', 'es', 'order_summary', 'Resumen del pedido', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3149', 'es', 'order_code', 'Código de orden', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3150', 'es', 'customer', 'Cliente', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3151', 'es', 'total_order_amount', 'Importe total del pedido', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3152', 'es', 'shipping_metdod', 'Envío metdod', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3153', 'es', 'flat_shipping_rate', 'Cargo de envío fijo', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3154', 'es', 'payment_metdod', 'Pago metdod', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3155', 'es', 'variation', 'Variación', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3156', 'es', 'delivery_type', 'tipo de entrega', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3157', 'es', 'home_delivery', 'Entrega a domicilio', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3158', 'es', 'order_ammount', 'Orden Ammount', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3159', 'es', 'subtotal', 'Total parcial', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3160', 'es', 'shipping', 'Envío', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3161', 'es', 'coupon_discount', 'Cupón de descuento', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3162', 'es', 'na', 'N / A', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3163', 'es', 'in_stock', 'En stock', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3164', 'es', 'buy_now', 'Compra ahora', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3165', 'es', 'item_added_to_your_cart', 'Artículo añadido a tu carrito!', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3166', 'es', 'proceed_to_checkout', 'Pasar por la caja', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3167', 'es', 'cart_items', 'Artículos del carrito', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3168', 'es', '1_my_cart', '1. Mi carrito', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3169', 'es', 'view_cart', 'Ver carrito', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3170', 'es', '2_shipping_info', '2. Información de envío', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3171', 'es', 'checkout', 'Echa un vistazo', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3172', 'es', '3_delivery_info', '3. Información de entrega', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3173', 'es', '4_payment', '4. Pago', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3174', 'es', '5_confirmation', '5. Confirmación', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3175', 'es', 'remove', 'Eliminar', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3176', 'es', 'return_to_shop', 'Volver a la tienda', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3177', 'es', 'continue_to_shipping', 'Continuar con el envío', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3178', 'es', 'or', 'O', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3179', 'es', 'guest_checkout', 'Pago como invitado', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3180', 'es', 'continue_to_delivery_info', 'Continuar con la información de entrega', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3181', 'es', 'postal_code', 'Código postal', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3182', 'es', 'choose_delivery_type', 'Elija el tipo de entrega', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3183', 'es', 'local_pickup', 'Recogida local', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3184', 'es', 'select_your_nearest_pickup_point', 'Seleccione su punto de recogida más cercano', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3185', 'es', 'continue_to_payment', 'Continuar con el pago', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3186', 'es', 'select_a_payment_option', 'Seleccione una opción de pago', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3187', 'es', 'razorpay', 'Razorpay', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3188', 'es', 'paystack', 'Pila de pagos', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3189', 'es', 'voguepay', 'VoguePay', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3190', 'es', 'payhere', 'Pague aquí', '2021-02-09 12:25:45', '2021-02-09 12:25:45'),
('3191', 'es', 'ngenius', 'genio', '2021-02-09 12:25:45', '2021-02-09 12:25:45'),
('3192', 'es', 'paytm', 'Paytm', '2021-02-09 12:25:45', '2021-09-20 12:59:16'),
('3193', 'es', 'cash_on_delivery', 'Contra reembolso', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3194', 'es', 'your_wallet_balance_', 'El saldo de su billetera:', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3195', 'es', 'insufficient_balance', 'Saldo insuficiente', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3196', 'es', 'i_agree_to_the', 'Estoy de acuerdo con la', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3197', 'es', 'complete_order', 'Orden completa', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3198', 'es', 'summary', 'Resumen', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3199', 'es', 'items', 'Artículos', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3200', 'es', 'total_club_point', 'Puntos totales del club', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3201', 'es', 'total_shipping', 'Envío total', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3202', 'es', 'have_coupon_code_enter_here', '¿Tiene un código de cupón? Entre aquí', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3203', 'es', 'apply', 'Aplicar', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3204', 'es', 'you_need_to_agree_with_our_policies', 'Debes estar de acuerdo con nuestras políticas', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3205', 'es', 'forgot_password', 'Se te olvidó tu contraseña', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3206', 'es', 'seo_setting', 'Configuración de SEO', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3207', 'es', 'system_update', 'Actualizacion del sistema', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3208', 'es', 'add_new_payment_method', 'Agregar nuevo método de pago', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3209', 'es', 'manual_payment_method', 'Método de pago manual', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3210', 'es', 'heading', 'Bóveda', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3211', 'es', 'logo', 'Logo', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3212', 'es', 'manual_payment_information', 'Información de pago manual', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3213', 'es', 'type', 'Tipo', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3214', 'es', 'custom_payment', 'Pago personalizado', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3215', 'es', 'check_payment', 'Pago con cheque', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3216', 'es', 'checkout_thumbnail', 'Miniatura de pago', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3217', 'es', 'payment_instruction', 'Instrucciones de pago', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3218', 'es', 'bank_information', 'Información bancaria', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3219', 'es', 'select_file', 'Seleccione Archivo', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3220', 'es', 'upload_new', 'Subir nuevo', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3221', 'es', 'sort_by_newest', 'Ordenar por más reciente', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3222', 'es', 'sort_by_oldest', 'Ordenar por más antiguo', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3223', 'es', 'sort_by_smallest', 'Ordenar por más pequeño', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3224', 'es', 'sort_by_largest', 'Ordenar por mayor', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3225', 'es', 'selected_only', 'Solo seleccionado', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3226', 'es', 'no_files_found', 'No se encontraron archivos', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3227', 'es', '0_file_selected', '0 Archivo seleccionado', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3228', 'es', 'clear', 'Claro', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3229', 'es', 'prev', 'Anterior', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3230', 'es', 'next', 'Siguiente', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3231', 'es', 'add_files', 'Agregar archivos', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3232', 'es', 'method_has_been_inserted_successfully', 'El método se ha insertado correctamente', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3233', 'es', 'order_date', 'Fecha de orden', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3234', 'es', 'bill_to', 'Cobrar a', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3235', 'es', 'sub_total', 'Sub total', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3236', 'es', 'total_tax', 'Total impuestos', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3237', 'es', 'grand_total', 'Gran total', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3238', 'es', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Su pedido se ha realizado correctamente. Envíe la información de pago del historial de compras', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3239', 'es', 'thank_you_for_your_order', '¡Gracias por su orden!', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3240', 'es', 'order_code', 'Código de orden:', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3241', 'es', 'a_copy_or_your_order_summary_has_been_sent_to', 'Se ha enviado una copia o el resumen de su pedido a', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3242', 'es', 'make_payment', 'Hacer el pago', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3243', 'es', 'payment_screenshot', 'Captura de pantalla de pago', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3244', 'es', 'paypal_credential', 'Credencial Paypal', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3245', 'es', 'paypal_client_id', 'Identificación de cliente de Paypal', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3246', 'es', 'paypal_client_secret', 'Secreto del cliente de Paypal', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3247', 'es', 'paypal_sandbox_mode', 'Modo de caja de arena de Paypal', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3248', 'es', 'sslcommerz_credential', 'Credencial Sslcommerz', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3249', 'es', 'sslcz_store_id', 'ID de tienda Sslcz', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3250', 'es', 'sslcz_store_password', 'Contraseña de la tienda sslcz', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3251', 'es', 'sslcommerz_sandbox_mode', 'Modo Sandbox de Sslcommerz', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3252', 'es', 'stripe_credential', 'Credencial de banda', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3253', 'es', 'stripe_key', 'LLAVE RAYA', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3254', 'es', 'stripe_secret', 'SECRETO DE RAYAS', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3255', 'es', 'razorpay_credential', 'Credencial RazorPay', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3256', 'es', 'razor_key', 'LLAVE DE RAZOR', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3257', 'es', 'razor_secret', 'EL SECRETO DE LA NAVAJA', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3258', 'es', 'instamojo_credential', 'Credencial de Instamojo', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3259', 'es', 'api_key', 'CLAVE API', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3260', 'es', 'im_api_key', 'CLAVE API IM', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3261', 'es', 'auth_token', 'AUTH TOKEN', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3262', 'es', 'im_auth_token', 'SOY FICHA AUTOMÁTICA', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3263', 'es', 'instamojo_sandbox_mode', 'Modo Sandbox de Instamojo', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3264', 'es', 'paystack_credential', 'Credencial PayStack', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3265', 'es', 'public_key', 'LLAVE PÚBLICA', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3266', 'es', 'secret_key', 'LLAVE SECRETA', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3267', 'es', 'merchant_email', 'CORREO ELECTRÓNICO DEL COMERCIANTE', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3268', 'es', 'voguepay_credential', 'Credencial de VoguePay', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3269', 'es', 'merchant_id', 'IDENTIFICACIÓN DEL COMERCIANTE', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3270', 'es', 'sandbox_mode', 'modo sandbox', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3271', 'es', 'payhere_credential', 'Credencial Payhere', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3272', 'es', 'payhere_merchant_id', 'ID DE COMERCIANTE DE PAYHERE', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3273', 'es', 'payhere_secret', 'PAYHERE SECRET', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3274', 'es', 'payhere_currency', 'PAYHERE MONEDA', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3275', 'es', 'payhere_sandbox_mode', 'Modo Sandbox de Payhere', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3276', 'es', 'ngenius_credential', 'Credencial Ngenius', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3277', 'es', 'ngenius_outlet_id', 'ID DE SALIDA NGENIUS', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3278', 'es', 'ngenius_api_key', 'CLAVE API NGENIUS', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3279', 'es', 'ngenius_currency', 'MONEDA NGENIUS', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3280', 'es', 'mpesa_credential', 'Credencial Mpesa', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3281', 'es', 'mpesa_consumer_key', 'CLAVE DE CONSUMIDOR MPESA', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3282', 'es', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3283', 'es', 'mpesa_consumer_secret', 'SECRETO DEL CONSUMIDOR DE MPESA', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3284', 'es', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3285', 'es', 'mpesa_short_code', 'CÓDIGO CORTO MPESA', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3286', 'es', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3287', 'es', 'mpesa_sandbox_activation', 'ACTIVACIÓN MPESA SANDBOX', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3288', 'es', 'flutterwave_credential', 'Credencial de Flutterwave', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3289', 'es', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3290', 'es', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3291', 'es', 'rave_title', 'RAVE_TITLE', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3292', 'es', 'stagin_activation', 'ACTIVACIÓN DE STAGIN', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3293', 'es', 'all_product', 'Todo el producto', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3294', 'es', 'sort_by', 'Ordenar por', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3295', 'es', 'rating_high__low', 'Calificación (alta> baja)', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3296', 'es', 'rating_low__high', 'Calificación (baja> alta)', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3297', 'es', 'num_of_sale_high__low', 'Número de venta (alto> bajo)', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3298', 'es', 'num_of_sale_low__high', 'Número de venta (bajo> alto)', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3299', 'es', 'base_price_high__low', 'Precio base (alto> bajo)', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3300', 'es', 'base_price_low__high', 'Precio base (bajo> alto)', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3301', 'es', 'type__enter', 'Escriba e ingrese', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3302', 'es', 'added_by', 'Añadido por', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3303', 'es', 'num_of_sale', 'Número de venta', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3304', 'es', 'total_stock', 'Stock total', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3305', 'es', 'todays_deal', 'Oferta de hoy', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3306', 'es', 'rating', 'Clasificación', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3307', 'es', 'times', 'veces', '2021-02-09 12:25:46', '2021-02-09 12:25:46'),
('3308', 'es', 'add_nerw_product', 'Agregar producto Nerw', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3309', 'es', 'product_information', 'Información del Producto', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3310', 'es', 'unit', 'Unidad', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3311', 'es', 'unit_eg_kg_pc_etc', 'Unidad (por ejemplo, KG, Pc, etc.)', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3312', 'es', 'minimum_qty', 'Cantidad mínima', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3313', 'es', 'tags', 'Etiquetas', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3314', 'es', 'type_and_hit_enter_to_add_a_tag', 'Escriba y presione enter para agregar una etiqueta', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3315', 'es', 'barcode', 'Código de barras', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3316', 'es', 'refundable', 'Reintegrable', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3317', 'es', 'product_images', 'Imágenes del producto', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3318', 'es', 'gallery_images', 'Galería de imágenes', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3319', 'es', 'todays_deal_updated_successfully', 'Oferta de hoy actualizada correctamente', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3320', 'es', 'published_products_updated_successfully', 'Productos publicados actualizados con éxito', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3321', 'es', 'thumbnail_image', 'Imagen en miniatura', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3322', 'es', 'featured_products_updated_successfully', 'Productos destacados actualizados con éxito', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3323', 'es', 'product_videos', 'Vídeos de productos', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3324', 'es', 'video_provider', 'Proveedor de video', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3325', 'es', 'youtube', 'Youtube', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3326', 'es', 'dailymotion', 'Dailymotion', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3327', 'es', 'vimeo', 'Vimeo', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3328', 'es', 'video_link', 'Enlace de video', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3329', 'es', 'product_variation', 'Variación de producto', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3330', 'es', 'colors', 'Colores', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3331', 'es', 'attributes', 'Atributos', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3332', 'es', 'choose_attributes', 'Elija atributos', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3333', 'es', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Elija los atributos de este producto y luego ingrese los valores de cada atributo', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3334', 'es', 'product_price__stock', 'Precio del producto + stock', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3335', 'es', 'unit_price', 'Precio unitario', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3336', 'es', 'purchase_price', 'Precio de compra', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3337', 'es', 'flat', 'Plano', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3338', 'es', 'percent', 'Por ciento', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3339', 'es', 'discount', 'Descuento', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3340', 'es', 'product_description', 'Descripción del producto', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3341', 'es', 'product_shipping_cost', 'Costo de envío del producto', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3342', 'es', 'free_shipping', 'Envío gratis', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3343', 'es', 'flat_rate', 'Tarifa plana', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3344', 'es', 'shipping_cost', 'Costo de envío', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3345', 'es', 'pdf_specification', 'Especificación PDF', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3346', 'es', 'seo_meta_tags', 'Metaetiquetas SEO', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3347', 'es', 'meta_title', 'Meta título', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3348', 'es', 'meta_image', 'Meta imagen', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3349', 'es', 'choice_title', 'Título de elección', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3350', 'es', 'enter_choice_values', 'Ingrese valores de elección', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3351', 'es', 'all_categories', 'Todas las categorias', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3352', 'es', 'add_new_category', 'Añadir nueva categoria', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3353', 'es', 'type_name__enter', 'Escriba el nombre e ingrese', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3354', 'es', 'banner', 'Bandera', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3355', 'es', 'commission', 'Comisión', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3356', 'es', 'icon', 'icono', '2021-02-09 12:25:46', '2021-02-09 12:25:46'),
('3357', 'es', 'featured_categories_updated_successfully', 'Categorías destacadas actualizadas con éxito', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3358', 'es', 'hot', 'Caliente', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3359', 'es', 'filter_by_payment_status', 'Filtrar por estado de pago', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3360', 'es', 'unpaid', 'No pagado', '2021-02-09 12:25:46', '2021-09-20 12:59:16'),
('3361', 'es', 'filter_by_deliver_status', 'Filtrar por estado de entrega', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3362', 'es', 'pending', 'Pendiente', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3363', 'es', 'type_order_code__hit_enter', 'Escriba el código de pedido y presione Enter', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3364', 'es', 'num_of_products', 'Num. de productos', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3365', 'es', 'walk_in_customer', 'Cliente sin cita', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3366', 'es', 'qty', 'CANTIDAD', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3367', 'es', 'without_shipping_charge', 'Sin gastos de envío', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3368', 'es', 'with_shipping_charge', 'Con cargo de envío', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3369', 'es', 'pay_with_cash', 'Pagar en efectivo', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3370', 'es', 'shipping_address', 'Dirección de Envío', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3371', 'es', 'close', 'Cerrar', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3372', 'es', 'select_country', 'Seleccionar país', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3373', 'es', 'order_confirmation', 'Confirmación del pedido', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3374', 'es', 'are_you_sure_to_confirm_this_order', '¿Está seguro de confirmar este pedido?', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3375', 'es', 'comfirm_order', 'Confirmar orden', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3376', 'es', 'personal_info', 'Información personal', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3377', 'es', 'repeat_password', 'Repita la contraseña', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3378', 'es', 'shop_name', 'Nombre de tienda', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3379', 'es', 'register_your_shop', 'Registre su tienda', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3380', 'es', 'affiliate_informations', 'Información de afiliados', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3381', 'es', 'affiliate', 'Afiliado', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3382', 'es', 'user_info', 'Información de usuario', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3383', 'es', 'installed_addon', 'Complemento instalado', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3384', 'es', 'available_addon', 'Complemento disponible', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3385', 'es', 'install_new_addon', 'Instalar nuevo complemento', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3386', 'es', 'version', 'Versión', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3387', 'es', 'activated', 'Activado', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3388', 'es', 'deactivated', 'Desactivado', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3389', 'es', 'activate_otp', 'Activar OTP', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3390', 'es', 'otp_will_be_used_for', 'OTP se utilizará para', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3391', 'es', 'settings_updated_successfully', 'Configuración actualizada correctamente', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3392', 'es', 'product_owner', 'Dueño del producto', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3393', 'es', 'point', 'Punto', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3394', 'es', 'set_point_for_product_within_a_range', 'Punto de ajuste para producto dentro de un rango', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3395', 'es', 'set_point_for_multiple_products', 'Punto de ajuste para varios productos', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3396', 'es', 'min_price', 'Precio min', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3397', 'es', 'max_price', 'Precio máximo', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3398', 'es', 'set_point_for_all_products', 'Punto de ajuste para todos los productos', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3399', 'es', 'set_point_for_', 'Punto de ajuste para', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3400', 'es', 'convert_status', 'Convertir estado', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3401', 'es', 'earned_at', 'Ganado en', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3402', 'es', 'seller_based_selling_report', 'Informe de ventas basado en el vendedor', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3403', 'es', 'sort_by_verificarion_status', 'Ordenar por estado de verificación', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3404', 'es', 'approved', 'Aprobado', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3405', 'es', 'non_approved', 'No aprovado', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3406', 'es', 'filter', 'Filtrar', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3407', 'es', 'seller_name', 'Nombre del vendedor', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3408', 'es', 'number_of_product_sale', 'Número de venta de productos', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3409', 'es', 'order_amount', 'Total de la orden', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3410', 'es', 'facebook_chat_setting', 'Configuración de chat de Facebook', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3411', 'es', 'facebook_page_id', 'ID de página de Facebook', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3412', 'es', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Tenga cuidado al configurar el chat de Facebook. Para una configuración incorrecta, no obtendrá el icono de Messenger en su sitio de usuario final.', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3413', 'es', 'login_into_your_facebook_page', 'Inicie sesión en su página de Facebook', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3414', 'es', 'find_the_about_option_of_your_facebook_page', 'Encuentra la opción Acerca de en tu página de Facebook.', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3415', 'es', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'En la parte inferior, puede encontrar el \\ \"ID de página de Facebook \\\"', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3416', 'es', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Vaya a Configuración de su página y busque la opción de \\ \"Mensajería avanzada \\\"', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3417', 'es', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Desplácese hacia abajo en esa página y obtendrá \\ \"dominio en la lista blanca \\\"', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3418', 'es', 'set_your_website_domain_name', 'Configure el nombre de dominio de su sitio web', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3419', 'es', 'google_recaptcha_setting', 'Configuración de reCAPTCHA de Google', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3420', 'es', 'site_key', 'Clave del sitio', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3421', 'es', 'select_shipping_method', 'Seleccione el método de envío', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3422', 'es', 'product_wise_shipping_cost', 'Costo de envío inteligente del producto', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3423', 'es', 'flat_rate_shipping_cost', 'Costo de envío de tarifa plana', '2021-02-09 12:25:47', '2021-09-20 12:59:16'),
('3424', 'es', 'seller_wise_flat_shipping_cost', 'Costo de envío plano sabio del vendedor', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3425', 'es', 'note', 'Nota', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3426', 'es', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Cálculo inteligente del costo de envío del producto: el costo de envío se calcula sumando el costo de envío de cada producto', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3427', 'es', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Cálculo del costo de envío de tarifa plana: la cantidad de productos que compra un cliente, no importa. El costo de envío es fijo', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3428', 'es', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Cálculo del costo de envío fijo para el vendedor: Tarifa fija para cada vendedor. Si un cliente compra 2 productos de dos vendedores, el costo de envío se calcula sumando el costo de envío fijo de cada vendedor', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3429', 'es', 'flat_rate_cost', 'Costo de tarifa plana', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3430', 'es', 'shipping_cost_for_admin_products', 'Costo de envío para productos de administración', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3431', 'es', 'countries', 'Países', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3432', 'es', 'showhide', 'Mostrar ocultar', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3433', 'es', 'country_status_updated_successfully', 'El estado del país se actualizó correctamente', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3434', 'es', 'all_subcategories', 'Todas las subcategorías', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3435', 'es', 'add_new_subcategory', 'Agregar nueva subcategoría', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3436', 'es', 'subcategories', 'Subcategorías', '2021-02-09 12:25:47', '2021-09-20 12:59:17'),
('3437', 'es', 'sub_category_information', 'Información de la subcategoría', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3438', 'es', 'slug', 'Babosa', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3439', 'es', 'all_sub_subcategories', 'Todas las subcategorías', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3440', 'es', 'add_new_sub_subcategory', 'Agregar nueva subcategoría', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3441', 'es', 'subsubcategories', 'Sub-subcategorías', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3442', 'es', 'make_this_default', 'Hacer esto predeterminado', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3443', 'es', 'shops', 'Tiendas', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3444', 'es', 'women_clothing__fashion', 'Ropa de mujer y moda', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3445', 'es', 'cellphones__tabs', 'Teléfonos móviles y pestañas', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3446', 'es', 'welcome_to', 'Bienvenido a', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3447', 'es', 'create_a_new_account', 'Crea una cuenta nueva', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3448', 'es', 'full_name', 'Nombre completo', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3449', 'es', 'password', 'contraseña', '2021-02-09 12:26:37', '2021-02-09 12:26:37'),
('3450', 'es', 'confrim_password', 'Confirmar contraseña', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3451', 'es', 'i_agree_with_the', 'Estoy de acuerdo con el', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3452', 'es', 'terms_and_conditions', 'Términos y condiciones', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3453', 'es', 'register', 'Registrarse', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3454', 'es', 'already_have_an_account', 'Ya tienes una cuenta', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3455', 'es', 'sign_up_with', 'Registrarte con', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3456', 'es', 'i_agree_with_the_terms_and_conditions', 'Estoy de acuerdo con los términos y condiciones', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3457', 'es', 'all_role', 'Todo Rol', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3458', 'es', 'add_new_role', 'Agregar nuevo rol', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3459', 'es', 'roles', 'Roles', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3460', 'es', 'add_new_staffs', 'Agregar personal nuevo', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3461', 'es', 'role', 'Papel', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3462', 'es', 'frontend_website_name', 'Nombre del sitio web de la interfaz', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3463', 'es', 'website_name', 'Nombre del Sitio Web', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3464', 'es', 'site_motto', 'Lema del sitio', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3465', 'es', 'best_ecommerce_website', 'Mejor sitio web de comercio electrónico', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3466', 'es', 'site_icon', 'Icono del sitio', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3467', 'es', 'website_favicon_32x32_png', 'Favicon del sitio web. 32x32 .png', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3468', 'es', 'website_base_color', 'Color base del sitio web', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3469', 'es', 'hex_color_code', 'Código de color hexagonal', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3470', 'es', 'website_base_hover_color', 'Color de desplazamiento base del sitio web', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3471', 'es', 'update', 'Actualizar', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3472', 'es', 'global_seo', 'Global Seo', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3473', 'es', 'meta_description', 'Metadescripción', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3474', 'es', 'keywords', 'Palabras clave', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3475', 'es', 'separate_with_coma', 'Separado con coma', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3476', 'es', 'website_pages', 'Páginas del sitio web', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3477', 'es', 'all_pages', 'Todas las páginas', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3478', 'es', 'add_new_page', 'Agregar nueva página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3479', 'es', 'url', 'URL', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3480', 'es', 'actions', 'Comportamiento', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3481', 'es', 'edit_page_information', 'Editar información de la página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3482', 'es', 'page_content', 'Contenido de página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3483', 'es', 'title', 'Título', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3484', 'es', 'link', 'Enlace', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3485', 'es', 'use_character_number_hypen_only', 'Utilice solo carácter, número, guión', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3486', 'es', 'add_content', 'Agregar contenido', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3487', 'es', 'seo_fields', 'Seo Fields', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3488', 'es', 'update_page', 'Actualizar página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3489', 'es', 'default_language', 'Idioma predeterminado', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3490', 'es', 'add_new_language', 'Agregar nuevo idioma', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3491', 'es', 'rtl', 'RTL', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3492', 'es', 'translation', 'Traducción', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3493', 'es', 'language_information', 'Información del idioma', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3494', 'es', 'save_page', 'Guardar página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3495', 'es', 'home_page_settings', 'Configuración de la página de inicio', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3496', 'es', 'home_slider', 'Control deslizante de inicio', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3497', 'es', 'photos__links', 'Fotos y enlaces', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3498', 'es', 'add_new', 'Agregar nuevo', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3499', 'es', 'home_categories', 'Categorías de inicio', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3500', 'es', 'home_banner_1_max_3', 'Banner de inicio 1 (máximo 3)', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3501', 'es', 'banner__links', 'Banner y enlaces', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3502', 'es', 'home_banner_2_max_3', 'Banner de inicio 2 (máximo 3)', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3503', 'es', 'top_10', 'Top 10', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3504', 'es', 'top_categories_max_10', 'Categorías principales (máximo 10)', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3505', 'es', 'top_brands_max_10', 'Mejores marcas (máximo 10)', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3506', 'es', 'system_name', 'Nombre del sistema', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3507', 'es', 'system_logo__white', 'Logotipo del sistema - Blanco', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3508', 'es', 'choose_files', 'Seleccionar archivos', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3509', 'es', 'will_be_used_in_admin_panel_side_menu', 'Se utilizará en el menú lateral del panel de administración.', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3510', 'es', 'system_logo__black', 'Logotipo del sistema - Negro', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3511', 'es', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Se utilizará en la barra superior del panel de administración en la página de inicio de sesión del administrador + móvil', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3512', 'es', 'system_timezone', 'Zona horaria del sistema', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3513', 'es', 'admin_login_page_background', 'Fondo de la página de inicio de sesión del administrador', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3514', 'es', 'website_header', 'Encabezado del sitio web', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3515', 'es', 'header_setting', 'Configuración de encabezado', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3516', 'es', 'header_logo', 'El logotipo de cabecera', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3517', 'es', 'show_language_switcher', '¿Mostrar selector de idioma?', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3518', 'es', 'show_currency_switcher', '¿Mostrar cambio de moneda?', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3519', 'es', 'enable_stikcy_header', '¿Habilitar encabezado de stikcy?', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3520', 'es', 'website_footer', 'Pie de página del sitio web', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3521', 'es', 'footer_widget', 'Widget de pie de página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3522', 'es', 'about_widget', 'Acerca del widget', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3523', 'es', 'footer_logo', 'Logotipo de pie de página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3524', 'es', 'about_description', 'Acerca de la descripción', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3525', 'es', 'contact_info_widget', 'Widget de información de contacto', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3526', 'es', 'footer_contact_address', 'Dirección de contacto del pie de página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3527', 'es', 'footer_contact_phone', 'Teléfono de contacto de pie de página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3528', 'es', 'footer_contact_email', 'Correo electrónico de contacto de pie de página', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3529', 'es', 'link_widget_one', 'Enlace Widget Uno', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3530', 'es', 'links', 'Enlaces', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3531', 'es', 'footer_bottom', 'Pie de página inferior', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3532', 'es', 'copyright_widget_', 'Widget de derechos de autor', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3533', 'es', 'copyright_text', 'Texto de copyright', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3534', 'es', 'social_link_widget_', 'Widget de enlace social', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3535', 'es', 'show_social_links', '¿Mostrar enlaces sociales?', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3536', 'es', 'social_links', 'vínculos sociales', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3537', 'es', 'payment_methods_widget_', 'Widget de métodos de pago', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3538', 'es', 'rtl_status_updated_successfully', 'El estado de RTL se actualizó correctamente', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3539', 'es', 'language_changed_to_', 'Idioma cambiado a', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3540', 'es', 'inhouse_product_sale_report', 'Informe de venta de productos internos', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3541', 'es', 'sort_by_category', 'Ordenar por categoría', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3542', 'es', 'product_wise_stock_report', 'Informe de stock de producto', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3543', 'es', 'currency_changed_to_', 'Moneda cambiada a', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3544', 'es', 'avatar', 'Avatar', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3545', 'es', 'copy', 'Copiar', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3546', 'es', 'variant', 'Variante', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3547', 'es', 'variant_price', 'Precio Variante', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3548', 'es', 'sku', 'SKU', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3549', 'es', 'key', 'Llave', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3550', 'es', 'value', 'Valor', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3551', 'es', 'copy_translations', 'Copiar traducciones', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3552', 'es', 'all_pickup_points', 'Todos los puntos de recogida', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3553', 'es', 'add_new_pickup_point', 'Agregar nuevo punto de recogida', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3554', 'es', 'manager', 'Gerente', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3555', 'es', 'location', 'Ubicación', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3556', 'es', 'pickup_station_contact', 'Contacto de la estación de recogida', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3557', 'es', 'open', 'Abierto', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3558', 'es', 'pos_activation_for_seller', 'Activación de POS para vendedor', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3559', 'es', 'order_completed_successfully', 'Pedido completado con éxito.', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3560', 'es', 'text_input', 'Entrada de texto', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3561', 'es', 'select', 'Seleccione', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3562', 'es', 'multiple_select', 'Selección múltiple', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3563', 'es', 'radio', 'Radio', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3564', 'es', 'file', 'Archivo', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3565', 'es', 'email_address', 'Dirección de correo electrónico', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3566', 'es', 'verification_info', 'Información de verificación', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3567', 'es', 'approval', 'Aprobación', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3568', 'es', 'due_amount', 'Cantidad debida', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3569', 'es', 'show', 'mostrar', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3570', 'es', 'pay_now', 'Pagar ahora', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3571', 'es', 'affiliate_user_verification', 'Verificación de usuario afiliado', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3572', 'es', 'reject', 'Rechazar', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3573', 'es', 'accept', 'Aceptar', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3574', 'es', 'beauty_health__hair', 'Belleza, salud y cabello', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3575', 'es', 'comparison', 'Comparación', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3576', 'es', 'reset_compare_list', 'Restablecer lista de comparación', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3577', 'es', 'your_comparison_list_is_empty', 'Tu lista de comparación está vacía', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3578', 'es', 'convert_point_to_wallet', 'Convertir punto en billetera', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3579', 'es', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Nota: Primero debe activar la opción de billetera antes de usar el complemento de puntos del club.', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3580', 'es', 'create_an_account', 'Crea una cuenta.', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3581', 'es', 'use_email_instead', 'Utilice el correo electrónico en su lugar', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3582', 'es', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Al registrarse, acepta nuestros términos y condiciones.', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3583', 'es', 'create_account', 'Crear una cuenta', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3584', 'es', 'or_join_with', 'O únete con', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3585', 'es', 'already_have_an_account', '¿Ya tienes una cuenta?', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3586', 'es', 'log_in', 'Iniciar sesión', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3587', 'es', 'computer__accessories', 'Accesorios de computador', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3588', 'es', 'products', 'Producto (s)', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3589', 'es', 'in_your_cart', 'en tu carrito', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3590', 'es', 'in_your_wishlist', 'en tu lista de deseos', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3591', 'es', 'you_ordered', 'usted ordeno', '2021-02-09 12:26:37', '2021-09-20 12:59:17'),
('3592', 'es', 'default_shipping_address', 'Dirección de entrega por defecto', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3593', 'es', 'sports__outdoor', 'Deportes y aire libre', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3594', 'es', 'copied', 'Copiado', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3595', 'es', 'copy_the_promote_link', 'Copiar el enlace de promoción', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3596', 'es', 'write_a_review', 'Escribe una reseña', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3597', 'es', 'your_name', 'Tu nombre', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3598', 'es', 'comment', 'Comentario', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3599', 'es', 'your_review', 'Tu reseña', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3600', 'es', 'submit_review', 'Enviar opinión', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3601', 'es', 'claire_willis', 'Claire Willis', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3602', 'es', 'germaine_greene', 'Germaine Greene', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3603', 'es', 'product_file', 'Archivo de producto', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3604', 'es', 'choose_file', 'Elija el archivo', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3605', 'es', 'type_to_add_a_tag', 'Escribe para agregar una etiqueta', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3606', 'es', 'images', 'Imagenes', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3607', 'es', 'main_images', 'Imágenes principales', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3608', 'es', 'meta_tags', 'Meta etiquetas', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3609', 'es', 'digital_product_has_been_inserted_successfully', 'El producto digital se ha insertado correctamente', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3610', 'es', 'edit_digital_product', 'Editar producto digital', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3611', 'es', 'select_an_option', 'Seleccione una opción', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3612', 'es', 'tax', 'impuesto', '2021-02-09 12:26:38', '2021-02-09 12:26:38'),
('3613', 'es', 'any_question_about_this_product', '¿Alguna pregunta sobre este producto?', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3614', 'es', 'sign_in', 'Registrarse', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3615', 'es', 'login_with_google', 'Iniciar sesión con Google', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3616', 'es', 'login_with_facebook', 'Iniciar sesión con Facebook', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3617', 'es', 'login_with_twitter', 'Iniciar sesión con Twitter', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3618', 'es', 'click_to_show_phone_number', 'Haga clic para mostrar el número de teléfono', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3619', 'es', 'other_ads_of', 'Otros anuncios de', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3620', 'es', 'store_home', 'Tienda del hogar', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3621', 'es', 'top_selling', 'Más vendidos', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3622', 'es', 'shop_settings', 'Configuración de la tienda', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3623', 'es', 'visit_shop', 'Visitar tienda', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3624', 'es', 'pickup_points', 'Puntos de recogida', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3625', 'es', 'select_pickup_point', 'Seleccionar punto de recogida', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3626', 'es', 'slider_settings', 'Configuración del control deslizante', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3627', 'es', 'social_media_link', 'Enlace de redes sociales', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3628', 'es', 'facebook', 'Facebook', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3629', 'es', 'twitter', 'Gorjeo', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3630', 'es', 'google', 'Google', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3631', 'es', 'new_arrival_products', 'Nuevos productos de llegada', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3632', 'es', 'check_your_order_status', 'Verifique el estado de su pedido', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3633', 'es', 'shipping_method', 'Método de envío', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3634', 'es', 'shipped_by', 'Enviado por', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3635', 'es', 'image', 'Imagen', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3636', 'es', 'sub_sub_category', 'Sub Subcategoría', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3637', 'es', 'inhouse_products', 'Productos internos', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3638', 'es', 'forgot_password', '¿Has olvidado tu contraseña?', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3639', 'es', 'enter_your_email_address_to_recover_your_password', 'Ingrese su dirección de correo electrónico para recuperar su contraseña.', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3640', 'es', 'email_or_phone', 'Email o teléfono', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3641', 'es', 'send_password_reset_link', 'Enviar enlace de restablecimiento de contraseña', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3642', 'es', 'back_to_login', 'Atrás para iniciar sesión', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3643', 'es', 'index', 'índice', '2021-02-09 12:26:38', '2021-02-09 12:26:38'),
('3644', 'es', 'download_your_product', 'Descargue su producto', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3645', 'es', 'option', 'Opción', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3646', 'es', 'applied_refund_request', 'Solicitud de reembolso aplicada', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3647', 'es', 'item_has_been_renoved_from_wishlist', 'El artículo ha sido renovado de la lista de deseos', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3648', 'es', 'bulk_products_upload', 'Carga masiva de productos', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3649', 'es', 'upload_csv', 'Subir CSV', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3650', 'es', 'create_a_ticket', 'Crear un ticket', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3651', 'es', 'tickets', 'Entradas', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3652', 'es', 'ticket_id', 'Identificación de entradas', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3653', 'es', 'sending_date', 'Fecha de envío', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3654', 'es', 'subject', 'Tema', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3655', 'es', 'view_details', 'Ver detalles', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3656', 'es', 'provide_a_detailed_description', 'Proporcione una descripción detallada', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3657', 'es', 'type_your_reply', 'Escriba su respuesta', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3658', 'es', 'send_ticket', 'Enviar ticket', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3659', 'es', 'load_more', 'Carga más', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3660', 'es', 'jewelry__watches', 'joyas y relojes', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3661', 'es', 'filters', 'Filtros', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3662', 'es', 'contact_address', 'Dirección de contacto', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3663', 'es', 'contact_phone', 'Teléfono de contacto', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3664', 'es', 'contact_email', 'Email de contacto', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3665', 'es', 'filter_by', 'Filtrado por', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3666', 'es', 'condition', 'Condición', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3667', 'es', 'all_type', 'Todo tipo', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3668', 'es', 'pay_with_wallet', 'Paga con billetera', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3669', 'es', 'select_variation', 'Seleccionar variación', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3670', 'es', 'no_product_added', 'Ningún producto añadido', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3671', 'es', 'status_has_been_updated_successfully', 'El estado se ha actualizado correctamente', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3672', 'es', 'all_seller_packages', 'Todos los paquetes del vendedor', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3673', 'es', 'add_new_package', 'Agregar nuevo paquete', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3674', 'es', 'package_logo', 'Logotipo del paquete', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3675', 'es', 'days', 'dias', '2021-02-09 12:26:38', '2021-02-09 12:26:38'),
('3676', 'es', 'create_new_seller_package', 'Crear nuevo paquete de vendedor', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3677', 'es', 'package_name', 'Nombre del paquete', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3678', 'es', 'duration', 'Duración', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3679', 'es', 'validity_in_number_of_days', 'Validez en número de días', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3680', 'es', 'update_package_information', 'Actualizar la información del paquete', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3681', 'es', 'package_has_been_inserted_successfully', 'El paquete se ha insertado correctamente', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3682', 'es', 'refund_request', 'Petición para reembolso', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3683', 'es', 'reason', 'Razón', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3684', 'es', 'label', 'Etiqueta', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3685', 'es', 'select_label', 'Seleccionar etiqueta', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3686', 'es', 'multiple_select_label', 'Etiqueta de selección múltiple', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3687', 'es', 'radio_label', 'Etiqueta de radio', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3688', 'es', 'pickup_point_orders', 'Órdenes de puntos de recogida', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3689', 'es', 'view', 'Ver', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3690', 'es', 'order_', 'Orden #', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3691', 'es', 'order_status', 'Estado del pedido', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3692', 'es', 'total_amount', 'Cantidad total', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3693', 'es', 'total', 'TOTAL', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3694', 'es', 'delivery_status_has_been_updated', 'El estado de entrega se ha actualizado', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3695', 'es', 'payment_status_has_been_updated', 'El estado del pago se ha actualizado', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3696', 'es', 'invoice', 'FACTURA', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3697', 'es', 'set_refund_time', 'Establecer hora de reembolso', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3698', 'es', 'set_time_for_sending_refund_request', 'Establecer hora para enviar la solicitud de reembolso', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3699', 'es', 'set_refund_sticker', 'Establecer etiqueta de reembolso', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3700', 'es', 'sticker', 'Pegatina', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3701', 'es', 'refund_request_all', 'Solicitud de reembolso todo', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3702', 'es', 'order_id', 'Solicitar ID', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3703', 'es', 'seller_approval', 'Aprobación del vendedor', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3704', 'es', 'admin_approval', 'Aprobación del administrador', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3705', 'es', 'refund_status', 'Estado de reembolso', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3706', 'es', 'no_refund', 'No hay reembolso', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3707', 'es', 'status_updated_successfully', 'Estado actualizado con éxito', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3708', 'es', 'user_search_report', 'Informe de búsqueda de usuarios', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3709', 'es', 'search_by', 'Búsqueda por', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3710', 'es', 'number_searches', 'Búsquedas de números', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3711', 'es', 'sender', 'Remitente', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3712', 'es', 'receiver', 'Receptor', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3713', 'es', 'verification_form_updated_successfully', 'Formulario de verificación actualizado correctamente', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3714', 'es', 'invalid_email_or_password', 'Correo electrónico o contraseña inválidos', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3715', 'es', 'all_coupons', 'Todos los cupones', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3716', 'es', 'add_new_coupon', 'Agregar nuevo cupón', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3717', 'es', 'coupon_information', 'Información del cupón', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3718', 'es', 'start_date', 'Fecha de inicio', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3719', 'es', 'end_date', 'Fecha final', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3720', 'es', 'product_base', 'Base de productos', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3721', 'es', 'send_newsletter', 'Enviar Newsletter', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3722', 'es', 'mobile_users', 'Usuarios móviles', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3723', 'es', 'sms_subject', 'Asunto del SMS', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3724', 'es', 'sms_content', 'Contenido de SMS', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3725', 'es', 'all_flash_delas', 'Todos Flash Delas', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3726', 'es', 'create_new_flash_dela', 'Crear nuevo Flash Dela', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3727', 'es', 'page_link', 'Enlace de página', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3728', 'es', 'flash_deal_information', 'Información de oferta flash', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3729', 'es', 'background_color', 'Color de fondo', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3730', 'es', '0000ff', '# 0000ff', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3731', 'es', 'text_color', 'Color de texto', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3732', 'es', 'white', 'Blanco', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3733', 'es', 'dark', 'Oscuro', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3734', 'es', 'choose_products', 'Elija productos', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3735', 'es', 'discounts', 'Descuentos.', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3736', 'es', 'discount_type', 'Tipo de descuento', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3737', 'es', 'twillo_credential', 'Credencial Twillo', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3738', 'es', 'twilio_sid', 'TWILIO SID', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3739', 'es', 'twilio_auth_token', 'TOKEN DE AUTOR DE TWILIO', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3740', 'es', 'twilio_verify_sid', 'TWILIO VERIFICAR SID', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3741', 'es', 'valid_twillo_number', 'NÚMERO VÁLIDO DE TWILLO', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3742', 'es', 'nexmo_credential', 'Credencial Nexmo', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3743', 'es', 'nexmo_key', 'LLAVE NEXMO', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3744', 'es', 'nexmo_secret', 'NEXMO SECRETO', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3745', 'es', 'ssl_wireless_credential', 'Credencial inalámbrica SSL', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3746', 'es', 'ssl_sms_api_token', 'TOKEN API SSL SMS', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3747', 'es', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3748', 'es', 'ssl_sms_url', 'URL de SMS SSL', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3749', 'es', 'fast2sms_credential', 'Credencial Fast2SMS', '2021-02-09 12:26:38', '2021-09-20 12:59:17'),
('3750', 'es', 'auth_key', 'CLAVE DE AUTENTICACIÓN', '2021-02-09 12:26:38', '2021-09-20 12:59:18'),
('3751', 'es', 'route', 'RUTA', '2021-02-09 12:26:38', '2021-09-20 12:59:18'),
('3752', 'es', 'promotional_use', 'Uso promocional', '2021-02-09 12:26:38', '2021-09-20 12:59:18'),
('3753', 'es', 'transactional_use', 'Uso transaccional', '2021-02-09 12:26:38', '2021-09-20 12:59:18'),
('3754', 'es', 'sender_id', 'IDENTIFICACIÓN DEL REMITENTE', '2021-02-09 12:26:38', '2021-09-20 12:59:18'),
('3755', 'es', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3756', 'es', 'twillo_otp', 'Twillo OTP', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3757', 'es', 'ssl_wireless_otp', 'SSL OTP inalámbrico', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3758', 'es', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3759', 'es', 'order_placement', 'Colocación de la orden', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3760', 'es', 'delivery_status_changing_time', 'Tiempo de cambio de estado de entrega', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3761', 'es', 'paid_status_changing_time', 'Tiempo de cambio de estado pagado', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3762', 'es', 'send_bulk_sms', 'Enviar SMS masivos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3763', 'es', 'all_subscribers', 'Todos los suscriptores', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3764', 'es', 'coupon_information_adding', 'Adición de información del cupón', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3765', 'es', 'coupon_type', 'Tipo de cupón', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3766', 'es', 'for_products', 'Para productos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3767', 'es', 'for_total_orders', 'Para pedidos totales', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3768', 'es', 'add_your_product_base_coupon', 'Agregue su cupón base de producto', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3769', 'es', 'coupon_code', 'Código promocional', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3770', 'es', 'sub_category', 'Subcategoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3771', 'es', 'add_more', 'Añadir más', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3772', 'es', 'add_your_cart_base_coupon', 'Agregue el cupón base de su carrito', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3773', 'es', 'minimum_shopping', 'Compras mínimas', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3774', 'es', 'maximum_discount_amount', 'Cantidad máxima de descuento', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3775', 'es', 'coupon_information_update', 'Actualización de la información del cupón', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3776', 'es', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Configure la configuración SMTP para que funcione con todas las funciones de envío de correo electrónico', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3777', 'es', 'configure_now', 'Configurar ahora', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3778', 'es', 'total_published_products', 'Total de productos publicados', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3779', 'es', 'total_sellers_products', 'Total de productos de los vendedores', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3780', 'es', 'total_admin_products', 'Productos de administración totales', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3781', 'es', 'manage_products', 'Gestionar productos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3782', 'es', 'total_product_category', 'Categoría de producto total', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3783', 'es', 'create_category', 'Crear categoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3784', 'es', 'total_product_sub_sub_category', 'Subcategoría total de productos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3785', 'es', 'create_sub_sub_category', 'Crear subcategoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3786', 'es', 'total_product_sub_category', 'Subcategoría de producto total', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3787', 'es', 'create_sub_category', 'Crear subcategoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3788', 'es', 'total_product_brand', 'Marca de producto total', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3789', 'es', 'create_brand', 'Crear marca', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3790', 'es', 'total_sellers', 'Vendedores totales', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3791', 'es', 'total_approved_sellers', 'Total de vendedores aprobados', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3792', 'es', 'total_pending_sellers', 'Total de vendedores pendientes', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3793', 'es', 'manage_sellers', 'Administrar vendedores', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3794', 'es', 'category_wise_product_sale', 'Venta de productos por categoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3795', 'es', 'sale', 'Rebaja', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3796', 'es', 'category_wise_product_stock', 'Stock de productos por categoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3797', 'es', 'category_name', 'nombre de la categoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3798', 'es', 'stock', 'Valores', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3799', 'es', 'frontend', 'Interfaz', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3800', 'es', 'home_page', 'Página de inicio', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3801', 'es', 'setting', 'ajuste', '2021-02-09 12:26:39', '2021-02-09 12:26:39'),
('3802', 'es', 'policy_page', 'Página de políticas', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3803', 'es', 'general', 'General', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3804', 'es', 'click_here', 'Haga clic aquí', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3805', 'es', 'useful_link', 'Enlace útil', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3806', 'es', 'activation', 'Activación', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3807', 'es', 'smtp', 'SMTP', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3808', 'es', 'payment_method', 'Método de pago', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3809', 'es', 'social_media', 'Social media', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3810', 'es', 'business', 'Negocio', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3811', 'es', 'seller_verification', 'Verificación del vendedor', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3812', 'es', 'form_setting', 'configuración de formulario', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3813', 'es', 'language', 'Idioma', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3814', 'es', 'dashboard', 'Tablero', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3815', 'es', 'pos_system', 'Sistema POS', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3816', 'es', 'pos_manager', 'Gerente POS', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3817', 'es', 'pos_configuration', 'Configuración POS', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3818', 'es', 'products', 'Productos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3819', 'es', 'add_new_product', 'Agregar nuevo producto', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3820', 'es', 'all_products', 'Todos los productos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3821', 'es', 'in_house_products', 'Productos internos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3822', 'es', 'seller_products', 'Productos del vendedor', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3823', 'es', 'digital_products', 'Productos digitales', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3824', 'es', 'bulk_import', 'Importación masiva', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3825', 'es', 'bulk_export', 'Exportación masiva', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3826', 'es', 'category', 'Categoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3827', 'es', 'subcategory', 'Subcategoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3828', 'es', 'sub_subcategory', 'Sub-subcategoría', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3829', 'es', 'brand', 'Marca', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3830', 'es', 'attribute', 'Atributo', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3831', 'es', 'product_reviews', 'Reseñas de productos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3832', 'es', 'sales', 'Ventas', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3833', 'es', 'all_orders', 'Todas las órdenes', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3834', 'es', 'inhouse_orders', 'Pedidos internos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3835', 'es', 'seller_orders', 'Pedidos del vendedor', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3836', 'es', 'pickup_point_order', 'Orden de punto de recogida', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3837', 'es', 'refunds', 'Reembolsos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3838', 'es', 'refund_requests', 'Solicitudes de reembolso', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3839', 'es', 'approved_refund', 'Reembolso aprobado', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3840', 'es', 'refund_configuration', 'Configuración de reembolso', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3841', 'es', 'customers', 'Clientes', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3842', 'es', 'customer_list', 'Lista de clientes', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3843', 'es', 'classified_products', 'Productos clasificados', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3844', 'es', 'classified_packages', 'Paquetes clasificados', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3845', 'es', 'sellers', 'Vendedores', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3846', 'es', 'all_seller', 'Todo vendedor', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3847', 'es', 'payouts', 'Pagos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3848', 'es', 'payout_requests', 'Solicitudes de pago', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3849', 'es', 'seller_commission', 'Comisión de vendedor', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3850', 'es', 'seller_packages', 'Paquetes de vendedor', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3851', 'es', 'seller_verification_form', 'Formulario de verificación del vendedor', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3852', 'es', 'reports', 'Informes', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3853', 'es', 'in_house_product_sale', 'Venta de productos internos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3854', 'es', 'seller_products_sale', 'Venta de productos del vendedor', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3855', 'es', 'products_stock', 'Stock de productos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3856', 'es', 'products_wishlist', 'Lista de deseos de productos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3857', 'es', 'user_searches', 'Búsquedas de usuario', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3858', 'es', 'marketing', 'Márketing', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3859', 'es', 'flash_deals', 'Ofertas flash', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3860', 'es', 'newsletters', 'Boletines', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3861', 'es', 'bulk_sms', 'SMS masivos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3862', 'es', 'subscribers', 'Suscriptores', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3863', 'es', 'coupon', 'Cupón', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3864', 'es', 'support', 'Apoyo', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3865', 'es', 'ticket', 'Boleto', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3866', 'es', 'product_queries', 'Consultas sobre productos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3867', 'es', 'website_setup', 'Configuración del sitio web', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3868', 'es', 'header', 'Encabezamiento', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3869', 'es', 'footer', 'Pie de página', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3870', 'es', 'pages', 'Páginas', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3871', 'es', 'appearance', 'Apariencia', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3872', 'es', 'setup__configurations', 'Instalación y configuraciones', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3873', 'es', 'general_settings', 'Configuración general', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3874', 'es', 'features_activation', 'Activación de funciones', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3875', 'es', 'languages', 'Idiomas', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3876', 'es', 'currency', 'Moneda', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3877', 'es', 'pickup_point', 'Punto de recogida', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3878', 'es', 'smtp_settings', 'Configuración de SMTP', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3879', 'es', 'payment_methods', 'Métodos de pago', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3880', 'es', 'file_system_configuration', 'Configuración del sistema de archivos', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3881', 'es', 'social_media_logins', 'Inicios de sesión en redes sociales', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3882', 'es', 'analytics_tools', 'Herramientas analíticas', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3883', 'es', 'facebook_chat', 'El chat de Facebook', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3884', 'es', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3885', 'es', 'shipping_configuration', 'Configuración de envío', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3886', 'es', 'shipping_countries', 'Países de envío', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3887', 'es', 'affiliate_system', 'Sistema de afiliados', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3888', 'es', 'affiliate_registration_form', 'Formulario de registro de afiliados', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3889', 'es', 'affiliate_configurations', 'Configuraciones de afiliados', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3890', 'es', 'affiliate_users', 'Usuarios afiliados', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3891', 'es', 'referral_users', 'Usuarios de referencia', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3892', 'es', 'affiliate_withdraw_requests', 'Solicitudes de retiro de afiliados', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3893', 'es', 'offline_payment_system', 'Sistema de pago fuera de línea', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3894', 'es', 'manual_payment_methods', 'Métodos de pago manual', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3895', 'es', 'offline_wallet_recharge', 'Recarga de billetera sin conexión', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3896', 'es', 'offline_customer_package_payments', 'Pagos de paquetes de clientes fuera de línea', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3897', 'es', 'offline_seller_package_payments', 'Pagos del paquete del vendedor fuera de línea', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3898', 'es', 'paytm_payment_gateway', 'Pasarela de pago Paytm', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3899', 'es', 'set_paytm_credentials', 'Establecer credenciales de Paytm', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3900', 'es', 'club_point_system', 'Sistema de puntos de club', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3901', 'es', 'club_point_configurations', 'Configuraciones de puntos de club', '2021-02-09 12:26:39', '2021-09-20 12:59:18'),
('3902', 'es', 'set_product_point', 'Establecer punto de producto', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3903', 'es', 'user_points', 'Puntos de usuario', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3904', 'es', 'otp_system', 'Sistema OTP', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3905', 'es', 'otp_configurations', 'Configuraciones de OTP', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3906', 'es', 'set_otp_credentials', 'Establecer credenciales de OTP', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3907', 'es', 'staffs', 'Personal', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3908', 'es', 'all_staffs', 'Todo el personal', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3909', 'es', 'staff_permissions', 'Permisos del personal', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3910', 'es', 'addon_manager', 'Administrador de complementos', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3911', 'es', 'browse_website', 'Navegar por el sitio web', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3912', 'es', 'pos', 'POS', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3913', 'es', 'notifications', 'Notificaciones', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3914', 'es', 'new_orders', 'Nuevos pedidos', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3915', 'es', 'userimage', 'imagen de usuario', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3916', 'es', 'profile', 'Perfil', '2021-02-09 12:26:40', '2021-09-20 12:59:18'),
('3917', 'es', 'logout', 'Cerrar sesión', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3918', 'es', 'page_not_found', '¡Página no encontrada!', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3919', 'es', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'La página que busca no se ha encontrado en nuestro servidor.', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3920', 'es', 'registration', 'Registro', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3921', 'es', 'i_am_shopping_for', 'Estoy comprando ...', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3922', 'es', 'compare', 'Comparar', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3923', 'es', 'wishlist', 'Lista de deseos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3924', 'es', 'cart', 'Carro', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3925', 'es', 'your_cart_is_empty', 'Tu carrito esta vacío', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3926', 'es', 'categories', 'Categorías', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3927', 'es', 'see_all', 'Ver todo', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3928', 'es', 'seller_policy', 'Política del vendedor', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3929', 'es', 'return_policy', 'Política de devoluciones', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3930', 'es', 'support_policy', 'Política de soporte', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3931', 'es', 'privacy_policy', 'Política de privacidad', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3932', 'es', 'your_email_address', 'Su dirección de correo electrónico', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3933', 'es', 'subscribe', 'Suscribir', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3934', 'es', 'contact_info', 'Datos de contacto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3935', 'es', 'address', 'Habla a', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3936', 'es', 'phone', 'Teléfono', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3937', 'es', 'email', 'Email', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3938', 'es', 'login', 'Iniciar sesión', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3939', 'es', 'my_account', 'Mi cuenta', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3940', 'es', 'order_history', 'Historial de pedidos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3941', 'es', 'my_wishlist', 'mi lista de deseos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3942', 'es', 'track_order', 'Orden de pista', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3943', 'es', 'be_an_affiliate_partner', 'Sea un socio afiliado', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3944', 'es', 'be_a_seller', 'Ser vendedor', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3945', 'es', 'apply_now', 'Aplica ya', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3946', 'es', 'confirmation', 'Confirmación', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3947', 'es', 'delete_confirmation_message', 'Eliminar mensaje de confirmación', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3948', 'es', 'cancel', 'Cancelar', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3949', 'es', 'delete', 'Eliminar', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3950', 'es', 'item_has_been_added_to_compare_list', 'El artículo se ha agregado a la lista de comparación', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3951', 'es', 'please_login_first', 'Por favor ingresa primero', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3952', 'es', 'total_earnings_from', 'Ganancias totales de', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3953', 'es', 'client_subscription', 'Suscripción de cliente', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3954', 'es', 'product_category', 'Categoria de producto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3955', 'es', 'product_sub_sub_category', 'Subcategoría de producto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3956', 'es', 'product_sub_category', 'Subcategoría de producto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3957', 'es', 'product_brand', 'Producto de marca', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3958', 'es', 'top_client_packages', 'Paquetes de clientes principales', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3959', 'es', 'top_freelancer_packages', 'Los mejores paquetes para autónomos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3960', 'es', 'number_of_sale', 'Numero de venta', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3961', 'es', 'number_of_stock', 'Número de stock', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3962', 'es', 'top_10_products', 'Los 10 mejores productos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3963', 'es', 'top_12_products', 'Los 12 mejores productos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3964', 'es', 'admin_can_not_be_a_seller', 'El administrador no puede ser vendedor', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3965', 'es', 'filter_by_rating', 'Filtrar por calificación', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3966', 'es', 'published_reviews_updated_successfully', 'Reseñas publicadas actualizadas correctamente', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3967', 'es', 'refund_sticker_has_been_updated_successfully', 'La etiqueta de reembolso se ha actualizado correctamente', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3968', 'es', 'edit_product', 'Editar producto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3969', 'es', 'meta_images', 'Meta imágenes', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3970', 'es', 'update_product', 'Actualizar producto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3971', 'es', 'product_has_been_deleted_successfully', 'El producto se ha eliminado correctamente', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3972', 'es', 'your_profile_has_been_updated_successfully', '¡Tu perfil ha sido actualizado exitosamente!', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3973', 'es', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Se alcanzó el límite de carga. Actualice su paquete.', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3974', 'es', 'add_your_product', 'Agregue su producto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3975', 'es', 'select_a_category', 'Seleccione una categoría', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3976', 'es', 'select_a_brand', 'Seleccione una marca', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3977', 'es', 'product_unit', 'Unidad de producto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3978', 'es', 'minimum_qty', 'Cant. Mínima', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3979', 'es', 'product_tag', 'Etiqueta de producto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3980', 'es', 'type__hit_enter', 'Escribe y presiona enter', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3981', 'es', 'videos', 'Videos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3982', 'es', 'video_from', 'Video de', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3983', 'es', 'video_url', 'URL del vídeo', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3984', 'es', 'customer_choice', 'Elección del cliente', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3985', 'es', 'pdf', 'PDF', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3986', 'es', 'choose_pdf', 'Elija PDF', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3987', 'es', 'select_category', 'selecciona una categoría', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3988', 'es', 'target_category', 'Categoría de destino', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3989', 'es', 'subsubcategory', 'subcategoría', '2021-02-09 12:27:08', '2021-02-09 12:27:08'),
('3990', 'es', 'search_category', 'Categoría de búsqueda', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3991', 'es', 'search_subcategory', 'Subcategoría de búsqueda', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3992', 'es', 'search_subsubcategory', 'Buscar SubSubCategory', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3993', 'es', 'update_your_product', 'Actualiza tu producto', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3994', 'es', 'product_has_been_updated_successfully', 'El producto se ha actualizado correctamente', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3995', 'es', 'add_your_digital_product', 'Agregue su producto digital', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3996', 'es', 'active_ecommerce_cms_update_process', 'Proceso de actualización de CMS de comercio electrónico activo', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3997', 'es', 'codecanyon_purchase_code', 'Código de compra de Codecanyon', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3998', 'es', 'database_name', 'Nombre de la base de datos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('3999', 'es', 'database_username', 'Nombre de usuario de la base de datos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4000', 'es', 'database_password', 'Contraseña de la base de datos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4001', 'es', 'database_hostname', 'Nombre de host de la base de datos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4002', 'es', 'update_now', 'Actualizar ahora', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4003', 'es', 'congratulations', 'Felicidades', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4004', 'es', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'Ha completado con éxito el proceso de actualización. Por favor inicie sesión para continuar', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4005', 'es', 'go_to_home', 'Ir a casa', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4006', 'es', 'login_to_admin_panel', 'Iniciar sesión en el panel de administración', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4007', 'es', 's3_file_system_credentials', 'Credenciales del sistema de archivos S3', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4008', 'es', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4009', 'es', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4010', 'es', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4011', 'es', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4012', 'es', 'aws_url', 'AWS_URL', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4013', 'es', 's3_file_system_activation', 'Activación del sistema de archivos S3', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4014', 'es', 'your_phone_number', 'Su número de teléfono', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4015', 'es', 'zip_file', 'Archivo zip', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4016', 'es', 'install', 'Instalar en pc', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4017', 'es', 'this_version_is_not_capable_of_installing_addons_please_update', 'Esta versión no es capaz de instalar complementos, actualice.', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4018', 'es', 'search_in_menu', 'Buscar en el menú', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4019', 'es', 'uploaded_files', 'Archivos subidos', '2021-02-09 12:27:08', '2021-09-20 12:59:18'),
('4020', 'es', 'shipping_cities', 'Ciudades de envío', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4021', 'es', 'system', 'Sistema', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4022', 'es', 'server_status', 'El estado del servidor', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4023', 'es', 'nothing_found', 'Nada Encontrado', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4024', 'es', 'parent_category', 'Categoría principal', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4025', 'es', 'level', 'Nivel', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4026', 'es', 'category_information', 'Información de categoría', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4027', 'es', 'translatable', 'Traducible', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4028', 'es', 'no_parent', 'Sin padre', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4029', 'es', 'physical', 'Físico', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4030', 'es', 'digital', 'Digital', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4031', 'es', '200x200', '200x200', '2021-02-09 12:27:09', '2021-02-09 12:27:09'),
('4032', 'es', '32x32', '32x32', '2021-02-09 12:27:09', '2021-02-09 12:27:09'),
('4033', 'es', 'search_your_files', 'Busca tus archivos', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4034', 'es', 'category_has_been_updated_successfully', 'La categoría se ha actualizado correctamente', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4035', 'es', 'all_uploaded_files', 'Todos los archivos cargados', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4036', 'es', 'upload_new_file', 'Subir archivo nuevo', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4037', 'es', 'all_files', 'Todos los archivos', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4038', 'es', 'search', 'Buscar', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4039', 'es', 'details_info', 'Información de detalles', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4040', 'es', 'copy_link', 'Copiar link', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4041', 'es', 'are_you_sure_to_delete_this_file', '¿Está seguro de eliminar este archivo?', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4042', 'es', 'file_info', 'Información del archivo', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4043', 'es', 'link_copied_to_clipboard', 'link copiado al portapapeles', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4044', 'es', 'oops_unable_to_copy', 'Vaya, no se puede copiar', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4045', 'es', 'file_deleted_successfully', 'Archivo eliminado correctamente', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4046', 'es', 'add_new_brand', 'Agregar nueva marca', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4047', 'es', '120x80', '120 x 80', '2021-02-09 12:27:09', '2021-02-09 12:27:09'),
('4048', 'es', 'brand_information', 'Información de marca', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4049', 'es', 'brand_has_been_updated_successfully', 'La marca se ha actualizado correctamente', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4050', 'es', 'brand_has_been_deleted_successfully', 'La marca se ha eliminado correctamente', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4051', 'es', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'Esto se usa para la búsqueda. Introduzca las palabras con las que cutomer puede encontrar este producto.', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4052', 'es', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'Estas imágenes son visibles en la galería de la página de detalles del producto. Utilice imágenes de tamaño 600x600.', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4053', 'es', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'Esta imagen es visible en todas las cajas de productos. Utilice una imagen de 300x300 tamaños. Mantenga un espacio en blanco alrededor del objeto principal de su imagen, ya que tuvimos que recortar algunos bordes en diferentes dispositivos para que responda.', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4054', 'es', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Utilice el enlace adecuado sin un parámetro adicional. No use un enlace de compartir corto / código de iframe incrustado.', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4055', 'es', 'save_product', 'Guardar producto', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4056', 'es', 'product_has_been_inserted_successfully', 'El producto se ha insertado correctamente', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4057', 'es', 'something_went_wrong', '¡Algo salió mal!', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4058', 'es', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Disculpe las molestias, pero estamos trabajando en ello.', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4059', 'es', 'error_code', 'Código de error', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4060', 'es', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Configure la configuración SMTP para que funcione con todas las funciones de envío de correo electrónico', '2021-02-09 12:27:09', '2021-09-20 12:59:18'),
('4061', 'es', 'order', 'Orden', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4062', 'es', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'Tenemos una altura de banner limitada para mantener la interfaz de usuario. Tuvimos que recortar desde el lado izquierdo y derecho a la vista para diferentes dispositivos para que respondiera. Antes de diseñar un banner, tenga en cuenta estos puntos.', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4063', 'es', 'home_banner_3_max_3', 'Banner de inicio 3 (máximo 3)', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4064', 'es', 'add_new_seller', 'Agregar nuevo vendedor', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4065', 'es', 'filter_by_approval', 'Filtrar por aprobación', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4066', 'es', 'nonapproved', 'No aprovado', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4067', 'es', 'type_name_or_email__enter', 'Escriba su nombre o correo electrónico e ingrese', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4068', 'es', 'due_to_seller', 'Debido al vendedor', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4069', 'es', 'log_in_as_this_seller', 'Inicie sesión como este vendedor', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4070', 'es', 'go_to_payment', 'Ir a Pago', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4071', 'es', 'ban_this_seller', 'Prohibir este vendedor', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4072', 'es', 'do_you_really_want_to_ban_this_seller', '¿De verdad quieres prohibir a este vendedor?', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4073', 'es', 'proceed', '¡Continuar!', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4074', 'es', 'approved_sellers_updated_successfully', 'Los vendedores aprobados se actualizaron correctamente', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4075', 'es', 'seller_has_been_deleted_successfully', 'El vendedor se ha eliminado correctamente', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4076', 'es', 'seller_information', 'Información del vendedor', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4077', 'es', 'seller_has_been_inserted_successfully', 'El vendedor se ha insertado correctamente', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4078', 'es', 'email_already_exists', '¡El Email ya existe!', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4079', 'es', 'verify_your_email_address', 'Verifique su dirección de correo electrónico', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4080', 'es', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Antes de continuar, consulte su correo electrónico para ver si hay un enlace de verificación.', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4081', 'es', 'if_you_did_not_receive_the_email', 'Si no recibió el correo electrónico.', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4082', 'es', 'click_here_to_request_another', 'Haga clic aquí para solicitar otro', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4083', 'es', 'email_verification', 'verificacion de email', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4084', 'es', 'email_verification__', 'Verificacion de email -', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4085', 'es', 'https_activation', 'Activación HTTPS', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4086', 'es', 'maintenance_mode', 'Modo de mantenimiento', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4087', 'es', 'maintenance_mode_activation', 'Activación del modo de mantenimiento', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4088', 'es', 'classified_product_activate', 'Producto clasificado Activar', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4089', 'es', 'classified_product', 'Producto clasificado', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4090', 'es', 'business_related', 'Relacionado al negocio', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4091', 'es', 'vendor_system_activation', 'Activación del sistema de proveedor', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4092', 'es', 'wallet_system_activation', 'Activación del sistema de billetera', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4093', 'es', 'coupon_system_activation', 'Activación del sistema de cupones', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4094', 'es', 'pickup_point_activation', 'Activación del punto de recogida', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4095', 'es', 'conversation_activation', 'Activación de conversación', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4096', 'es', 'guest_checkout_activation', 'Activación de pago como invitado', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4097', 'es', 'categorybased_commission', 'Comisión basada en categorías', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4098', 'es', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'Después de activar esta opción, la comisión del vendedor se desactivará y deberá establecer una comisión en cada categoría; de lo contrario, el administrador no recibirá ninguna comisión.', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4099', 'es', 'set_commisssion_now', 'Establecer comisión ahora', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4100', 'es', 'payment_related', 'Relacionados con el pago', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4101', 'es', 'paypal_payment_activation', 'Activación de pago de Paypal', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4102', 'es', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'Debes configurar Paypal correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4103', 'es', 'stripe_payment_activation', 'Activación de pago de Stripe', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4104', 'es', 'sslcommerz_activation', 'Activación SSlCommerz', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4105', 'es', 'instamojo_payment_activation', 'Activación de pago de Instamojo', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4106', 'es', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'Debe configurar Instamojo Payment correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4107', 'es', 'razor_pay_activation', 'Activación de Razor Pay', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4108', 'es', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'Necesita configurar Razor correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4109', 'es', 'paystack_activation', 'Activación PayStack', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4110', 'es', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'Necesita configurar PayStack correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4111', 'es', 'voguepay_activation', 'Activación de VoguePay', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4112', 'es', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'Debes configurar VoguePay correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4113', 'es', 'payhere_activation', 'Activación de Payhere', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4114', 'es', 'ngenius_activation', 'Activación Ngenius', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4115', 'es', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'Necesita configurar Ngenius correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4116', 'es', 'iyzico_activation', 'Activación de Iyzico', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4117', 'es', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'Debe configurar iyzico correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4118', 'es', 'bkash_activation', 'Activación Bkash', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4119', 'es', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'Debes configurar bkash correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4120', 'es', 'nagad_activation', 'Activación de Nagad', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4121', 'es', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'Debes configurar nagad correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4122', 'es', 'cash_payment_activation', 'Activación de pago en efectivo', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4123', 'es', 'social_media_login', 'Inicio de sesión en redes sociales', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4124', 'es', 'facebook_login', 'Iniciar sesión en Facebook', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4125', 'es', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'Debe configurar el cliente de Facebook correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4126', 'es', 'google_login', 'Inicio de sesión de Google', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4127', 'es', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'Debe configurar Google Client correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4128', 'es', 'twitter_login', 'Iniciar sesión en Twitter', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4129', 'es', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'Debe configurar el cliente de Twitter correctamente para habilitar esta función', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4130', 'es', 'shop_logo', 'Logotipo de la tienda', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4131', 'es', 'shop_address', 'Dirección de la tienda', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4132', 'es', 'banner_settings', 'Configuración de banner', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4133', 'es', 'banners', 'Banners', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4134', 'es', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'Tuvimos que limitar la altura a la consistencia de mantenimiento. En algunos dispositivos, ambos lados del banner se pueden recortar para limitar la altura.', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4135', 'es', 'insert_link_with_https_', 'Insertar enlace con https', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4136', 'es', 'your_shop_has_been_updated_successfully', '¡Tu tienda se ha actualizado correctamente!', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4137', 'es', 'search_result_for_', 'Resultado de búsqueda para', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4138', 'es', 'brand_has_been_inserted_successfully', 'La marca se ha insertado correctamente', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4139', 'es', 'about', 'Acerca de', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4140', 'es', 'payout_info', 'Información de pago', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4141', 'es', 'bank_acc_name', 'Nombre de cuenta bancaria', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4142', 'es', 'bank_acc_number', 'Número de cuenta bancaria', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4143', 'es', 'total_products', 'Productos totales', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4144', 'es', 'total_sold_amount', 'Monto total vendido', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4145', 'es', 'wallet_balance', 'Saldo de Wallet', '2021-02-09 12:27:09', '2021-09-20 12:59:19'),
('4146', 'es', 'cookies_agreement', 'Acuerdo de cookies', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4147', 'es', 'cookies_agreement_text', 'Texto del acuerdo de cookies', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4148', 'es', 'show_cookies_agreement', '¿Mostrar acuerdo de cookies?', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4149', 'es', 'custom_script', 'Script personalizado', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4150', 'es', 'header_custom_script__before_head', 'Secuencia de comandos personalizada de encabezado: antes de </head>', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4151', 'es', 'write_script_with_script_tag', 'Escribir script con etiqueta <script>', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4152', 'es', 'footer_custom_script__before_body', 'Secuencia de comandos personalizada de pie de página: antes de </body>', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4153', 'es', 'category_has_been_inserted_successfully', 'La categoría se ha insertado correctamente', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4154', 'es', 'all_flash_deals', 'Todas las ofertas flash', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4155', 'es', 'create_new_flash_deal', 'Crear nueva oferta flash', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4156', 'es', 'ffffff', '#FFFFFF', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4157', 'es', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Esta imagen se muestra como banner de portada en la página de detalles de la oferta flash.', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4158', 'es', 'flash_deal_has_been_inserted_successfully', 'La oferta flash se ha insertado correctamente', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4159', 'es', 'flash_deal_status_updated_successfully', 'El estado de la oferta flash se actualizó correctamente', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4160', 'es', 'flash_deal_has_been_updated_successfully', 'La oferta flash se ha actualizado correctamente', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4161', 'es', 'update_language_info', 'actualizar la información del idioma', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4162', 'es', 'language_has_been_updated_successfully', 'El idioma se ha actualizado correctamente', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4163', 'es', 'type_key__enter', 'Escriba la tecla e introduzca', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4164', 'es', 'translations_updated_for_', 'Traducciones actualizadas para', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4165', 'es', 'language_has_been_inserted_successfully', 'El idioma se ha insertado correctamente', '2021-02-09 12:27:10', '2021-09-20 12:59:19'),
('4166', 'jp', 'all_category', 'すべてのカテゴリー', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4167', 'jp', 'all', 'すべて', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4168', 'jp', 'flash_sale', 'フラッシュセール', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4169', 'jp', 'view_more', 'もっと見る', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4170', 'jp', 'add_to_wishlist', 'ほしい物リストに追加する', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4171', 'jp', 'add_to_compare', '比較リストに追加', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4172', 'jp', 'add_to_cart', 'カートに追加', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4173', 'jp', 'club_point', 'クラブポイント', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4174', 'jp', 'classified_ads', 'クラシファイド広告', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4175', 'jp', 'used', '中古', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4176', 'jp', 'top_10_categories', 'トップ10カテゴリー', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4177', 'jp', 'view_all_categories', 'すべてのカテゴリを表示', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4178', 'jp', 'top_10_brands', 'トップ10ブランド', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4179', 'jp', 'view_all_brands', 'すべてのブランドを表示', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4180', 'jp', 'terms__conditions', '利用規約', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4181', 'jp', 'best_selling', 'ベストセラー', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4182', 'jp', 'top_20', 'トップ20', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4183', 'jp', 'featured_products', 'おすすめ商品', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4184', 'jp', 'best_sellers', 'ベストセラー', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4185', 'jp', 'visit_store', 'ストアにアクセス', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4186', 'jp', 'popular_suggestions', '人気のある提案', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4187', 'jp', 'category_suggestions', 'カテゴリの提案', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4188', 'jp', 'automobile__motorcycle', '自動車とオートバイ', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4189', 'jp', 'price_range', '価格帯', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4190', 'jp', 'filter_by_color', '色でフィルタリング', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4191', 'jp', 'home', 'ホーム', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4192', 'jp', 'newest', '最新', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4193', 'jp', 'oldest', '最古', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4194', 'jp', 'price_low_to_high', '低価格から高価格', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4195', 'jp', 'price_high_to_low', '価格が高いものから低いものへ', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4196', 'jp', 'brands', 'ブランド', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4197', 'jp', 'all_brands', 'すべてのブランド', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4198', 'jp', 'all_sellers', 'すべての売り手', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4199', 'jp', 'inhouse_product', '自社製品', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4200', 'jp', 'message_seller', 'メッセージ売り手', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4201', 'jp', 'price', '価格', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4202', 'jp', 'discount_price', '割引価格', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4203', 'jp', 'color', '色', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4204', 'jp', 'quantity', '量', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4205', 'jp', 'available', '利用可能', '2021-02-09 12:30:17', '2021-02-09 12:30:17'),
('4206', 'jp', 'total_price', '合計金額', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4207', 'jp', 'out_of_stock', '在庫切れ', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4208', 'jp', 'refund', '払い戻し', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4209', 'jp', 'share', 'シェア', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4210', 'jp', 'sold_by', 'により販売されています', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4211', 'jp', 'customer_reviews', 'カスタマーレビュー', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4212', 'jp', 'top_selling_products', '売れ筋商品', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4213', 'jp', 'description', '説明', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4214', 'jp', 'video', 'ビデオ', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4215', 'jp', 'reviews', 'レビュー', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4216', 'jp', 'download', 'ダウンロード', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4217', 'jp', 'there_have_been_no_reviews_for_this_product_yet', 'この製品のレビューはまだありません。', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4218', 'jp', 'related_products', '関連製品', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4219', 'jp', 'any_query_about_this_product', 'この製品に関する質問', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4220', 'jp', 'product_name', '商品名', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4221', 'jp', 'your_question', 'あなたの質問', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4222', 'jp', 'send', '送信', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4223', 'jp', 'use_country_code_before_number', '番号の前に国コードを使用する', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4224', 'jp', 'remember_me', '私を覚えてますか', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4225', 'jp', 'dont_have_an_account', 'アカウントをお持ちではありませんか？', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4226', 'jp', 'register_now', '今すぐ登録', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4227', 'jp', 'or_login_with', 'またはでログイン', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4228', 'jp', 'oops', 'おっと..', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4229', 'jp', 'this_item_is_out_of_stock', 'この商品は在庫切れです！', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4230', 'jp', 'back_to_shopping', 'ショッピングに戻る', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4231', 'jp', 'login_to_your_account', 'あなたのアカウントにログイン。', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4232', 'jp', 'purchase_history', '購入履歴', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4233', 'jp', 'new', '新着', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4234', 'jp', 'downloads', 'ダウンロード', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4235', 'jp', 'sent_refund_request', '払い戻しリクエストを送信しました', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4236', 'jp', 'product_bulk_upload', '製品の一括アップロード', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4237', 'jp', 'orders', '注文', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4238', 'jp', 'recieved_refund_request', '受け取った払い戻しリクエスト', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4239', 'jp', 'shop_setting', 'ショップ設定', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4240', 'jp', 'payment_history', '支払歴', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4241', 'jp', 'money_withdraw', 'お金の引き出し', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4242', 'jp', 'conversations', '会話', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4243', 'jp', 'my_wallet', '私の財布', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4244', 'jp', 'earning_points', '獲得ポイント', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4245', 'jp', 'support_ticket', 'サポートチケット', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4246', 'jp', 'manage_profile', 'プロファイルの管理', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4247', 'jp', 'sold_amount', '販売額', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4248', 'jp', 'your_sold_amount_current_month', '販売額（当月）', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4249', 'jp', 'total_sold', '総販売数', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4250', 'jp', 'last_month_sold', '先月販売', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4251', 'jp', 'total_sale', '総売上高', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4252', 'jp', 'total_earnings', '総収益', '2021-02-09 12:30:17', '2021-09-20 12:59:19'),
('4253', 'jp', 'successful_orders', '成功した注文', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4254', 'jp', 'total_orders', '総注文数', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4255', 'jp', 'pending_orders', '保留中の注文', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4256', 'jp', 'cancelled_orders', 'キャンセルされた注文', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4257', 'jp', 'product', '製品', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4258', 'jp', 'purchased_package', '購入したパッケージ', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4259', 'jp', 'package_not_found', 'パッケージが見つかりません', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4260', 'jp', 'upgrade_package', 'アップグレードパッケージ', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4261', 'jp', 'shop', 'ショップ', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4262', 'jp', 'manage__organize_your_shop', 'ショップの管理と整理', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4263', 'jp', 'go_to_setting', '設定に移動', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4264', 'jp', 'payment', '支払い', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4265', 'jp', 'configure_your_payment_method', 'お支払い方法を設定します', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4266', 'jp', 'my_panel', 'マイパネル', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4267', 'jp', 'item_has_been_added_to_wishlist', 'アイテムがウィッシュリストに追加されました', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4268', 'jp', 'my_points', 'マイポイント', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4269', 'jp', '_points', 'ポイント', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4270', 'jp', 'wallet_money', 'ウォレットマネー', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4271', 'jp', 'exchange_rate', '為替レート', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4272', 'jp', 'point_earning_history', 'ポイント獲得履歴', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4273', 'jp', 'date', '日付', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4274', 'jp', 'points', 'ポイント', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4275', 'jp', 'converted', '変換済み', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4276', 'jp', 'action', 'アクション', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4277', 'jp', 'no_history_found', '履歴が見つかりません。', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4278', 'jp', 'convert_has_been_done_successfully_check_your_wallets', '変換が正常に完了しましたウォレットを確認してください', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4279', 'jp', 'something_went_wrong', '何かがうまくいかなかった', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4280', 'jp', 'remaining_uploads', '残りのアップロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4281', 'jp', 'no_package_found', 'パッケージが見つかりません', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4282', 'jp', 'search_product', '製品を検索', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4283', 'jp', 'name', '名前', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4284', 'jp', 'current_qty', '現在の数量', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4285', 'jp', 'base_price', '本体価格', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4286', 'jp', 'published', '公開', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4287', 'jp', 'featured', '特徴', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4288', 'jp', 'options', 'オプション', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4289', 'jp', 'edit', '編集', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4290', 'jp', 'duplicate', '複製', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4291', 'jp', '1_download_the_skeleton_file_and_fill_it_with_data', '1.スケルトンファイルをダウンロードして、データを入力します。', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4292', 'jp', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2.サンプルファイルをダウンロードして、データの入力方法を理解できます。', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4293', 'jp', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3.スケルトンファイルをダウンロードして入力したら、以下のフォームにアップロードして送信します。', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4294', 'jp', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4.商品をアップロードした後、商品を編集し、商品の画像と選択肢を設定する必要があります。', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4295', 'jp', 'download_csv', 'CSVをダウンロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4296', 'jp', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1.カテゴリ、サブカテゴリ、サブサブカテゴリ、およびブランドは数値IDである必要があります。', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4297', 'jp', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. PDFをダウンロードして、カテゴリ、サブカテゴリ、サブサブカテゴリ、およびブランドIDを取得できます。', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4298', 'jp', 'download_category', 'カテゴリをダウンロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4299', 'jp', 'download_sub_category', 'サブカテゴリをダウンロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4300', 'jp', 'download_sub_sub_category', 'サブサブカテゴリをダウンロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4301', 'jp', 'download_brand', 'ブランドをダウンロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4302', 'jp', 'upload_csv_file', 'CSVファイルをアップロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4303', 'jp', 'csv', 'CSV', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4304', 'jp', 'choose_csv_file', 'CSVファイルを選択', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4305', 'jp', 'upload', 'アップロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4306', 'jp', 'add_new_digital_product', '新しいデジタル製品を追加する', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4307', 'jp', 'available_status', '利用可能なステータス', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4308', 'jp', 'admin_status', '管理者ステータス', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4309', 'jp', 'pending_balance', '保留中の残高', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4310', 'jp', 'send_withdraw_request', '引き出しリクエストを送信する', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4311', 'jp', 'withdraw_request_history', 'リクエスト履歴の撤回', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4312', 'jp', 'amount', '量', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4313', 'jp', 'status', '状態', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4314', 'jp', 'message', 'メッセージ', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4315', 'jp', 'send_a_withdraw_request', '引き出しリクエストを送信する', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4316', 'jp', 'basic_info', '基本情報', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4317', 'jp', 'your_phone', 'あなたの電話', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4318', 'jp', 'photo', '写真', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4319', 'jp', 'browse', 'ブラウズ', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4320', 'jp', 'your_password', 'あなたのパスワード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4321', 'jp', 'new_password', '新しいパスワード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4322', 'jp', 'confirm_password', 'パスワードを認証する', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4323', 'jp', 'add_new_address', '新しい住所を追加する', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4324', 'jp', 'payment_setting', '支払い設定', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4325', 'jp', 'cash_payment', '現金払い', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4326', 'jp', 'bank_payment', '銀行支払い', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4327', 'jp', 'bank_name', '銀行名', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4328', 'jp', 'bank_account_name', '銀行口座名', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4329', 'jp', 'bank_account_number', '銀行の口座番号', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4330', 'jp', 'bank_routing_number', '銀行コード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4331', 'jp', 'update_profile', 'プロファイルの更新', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4332', 'jp', 'change_your_email', 'メールアドレスを変更する', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4333', 'jp', 'your_email', 'あなたのメール', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4334', 'jp', 'sending_email', 'メールを送信しています...', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4335', 'jp', 'verify', '確認', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4336', 'jp', 'update_email', 'メールを更新する', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4337', 'jp', 'new_address', '新しいアドレス', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4338', 'jp', 'your_address', 'あなたの住所', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4339', 'jp', 'country', '国', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4340', 'jp', 'select_your_country', 'あなたの国を選択', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4341', 'jp', 'city', '市', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4342', 'jp', 'your_city', 'あなたの街', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4343', 'jp', 'your_postal_code', 'あなたの郵便番号', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4344', 'jp', '880', '+880', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4345', 'jp', 'save', 'セーブ', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4346', 'jp', 'received_refund_request', '払い戻しリクエストを受け取りました', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4347', 'jp', 'delete_confirmation', '削除確認', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4348', 'jp', 'are_you_sure_to_delete_this', 'これを削除してもよろしいですか？', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4349', 'jp', 'premium_packages_for_sellers', '売り手のためのプレミアムパッケージ', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4350', 'jp', 'product_upload', '製品のアップロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4351', 'jp', 'digital_product_upload', 'デジタル製品のアップロード', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4352', 'jp', 'purchase_package', '購入パッケージ', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4353', 'jp', 'select_payment_type', '支払いタイプを選択します', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4354', 'jp', 'payment_type', '払いの種類', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4355', 'jp', 'select_one', '一つ選択してください', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4356', 'jp', 'online_payment', 'オンライン支払い', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4357', 'jp', 'offline_payment', 'オフライン支払い', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4358', 'jp', 'purchase_your_package', 'パッケージを購入する', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4359', 'jp', 'paypal', 'ペイパル', '2021-02-09 12:30:18', '2021-09-20 12:59:19'),
('4360', 'jp', 'stripe', '縞', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4361', 'jp', 'sslcommerz', 'sslcommerz', '2021-02-09 12:30:19', '2021-02-09 12:30:19'),
('4362', 'jp', 'confirm', '確認', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4363', 'jp', 'offline_package_payment', 'オフラインパッケージ支払い', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4364', 'jp', 'transaction_id', 'トランザクションID', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4365', 'jp', 'choose_image', '画像を選択', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4366', 'jp', 'code', 'コード', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4367', 'jp', 'delivery_status', '配送状況', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4368', 'jp', 'payment_status', '支払い状況', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4369', 'jp', 'paid', '有料', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4370', 'jp', 'order_details', '注文詳細', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4371', 'jp', 'download_invoice', '請求書をダウンロードする', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4372', 'jp', 'unpaid', '未払い', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4373', 'jp', 'order_placed', '注文済み', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4374', 'jp', 'confirmed', '確認済み', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4375', 'jp', 'on_delivery', '配達中', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4376', 'jp', 'delivered', '配信', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4377', 'jp', 'order_summary', '注文の概要', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4378', 'jp', 'order_code', '注文コード', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4379', 'jp', 'customer', 'お客様', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4380', 'jp', 'total_order_amount', '注文総額', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4381', 'jp', 'shipping_metdod', '配送方法', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4382', 'jp', 'flat_shipping_rate', '均一の配送料', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4383', 'jp', 'payment_metdod', '支払い方法', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4384', 'jp', 'variation', '変化', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4385', 'jp', 'delivery_type', '配信タイプ', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4386', 'jp', 'home_delivery', '宅配', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4387', 'jp', 'order_ammount', '注文金額', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4388', 'jp', 'subtotal', '小計', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4389', 'jp', 'shipping', '運送', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4390', 'jp', 'coupon_discount', 'クーポン割引', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4391', 'jp', 'na', '該当なし', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4392', 'jp', 'in_stock', '在庫あり', '2021-02-09 12:30:19', '2021-09-20 12:59:19'),
('4393', 'jp', 'buy_now', '今買う', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4394', 'jp', 'item_added_to_your_cart', 'カートにアイテムが追加されました！', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4395', 'jp', 'proceed_to_checkout', 'チェックアウトに進む', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4396', 'jp', 'cart_items', 'カートアイテム', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4397', 'jp', '1_my_cart', '1.私のカート', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4398', 'jp', 'view_cart', 'かごの中身を見る', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4399', 'jp', '2_shipping_info', '2.配送情報', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4400', 'jp', 'checkout', 'チェックアウト', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4401', 'jp', '3_delivery_info', '3.配信情報', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4402', 'jp', '4_payment', '4.支払い', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4403', 'jp', '5_confirmation', '5.確認', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4404', 'jp', 'remove', '削除する', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4405', 'jp', 'return_to_shop', 'ショップに戻る', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4406', 'jp', 'continue_to_shipping', '発送を続ける', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4407', 'jp', 'or', 'または', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4408', 'jp', 'guest_checkout', 'ゲストチェックアウト', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4409', 'jp', 'continue_to_delivery_info', '配信情報に進む', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4410', 'jp', 'postal_code', '郵便番号', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4411', 'jp', 'choose_delivery_type', '配信タイプを選択します', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4412', 'jp', 'local_pickup', 'ローカルピックアップ', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4413', 'jp', 'select_your_nearest_pickup_point', '最寄りのピックアップポイントを選択してください', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4414', 'jp', 'continue_to_payment', '支払いを続ける', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4415', 'jp', 'select_a_payment_option', '支払いオプションを選択します', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4416', 'jp', 'razorpay', 'Razorpay', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4417', 'jp', 'paystack', 'ペイスタック', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4418', 'jp', 'voguepay', 'VoguePay', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4419', 'jp', 'payhere', 'お会計', '2021-02-09 12:30:19', '2021-02-09 12:30:19'),
('4420', 'jp', 'ngenius', 'ngenius', '2021-02-09 12:30:19', '2021-02-09 12:30:19'),
('4421', 'jp', 'paytm', 'Paytm', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4422', 'jp', 'cash_on_delivery', '代金引換', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4423', 'jp', 'your_wallet_balance_', 'あなたの財布のバランス：', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4424', 'jp', 'insufficient_balance', '残高不足', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4425', 'jp', 'i_agree_to_the', '私は同意します', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4426', 'jp', 'complete_order', '完全注文', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4427', 'jp', 'summary', '概要', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4428', 'jp', 'items', 'アイテム', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4429', 'jp', 'total_club_point', 'クラブ合計ポイント', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4430', 'jp', 'total_shipping', '総送料', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4431', 'jp', 'have_coupon_code_enter_here', 'クーポンコードをお持ちですか？ここに入力', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4432', 'jp', 'apply', '適用する', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4433', 'jp', 'you_need_to_agree_with_our_policies', 'あなたは私たちのポリシーに同意する必要があります', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4434', 'jp', 'forgot_password', 'パスワードをお忘れですか', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4435', 'jp', 'seo_setting', 'SEO設定', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4436', 'jp', 'system_update', 'システムアップデート', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4437', 'jp', 'add_new_payment_method', '新しい支払い方法を追加する', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4438', 'jp', 'manual_payment_method', '手動支払い方法', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4439', 'jp', 'heading', '見出し', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4440', 'jp', 'logo', 'ロゴ', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4441', 'jp', 'manual_payment_information', '手動支払い情報', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4442', 'jp', 'type', 'タイプ', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4443', 'jp', 'custom_payment', 'カスタム支払い', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4444', 'jp', 'check_payment', '支払いを確認する', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4445', 'jp', 'checkout_thumbnail', 'チェックアウトサムネイル', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4446', 'jp', 'payment_instruction', 'お支払い方法', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4447', 'jp', 'bank_information', '銀行情報', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4448', 'jp', 'select_file', 'ファイルを選ぶ', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4449', 'jp', 'upload_new', '新規アップロード', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4450', 'jp', 'sort_by_newest', '最新のもので並べ替え', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4451', 'jp', 'sort_by_oldest', '最も古いもので並べ替え', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4452', 'jp', 'sort_by_smallest', '最小で並べ替え', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4453', 'jp', 'sort_by_largest', '最大で並べ替え', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4454', 'jp', 'selected_only', '選択のみ', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4455', 'jp', 'no_files_found', 'ファイルが見つかりません', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4456', 'jp', '0_file_selected', '0ファイルが選択されました', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4457', 'jp', 'clear', '晴れ', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4458', 'jp', 'prev', '前へ', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4459', 'jp', 'next', '次', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4460', 'jp', 'add_files', '追加ファイル', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4461', 'jp', 'method_has_been_inserted_successfully', 'メソッドが正常に挿入されました', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4462', 'jp', 'order_date', '注文日', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4463', 'jp', 'bill_to', '請求書送付先', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4464', 'jp', 'sub_total', '小計', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4465', 'jp', 'total_tax', '総税', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4466', 'jp', 'grand_total', '総計', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4467', 'jp', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'ご注文は正常に行われました。購入履歴からお支払い情報を送信してください', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4468', 'jp', 'thank_you_for_your_order', '注文いただきありがとうございます！', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4469', 'jp', 'order_code', '注文コード：', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4470', 'jp', 'a_copy_or_your_order_summary_has_been_sent_to', 'コピーまたは注文概要がに送信されました', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4471', 'jp', 'make_payment', '支払う', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4472', 'jp', 'payment_screenshot', '支払いのスクリーンショット', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4473', 'jp', 'paypal_credential', 'Paypalの資格情報', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4474', 'jp', 'paypal_client_id', 'PaypalクライアントID', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4475', 'jp', 'paypal_client_secret', 'Paypalクライアントシークレット', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4476', 'jp', 'paypal_sandbox_mode', 'Paypalサンドボックスモード', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4477', 'jp', 'sslcommerz_credential', 'Sslcommerz資格情報', '2021-02-09 12:30:19', '2021-09-20 12:59:20'),
('4478', 'jp', 'sslcz_store_id', 'SslczストアID', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4479', 'jp', 'sslcz_store_password', 'Sslczストアのパスワード', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4480', 'jp', 'sslcommerz_sandbox_mode', 'Sslcommerzサンドボックスモード', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4481', 'jp', 'stripe_credential', 'ストライプ資格情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4482', 'jp', 'stripe_key', 'ストライプキー', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4483', 'jp', 'stripe_secret', 'ストライプシークレット', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4484', 'jp', 'razorpay_credential', 'RazorPay資格情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4485', 'jp', 'razor_key', 'RAZOR KEY', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4486', 'jp', 'razor_secret', 'かみそりの秘密', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4487', 'jp', 'instamojo_credential', 'Instamojo資格情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4488', 'jp', 'api_key', 'APIキー', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4489', 'jp', 'im_api_key', 'IMAPIキー', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4490', 'jp', 'auth_token', 'AUTHトークン', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4491', 'jp', 'im_auth_token', 'IMAUTHトークン', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4492', 'jp', 'instamojo_sandbox_mode', 'Instamojoサンドボックスモード', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4493', 'jp', 'paystack_credential', 'PayStack資格情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4494', 'jp', 'public_key', '公開鍵', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4495', 'jp', 'secret_key', 'シークレットキー', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4496', 'jp', 'merchant_email', 'マーチャントメール', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4497', 'jp', 'voguepay_credential', 'VoguePay資格情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4498', 'jp', 'merchant_id', '販売者ID', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4499', 'jp', 'sandbox_mode', 'サンドボックスモード', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4500', 'jp', 'payhere_credential', 'Payhere資格情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4501', 'jp', 'payhere_merchant_id', 'PAYHERE MERCHANT ID', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4502', 'jp', 'payhere_secret', 'PAYHERE SECRET', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4503', 'jp', 'payhere_currency', 'ペイヘレ通貨', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4504', 'jp', 'payhere_sandbox_mode', 'Payhereサンドボックスモード', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4505', 'jp', 'ngenius_credential', 'Ngenius資格情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4506', 'jp', 'ngenius_outlet_id', 'NGENIUSアウトレットID', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4507', 'jp', 'ngenius_api_key', 'NGENIUSAPIキー', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4508', 'jp', 'ngenius_currency', 'NGENIUS通貨', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4509', 'jp', 'mpesa_credential', 'Mpesa資格情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4510', 'jp', 'mpesa_consumer_key', 'MPESAコンシューマーキー', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4511', 'jp', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4512', 'jp', 'mpesa_consumer_secret', 'MPESA消費者秘密', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4513', 'jp', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4514', 'jp', 'mpesa_short_code', 'MPESAショートコード', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4515', 'jp', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4516', 'jp', 'mpesa_sandbox_activation', 'MPESAサンドボックスアクティベーション', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4517', 'jp', 'flutterwave_credential', 'Flutterwave資格情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4518', 'jp', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4519', 'jp', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4520', 'jp', 'rave_title', 'RAVE_TITLE', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4521', 'jp', 'stagin_activation', 'STAGIN ACTIVATION', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4522', 'jp', 'all_product', 'すべての製品', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4523', 'jp', 'sort_by', '並び替え', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4524', 'jp', 'rating_high__low', '評価（高>低）', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4525', 'jp', 'rating_low__high', '評価（低>高）', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4526', 'jp', 'num_of_sale_high__low', '販売数（高>低）', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4527', 'jp', 'num_of_sale_low__high', '販売数（低>高）', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4528', 'jp', 'base_price_high__low', '基本価格（高>低）', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4529', 'jp', 'base_price_low__high', '基本価格（低>高）', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4530', 'jp', 'type__enter', 'タイプ＆エンター', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4531', 'jp', 'added_by', 'によって追加', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4532', 'jp', 'num_of_sale', '販売数', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4533', 'jp', 'total_stock', '総在庫', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4534', 'jp', 'todays_deal', '今日の取引', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4535', 'jp', 'rating', '評価', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4536', 'jp', 'times', 'タイムズ', '2021-02-09 12:30:20', '2021-02-09 12:30:20'),
('4537', 'jp', 'add_nerw_product', 'Nerw製品を追加する', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4538', 'jp', 'product_information', '製品情報', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4539', 'jp', 'unit', '単位', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4540', 'jp', 'unit_eg_kg_pc_etc', 'ユニット（例：KG、Pcなど）', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4541', 'jp', 'minimum_qty', '最小数量', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4542', 'jp', 'tags', 'タグ', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4543', 'jp', 'type_and_hit_enter_to_add_a_tag', '入力してEnterキーを押し、タグを追加します', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4544', 'jp', 'barcode', 'バーコード', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4545', 'jp', 'refundable', '返金可能', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4546', 'jp', 'product_images', '商品画像', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4547', 'jp', 'gallery_images', 'ギャラリー画像', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4548', 'jp', 'todays_deal_updated_successfully', '今日の取引は正常に更新されました', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4549', 'jp', 'published_products_updated_successfully', '公開された製品は正常に更新されました', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4550', 'jp', 'thumbnail_image', 'サムネイル画像', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4551', 'jp', 'featured_products_updated_successfully', '注目の製品が正常に更新されました', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4552', 'jp', 'product_videos', '製品ビデオ', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4553', 'jp', 'video_provider', 'ビデオプロバイダー', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4554', 'jp', 'youtube', 'Youtube', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4555', 'jp', 'dailymotion', 'Dailymotion', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4556', 'jp', 'vimeo', 'Vimeo', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4557', 'jp', 'video_link', 'ビデオリンク', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4558', 'jp', 'product_variation', '製品バリエーション', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4559', 'jp', 'colors', '色', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4560', 'jp', 'attributes', '属性', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4561', 'jp', 'choose_attributes', '属性を選択', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4562', 'jp', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'この製品の属性を選択してから、各属性の値を入力します', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4563', 'jp', 'product_price__stock', '商品価格+在庫', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4564', 'jp', 'unit_price', '単価', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4565', 'jp', 'purchase_price', '購入金額', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4566', 'jp', 'flat', '平らな', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4567', 'jp', 'percent', 'パーセント', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4568', 'jp', 'discount', 'ディスカウント', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4569', 'jp', 'product_description', '製品説明', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4570', 'jp', 'product_shipping_cost', '商品の送料', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4571', 'jp', 'free_shipping', '送料無料', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4572', 'jp', 'flat_rate', '定額制料金', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4573', 'jp', 'shipping_cost', '輸送費', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4574', 'jp', 'pdf_specification', 'PDF仕様', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4575', 'jp', 'seo_meta_tags', 'SEOメタタグ', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4576', 'jp', 'meta_title', 'メタタイトル', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4577', 'jp', 'meta_image', 'メタ画像', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4578', 'jp', 'choice_title', '選択タイトル', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4579', 'jp', 'enter_choice_values', '選択値を入力してください', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4580', 'jp', 'all_categories', 'すべてのカテゴリ', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4581', 'jp', 'add_new_category', '新しいカテゴリを追加', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4582', 'jp', 'type_name__enter', '名前を入力して入力', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4583', 'jp', 'banner', 'バナー', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4584', 'jp', 'commission', '手数料', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4585', 'jp', 'icon', 'アイコン', '2021-02-09 12:30:20', '2021-02-09 12:30:20'),
('4586', 'jp', 'featured_categories_updated_successfully', '注目のカテゴリが正常に更新されました', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4587', 'jp', 'hot', 'ホット', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4588', 'jp', 'filter_by_payment_status', '支払いステータスでフィルタリング', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4589', 'jp', 'unpaid', '未払い', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4590', 'jp', 'filter_by_deliver_status', '配信ステータスでフィルタリング', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4591', 'jp', 'pending', '保留中', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4592', 'jp', 'type_order_code__hit_enter', '注文コードを入力してEnterキーを押します', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4593', 'jp', 'num_of_products', '数 製品の', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4594', 'jp', 'walk_in_customer', 'ウォークインカスタマー', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4595', 'jp', 'qty', '数量', '2021-02-09 12:30:20', '2021-09-20 12:59:20'),
('4596', 'jp', 'without_shipping_charge', '配送料なし', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4597', 'jp', 'with_shipping_charge', '配送料あり', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4598', 'jp', 'pay_with_cash', '現金で支払う', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4599', 'jp', 'shipping_address', 'お届け先の住所', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4600', 'jp', 'close', '閉じる', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4601', 'jp', 'select_country', '国を選択', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4602', 'jp', 'order_confirmation', '注文確認', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4603', 'jp', 'are_you_sure_to_confirm_this_order', 'この注文を確認してもよろしいですか？', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4604', 'jp', 'comfirm_order', '注文を確認する', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4605', 'jp', 'personal_info', '個人情報', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4606', 'jp', 'repeat_password', 'パスワードを再度入力してください', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4607', 'jp', 'shop_name', 'ショップ名', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4608', 'jp', 'register_your_shop', 'ショップを登録する', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4609', 'jp', 'affiliate_informations', 'アフィリエイト情報', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4610', 'jp', 'affiliate', 'アフィリエイト', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4611', 'jp', 'user_info', 'ユーザー情報', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4612', 'jp', 'installed_addon', 'インストールされたアドオン', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4613', 'jp', 'available_addon', '利用可能なアドオン', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4614', 'jp', 'install_new_addon', '新しいアドオンをインストールする', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4615', 'jp', 'version', 'バージョン', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4616', 'jp', 'activated', '有効化', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4617', 'jp', 'deactivated', '非アクティブ化', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4618', 'jp', 'activate_otp', 'OTPをアクティブ化する', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4619', 'jp', 'otp_will_be_used_for', 'OTPは次の目的で使用されます', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4620', 'jp', 'settings_updated_successfully', '設定が正常に更新されました', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4621', 'jp', 'product_owner', 'プロダクトオーナー', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4622', 'jp', 'point', 'ポイント', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4623', 'jp', 'set_point_for_product_within_a_range', '範囲内の製品の設定値', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4624', 'jp', 'set_point_for_multiple_products', '複数の製品のセットポイント', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4625', 'jp', 'min_price', '最小価格', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4626', 'jp', 'max_price', '最高価格', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4627', 'jp', 'set_point_for_all_products', 'すべての製品の設定値', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4628', 'jp', 'set_point_for_', 'の設定値', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4629', 'jp', 'convert_status', 'ステータスの変換', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4630', 'jp', 'earned_at', 'で獲得', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4631', 'jp', 'seller_based_selling_report', '売り手ベースの販売レポート', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4632', 'jp', 'sort_by_verificarion_status', '検証ステータスで並べ替え', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4633', 'jp', 'approved', '承認済み', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4634', 'jp', 'non_approved', '未承認', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4635', 'jp', 'filter', 'フィルタ', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4636', 'jp', 'seller_name', '売り手名', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4637', 'jp', 'number_of_product_sale', '製品販売数', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4638', 'jp', 'order_amount', '注文金額', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4639', 'jp', 'facebook_chat_setting', 'Facebookのチャット設定', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4640', 'jp', 'facebook_page_id', 'FacebookページID', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4641', 'jp', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Facebookチャットを設定するときは注意してください。設定が正しくない場合、ユーザーエンドサイトにメッセンジャーアイコンが表示されません。', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4642', 'jp', 'login_into_your_facebook_page', 'Facebookページにログインします', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4643', 'jp', 'find_the_about_option_of_your_facebook_page', 'FacebookページのAboutオプションを見つけてください', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4644', 'jp', 'at_the_very_bottom_you_can_find_the_facebook_page_id', '一番下に「FacebookページID」があります。', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4645', 'jp', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'ページの設定に移動し、「アドバンスメッセージング」のオプションを見つけます', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4646', 'jp', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'そのページを下にスクロールすると、「ホワイトリストドメイン」が表示されます', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4647', 'jp', 'set_your_website_domain_name', 'ウェブサイトのドメイン名を設定する', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4648', 'jp', 'google_recaptcha_setting', 'GooglereCAPTCHA設定', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4649', 'jp', 'site_key', 'サイトキー', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4650', 'jp', 'select_shipping_method', '配送方法を選択してください', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4651', 'jp', 'product_wise_shipping_cost', '製品ごとの送料', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4652', 'jp', 'flat_rate_shipping_cost', '定額配送料', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4653', 'jp', 'seller_wise_flat_shipping_cost', '売り手ワイズフラット送料', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4654', 'jp', 'note', '注意', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4655', 'jp', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', '製品ごとの送料の計算：送料は、各商品の送料を加算して計算されます。', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4656', 'jp', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', '定額配送料の計算：顧客が購入する製品の数は関係ありません。送料は固定です', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4657', 'jp', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', '売り手ワイズフラット配送料の計算：各売り手の固定料金。顧客が2つの売り手から2つの製品を購入した場合、送料は各売り手のフラット送料を加算して計算されます。', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4658', 'jp', 'flat_rate_cost', '定額料金', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4659', 'jp', 'shipping_cost_for_admin_products', '管理製品の送料', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4660', 'jp', 'countries', '国', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4661', 'jp', 'showhide', '表示/非表示', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4662', 'jp', 'country_status_updated_successfully', '国のステータスが正常に更新されました', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4663', 'jp', 'all_subcategories', 'すべてのサブカテゴリ', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4664', 'jp', 'add_new_subcategory', '新しいサブカテゴリを追加する', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4665', 'jp', 'subcategories', 'サブカテゴリ', '2021-02-09 12:30:21', '2021-09-20 12:59:20'),
('4666', 'jp', 'sub_category_information', 'サブカテゴリ情報', '2021-02-09 12:31:08', '2021-09-20 12:59:20'),
('4667', 'jp', 'slug', 'ナメクジ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4668', 'jp', 'all_sub_subcategories', 'すべてのサブサブカテゴリ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4669', 'jp', 'add_new_sub_subcategory', '新しいサブサブカテゴリを追加する', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4670', 'jp', 'subsubcategories', 'サブサブカテゴリ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4671', 'jp', 'make_this_default', 'これをデフォルトにする', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4672', 'jp', 'shops', 'ショップ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4673', 'jp', 'women_clothing__fashion', '女性の服とファッション', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4674', 'jp', 'cellphones__tabs', '携帯電話とタブ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4675', 'jp', 'welcome_to', 'ようこそ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4676', 'jp', 'create_a_new_account', '新しいアカウントを作成する', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4677', 'jp', 'full_name', 'フルネーム', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4678', 'jp', 'password', 'パスワード', '2021-02-09 12:31:09', '2021-02-09 12:31:09'),
('4679', 'jp', 'confrim_password', 'Confrimパスワード', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4680', 'jp', 'i_agree_with_the', '私は同意します', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4681', 'jp', 'terms_and_conditions', '規約と条件', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4682', 'jp', 'register', '登録', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4683', 'jp', 'already_have_an_account', 'すでにアカウントをお持ちですか', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4684', 'jp', 'sign_up_with', 'に登録する', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4685', 'jp', 'i_agree_with_the_terms_and_conditions', '利用規約に同意します', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4686', 'jp', 'all_role', 'すべての役割', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4687', 'jp', 'add_new_role', '新しい役割を追加', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4688', 'jp', 'roles', '役割', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4689', 'jp', 'add_new_staffs', '新しいスタッフを追加する', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4690', 'jp', 'role', '役割', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4691', 'jp', 'frontend_website_name', 'フロントエンドのウェブサイト名', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4692', 'jp', 'website_name', 'ウェブサイト名', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4693', 'jp', 'site_motto', 'サイトのモットー', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4694', 'jp', 'best_ecommerce_website', '最高のeコマースウェブサイト', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4695', 'jp', 'site_icon', 'サイトアイコン', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4696', 'jp', 'website_favicon_32x32_png', 'ウェブサイトのファビコン。32x32 .png', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4697', 'jp', 'website_base_color', 'ウェブサイトのベースカラー', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4698', 'jp', 'hex_color_code', '16進カラーコード', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4699', 'jp', 'website_base_hover_color', 'ウェブサイトのベースホバーカラー', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4700', 'jp', 'update', '更新', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4701', 'jp', 'global_seo', 'グローバルソ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4702', 'jp', 'meta_description', 'メタ記述', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4703', 'jp', 'keywords', 'キーワード', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4704', 'jp', 'separate_with_coma', '昏睡状態で分離', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4705', 'jp', 'website_pages', 'ウェブサイトページ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4706', 'jp', 'all_pages', 'すべてのページ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4707', 'jp', 'add_new_page', '新しいページを追加', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4708', 'jp', 'url', 'URL', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4709', 'jp', 'actions', '行動', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4710', 'jp', 'edit_page_information', 'ページ情報の編集', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4711', 'jp', 'page_content', 'ページコンテンツ', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4712', 'jp', 'title', '題名', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4713', 'jp', 'link', 'リンク', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4714', 'jp', 'use_character_number_hypen_only', '文字、数字、ハイフンのみを使用', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4715', 'jp', 'add_content', 'コンテンツを追加する', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4716', 'jp', 'seo_fields', 'ソフィールド', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4717', 'jp', 'update_page', 'ページを更新', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4718', 'jp', 'default_language', '既定の言語', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4719', 'jp', 'add_new_language', '新しい言語を追加する', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4720', 'jp', 'rtl', 'RTL', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4721', 'jp', 'translation', '翻訳', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4722', 'jp', 'language_information', '言語情報', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4723', 'jp', 'save_page', 'ページを保存', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4724', 'jp', 'home_page_settings', 'ホームページの設定', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4725', 'jp', 'home_slider', 'ホームスライダー', '2021-02-09 12:31:09', '2021-09-20 12:59:20'),
('4726', 'jp', 'photos__links', '写真とリンク', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4727', 'jp', 'add_new', '新しく追加する', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4728', 'jp', 'home_categories', 'ホームカテゴリー', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4729', 'jp', 'home_banner_1_max_3', 'ホームバナー1（最大3）', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4730', 'jp', 'banner__links', 'バナーとリンク', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4731', 'jp', 'home_banner_2_max_3', 'ホームバナー2（最大3）', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4732', 'jp', 'top_10', 'トップ10', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4733', 'jp', 'top_categories_max_10', 'トップカテゴリー（最大10）', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4734', 'jp', 'top_brands_max_10', 'トップブランド（最大10）', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4735', 'jp', 'system_name', 'システム名', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4736', 'jp', 'system_logo__white', 'システムロゴ-白', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4737', 'jp', 'choose_files', 'ファイルを選択', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4738', 'jp', 'will_be_used_in_admin_panel_side_menu', '管理パネルのサイドメニューで使用されます', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4739', 'jp', 'system_logo__black', 'システムロゴ-黒', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4740', 'jp', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'モバイルの管理パネルトップバー+管理者ログインページで使用されます', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4741', 'jp', 'system_timezone', 'システムタイムゾーン', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4742', 'jp', 'admin_login_page_background', '管理者ログインページの背景', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4743', 'jp', 'website_header', 'ウェブサイトヘッダー', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4744', 'jp', 'header_setting', 'ヘッダー設定', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4745', 'jp', 'header_logo', 'ヘッダーロゴ', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4746', 'jp', 'show_language_switcher', '言語スイッチャーを表示しますか？', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4747', 'jp', 'show_currency_switcher', '通貨スイッチャーを表示しますか？', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4748', 'jp', 'enable_stikcy_header', 'stikcyヘッダーを有効にしますか？', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4749', 'jp', 'website_footer', 'ウェブサイトフッター', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4750', 'jp', 'footer_widget', 'フッターウィジェット', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4751', 'jp', 'about_widget', 'ウィジェットについて', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4752', 'jp', 'footer_logo', 'フッターロゴ', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4753', 'jp', 'about_description', '説明について', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4754', 'jp', 'contact_info_widget', '連絡先情報ウィジェット', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4755', 'jp', 'footer_contact_address', 'フッターの連絡先', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4756', 'jp', 'footer_contact_phone', 'フッター連絡先電話', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4757', 'jp', 'footer_contact_email', 'フッターの連絡先メール', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4758', 'jp', 'link_widget_one', 'リンクウィジェット1', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4759', 'jp', 'links', 'リンク', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4760', 'jp', 'footer_bottom', 'フッターボトム', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4761', 'jp', 'copyright_widget_', '著作権ウィジェット', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4762', 'jp', 'copyright_text', '著作権テキスト', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4763', 'jp', 'social_link_widget_', 'ソーシャルリンクウィジェット', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4764', 'jp', 'show_social_links', 'ソーシャルリンクを表示しますか？', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4765', 'jp', 'social_links', 'ソーシャルリンク', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4766', 'jp', 'payment_methods_widget_', '支払い方法ウィジェット', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4767', 'jp', 'rtl_status_updated_successfully', 'RTLステータスが正常に更新されました', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4768', 'jp', 'language_changed_to_', '言語がに変更されました', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4769', 'jp', 'inhouse_product_sale_report', '自社製品販売レポート', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4770', 'jp', 'sort_by_category', 'カテゴリで並べ替え', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4771', 'jp', 'product_wise_stock_report', '製品ごとの在庫レポート', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4772', 'jp', 'currency_changed_to_', '通貨がに変更されました', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4773', 'jp', 'avatar', 'アバター', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4774', 'jp', 'copy', 'コピー', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4775', 'jp', 'variant', 'バリアント', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4776', 'jp', 'variant_price', 'バリアント価格', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4777', 'jp', 'sku', 'SKU', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4778', 'jp', 'key', 'キー', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4779', 'jp', 'value', '値', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4780', 'jp', 'copy_translations', '翻訳をコピーする', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4781', 'jp', 'all_pickup_points', 'すべてのピックアップポイント', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4782', 'jp', 'add_new_pickup_point', '新しいピックアップポイントを追加する', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4783', 'jp', 'manager', 'マネージャー', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4784', 'jp', 'location', 'ロケーション', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4785', 'jp', 'pickup_station_contact', 'ピックアップステーションの連絡先', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4786', 'jp', 'open', '開いた', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4787', 'jp', 'pos_activation_for_seller', '売り手のためのPOSアクティベーション', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4788', 'jp', 'order_completed_successfully', '注文が正常に完了しました。', '2021-02-09 12:31:09', '2021-09-20 12:59:21'),
('4789', 'jp', 'text_input', 'テキスト入力', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4790', 'jp', 'select', '選択する', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4791', 'jp', 'multiple_select', '複数選択', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4792', 'jp', 'radio', '無線', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4793', 'jp', 'file', 'ファイル', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4794', 'jp', 'email_address', '電子メールアドレス', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4795', 'jp', 'verification_info', '検証情報', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4796', 'jp', 'approval', '承認', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4797', 'jp', 'due_amount', '支払期日', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4798', 'jp', 'show', '公演', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4799', 'jp', 'pay_now', '今払う', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4800', 'jp', 'affiliate_user_verification', 'アフィリエイトユーザーの確認', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4801', 'jp', 'reject', '拒否する', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4802', 'jp', 'accept', '受け入れる', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4803', 'jp', 'beauty_health__hair', '美容、健康、髪', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4804', 'jp', 'comparison', '比較', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4805', 'jp', 'reset_compare_list', '比較リストをリセット', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4806', 'jp', 'your_comparison_list_is_empty', '比較リストが空です', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4807', 'jp', 'convert_point_to_wallet', 'ポイントをウォレットに変換', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4808', 'jp', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', '注：クラブポイントアドオンを使用する前に、まずウォレットオプションを有効にする必要があります。', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4809', 'jp', 'create_an_account', 'アカウントを作成する。', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4810', 'jp', 'use_email_instead', '代わりにメールを使用する', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4811', 'jp', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'サインアップすると、利用規約に同意したことになります。', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4812', 'jp', 'create_account', 'アカウントを作成する', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4813', 'jp', 'or_join_with', 'または参加する', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4814', 'jp', 'already_have_an_account', 'すでにアカウントをお持ちですか？', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4815', 'jp', 'log_in', 'ログインする', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4816', 'jp', 'computer__accessories', 'コンピュータアクセサリー', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4817', 'jp', 'products', '製品', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4818', 'jp', 'in_your_cart', 'カートの中', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4819', 'jp', 'in_your_wishlist', 'ウィッシュリストに', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4820', 'jp', 'you_ordered', 'あなたが注文した', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4821', 'jp', 'default_shipping_address', 'デフォルトの配送先住所', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4822', 'jp', 'sports__outdoor', 'スポーツ＆アウトドア', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4823', 'jp', 'copied', 'コピー', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4824', 'jp', 'copy_the_promote_link', 'プロモートリンクをコピーする', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4825', 'jp', 'write_a_review', 'レビューを書く', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4826', 'jp', 'your_name', 'あなたの名前', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4827', 'jp', 'comment', 'コメント', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4828', 'jp', 'your_review', 'あなたのレビュー', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4829', 'jp', 'submit_review', 'レビュー送信', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4830', 'jp', 'claire_willis', 'クレアウィリス', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4831', 'jp', 'germaine_greene', 'Germaine Greene', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4832', 'jp', 'product_file', '製品ファイル', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4833', 'jp', 'choose_file', 'ファイルを選ぶ', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4834', 'jp', 'type_to_add_a_tag', 'タグを追加するために入力します', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4835', 'jp', 'images', '画像', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4836', 'jp', 'main_images', 'メイン画像', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4837', 'jp', 'meta_tags', 'メタタグ', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4838', 'jp', 'digital_product_has_been_inserted_successfully', 'デジタル製品が正常に挿入されました', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4839', 'jp', 'edit_digital_product', 'デジタル製品の編集', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4840', 'jp', 'select_an_option', '選択肢一つを選択してください', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4841', 'jp', 'tax', '税金', '2021-02-09 12:31:10', '2021-02-09 12:31:10'),
('4842', 'jp', 'any_question_about_this_product', 'この製品について質問がありますか？', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4843', 'jp', 'sign_in', 'ログイン', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4844', 'jp', 'login_with_google', 'Googleでログイン', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4845', 'jp', 'login_with_facebook', 'Facebookでログイン', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4846', 'jp', 'login_with_twitter', 'Twitterでログイン', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4847', 'jp', 'click_to_show_phone_number', 'クリックして電話番号を表示', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4848', 'jp', 'other_ads_of', 'その他の広告', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4849', 'jp', 'store_home', 'ストアホーム', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4850', 'jp', 'top_selling', 'トップセラー', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4851', 'jp', 'shop_settings', 'ショップ設定', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4852', 'jp', 'visit_shop', 'ショップにアクセス', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4853', 'jp', 'pickup_points', 'ピックアップポイント', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4854', 'jp', 'select_pickup_point', 'ピックアップポイントを選択', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4855', 'jp', 'slider_settings', 'スライダー設定', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4856', 'jp', 'social_media_link', 'ソーシャルメディアリンク', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4857', 'jp', 'facebook', 'フェイスブック', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4858', 'jp', 'twitter', 'ツイッター', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4859', 'jp', 'google', 'グーグル', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4860', 'jp', 'new_arrival_products', '新着商品', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4861', 'jp', 'check_your_order_status', '注文状況を確認する', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4862', 'jp', 'shipping_method', '配送方法', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4863', 'jp', 'shipped_by', 'で出荷', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4864', 'jp', 'image', '画像', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4865', 'jp', 'sub_sub_category', 'サブサブカテゴリ', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4866', 'jp', 'inhouse_products', '自社製品', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4867', 'jp', 'forgot_password', 'パスワードをお忘れですか？', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4868', 'jp', 'enter_your_email_address_to_recover_your_password', 'パスワードを回復するには、メールアドレスを入力してください。', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4869', 'jp', 'email_or_phone', 'メールまたは電話', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4870', 'jp', 'send_password_reset_link', 'パスワードリセットリンクの送信', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4871', 'jp', 'back_to_login', 'ログインに戻る', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4872', 'jp', 'index', 'インデックス', '2021-02-09 12:31:10', '2021-02-09 12:31:10'),
('4873', 'jp', 'download_your_product', '製品をダウンロードする', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4874', 'jp', 'option', 'オプション', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4875', 'jp', 'applied_refund_request', '適用された払い戻しリクエスト', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4876', 'jp', 'item_has_been_renoved_from_wishlist', 'アイテムはウィッシュリストからリニューアルされました', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4877', 'jp', 'bulk_products_upload', 'バルク製品のアップロード', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4878', 'jp', 'upload_csv', 'CSVをアップロード', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4879', 'jp', 'create_a_ticket', 'チケットを作成する', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4880', 'jp', 'tickets', '切符売場', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4881', 'jp', 'ticket_id', 'チケットID', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4882', 'jp', 'sending_date', '送信日', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4883', 'jp', 'subject', '件名', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4884', 'jp', 'view_details', '詳細を見る', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4885', 'jp', 'provide_a_detailed_description', '詳細な説明を入力してください', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4886', 'jp', 'type_your_reply', '返信を入力してください', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4887', 'jp', 'send_ticket', 'チケットを送る', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4888', 'jp', 'load_more', 'もっと読み込む', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4889', 'jp', 'jewelry__watches', 'ジュエリー＆時計', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4890', 'jp', 'filters', 'フィルター', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4891', 'jp', 'contact_address', '連絡先住所', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4892', 'jp', 'contact_phone', 'お問い合わせ電話', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4893', 'jp', 'contact_email', '連絡先メールアドレス', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4894', 'jp', 'filter_by', 'フィルタリング', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4895', 'jp', 'condition', '状態', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4896', 'jp', 'all_type', 'すべてのタイプ', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4897', 'jp', 'pay_with_wallet', '財布で支払う', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4898', 'jp', 'select_variation', 'バリエーションを選択', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4899', 'jp', 'no_product_added', '製品は追加されていません', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4900', 'jp', 'status_has_been_updated_successfully', 'ステータスが正常に更新されました', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4901', 'jp', 'all_seller_packages', 'すべてのセラーパッケージ', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4902', 'jp', 'add_new_package', '新しいパッケージを追加する', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4903', 'jp', 'package_logo', 'パッケージロゴ', '2021-02-09 12:31:10', '2021-09-20 12:59:21'),
('4904', 'jp', 'days', '日々', '2021-02-09 12:31:11', '2021-02-09 12:31:11'),
('4905', 'jp', 'create_new_seller_package', '新しいセラーパッケージを作成する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4906', 'jp', 'package_name', 'パッケージ名', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4907', 'jp', 'duration', 'デュレーション', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4908', 'jp', 'validity_in_number_of_days', '日数での有効性', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4909', 'jp', 'update_package_information', 'パッケージ情報の更新', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4910', 'jp', 'package_has_been_inserted_successfully', 'パッケージが正常に挿入されました', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4911', 'jp', 'refund_request', '払い戻しのリクエスト', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4912', 'jp', 'reason', '理由', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4913', 'jp', 'label', 'ラベル', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4914', 'jp', 'select_label', 'ラベルを選択', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4915', 'jp', 'multiple_select_label', '複数選択ラベル', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4916', 'jp', 'radio_label', 'ラジオラベル', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4917', 'jp', 'pickup_point_orders', 'ピックアップポイントの注文', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4918', 'jp', 'view', '見る', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4919', 'jp', 'order_', '注文番号', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4920', 'jp', 'order_status', '注文の状況', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4921', 'jp', 'total_amount', '合計金額', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4922', 'jp', 'total', '合計', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4923', 'jp', 'delivery_status_has_been_updated', '配信ステータスが更新されました', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4924', 'jp', 'payment_status_has_been_updated', '支払いステータスが更新されました', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4925', 'jp', 'invoice', '請求書', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4926', 'jp', 'set_refund_time', '払い戻し時間を設定する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4927', 'jp', 'set_time_for_sending_refund_request', '払い戻しリクエストを送信する時間を設定する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4928', 'jp', 'set_refund_sticker', '払い戻しステッカーを設定する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4929', 'jp', 'sticker', 'ステッカー', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4930', 'jp', 'refund_request_all', 'すべての払い戻しリクエスト', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4931', 'jp', 'order_id', '注文ID', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4932', 'jp', 'seller_approval', '売り手の承認', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4933', 'jp', 'admin_approval', '管理者の承認', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4934', 'jp', 'refund_status', '払い戻しステータス', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4935', 'jp', 'no_refund', '返金なし', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4936', 'jp', 'status_updated_successfully', 'ステータスが正常に更新されました', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4937', 'jp', 'user_search_report', 'ユーザー検索レポート', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4938', 'jp', 'search_by', 'で検索する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4939', 'jp', 'number_searches', '番号検索', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4940', 'jp', 'sender', '送信者', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4941', 'jp', 'receiver', 'レシーバー', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4942', 'jp', 'verification_form_updated_successfully', '確認フォームが正常に更新されました', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4943', 'jp', 'invalid_email_or_password', '無効なメールアドレスまたはパスワード', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4944', 'jp', 'all_coupons', 'すべてのクーポン', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4945', 'jp', 'add_new_coupon', '新しいクーポンを追加する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4946', 'jp', 'coupon_information', 'クーポン情報', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4947', 'jp', 'start_date', '開始日', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4948', 'jp', 'end_date', '終了日', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4949', 'jp', 'product_base', '製品ベース', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4950', 'jp', 'send_newsletter', 'ニュースレターを送信する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4951', 'jp', 'mobile_users', 'モバイルユーザー', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4952', 'jp', 'sms_subject', 'SMSの件名', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4953', 'jp', 'sms_content', 'SMSコンテンツ', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4954', 'jp', 'all_flash_delas', 'オールフラッシュデラス', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4955', 'jp', 'create_new_flash_dela', '新しいフラッシュデラを作成する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4956', 'jp', 'page_link', 'ページリンク', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4957', 'jp', 'flash_deal_information', 'フラッシュ取引情報', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4958', 'jp', 'background_color', '背景色', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4959', 'jp', '0000ff', '＃0000ff', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4960', 'jp', 'text_color', 'テキストの色', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4961', 'jp', 'white', '白い', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4962', 'jp', 'dark', '闇', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4963', 'jp', 'choose_products', '製品を選択してください', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4964', 'jp', 'discounts', '割引', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4965', 'jp', 'discount_type', '割引タイプ', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4966', 'jp', 'twillo_credential', 'Twillo資格情報', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4967', 'jp', 'twilio_sid', 'TWILIO SID', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4968', 'jp', 'twilio_auth_token', 'TWILIOAUTHトークン', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4969', 'jp', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4970', 'jp', 'valid_twillo_number', '有効なTWILLO番号', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4971', 'jp', 'nexmo_credential', 'Nexmo資格情報', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4972', 'jp', 'nexmo_key', 'NEXMOキー', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4973', 'jp', 'nexmo_secret', 'NEXMOシークレット', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4974', 'jp', 'ssl_wireless_credential', 'SSLワイヤレス資格情報', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4975', 'jp', 'ssl_sms_api_token', 'SSL SMSAPIトークン', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4976', 'jp', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4977', 'jp', 'ssl_sms_url', 'SSL SMSURL', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4978', 'jp', 'fast2sms_credential', 'Fast2SMS資格情報', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4979', 'jp', 'auth_key', '認証キー', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4980', 'jp', 'route', 'ルート', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4981', 'jp', 'promotional_use', '販促用', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4982', 'jp', 'transactional_use', 'トランザクション使用', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4983', 'jp', 'sender_id', 'SENDER ID', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4984', 'jp', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4985', 'jp', 'twillo_otp', 'Twillo OTP', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4986', 'jp', 'ssl_wireless_otp', 'SSLワイヤレスOTP', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4987', 'jp', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4988', 'jp', 'order_placement', '発注', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4989', 'jp', 'delivery_status_changing_time', '配達状況変更時間', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4990', 'jp', 'paid_status_changing_time', '有料ステータス変更時間', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4991', 'jp', 'send_bulk_sms', 'バルクSMSを送信する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4992', 'jp', 'all_subscribers', 'すべてのサブスクライバー', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4993', 'jp', 'coupon_information_adding', 'クーポン情報追加', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4994', 'jp', 'coupon_type', 'クーポンタイプ', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4995', 'jp', 'for_products', '製品の場合', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4996', 'jp', 'for_total_orders', '全注文の場合', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4997', 'jp', 'add_your_product_base_coupon', '製品ベースクーポンを追加する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4998', 'jp', 'coupon_code', 'クーポンコード', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('4999', 'jp', 'sub_category', 'サブカテゴリー', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5000', 'jp', 'add_more', 'さらに追加', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5001', 'jp', 'add_your_cart_base_coupon', 'カートベースクーポンを追加する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5002', 'jp', 'minimum_shopping', '最小限の買い物', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5003', 'jp', 'maximum_discount_amount', '最大割引額', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5004', 'jp', 'coupon_information_update', 'クーポン情報更新', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5005', 'jp', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'すべての電子メール送信機能が機能するようにSMTP設定を構成してください', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5006', 'jp', 'configure_now', '今すぐ設定', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5007', 'jp', 'total_published_products', '公開された製品の合計', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5008', 'jp', 'total_sellers_products', 'トータルセラー商品', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5009', 'jp', 'total_admin_products', '総管理製品', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5010', 'jp', 'manage_products', '製品の管理', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5011', 'jp', 'total_product_category', '総製品カテゴリー', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5012', 'jp', 'create_category', 'カテゴリを作成する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5013', 'jp', 'total_product_sub_sub_category', '製品サブサブカテゴリの合計', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5014', 'jp', 'create_sub_sub_category', 'サブサブカテゴリを作成する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5015', 'jp', 'total_product_sub_category', '製品サブカテゴリの合計', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5016', 'jp', 'create_sub_category', 'サブカテゴリを作成する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5017', 'jp', 'total_product_brand', 'トータル商品ブランド', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5018', 'jp', 'create_brand', 'ブランドを作成する', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5019', 'jp', 'total_sellers', '総売り手', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5020', 'jp', 'total_approved_sellers', '承認された売り手の合計', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5021', 'jp', 'total_pending_sellers', '保留中の売り手の合計', '2021-02-09 12:31:11', '2021-09-20 12:59:21'),
('5022', 'jp', 'manage_sellers', '売り手を管理する', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5023', 'jp', 'category_wise_product_sale', 'カテゴリ別商品販売', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5024', 'jp', 'sale', 'セール', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5025', 'jp', 'category_wise_product_stock', 'カテゴリ別の製品在庫', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5026', 'jp', 'category_name', '種別名', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5027', 'jp', 'stock', '株式', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5028', 'jp', 'frontend', 'フロントエンド', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5029', 'jp', 'home_page', 'ホームページ', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5030', 'jp', 'setting', '設定', '2021-02-09 12:31:12', '2021-02-09 12:31:12'),
('5031', 'jp', 'policy_page', 'ポリシーページ', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5032', 'jp', 'general', '一般', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5033', 'jp', 'click_here', 'ここをクリック', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5034', 'jp', 'useful_link', '便利なリンク', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5035', 'jp', 'activation', 'アクティベーション', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5036', 'jp', 'smtp', 'SMTP', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5037', 'jp', 'payment_method', '支払方法', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5038', 'jp', 'social_media', 'ソーシャルメディア', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5039', 'jp', 'business', 'ビジネス', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5040', 'jp', 'seller_verification', '売り手の確認', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5041', 'jp', 'form_setting', 'フォーム設定', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5042', 'jp', 'language', '言語', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5043', 'jp', 'dashboard', 'ダッシュボード', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5044', 'jp', 'pos_system', 'POSシステム', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5045', 'jp', 'pos_manager', 'POSマネージャー', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5046', 'jp', 'pos_configuration', 'POS構成', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5047', 'jp', 'products', '製品', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5048', 'jp', 'add_new_product', '新製品を追加', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5049', 'jp', 'all_products', 'すべての製品', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5050', 'jp', 'in_house_products', 'インハウス製品', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5051', 'jp', 'seller_products', '売り手の製品', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5052', 'jp', 'digital_products', 'デジタル製品', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5053', 'jp', 'bulk_import', '一括インポート', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5054', 'jp', 'bulk_export', '一括エクスポート', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5055', 'jp', 'category', 'カテゴリー', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5056', 'jp', 'subcategory', 'サブカテゴリ', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5057', 'jp', 'sub_subcategory', 'サブサブカテゴリ', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5058', 'jp', 'brand', 'ブランド', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5059', 'jp', 'attribute', '属性', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5060', 'jp', 'product_reviews', '製品レビュー', '2021-02-09 12:31:12', '2021-09-20 12:59:21'),
('5061', 'jp', 'sales', '販売', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5062', 'jp', 'all_orders', 'すべての注文', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5063', 'jp', 'inhouse_orders', '社内注文', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5064', 'jp', 'seller_orders', '売り手の注文', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5065', 'jp', 'pickup_point_order', 'ピックアップポイントの注文', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5066', 'jp', 'refunds', '払い戻し', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5067', 'jp', 'refund_requests', '払い戻しリクエスト', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5068', 'jp', 'approved_refund', '承認された払い戻し', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5069', 'jp', 'refund_configuration', '払い戻しの構成', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5070', 'jp', 'customers', 'お客様', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5071', 'jp', 'customer_list', '顧客リスト', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5072', 'jp', 'classified_products', '分類された製品', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5073', 'jp', 'classified_packages', '分類されたパッケージ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5074', 'jp', 'sellers', '売り手', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5075', 'jp', 'all_seller', 'すべての売り手', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5076', 'jp', 'payouts', '支払い', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5077', 'jp', 'payout_requests', '支払い要求', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5078', 'jp', 'seller_commission', '売り手手数料', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5079', 'jp', 'seller_packages', '売り手パッケージ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5080', 'jp', 'seller_verification_form', '売り手確認フォーム', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5081', 'jp', 'reports', 'レポート', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5082', 'jp', 'in_house_product_sale', '自社製品販売', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5083', 'jp', 'seller_products_sale', '売り手製品の販売', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5084', 'jp', 'products_stock', '商品在庫', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5085', 'jp', 'products_wishlist', '製品のウィッシュリスト', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5086', 'jp', 'user_searches', 'ユーザー検索', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5087', 'jp', 'marketing', 'マーケティング', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5088', 'jp', 'flash_deals', 'フラッシュのお得な情報', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5089', 'jp', 'newsletters', 'ニュースレター', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5090', 'jp', 'bulk_sms', 'バルクSMS', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5091', 'jp', 'subscribers', 'サブスクライバー', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5092', 'jp', 'coupon', 'クーポン', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5093', 'jp', 'support', 'サポート', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5094', 'jp', 'ticket', 'チケット', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5095', 'jp', 'product_queries', '製品クエリ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5096', 'jp', 'website_setup', 'ウェブサイトのセットアップ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5097', 'jp', 'header', 'ヘッダ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5098', 'jp', 'footer', 'フッター', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5099', 'jp', 'pages', 'ページ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5100', 'jp', 'appearance', '外観', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5101', 'jp', 'setup__configurations', 'セットアップと構成', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5102', 'jp', 'general_settings', '一般設定', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5103', 'jp', 'features_activation', '機能のアクティブ化', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5104', 'jp', 'languages', '言語', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5105', 'jp', 'currency', '通貨', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5106', 'jp', 'pickup_point', '集荷場', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5107', 'jp', 'smtp_settings', 'SMTP設定', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5108', 'jp', 'payment_methods', 'お支払い方法', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5109', 'jp', 'file_system_configuration', 'ファイルシステムの構成', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5110', 'jp', 'social_media_logins', 'ソーシャルメディアログイン', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5111', 'jp', 'analytics_tools', '分析ツール', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5112', 'jp', 'facebook_chat', 'Facebookチャット', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5113', 'jp', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5114', 'jp', 'shipping_configuration', '出荷構成', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5115', 'jp', 'shipping_countries', '出荷国', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5116', 'jp', 'affiliate_system', 'アフィリエイトシステム', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5117', 'jp', 'affiliate_registration_form', 'アフィリエイト登録フォーム', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5118', 'jp', 'affiliate_configurations', 'アフィリエイト構成', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5119', 'jp', 'affiliate_users', 'アフィリエイトユーザー', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5120', 'jp', 'referral_users', '紹介ユーザー', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5121', 'jp', 'affiliate_withdraw_requests', 'アフィリエイト撤回リクエスト', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5122', 'jp', 'offline_payment_system', 'オフライン決済システム', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5123', 'jp', 'manual_payment_methods', '手動支払い方法', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5124', 'jp', 'offline_wallet_recharge', 'オフラインウォレットリチャージ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5125', 'jp', 'offline_customer_package_payments', 'オフラインの顧客パッケージ支払い', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5126', 'jp', 'offline_seller_package_payments', 'オフラインセラーパッケージ支払い', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5127', 'jp', 'paytm_payment_gateway', 'Paytmペイメントゲートウェイ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5128', 'jp', 'set_paytm_credentials', 'Paytm資格情報を設定する', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5129', 'jp', 'club_point_system', 'クラブポイントシステム', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5130', 'jp', 'club_point_configurations', 'クラブポイントの構成', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5131', 'jp', 'set_product_point', '製品ポイントの設定', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5132', 'jp', 'user_points', 'ユーザーポイント', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5133', 'jp', 'otp_system', 'OTPシステム', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5134', 'jp', 'otp_configurations', 'OTP構成', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5135', 'jp', 'set_otp_credentials', 'OTP資格情報を設定する', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5136', 'jp', 'staffs', 'スタッフ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5137', 'jp', 'all_staffs', 'すべてのスタッフ', '2021-02-09 12:31:12', '2021-09-20 12:59:22'),
('5138', 'jp', 'staff_permissions', 'スタッフの許可', '2021-02-09 12:31:13', '2021-09-20 12:59:22'),
('5139', 'jp', 'addon_manager', 'アドオンマネージャー', '2021-02-09 12:31:13', '2021-09-20 12:59:22'),
('5140', 'jp', 'browse_website', 'ウェブサイトを閲覧する', '2021-02-09 12:31:13', '2021-09-20 12:59:22'),
('5141', 'jp', 'pos', 'POS', '2021-02-09 12:31:13', '2021-09-20 12:59:22'),
('5142', 'jp', 'notifications', '通知', '2021-02-09 12:31:13', '2021-09-20 12:59:22'),
('5143', 'jp', 'new_orders', '新規注文', '2021-02-09 12:31:13', '2021-09-20 12:59:22'),
('5144', 'jp', 'userimage', 'ユーザーイメージ', '2021-02-09 12:31:13', '2021-09-20 12:59:22'),
('5145', 'jp', 'profile', 'プロフィール', '2021-02-09 12:31:13', '2021-09-20 12:59:22'),
('5146', 'jp', 'logout', 'ログアウト', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5147', 'jp', 'page_not_found', 'ページが見つかりません！', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5148', 'jp', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'お探しのページがサーバーに見つかりませんでした。', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5149', 'jp', 'registration', '登録', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5150', 'jp', 'i_am_shopping_for', '私は買い物をしています...', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5151', 'jp', 'compare', '比較する', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5152', 'jp', 'wishlist', 'ウィッシュリスト', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5153', 'jp', 'cart', 'カート', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5154', 'jp', 'your_cart_is_empty', 'あなたのカートは空です', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5155', 'jp', 'categories', 'カテゴリ', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5156', 'jp', 'see_all', 'すべてを見る', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5157', 'jp', 'seller_policy', '売り手の方針', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5158', 'jp', 'return_policy', '返品規則', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5159', 'jp', 'support_policy', 'サポートポリシー', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5160', 'jp', 'privacy_policy', '個人情報保護方針', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5161', 'jp', 'your_email_address', 'メールアドレス', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5162', 'jp', 'subscribe', '申し込む', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5163', 'jp', 'contact_info', '連絡先情報', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5164', 'jp', 'address', '住所', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5165', 'jp', 'phone', '電話', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5166', 'jp', 'email', 'Eメール', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5167', 'jp', 'login', 'ログイン', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5168', 'jp', 'my_account', 'マイアカウント', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5169', 'jp', 'order_history', '注文履歴', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5170', 'jp', 'my_wishlist', '私のウィッシュリスト', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5171', 'jp', 'track_order', '注文の追跡', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5172', 'jp', 'be_an_affiliate_partner', 'アフィリエイトパートナーになる', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5173', 'jp', 'be_a_seller', '売り手になる', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5174', 'jp', 'apply_now', '今すぐ申し込む', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5175', 'jp', 'confirmation', '確認', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5176', 'jp', 'delete_confirmation_message', '確認メッセージを削除する', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5177', 'jp', 'cancel', 'キャンセル', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5178', 'jp', 'delete', '削除', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5179', 'jp', 'item_has_been_added_to_compare_list', '比較リストに項目を追加しました', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5180', 'jp', 'please_login_first', '最初にログインしてください', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5181', 'jp', 'total_earnings_from', 'からの総収益', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5182', 'jp', 'client_subscription', 'クライアントサブスクリプション', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5183', 'jp', 'product_category', '製品カテゴリ', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5184', 'jp', 'product_sub_sub_category', '製品サブサブカテゴリ', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5185', 'jp', 'product_sub_category', '製品サブカテゴリ', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5186', 'jp', 'product_brand', '製品ブランド', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5187', 'jp', 'top_client_packages', 'トップクライアントパッケージ', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5188', 'jp', 'top_freelancer_packages', 'トップフリーランサーパッケージ', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5189', 'jp', 'number_of_sale', '販売数', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5190', 'jp', 'number_of_stock', '在庫数', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5191', 'jp', 'top_10_products', 'トップ10製品', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5192', 'jp', 'top_12_products', 'トップ12製品', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5193', 'jp', 'admin_can_not_be_a_seller', '管理者は売り手になることはできません', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5194', 'jp', 'filter_by_rating', '評価によるフィルタリング', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5195', 'jp', 'published_reviews_updated_successfully', '公開されたレビューは正常に更新されました', '2021-02-09 12:32:03', '2021-09-20 12:59:22'),
('5196', 'jp', 'refund_sticker_has_been_updated_successfully', '払い戻しステッカーが正常に更新されました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5197', 'jp', 'edit_product', '製品の編集', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5198', 'jp', 'meta_images', 'メタ画像', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5199', 'jp', 'update_product', '製品の更新', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5200', 'jp', 'product_has_been_deleted_successfully', '製品は正常に削除されました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5201', 'jp', 'your_profile_has_been_updated_successfully', 'あなたのプロファイルが正常に更新されました！', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5202', 'jp', 'upload_limit_has_been_reached_please_upgrade_your_package', 'アップロード制限に達しました。パッケージをアップグレードしてください。', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5203', 'jp', 'add_your_product', '製品を追加する', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5204', 'jp', 'select_a_category', 'カテゴリーを選ぶ', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5205', 'jp', 'select_a_brand', 'ブランドを選択してください', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5206', 'jp', 'product_unit', '製品ユニット', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5207', 'jp', 'minimum_qty', '最小数量。', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5208', 'jp', 'product_tag', '商品タグ', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5209', 'jp', 'type__hit_enter', '入力してEnterキーを押します', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5210', 'jp', 'videos', 'ビデオ', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5211', 'jp', 'video_from', 'ビデオから', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5212', 'jp', 'video_url', 'ビデオURL', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5213', 'jp', 'customer_choice', '顧客の選択', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5214', 'jp', 'pdf', 'PDF', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5215', 'jp', 'choose_pdf', 'PDFを選択', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5216', 'jp', 'select_category', 'カテゴリを選んでください', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5217', 'jp', 'target_category', '対象カテゴリー', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5218', 'jp', 'subsubcategory', 'サブサブカテゴリ', '2021-02-09 12:32:04', '2021-02-09 12:32:04'),
('5219', 'jp', 'search_category', '検索カテゴリ', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5220', 'jp', 'search_subcategory', 'SubCategoryを検索', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5221', 'jp', 'search_subsubcategory', 'SubSubCategoryを検索', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5222', 'jp', 'update_your_product', '製品を更新する', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5223', 'jp', 'product_has_been_updated_successfully', '製品は正常に更新されました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5224', 'jp', 'add_your_digital_product', 'デジタル製品を追加する', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5225', 'jp', 'active_ecommerce_cms_update_process', 'アクティブなeコマースCMS更新プロセス', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5226', 'jp', 'codecanyon_purchase_code', 'Codecanyon購入コード', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5227', 'jp', 'database_name', 'データベース名', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5228', 'jp', 'database_username', 'データベースユーザー名', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5229', 'jp', 'database_password', 'データベースパスワード', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5230', 'jp', 'database_hostname', 'データベースのホスト名', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5231', 'jp', 'update_now', '今すぐアップデート', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5232', 'jp', 'congratulations', 'おめでとう', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5233', 'jp', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', '更新プロセスが正常に完了しました。続行するにはログインしてください', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5234', 'jp', 'go_to_home', '家に帰る', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5235', 'jp', 'login_to_admin_panel', '管理パネルにログイン', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5236', 'jp', 's3_file_system_credentials', 'S3ファイルシステムの資格情報', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5237', 'jp', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5238', 'jp', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5239', 'jp', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5240', 'jp', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5241', 'jp', 'aws_url', 'AWS_URL', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5242', 'jp', 's3_file_system_activation', 'S3ファイルシステムのアクティベーション', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5243', 'jp', 'your_phone_number', 'あなたの電話番号', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5244', 'jp', 'zip_file', 'ZIPファイル', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5245', 'jp', 'install', 'インストール', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5246', 'jp', 'this_version_is_not_capable_of_installing_addons_please_update', 'このバージョンはアドオンをインストールできません。更新してください。', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5247', 'jp', 'search_in_menu', 'メニューで検索', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5248', 'jp', 'uploaded_files', 'アップロードされたファイル', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5249', 'jp', 'shipping_cities', '配送都市', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5250', 'jp', 'system', 'システム', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5251', 'jp', 'server_status', 'サーバーステータス', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5252', 'jp', 'nothing_found', '何も見つかりません', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5253', 'jp', 'parent_category', '親カテゴリ', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5254', 'jp', 'level', 'レベル', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5255', 'jp', 'category_information', 'カテゴリ情報', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5256', 'jp', 'translatable', '翻訳可能', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5257', 'jp', 'no_parent', '親なし', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5258', 'jp', 'physical', '物理的', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5259', 'jp', 'digital', 'デジタル', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5260', 'jp', '200x200', '200x200', '2021-02-09 12:32:04', '2021-02-09 12:32:04'),
('5261', 'jp', '32x32', '32x32', '2021-02-09 12:32:04', '2021-02-09 12:32:04'),
('5262', 'jp', 'search_your_files', 'ファイルを検索する', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5263', 'jp', 'category_has_been_updated_successfully', 'カテゴリが正常に更新されました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5264', 'jp', 'all_uploaded_files', 'アップロードされたすべてのファイル', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5265', 'jp', 'upload_new_file', '新しいファイルをアップロードする', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5266', 'jp', 'all_files', 'すべてのファイル', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5267', 'jp', 'search', '探す', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5268', 'jp', 'details_info', '詳細情報', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5269', 'jp', 'copy_link', 'リンクをコピーする', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5270', 'jp', 'are_you_sure_to_delete_this_file', 'このファイルを削除してもよろしいですか？', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5271', 'jp', 'file_info', 'ファイル情報', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5272', 'jp', 'link_copied_to_clipboard', 'リンクがクリップボードにコピーされました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5273', 'jp', 'oops_unable_to_copy', 'おっと、コピーできません', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5274', 'jp', 'file_deleted_successfully', 'ファイルが正常に削除されました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5275', 'jp', 'add_new_brand', '新しいブランドを追加する', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5276', 'jp', '120x80', '120x80', '2021-02-09 12:32:04', '2021-02-09 12:32:04'),
('5277', 'jp', 'brand_information', 'ブランド情報', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5278', 'jp', 'brand_has_been_updated_successfully', 'ブランドが正常に更新されました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5279', 'jp', 'brand_has_been_deleted_successfully', 'ブランドは正常に削除されました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5280', 'jp', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'これは検索に使用されます。キュートマーがこの製品を見つけることができる単語を入力してください。', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5281', 'jp', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'これらの画像は、製品詳細ページギャラリーに表示されます。600x600サイズの画像を使用してください。', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5282', 'jp', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'この画像はすべての製品ボックスに表示されます。300x300サイズの画像を使用してください。レスポンシブにするためにさまざまなデバイスでエッジをトリミングする必要があったため、画像のメインオブジェクトの周囲に空白を残します。', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5283', 'jp', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', '追加のパラメータなしで適切なリンクを使用してください。短い共有リンク/埋め込みiframeコードを使用しないでください。', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5284', 'jp', 'save_product', '製品を保存する', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5285', 'jp', 'product_has_been_inserted_successfully', '製品が正常に挿入されました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5286', 'jp', 'something_went_wrong', '何かがうまくいかなかった！', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5287', 'jp', 'sorry_for_the_inconvenience_but_were_working_on_it', 'ご不便をおかけして申し訳ありませんが、現在取り組んでいます。', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5288', 'jp', 'error_code', 'エラーコード', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5289', 'jp', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'すべての電子メール送信機能が機能するようにSMTP設定を構成してください', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5290', 'jp', 'order', '注文', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5291', 'jp', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'UIを維持するためにバナーの高さを制限しています。レスポンシブにするために、さまざまなデバイスを視野に入れて、左側と右側の両方からトリミングする必要がありました。バナーをデザインする前に、これらの点に留意してください。', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5292', 'jp', 'home_banner_3_max_3', 'ホームバナー3（最大3）', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5293', 'jp', 'add_new_seller', '新しい売り手を追加する', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5294', 'jp', 'filter_by_approval', '承認によるフィルタリング', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5295', 'jp', 'nonapproved', '未承認', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5296', 'jp', 'type_name_or_email__enter', '名前またはメールアドレスを入力して入力', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5297', 'jp', 'due_to_seller', '売り手のため', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5298', 'jp', 'log_in_as_this_seller', 'この売り手としてログインする', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5299', 'jp', 'go_to_payment', '支払いに移動', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5300', 'jp', 'ban_this_seller', 'この売り手を禁止する', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5301', 'jp', 'do_you_really_want_to_ban_this_seller', 'あなたは本当にこの売り手を禁止したいですか？', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5302', 'jp', 'proceed', '続行してください！', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5303', 'jp', 'approved_sellers_updated_successfully', '承認された販売者は正常に更新されました', '2021-02-09 12:32:04', '2021-09-20 12:59:22'),
('5304', 'jp', 'seller_has_been_deleted_successfully', '売り手は正常に削除されました', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5305', 'jp', 'seller_information', '販売者情報', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5306', 'jp', 'seller_has_been_inserted_successfully', '売り手は正常に挿入されました', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5307', 'jp', 'email_already_exists', 'メールは既に存在します！', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5308', 'jp', 'verify_your_email_address', 'あなたのメールアドレスを確認してください', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5309', 'jp', 'before_proceeding_please_check_your_email_for_a_verification_link', '続行する前に、確認リンクについてメールを確認してください。', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5310', 'jp', 'if_you_did_not_receive_the_email', 'メールが届かない場合。', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5311', 'jp', 'click_here_to_request_another', '別のリクエストするには、ここをクリックしてください', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5312', 'jp', 'email_verification', 'メールの確認', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5313', 'jp', 'email_verification__', 'メールの確認-', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5314', 'jp', 'https_activation', 'HTTPSアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5315', 'jp', 'maintenance_mode', 'メンテナンスモード', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5316', 'jp', 'maintenance_mode_activation', 'メンテナンスモードのアクティブ化', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5317', 'jp', 'classified_product_activate', '分類された製品のアクティブ化', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5318', 'jp', 'classified_product', '分類された製品', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5319', 'jp', 'business_related', '仕事関連', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5320', 'jp', 'vendor_system_activation', 'ベンダーシステムのアクティブ化', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5321', 'jp', 'wallet_system_activation', 'ウォレットシステムのアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5322', 'jp', 'coupon_system_activation', 'クーポンシステムのアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5323', 'jp', 'pickup_point_activation', 'ピックアップポイントのアクティブ化', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5324', 'jp', 'conversation_activation', '会話のアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5325', 'jp', 'guest_checkout_activation', 'ゲストチェックアウトアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5326', 'jp', 'categorybased_commission', 'カテゴリベースの委員会', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5327', 'jp', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'このオプションを有効にすると、売り手のコミッションが無効になり、各カテゴリにコミッションを設定する必要があります。そうしないと、管理者はコミッションを取得できません。', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5328', 'jp', 'set_commisssion_now', '今すぐ委員会を設定する', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5329', 'jp', 'payment_related', '支払い関連', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5330', 'jp', 'paypal_payment_activation', 'Paypal支払いアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5331', 'jp', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'この機能を有効にするには、Paypalを正しく設定する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5332', 'jp', 'stripe_payment_activation', 'ストライプ支払いのアクティブ化', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5333', 'jp', 'sslcommerz_activation', 'SSlCommerzアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5334', 'jp', 'instamojo_payment_activation', 'Instamojo支払いアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5335', 'jp', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'この機能を有効にするには、InstamojoPaymentを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5336', 'jp', 'razor_pay_activation', 'かみそり支払いのアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5337', 'jp', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'この機能を有効にするには、Razorを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5338', 'jp', 'paystack_activation', 'PayStackアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5339', 'jp', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'この機能を有効にするには、PayStackを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5340', 'jp', 'voguepay_activation', 'VoguePayアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5341', 'jp', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'この機能を有効にするには、VoguePayを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5342', 'jp', 'payhere_activation', 'Payhereアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5343', 'jp', 'ngenius_activation', 'Ngeniusアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5344', 'jp', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'この機能を有効にするには、Ngeniusを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5345', 'jp', 'iyzico_activation', 'Iyzicoアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5346', 'jp', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'この機能を有効にするには、iyzicoを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5347', 'jp', 'bkash_activation', 'Bkashアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5348', 'jp', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'この機能を有効にするには、bkashを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5349', 'jp', 'nagad_activation', 'ナガドアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5350', 'jp', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'この機能を有効にするには、nagadを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5351', 'jp', 'cash_payment_activation', '現金支払いのアクティベーション', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5352', 'jp', 'social_media_login', 'ソーシャルメディアログイン', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5353', 'jp', 'facebook_login', 'フェイスブックログイン', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5354', 'jp', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'この機能を有効にするには、Facebookクライアントを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5355', 'jp', 'google_login', 'Googleログイン', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5356', 'jp', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'この機能を有効にするには、Googleクライアントを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5357', 'jp', 'twitter_login', 'Twitterログイン', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5358', 'jp', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'この機能を有効にするには、Twitterクライアントを正しく構成する必要があります', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5359', 'jp', 'shop_logo', 'ショップロゴ', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5360', 'jp', 'shop_address', 'ショップの住所', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5361', 'jp', 'banner_settings', 'バナー設定', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5362', 'jp', 'banners', 'バナー', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5363', 'jp', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', '高さを維持の一貫性に制限する必要がありました。一部のデバイスでは、高さ制限のためにバナーの両側がトリミングされる場合があります。', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5364', 'jp', 'insert_link_with_https_', 'httpsでリンクを挿入', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5365', 'jp', 'your_shop_has_been_updated_successfully', 'ショップが正常に更新されました。', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5366', 'jp', 'search_result_for_', 'の検索結果', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5367', 'jp', 'brand_has_been_inserted_successfully', 'ブランドが正常に挿入されました', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5368', 'jp', 'about', '約', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5369', 'jp', 'payout_info', '支払い情報', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5370', 'jp', 'bank_acc_name', '銀行口座名', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5371', 'jp', 'bank_acc_number', '銀行口座番号', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5372', 'jp', 'total_products', '総製品', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5373', 'jp', 'total_sold_amount', '総販売額', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5374', 'jp', 'wallet_balance', 'ウォレットバランス', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5375', 'jp', 'cookies_agreement', 'クッキー契約', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5376', 'jp', 'cookies_agreement_text', 'クッキー契約テキスト', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5377', 'jp', 'show_cookies_agreement', 'クッキー契約を表示しますか？', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5378', 'jp', 'custom_script', 'カスタムスクリプト', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5379', 'jp', 'header_custom_script__before_head', 'ヘッダーカスタムスクリプト-</ head>の前', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5380', 'jp', 'write_script_with_script_tag', '<script>タグを使用してスクリプトを作成する', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5381', 'jp', 'footer_custom_script__before_body', 'フッターカスタムスクリプト-</ body>の前', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5382', 'jp', 'category_has_been_inserted_successfully', 'カテゴリが正常に挿入されました', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5383', 'jp', 'all_flash_deals', 'すべてのフラッシュのお得な情報', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5384', 'jp', 'create_new_flash_deal', '新しいフラッシュディールを作成する', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5385', 'jp', 'ffffff', '#FFFFFF', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5386', 'jp', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'この画像は、フラッシュ取引の詳細ページにカバーバナーとして表示されます。', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5387', 'jp', 'flash_deal_has_been_inserted_successfully', 'フラッシュディールが正常に挿入されました', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5388', 'jp', 'flash_deal_status_updated_successfully', 'フラッシュ取引ステータスが正常に更新されました', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5389', 'jp', 'flash_deal_has_been_updated_successfully', 'FlashDealが正常に更新されました', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5390', 'jp', 'update_language_info', '言語情報を更新する', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5391', 'jp', 'language_has_been_updated_successfully', '言語が正常に更新されました', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5392', 'jp', 'type_key__enter', 'キーを入力して入力', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5393', 'jp', 'translations_updated_for_', 'のために更新された翻訳', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5394', 'jp', 'language_has_been_inserted_successfully', '言語が正常に挿入されました', '2021-02-09 12:32:05', '2021-09-20 12:59:22'),
('5395', 'fr', 'all_category', 'Toutes les catégories', '2021-02-09 12:34:02', '2021-09-20 12:59:22'),
('5396', 'fr', 'all', 'Tout', '2021-02-09 12:34:02', '2021-09-20 12:59:22'),
('5397', 'fr', 'flash_sale', 'Vente flash', '2021-02-09 12:34:02', '2021-09-20 12:59:22'),
('5398', 'fr', 'view_more', 'Voir plus', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5399', 'fr', 'add_to_wishlist', 'Ajouter à la liste de souhaits', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5400', 'fr', 'add_to_compare', 'Ajouter pour comparer', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5401', 'fr', 'add_to_cart', 'Ajouter au panier', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5402', 'fr', 'club_point', 'Point Club', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5403', 'fr', 'classified_ads', 'Petites annonces', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5404', 'fr', 'used', 'Utilisé', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5405', 'fr', 'top_10_categories', 'Top 10 des catégories', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5406', 'fr', 'view_all_categories', 'Voir toutes les catégories', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5407', 'fr', 'top_10_brands', 'Top 10 des marques', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5408', 'fr', 'view_all_brands', 'Voir toutes les marques', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5409', 'fr', 'terms__conditions', 'Termes et conditions', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5410', 'fr', 'best_selling', 'Meilleure vente', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5411', 'fr', 'top_20', 'Top 20', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5412', 'fr', 'featured_products', 'Produits populaires', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5413', 'fr', 'best_sellers', 'Meilleurs vendeurs', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5414', 'fr', 'visit_store', 'Visiter le magasin', '2021-02-09 12:34:02', '2021-09-20 12:59:23'),
('5415', 'fr', 'popular_suggestions', 'Suggestions populaires', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5416', 'fr', 'category_suggestions', 'Suggestions de catégories', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5417', 'fr', 'automobile__motorcycle', 'Automobile et moto', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5418', 'fr', 'price_range', 'Échelle des prix', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5419', 'fr', 'filter_by_color', 'Filtrer par couleur', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5420', 'fr', 'home', 'Accueil', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5421', 'fr', 'newest', 'Plus récent', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5422', 'fr', 'oldest', 'Le plus ancien', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5423', 'fr', 'price_low_to_high', 'Prix ​​croissant', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5424', 'fr', 'price_high_to_low', 'Prix ​​décroissant', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5425', 'fr', 'brands', 'Marques', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5426', 'fr', 'all_brands', 'Toutes les marques', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5427', 'fr', 'all_sellers', 'Tous les vendeurs', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5428', 'fr', 'inhouse_product', 'Produit en interne', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5429', 'fr', 'message_seller', 'Message au vendeur', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5430', 'fr', 'price', 'Prix', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5431', 'fr', 'discount_price', 'Prix ​​bas', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5432', 'fr', 'color', 'Couleur', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5433', 'fr', 'quantity', 'Quantité', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5434', 'fr', 'available', 'disponible', '2021-02-09 12:34:03', '2021-02-09 12:34:03'),
('5435', 'fr', 'total_price', 'Prix ​​total', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5436', 'fr', 'out_of_stock', 'En rupture de stock', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5437', 'fr', 'refund', 'Rembourser', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5438', 'fr', 'share', 'Partager', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5439', 'fr', 'sold_by', 'Vendu par', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5440', 'fr', 'customer_reviews', 'Avis des clients', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5441', 'fr', 'top_selling_products', 'Produits les plus vendus', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5442', 'fr', 'description', 'La description', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5443', 'fr', 'video', 'Vidéo', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5444', 'fr', 'reviews', 'Commentaires', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5445', 'fr', 'download', 'Télécharger', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5446', 'fr', 'there_have_been_no_reviews_for_this_product_yet', 'Il n\'y a pas encore d\'avis sur ce produit.', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5447', 'fr', 'related_products', 'Produits connexes', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5448', 'fr', 'any_query_about_this_product', 'Toute question concernant ce produit', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5449', 'fr', 'product_name', 'Nom du produit', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5450', 'fr', 'your_question', 'Ta question', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5451', 'fr', 'send', 'Envoyer', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5452', 'fr', 'use_country_code_before_number', 'Utilisez le code du pays avant le numéro', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5453', 'fr', 'remember_me', 'Souviens-toi de moi', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5454', 'fr', 'dont_have_an_account', 'Vous n\'avez pas de compte?', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5455', 'fr', 'register_now', 'S\'inscrire maintenant', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5456', 'fr', 'or_login_with', 'Ou connectez-vous avec', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5457', 'fr', 'oops', 'Oops..', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5458', 'fr', 'this_item_is_out_of_stock', 'L\'article n\'est plus en stock!', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5459', 'fr', 'back_to_shopping', 'Retour aux achats', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5460', 'fr', 'login_to_your_account', 'Connectez-vous à votre compte.', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5461', 'fr', 'purchase_history', 'Historique d\'achat', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5462', 'fr', 'new', 'Nouveau', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5463', 'fr', 'downloads', 'Téléchargements', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5464', 'fr', 'sent_refund_request', 'Demande de remboursement envoyée', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5465', 'fr', 'product_bulk_upload', 'Téléchargement groupé de produits', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5466', 'fr', 'orders', 'Ordres', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5467', 'fr', 'recieved_refund_request', 'Demande de remboursement reçue', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5468', 'fr', 'shop_setting', 'Cadre de la boutique', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5469', 'fr', 'payment_history', 'historique de paiement', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5470', 'fr', 'money_withdraw', 'Retrait d\'argent', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5471', 'fr', 'conversations', 'Des conversations', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5472', 'fr', 'my_wallet', 'Mon portefeuille', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5473', 'fr', 'earning_points', 'Gagner des points', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5474', 'fr', 'support_ticket', 'Ticket de support', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5475', 'fr', 'manage_profile', 'Gérer le profil', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5476', 'fr', 'sold_amount', 'Montant vendu', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5477', 'fr', 'your_sold_amount_current_month', 'Votre montant vendu (mois en cours)', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5478', 'fr', 'total_sold', 'Total vendu', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5479', 'fr', 'last_month_sold', 'Vendu le mois dernier', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5480', 'fr', 'total_sale', 'Vente totale', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5481', 'fr', 'total_earnings', 'Total des gains', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5482', 'fr', 'successful_orders', 'Commandes réussies', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5483', 'fr', 'total_orders', 'Total des commandes', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5484', 'fr', 'pending_orders', 'Les ordres en attente', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5485', 'fr', 'cancelled_orders', 'Commandes annulées', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5486', 'fr', 'product', 'Produit', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5487', 'fr', 'purchased_package', 'Paquet acheté', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5488', 'fr', 'package_not_found', 'Paquet introuvable', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5489', 'fr', 'upgrade_package', 'Package de mise à niveau', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5490', 'fr', 'shop', 'Boutique', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5491', 'fr', 'manage__organize_your_shop', 'Gérez et organisez votre boutique', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5492', 'fr', 'go_to_setting', 'Aller au réglage', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5493', 'fr', 'payment', 'Paiement', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5494', 'fr', 'configure_your_payment_method', 'Configurez votre mode de paiement', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5495', 'fr', 'my_panel', 'Mon panneau', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5496', 'fr', 'item_has_been_added_to_wishlist', 'L\'article a été ajouté à la liste de souhaits', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5497', 'fr', 'my_points', 'Mes points', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5498', 'fr', '_points', 'Points', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5499', 'fr', 'wallet_money', 'Argent portefeuille', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5500', 'fr', 'exchange_rate', 'Taux de change', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5501', 'fr', 'point_earning_history', 'Historique des gains de points', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5502', 'fr', 'date', 'Date', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5503', 'fr', 'points', 'Points', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5504', 'fr', 'converted', 'Converti', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5505', 'fr', 'action', 'action', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5506', 'fr', 'no_history_found', 'Aucune histoire trouvée.', '2021-02-09 12:34:03', '2021-09-20 12:59:23'),
('5507', 'fr', 'convert_has_been_done_successfully_check_your_wallets', 'La conversion a été effectuée avec succès Vérifiez vos portefeuilles', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5508', 'fr', 'something_went_wrong', 'Un problème est survenu', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5509', 'fr', 'remaining_uploads', 'Téléchargements restants', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5510', 'fr', 'no_package_found', 'Aucun package trouvé', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5511', 'fr', 'search_product', 'Rechercher un produit', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5512', 'fr', 'name', 'Nom', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5513', 'fr', 'current_qty', 'Qté actuelle', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5514', 'fr', 'base_price', 'Prix ​​de base', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5515', 'fr', 'published', 'Publié', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5516', 'fr', 'featured', 'En vedette', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5517', 'fr', 'options', 'Options', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5518', 'fr', 'edit', 'Éditer', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5519', 'fr', 'duplicate', 'Dupliquer', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5520', 'fr', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Téléchargez le fichier squelette et remplissez-le de données.', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5521', 'fr', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Vous pouvez télécharger le fichier d\'exemple pour comprendre comment les données doivent être remplies.', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5522', 'fr', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Une fois que vous avez téléchargé et rempli le fichier squelette, téléchargez-le dans le formulaire ci-dessous et soumettez-le.', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5523', 'fr', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Après avoir téléchargé les produits, vous devez les modifier et définir des images et des choix de produits.', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5524', 'fr', 'download_csv', 'Télécharger CSV', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5525', 'fr', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. La catégorie, la sous-catégorie, la sous-sous-catégorie et la marque doivent figurer dans des identifiants numériques.', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5526', 'fr', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Vous pouvez télécharger le pdf pour obtenir la catégorie, la sous-catégorie, la sous-catégorie et l\'identifiant de la marque.', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5527', 'fr', 'download_category', 'Télécharger la catégorie', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5528', 'fr', 'download_sub_category', 'Télécharger la sous-catégorie', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5529', 'fr', 'download_sub_sub_category', 'Télécharger la sous-catégorie', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5530', 'fr', 'download_brand', 'Télécharger la marque', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5531', 'fr', 'upload_csv_file', 'Télécharger un fichier CSV', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5532', 'fr', 'csv', 'CSV', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5533', 'fr', 'choose_csv_file', 'Choisissez un fichier CSV', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5534', 'fr', 'upload', 'Télécharger', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5535', 'fr', 'add_new_digital_product', 'Ajouter un nouveau produit numérique', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5536', 'fr', 'available_status', 'Statut disponible', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5537', 'fr', 'admin_status', 'Statut administrateur', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5538', 'fr', 'pending_balance', 'Solde en attente', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5539', 'fr', 'send_withdraw_request', 'Envoyer une demande de retrait', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5540', 'fr', 'withdraw_request_history', 'Historique des demandes de retrait', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5541', 'fr', 'amount', 'Montant', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5542', 'fr', 'status', 'Statut', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5543', 'fr', 'message', 'Message', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5544', 'fr', 'send_a_withdraw_request', 'Envoyer une demande de retrait', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5545', 'fr', 'basic_info', 'Informations de base', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5546', 'fr', 'your_phone', 'Ton téléphone', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5547', 'fr', 'photo', 'Photo', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5548', 'fr', 'browse', 'Feuilleter', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5549', 'fr', 'your_password', 'Votre mot de passe', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5550', 'fr', 'new_password', 'nouveau mot de passe', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5551', 'fr', 'confirm_password', 'Confirmez le mot de passe', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5552', 'fr', 'add_new_address', 'Ajouter une nouvelle adresse', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5553', 'fr', 'payment_setting', 'Paramètre de paiement', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5554', 'fr', 'cash_payment', 'Paiement en espèces', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5555', 'fr', 'bank_payment', 'Paiement bancaire', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5556', 'fr', 'bank_name', 'Nom de banque', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5557', 'fr', 'bank_account_name', 'Nom du compte bancaire', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5558', 'fr', 'bank_account_number', 'Numéro de compte bancaire', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5559', 'fr', 'bank_routing_number', 'Numéro d\'acheminement bancaire', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5560', 'fr', 'update_profile', 'Mettre à jour le profil', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5561', 'fr', 'change_your_email', 'Changez votre email', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5562', 'fr', 'your_email', 'Votre e-mail', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5563', 'fr', 'sending_email', 'Envoi d\'un e-mail ...', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5564', 'fr', 'verify', 'Vérifier', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5565', 'fr', 'update_email', 'Mettre à jour l\'e-mail', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5566', 'fr', 'new_address', 'Nouvelle adresse', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5567', 'fr', 'your_address', 'Votre adresse', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5568', 'fr', 'country', 'Pays', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5569', 'fr', 'select_your_country', 'Sélectionnez votre pays', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5570', 'fr', 'city', 'Ville', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5571', 'fr', 'your_city', 'Ta ville', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5572', 'fr', 'your_postal_code', 'Votre code postal', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5573', 'fr', '880', '+880', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5574', 'fr', 'save', 'sauver', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5575', 'fr', 'received_refund_request', 'Demande de remboursement reçue', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5576', 'fr', 'delete_confirmation', 'Confirmation de suppression', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5577', 'fr', 'are_you_sure_to_delete_this', 'Êtes-vous sûr de vouloir le supprimer?', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5578', 'fr', 'premium_packages_for_sellers', 'Forfaits premium pour les vendeurs', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5579', 'fr', 'product_upload', 'Téléchargement de produit', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5580', 'fr', 'digital_product_upload', 'Téléchargement de produit numérique', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5581', 'fr', 'purchase_package', 'Acheter un package', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5582', 'fr', 'select_payment_type', 'Sélectionnez le type de paiement', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5583', 'fr', 'payment_type', 'Type de paiement', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5584', 'fr', 'select_one', 'Sélectionnez-en un', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5585', 'fr', 'online_payment', 'Paiement en ligne', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5586', 'fr', 'offline_payment', 'Paiement hors ligne', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5587', 'fr', 'purchase_your_package', 'Achetez votre forfait', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5588', 'fr', 'paypal', 'Pay Pal', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5589', 'fr', 'stripe', 'Bande', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5590', 'fr', 'sslcommerz', 'sslcommerz', '2021-02-09 12:34:04', '2021-02-09 12:34:04'),
('5591', 'fr', 'confirm', 'Confirmer', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5592', 'fr', 'offline_package_payment', 'Paiement hors ligne du forfait', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5593', 'fr', 'transaction_id', 'identifiant de transaction', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5594', 'fr', 'choose_image', 'Choisissez une image', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5595', 'fr', 'code', 'Code', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5596', 'fr', 'delivery_status', 'Statut de livraison', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5597', 'fr', 'payment_status', 'Statut de paiement', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5598', 'fr', 'paid', 'Payé', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5599', 'fr', 'order_details', 'détails de la commande', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5600', 'fr', 'download_invoice', 'Télécharger la facture', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5601', 'fr', 'unpaid', 'Non payé', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5602', 'fr', 'order_placed', 'Commande passée', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5603', 'fr', 'confirmed', 'Confirmé', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5604', 'fr', 'on_delivery', 'À la livraison', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5605', 'fr', 'delivered', 'Livré', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5606', 'fr', 'order_summary', 'Récapitulatif de la commande', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5607', 'fr', 'order_code', 'Code de commande', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5608', 'fr', 'customer', 'Client', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5609', 'fr', 'total_order_amount', 'Montant total de la commande', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5610', 'fr', 'shipping_metdod', 'Expédition metdod', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5611', 'fr', 'flat_shipping_rate', 'Tarif d\'expédition fixe', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5612', 'fr', 'payment_metdod', 'Paiement metdod', '2021-02-09 12:34:04', '2021-09-20 12:59:23'),
('5613', 'fr', 'variation', 'Variation', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5614', 'fr', 'delivery_type', 'type de livraison', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5615', 'fr', 'home_delivery', 'Livraison à domicile', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5616', 'fr', 'order_ammount', 'Montant de la commande', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5617', 'fr', 'subtotal', 'Total', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5618', 'fr', 'shipping', 'livraison', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5619', 'fr', 'coupon_discount', 'Remise de coupon', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5620', 'fr', 'na', 'N / A', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5621', 'fr', 'in_stock', 'En stock', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5622', 'fr', 'buy_now', 'Acheter maintenant', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5623', 'fr', 'item_added_to_your_cart', 'Article ajouté à votre panier!', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5624', 'fr', 'proceed_to_checkout', 'Passer à la caisse', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5625', 'fr', 'cart_items', 'Articles du panier', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5626', 'fr', '1_my_cart', '1. Mon panier', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5627', 'fr', 'view_cart', 'Voir le panier', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5628', 'fr', '2_shipping_info', '2. Informations d\'expédition', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5629', 'fr', 'checkout', 'Check-out', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5630', 'fr', '3_delivery_info', '3. Informations de livraison', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5631', 'fr', '4_payment', '4. Paiement', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5632', 'fr', '5_confirmation', '5. Confirmation', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5633', 'fr', 'remove', 'Retirer', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5634', 'fr', 'return_to_shop', 'Retour à la boutique', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5635', 'fr', 'continue_to_shipping', 'Continuer vers l\'expédition', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5636', 'fr', 'or', 'Ou', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5637', 'fr', 'guest_checkout', 'Vérification des invités', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5638', 'fr', 'continue_to_delivery_info', 'Continuer vers les informations de livraison', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5639', 'fr', 'postal_code', 'code postal', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5640', 'fr', 'choose_delivery_type', 'Choisissez le type de livraison', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5641', 'fr', 'local_pickup', 'Collecte locale', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5642', 'fr', 'select_your_nearest_pickup_point', 'Sélectionnez votre point de ramassage le plus proche', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5643', 'fr', 'continue_to_payment', 'Continuer au paiement', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5644', 'fr', 'select_a_payment_option', 'Sélectionnez une option de paiement', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5645', 'fr', 'razorpay', 'Razorpay', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5646', 'fr', 'paystack', 'Paystack', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5647', 'fr', 'voguepay', 'VoguePay', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5648', 'fr', 'payhere', 'Payez ici', '2021-02-09 12:34:05', '2021-02-09 12:34:05'),
('5649', 'fr', 'ngenius', 'ngenius', '2021-02-09 12:34:05', '2021-02-09 12:34:05'),
('5650', 'fr', 'paytm', 'Paytm', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5651', 'fr', 'cash_on_delivery', 'Paiement à la livraison', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5652', 'fr', 'your_wallet_balance_', 'Votre solde de portefeuille:', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5653', 'fr', 'insufficient_balance', 'Solde insuffisant', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5654', 'fr', 'i_agree_to_the', 'je suis d\'accord avec le', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5655', 'fr', 'complete_order', 'Complétez la commande', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5656', 'fr', 'summary', 'Sommaire', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5657', 'fr', 'items', 'Articles', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5658', 'fr', 'total_club_point', 'Total de points Club', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5659', 'fr', 'total_shipping', 'Expédition totale', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5660', 'fr', 'have_coupon_code_enter_here', 'Vous avez un code promo? Entrer ici', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5661', 'fr', 'apply', 'Appliquer', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5662', 'fr', 'you_need_to_agree_with_our_policies', 'Vous devez accepter nos politiques', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5663', 'fr', 'forgot_password', 'Mot de passe oublié', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5664', 'fr', 'seo_setting', 'Paramètre SEO', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5665', 'fr', 'system_update', 'Mise à jour du système', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5666', 'fr', 'add_new_payment_method', 'Ajouter un nouveau mode de paiement', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5667', 'fr', 'manual_payment_method', 'Mode de paiement manuel', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5668', 'fr', 'heading', 'Titre', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5669', 'fr', 'logo', 'Logo', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5670', 'fr', 'manual_payment_information', 'Informations de paiement manuel', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5671', 'fr', 'type', 'Type', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5672', 'fr', 'custom_payment', 'Paiement personnalisé', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5673', 'fr', 'check_payment', 'Paiement par chèque', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5674', 'fr', 'checkout_thumbnail', 'Vignette de paiement', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5675', 'fr', 'payment_instruction', 'Instruction de paiement', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5676', 'fr', 'bank_information', 'Information bancaire', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5677', 'fr', 'select_file', 'Choisir le dossier', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5678', 'fr', 'upload_new', 'Télécharger nouveau', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5679', 'fr', 'sort_by_newest', 'Trier par plus récent', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5680', 'fr', 'sort_by_oldest', 'Trier par plus ancien', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5681', 'fr', 'sort_by_smallest', 'Trier par plus petit', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5682', 'fr', 'sort_by_largest', 'Trier par plus grand', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5683', 'fr', 'selected_only', 'Sélectionné seulement', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5684', 'fr', 'no_files_found', 'Aucun fichier trouvé', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5685', 'fr', '0_file_selected', '0 Fichier sélectionné', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5686', 'fr', 'clear', 'Clair', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5687', 'fr', 'prev', 'Précédente', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5688', 'fr', 'next', 'Suivant', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5689', 'fr', 'add_files', 'Ajouter des fichiers', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5690', 'fr', 'method_has_been_inserted_successfully', 'La méthode a été insérée avec succès', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5691', 'fr', 'order_date', 'Date de commande', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5692', 'fr', 'bill_to', 'facturer', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5693', 'fr', 'sub_total', 'Sous-total', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5694', 'fr', 'total_tax', 'Taxe total', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5695', 'fr', 'grand_total', 'Total', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5696', 'fr', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Votre commande a été passée avec succès. Veuillez soumettre les informations de paiement à partir de l\'historique des achats', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5697', 'fr', 'thank_you_for_your_order', 'Nous vous remercions de votre commande!', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5698', 'fr', 'order_code', 'Code de commande:', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5699', 'fr', 'a_copy_or_your_order_summary_has_been_sent_to', 'Une copie ou le récapitulatif de votre commande a été envoyé à', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5700', 'fr', 'make_payment', 'Effectuer le paiement', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5701', 'fr', 'payment_screenshot', 'Capture d\'écran du paiement', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5702', 'fr', 'paypal_credential', 'Identifiant Paypal', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5703', 'fr', 'paypal_client_id', 'Identifiant client Paypal', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5704', 'fr', 'paypal_client_secret', 'Secret du client Paypal', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5705', 'fr', 'paypal_sandbox_mode', 'Mode bac à sable Paypal', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5706', 'fr', 'sslcommerz_credential', 'Identifiant Sslcommerz', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5707', 'fr', 'sslcz_store_id', 'Identifiant de magasin Sslcz', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5708', 'fr', 'sslcz_store_password', 'Mot de passe du magasin SSLCZ', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5709', 'fr', 'sslcommerz_sandbox_mode', 'Mode bac à sable Sslcommerz', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5710', 'fr', 'stripe_credential', 'Identifiant Stripe', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5711', 'fr', 'stripe_key', 'CLÉ DE RAYURE', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5712', 'fr', 'stripe_secret', 'STRIPE SECRET', '2021-02-09 12:34:05', '2021-09-20 12:59:23'),
('5713', 'fr', 'razorpay_credential', 'Informations d\'identification RazorPay', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5714', 'fr', 'razor_key', 'CLÉ DE RASOIR', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5715', 'fr', 'razor_secret', 'SECRET DE RASOIR', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5716', 'fr', 'instamojo_credential', 'Identifiant Instamojo', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5717', 'fr', 'api_key', 'CLÉ API', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5718', 'fr', 'im_api_key', 'CLÉ API IM', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5719', 'fr', 'auth_token', 'JETON AUTH', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5720', 'fr', 'im_auth_token', 'JETON IM AUTH', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5721', 'fr', 'instamojo_sandbox_mode', 'Mode bac à sable Instamojo', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5722', 'fr', 'paystack_credential', 'Identifiant PayStack', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5723', 'fr', 'public_key', 'CLÉ PUBLIQUE', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5724', 'fr', 'secret_key', 'CLEF SECRÈTE', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5725', 'fr', 'merchant_email', 'COURRIEL DU MARCHAND', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5726', 'fr', 'voguepay_credential', 'Identifiant VoguePay', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5727', 'fr', 'merchant_id', 'ID MARCHAND', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5728', 'fr', 'sandbox_mode', 'Mode bac à sable', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5729', 'fr', 'payhere_credential', 'Identifiant Payhere', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5730', 'fr', 'payhere_merchant_id', 'ID MARCHAND PAYHERE', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5731', 'fr', 'payhere_secret', 'PAYHERE SECRET', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5732', 'fr', 'payhere_currency', 'MONNAIE PAYHERE', '2021-02-09 12:34:06', '2021-09-20 12:59:23'),
('5733', 'fr', 'payhere_sandbox_mode', 'Mode bac à sable Payhere', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5734', 'fr', 'ngenius_credential', 'Identifiant Ngenius', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5735', 'fr', 'ngenius_outlet_id', 'ID DE SORTIE NGENIUS', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5736', 'fr', 'ngenius_api_key', 'CLÉ D\'API NGENIUS', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5737', 'fr', 'ngenius_currency', 'MONNAIE NGENIUS', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5738', 'fr', 'mpesa_credential', 'Diplôme Mpesa', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5739', 'fr', 'mpesa_consumer_key', 'CLÉ DE CONSOMMATION MPESA', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5740', 'fr', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5741', 'fr', 'mpesa_consumer_secret', 'SECRET DU CONSOMMATEUR MPESA', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5742', 'fr', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5743', 'fr', 'mpesa_short_code', 'CODE ABRÉGÉ MPESA', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5744', 'fr', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5745', 'fr', 'mpesa_sandbox_activation', 'ACTIVATION DE LA SANDBOX MPESA', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5746', 'fr', 'flutterwave_credential', 'Identifiant Flutterwave', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5747', 'fr', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5748', 'fr', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5749', 'fr', 'rave_title', 'RAVE_TITLE', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5750', 'fr', 'stagin_activation', 'ACTIVATION DU STAGIN', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5751', 'fr', 'all_product', 'Tous les produits', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5752', 'fr', 'sort_by', 'Trier par', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5753', 'fr', 'rating_high__low', 'Note (élevée> faible)', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5754', 'fr', 'rating_low__high', 'Note (faible> élevée)', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5755', 'fr', 'num_of_sale_high__low', 'Nombre de ventes (haut> bas)', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5756', 'fr', 'num_of_sale_low__high', 'Nombre de ventes (faible> élevé)', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5757', 'fr', 'base_price_high__low', 'Prix ​​de base (haut> bas)', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5758', 'fr', 'base_price_low__high', 'Prix ​​de base (bas> haut)', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5759', 'fr', 'type__enter', 'Tapez et entrez', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5760', 'fr', 'added_by', 'Ajouté par', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5761', 'fr', 'num_of_sale', 'Nombre de vente', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5762', 'fr', 'total_stock', 'Stock total', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5763', 'fr', 'todays_deal', 'Offre d\'aujourd\'hui', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5764', 'fr', 'rating', 'Évaluation', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5765', 'fr', 'times', 'fois', '2021-02-09 12:34:06', '2021-02-09 12:34:06'),
('5766', 'fr', 'add_nerw_product', 'Ajouter un produit Nerw', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5767', 'fr', 'product_information', 'Information produit', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5768', 'fr', 'unit', 'Unité', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5769', 'fr', 'unit_eg_kg_pc_etc', 'Unité (par exemple KG, Pc, etc.)', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5770', 'fr', 'minimum_qty', 'Qté minimum', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5771', 'fr', 'tags', 'Mots clés', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5772', 'fr', 'type_and_hit_enter_to_add_a_tag', 'Tapez et appuyez sur Entrée pour ajouter une balise', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5773', 'fr', 'barcode', 'code à barre', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5774', 'fr', 'refundable', 'Remboursable', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5775', 'fr', 'product_images', 'Images du produit', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5776', 'fr', 'gallery_images', 'Images de la galerie', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5777', 'fr', 'todays_deal_updated_successfully', 'L\'offre du jour a bien été mise à jour', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5778', 'fr', 'published_products_updated_successfully', 'Produits publiés mis à jour avec succès', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5779', 'fr', 'thumbnail_image', 'Image miniature', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5780', 'fr', 'featured_products_updated_successfully', 'Produits en vedette mis à jour avec succès', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5781', 'fr', 'product_videos', 'Vidéos produits', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5782', 'fr', 'video_provider', 'Fournisseur vidéo', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5783', 'fr', 'youtube', 'Youtube', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5784', 'fr', 'dailymotion', 'Dailymotion', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5785', 'fr', 'vimeo', 'Vimeo', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5786', 'fr', 'video_link', 'Lien vidéo', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5787', 'fr', 'product_variation', 'Variation de produit', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5788', 'fr', 'colors', 'Couleurs', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5789', 'fr', 'attributes', 'Les attributs', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5790', 'fr', 'choose_attributes', 'Choisissez les attributs', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5791', 'fr', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Choisissez les attributs de ce produit, puis saisissez les valeurs de chaque attribut', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5792', 'fr', 'product_price__stock', 'Prix ​​du produit + stock', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5793', 'fr', 'unit_price', 'Prix ​​unitaire', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5794', 'fr', 'purchase_price', 'Prix ​​d\'achat', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5795', 'fr', 'flat', 'Plat', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5796', 'fr', 'percent', 'Pour cent', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5797', 'fr', 'discount', 'Remise', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5798', 'fr', 'product_description', 'Description du produit', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5799', 'fr', 'product_shipping_cost', 'Frais d\'expédition du produit', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5800', 'fr', 'free_shipping', 'Livraison gratuite', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5801', 'fr', 'flat_rate', 'Forfait', '2021-02-09 12:34:06', '2021-09-20 12:59:24'),
('5802', 'fr', 'shipping_cost', 'Frais de port', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5803', 'fr', 'pdf_specification', 'Spécification PDF', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5804', 'fr', 'seo_meta_tags', 'Balises Meta SEO', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5805', 'fr', 'meta_title', 'Meta Title', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5806', 'fr', 'meta_image', 'Meta Image', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5807', 'fr', 'choice_title', 'Titre de choix', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5808', 'fr', 'enter_choice_values', 'Entrez les valeurs de choix', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5809', 'fr', 'all_categories', 'Toutes catégories', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5810', 'fr', 'add_new_category', 'Ajouter une nouvelle catégorie', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5811', 'fr', 'type_name__enter', 'Tapez le nom et entrez', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5812', 'fr', 'banner', 'Bannière', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5813', 'fr', 'commission', 'Commission', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5814', 'fr', 'icon', 'icône', '2021-02-09 12:34:07', '2021-02-09 12:34:07'),
('5815', 'fr', 'featured_categories_updated_successfully', 'Catégories en vedette mises à jour avec succès', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5816', 'fr', 'hot', 'Chaud', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5817', 'fr', 'filter_by_payment_status', 'Filtrer par statut de paiement', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5818', 'fr', 'unpaid', 'Non payé', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5819', 'fr', 'filter_by_deliver_status', 'Filtrer par statut de livraison', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5820', 'fr', 'pending', 'En attente', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5821', 'fr', 'type_order_code__hit_enter', 'Tapez le code de commande et appuyez sur Entrée', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5822', 'fr', 'num_of_products', 'Num. de produits', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5823', 'fr', 'walk_in_customer', 'Marcher dans le client', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5824', 'fr', 'qty', 'QTÉ', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5825', 'fr', 'without_shipping_charge', 'Sans frais d\'expédition', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5826', 'fr', 'with_shipping_charge', 'Avec frais d\'expédition', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5827', 'fr', 'pay_with_cash', 'Payer en espèces', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5828', 'fr', 'shipping_address', 'Adresse de livraison', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5829', 'fr', 'close', 'proche', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5830', 'fr', 'select_country', 'Choisissez le pays', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5831', 'fr', 'order_confirmation', 'Confirmation de commande', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5832', 'fr', 'are_you_sure_to_confirm_this_order', 'Êtes-vous sûr de confirmer cette commande?', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5833', 'fr', 'comfirm_order', 'Commande de confirmation', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5834', 'fr', 'personal_info', 'Informations personnelles', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5835', 'fr', 'repeat_password', 'Répéter le mot de passe', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5836', 'fr', 'shop_name', 'Nom de la boutique', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5837', 'fr', 'register_your_shop', 'Enregistrez votre boutique', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5838', 'fr', 'affiliate_informations', 'Informations sur les affiliés', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5839', 'fr', 'affiliate', 'Affilier', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5840', 'fr', 'user_info', 'informations utilisateur', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5841', 'fr', 'installed_addon', 'Addon installé', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5842', 'fr', 'available_addon', 'Addon disponible', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5843', 'fr', 'install_new_addon', 'Installer un nouvel addon', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5844', 'fr', 'version', 'Version', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5845', 'fr', 'activated', 'Activé', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5846', 'fr', 'deactivated', 'Désactivé', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5847', 'fr', 'activate_otp', 'Activer OTP', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5848', 'fr', 'otp_will_be_used_for', 'OTP sera utilisé pour', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5849', 'fr', 'settings_updated_successfully', 'Paramètres mis à jour avec succès', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5850', 'fr', 'product_owner', 'Propriétaire du produit', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5851', 'fr', 'point', 'Point', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5852', 'fr', 'set_point_for_product_within_a_range', 'Point de consigne pour le produit dans une plage', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5853', 'fr', 'set_point_for_multiple_products', 'Point de consigne pour plusieurs produits', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5854', 'fr', 'min_price', 'Prix ​​min', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5855', 'fr', 'max_price', 'Prix ​​maximum', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5856', 'fr', 'set_point_for_all_products', 'Point de consigne pour tous les produits', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5857', 'fr', 'set_point_for_', 'Point de consigne pour', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5858', 'fr', 'convert_status', 'Convertir le statut', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5859', 'fr', 'earned_at', 'Gagné à', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5860', 'fr', 'seller_based_selling_report', 'Rapport de vente basé sur le vendeur', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5861', 'fr', 'sort_by_verificarion_status', 'Trier par statut de vérification', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5862', 'fr', 'approved', 'Approuvé', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5863', 'fr', 'non_approved', 'Non approuvé', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5864', 'fr', 'filter', 'Filtre', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5865', 'fr', 'seller_name', 'Nom du Vendeur', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5866', 'fr', 'number_of_product_sale', 'Nombre de produits vendus', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5867', 'fr', 'order_amount', 'Montant de la commande', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5868', 'fr', 'facebook_chat_setting', 'Paramètres de chat Facebook', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5869', 'fr', 'facebook_page_id', 'ID de page Facebook', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5870', 'fr', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Soyez prudent lorsque vous configurez le chat Facebook. Pour une configuration incorrecte, vous n\'obtiendrez pas d\'icône de messagerie sur votre site utilisateur.', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5871', 'fr', 'login_into_your_facebook_page', 'Connectez-vous à votre page facebook', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5872', 'fr', 'find_the_about_option_of_your_facebook_page', 'Trouvez l\'option À propos de votre page Facebook', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5873', 'fr', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'Tout en bas, vous pouvez trouver l \'\\ \"ID de page Facebook \\\"', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5874', 'fr', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Accédez aux paramètres de votre page et recherchez l\'option \\ \"Messagerie avancée \\\"', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5875', 'fr', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Faites défiler cette page et vous obtiendrez \\ \"domaine sur la liste blanche \\\"', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5876', 'fr', 'set_your_website_domain_name', 'Définissez le nom de domaine de votre site Web', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5877', 'fr', 'google_recaptcha_setting', 'Paramètre Google reCAPTCHA', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5878', 'fr', 'site_key', 'Clé du site', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5879', 'fr', 'select_shipping_method', 'Sélectionnez le mode de livraison', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5880', 'fr', 'product_wise_shipping_cost', 'Coût d\'expédition sage du produit', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5881', 'fr', 'flat_rate_shipping_cost', 'Frais d\'expédition forfaitaires', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5882', 'fr', 'seller_wise_flat_shipping_cost', 'Vendeur Wise Flat Shipping Cost', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5883', 'fr', 'note', 'Remarque', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5884', 'fr', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Calcul des frais de port pour le produit: les frais de port sont calculés en ajoutant les frais de port de chaque produit', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5885', 'fr', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Calcul des frais d\'expédition forfaitaires: le nombre de produits achetés par un client n\'a pas d\'importance. Les frais d\'expédition sont fixes', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5886', 'fr', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Calcul des frais d\'expédition fixes du vendeur: Taux fixe pour chaque vendeur. Si un client achète 2 produits auprès de deux vendeurs, les frais d\'expédition sont calculés en ajoutant les frais d\'expédition forfaitaires de chaque vendeur', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5887', 'fr', 'flat_rate_cost', 'Coût forfaitaire', '2021-02-09 12:34:07', '2021-09-20 12:59:24'),
('5888', 'fr', 'shipping_cost_for_admin_products', 'Frais d\'expédition pour les produits d\'administration', '2021-02-09 12:34:08', '2021-09-20 12:59:24'),
('5889', 'fr', 'countries', 'Des pays', '2021-02-09 12:34:08', '2021-09-20 12:59:24'),
('5890', 'fr', 'showhide', 'Afficher / Masquer', '2021-02-09 12:34:08', '2021-09-20 12:59:24'),
('5891', 'fr', 'country_status_updated_successfully', 'Statut du pays mis à jour avec succès', '2021-02-09 12:34:08', '2021-09-20 12:59:24'),
('5892', 'fr', 'all_subcategories', 'Toutes les sous-catégories', '2021-02-09 12:34:08', '2021-09-20 12:59:24'),
('5893', 'fr', 'add_new_subcategory', 'Ajouter une nouvelle sous-catégorie', '2021-02-09 12:34:08', '2021-09-20 12:59:24'),
('5894', 'fr', 'subcategories', 'Sous-catégories', '2021-02-09 12:34:08', '2021-09-20 12:59:24'),
('5895', 'fr', 'sub_category_information', 'Informations sur la sous-catégorie', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5896', 'fr', 'slug', 'Limace', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5897', 'fr', 'all_sub_subcategories', 'Toutes les sous-catégories', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5898', 'fr', 'add_new_sub_subcategory', 'Ajouter une nouvelle sous-catégorie', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5899', 'fr', 'subsubcategories', 'Sous-sous-catégories', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5900', 'fr', 'make_this_default', 'Définir cette valeur par défaut', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5901', 'fr', 'shops', 'Magasins', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5902', 'fr', 'women_clothing__fashion', 'Vêtements et mode pour femmes', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5903', 'fr', 'cellphones__tabs', 'Téléphones portables et onglets', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5904', 'fr', 'welcome_to', 'Bienvenue à', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5905', 'fr', 'create_a_new_account', 'Créer un nouveau compte', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5906', 'fr', 'full_name', 'Nom et prénom', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5907', 'fr', 'password', 'mot de passe', '2021-02-09 12:34:50', '2021-02-09 12:34:50'),
('5908', 'fr', 'confrim_password', 'Confirmer le mot de passe', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5909', 'fr', 'i_agree_with_the', 'Je suis d\'accord avec le', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5910', 'fr', 'terms_and_conditions', 'Termes et conditions', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5911', 'fr', 'register', 'S\'inscrire', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5912', 'fr', 'already_have_an_account', 'Vous avez déjà un compte', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5913', 'fr', 'sign_up_with', 'Se connecter avec', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5914', 'fr', 'i_agree_with_the_terms_and_conditions', 'J\'accepte les termes et conditions', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5915', 'fr', 'all_role', 'Tous les rôles', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5916', 'fr', 'add_new_role', 'Ajouter un nouveau rôle', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5917', 'fr', 'roles', 'Les rôles', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5918', 'fr', 'add_new_staffs', 'Ajouter de nouveaux personnels', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5919', 'fr', 'role', 'Rôle', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5920', 'fr', 'frontend_website_name', 'Nom du site Web frontal', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5921', 'fr', 'website_name', 'Nom du site Web', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5922', 'fr', 'site_motto', 'Devise du site', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5923', 'fr', 'best_ecommerce_website', 'Meilleur site de commerce électronique', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5924', 'fr', 'site_icon', 'Icône du site', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5925', 'fr', 'website_favicon_32x32_png', 'Favicon du site Web. 32x32 .png', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5926', 'fr', 'website_base_color', 'Couleur de base du site Web', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5927', 'fr', 'hex_color_code', 'Code couleur hexadécimal', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5928', 'fr', 'website_base_hover_color', 'Couleur de survol de base du site Web', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5929', 'fr', 'update', 'Mise à jour', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5930', 'fr', 'global_seo', 'Global SEO', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5931', 'fr', 'meta_description', 'Meta Description', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5932', 'fr', 'keywords', 'Mots clés', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5933', 'fr', 'separate_with_coma', 'Séparez avec le coma', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5934', 'fr', 'website_pages', 'Pages du site Web', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5935', 'fr', 'all_pages', 'Toutes les pages', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5936', 'fr', 'add_new_page', 'Ajouter une nouvelle page', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5937', 'fr', 'url', 'URL', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5938', 'fr', 'actions', 'Actions', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5939', 'fr', 'edit_page_information', 'Modifier les informations de la page', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5940', 'fr', 'page_content', 'Contenu de la page', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5941', 'fr', 'title', 'Titre', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5942', 'fr', 'link', 'Lien', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5943', 'fr', 'use_character_number_hypen_only', 'Utilisez uniquement des caractères, des nombres et des hypen', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5944', 'fr', 'add_content', 'Ajouter du contenu', '2021-02-09 12:34:50', '2021-09-20 12:59:24'),
('5945', 'fr', 'seo_fields', 'Champs de référencement', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5946', 'fr', 'update_page', 'Mettre à jour la page', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5947', 'fr', 'default_language', 'Langage par défaut', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5948', 'fr', 'add_new_language', 'Ajouter une nouvelle langue', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5949', 'fr', 'rtl', 'RTL', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5950', 'fr', 'translation', 'Traduction', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5951', 'fr', 'language_information', 'Informations sur la langue', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5952', 'fr', 'save_page', 'Sauvegarder la page', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5953', 'fr', 'home_page_settings', 'Paramètres de la page d\'accueil', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5954', 'fr', 'home_slider', 'Curseur d\'accueil', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5955', 'fr', 'photos__links', 'Photos et liens', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5956', 'fr', 'add_new', 'Ajouter nouveau', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5957', 'fr', 'home_categories', 'Accueil Catégories', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5958', 'fr', 'home_banner_1_max_3', 'Bannière d\'accueil 1 (max 3)', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5959', 'fr', 'banner__links', 'Bannière et liens', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5960', 'fr', 'home_banner_2_max_3', 'Bannière d\'accueil 2 (max 3)', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5961', 'fr', 'top_10', 'Top 10', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5962', 'fr', 'top_categories_max_10', 'Top Catégories (Max 10)', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5963', 'fr', 'top_brands_max_10', 'Top Marques (Max 10)', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5964', 'fr', 'system_name', 'Nom du système', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5965', 'fr', 'system_logo__white', 'Logo du système - Blanc', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5966', 'fr', 'choose_files', 'Choisir des fichiers', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5967', 'fr', 'will_be_used_in_admin_panel_side_menu', 'Sera utilisé dans le menu latéral du panneau d\'administration', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5968', 'fr', 'system_logo__black', 'Logo du système - Noir', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5969', 'fr', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Sera utilisé dans la barre supérieure du panneau d\'administration de la page de connexion mobile + administrateur', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5970', 'fr', 'system_timezone', 'Fuseau horaire du système', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5971', 'fr', 'admin_login_page_background', 'Arrière-plan de la page de connexion administrateur', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5972', 'fr', 'website_header', 'En-tête de site Web', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5973', 'fr', 'header_setting', 'Paramètre d\'en-tête', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5974', 'fr', 'header_logo', 'Logo d\'en-tête', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5975', 'fr', 'show_language_switcher', 'Afficher le sélecteur de langue?', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5976', 'fr', 'show_currency_switcher', 'Afficher le sélecteur de devises?', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5977', 'fr', 'enable_stikcy_header', 'Activer l\'en-tête stikcy?', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5978', 'fr', 'website_footer', 'Pied de page du site Web', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5979', 'fr', 'footer_widget', 'Widget de pied de page', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5980', 'fr', 'about_widget', 'À propos du widget', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5981', 'fr', 'footer_logo', 'Logo du pied de page', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5982', 'fr', 'about_description', 'À propos de la description', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5983', 'fr', 'contact_info_widget', 'Widget d\'informations de contact', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5984', 'fr', 'footer_contact_address', 'Adresse de contact du pied de page', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5985', 'fr', 'footer_contact_phone', 'Téléphone de contact de pied de page', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5986', 'fr', 'footer_contact_email', 'Adresse e-mail de contact de pied de page', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5987', 'fr', 'link_widget_one', 'Lier le widget un', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5988', 'fr', 'links', 'Liens', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5989', 'fr', 'footer_bottom', 'Bas de pied de page', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5990', 'fr', 'copyright_widget_', 'Widget de droits d\'auteur', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5991', 'fr', 'copyright_text', 'Texte du droit d\'auteur', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5992', 'fr', 'social_link_widget_', 'Widget de lien social', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5993', 'fr', 'show_social_links', 'Afficher les liens sociaux?', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5994', 'fr', 'social_links', 'Liens sociaux', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5995', 'fr', 'payment_methods_widget_', 'Widget des méthodes de paiement', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5996', 'fr', 'rtl_status_updated_successfully', 'Statut RTL mis à jour avec succès', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5997', 'fr', 'language_changed_to_', 'Langue remplacée par', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5998', 'fr', 'inhouse_product_sale_report', 'Rapport de vente de produits en interne', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('5999', 'fr', 'sort_by_category', 'Trier par catégorie', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6000', 'fr', 'product_wise_stock_report', 'Rapport de stock par produit', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6001', 'fr', 'currency_changed_to_', 'Devise remplacée par', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6002', 'fr', 'avatar', 'Avatar', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6003', 'fr', 'copy', 'Copie', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6004', 'fr', 'variant', 'Une variante', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6005', 'fr', 'variant_price', 'Prix ​​de la variante', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6006', 'fr', 'sku', 'SKU', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6007', 'fr', 'key', 'Clé', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6008', 'fr', 'value', 'Valeur', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6009', 'fr', 'copy_translations', 'Copier les traductions', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6010', 'fr', 'all_pickup_points', 'Tous les points de ramassage', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6011', 'fr', 'add_new_pickup_point', 'Ajouter un nouveau point de ramassage', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6012', 'fr', 'manager', 'Directeur', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6013', 'fr', 'location', 'Emplacement', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6014', 'fr', 'pickup_station_contact', 'Contact de la station de ramassage', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6015', 'fr', 'open', 'Ouvert', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6016', 'fr', 'pos_activation_for_seller', 'Activation POS pour le vendeur', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6017', 'fr', 'order_completed_successfully', 'Commande terminée avec succès.', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6018', 'fr', 'text_input', 'Saisie de texte', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6019', 'fr', 'select', 'Sélectionner', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6020', 'fr', 'multiple_select', 'Sélection multiple', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6021', 'fr', 'radio', 'Radio', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6022', 'fr', 'file', 'Fichier', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6023', 'fr', 'email_address', 'Adresse e-mail', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6024', 'fr', 'verification_info', 'Informations de vérification', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6025', 'fr', 'approval', 'Approbation', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6026', 'fr', 'due_amount', 'Montant dû', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6027', 'fr', 'show', 'Montrer', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6028', 'fr', 'pay_now', 'Payez maintenant', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6029', 'fr', 'affiliate_user_verification', 'Vérification de l\'utilisateur affilié', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6030', 'fr', 'reject', 'Rejeter', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6031', 'fr', 'accept', 'J\'accepte', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6032', 'fr', 'beauty_health__hair', 'Beauté, santé et cheveux', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6033', 'fr', 'comparison', 'Comparaison', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6034', 'fr', 'reset_compare_list', 'Réinitialiser la liste de comparaison', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6035', 'fr', 'your_comparison_list_is_empty', 'Votre liste de comparaison est vide', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6036', 'fr', 'convert_point_to_wallet', 'Convertir un point en portefeuille', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6037', 'fr', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Remarque: vous devez d\'abord activer l\'option portefeuille avant d\'utiliser l\'addon Club Point.', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6038', 'fr', 'create_an_account', 'Créer un compte.', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6039', 'fr', 'use_email_instead', 'Utilisez plutôt le courrier électronique', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6040', 'fr', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'En vous inscrivant, vous acceptez nos termes et conditions.', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6041', 'fr', 'create_account', 'Créer un compte', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6042', 'fr', 'or_join_with', 'Ou rejoindre avec', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6043', 'fr', 'already_have_an_account', 'Vous avez déjà un compte?', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6044', 'fr', 'log_in', 'S\'identifier', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6045', 'fr', 'computer__accessories', 'Accessoires informatiques', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6046', 'fr', 'products', 'Des produits)', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6047', 'fr', 'in_your_cart', 'dans votre panier', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6048', 'fr', 'in_your_wishlist', 'dans votre liste de souhaits', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6049', 'fr', 'you_ordered', 'vous avez commandé', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6050', 'fr', 'default_shipping_address', 'Adresse de livraison par défaut', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6051', 'fr', 'sports__outdoor', 'Sports et plein air', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6052', 'fr', 'copied', 'Copié', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6053', 'fr', 'copy_the_promote_link', 'Copier le lien de promotion', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6054', 'fr', 'write_a_review', 'Écrire une critique', '2021-02-09 12:34:51', '2021-09-20 12:59:24'),
('6055', 'fr', 'your_name', 'Votre nom', '2021-02-09 12:34:51', '2021-09-20 12:59:25'),
('6056', 'fr', 'comment', 'Commentaire', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6057', 'fr', 'your_review', 'Votre avis', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6058', 'fr', 'submit_review', 'Poster le commentaire', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6059', 'fr', 'claire_willis', 'Claire Willis', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6060', 'fr', 'germaine_greene', 'Germaine Greene', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6061', 'fr', 'product_file', 'Fiche produit', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6062', 'fr', 'choose_file', 'Choisir le fichier', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6063', 'fr', 'type_to_add_a_tag', 'Tapez pour ajouter une balise', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6064', 'fr', 'images', 'Images', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6065', 'fr', 'main_images', 'Main Images', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6066', 'fr', 'meta_tags', 'Balises Meta', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6067', 'fr', 'digital_product_has_been_inserted_successfully', 'Le produit numérique a été inséré avec succès', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6068', 'fr', 'edit_digital_product', 'Modifier le produit numérique', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6069', 'fr', 'select_an_option', 'Sélectionner une option', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6070', 'fr', 'tax', 'impôt', '2021-02-09 12:34:52', '2021-02-09 12:34:52'),
('6071', 'fr', 'any_question_about_this_product', 'Une question sur ce produit?', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6072', 'fr', 'sign_in', 'se connecter', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6073', 'fr', 'login_with_google', 'Connectez-vous avec Google', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6074', 'fr', 'login_with_facebook', 'Se connecter avec Facebook', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6075', 'fr', 'login_with_twitter', 'Connectez-vous avec Twitter', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6076', 'fr', 'click_to_show_phone_number', 'Cliquez pour afficher le numéro de téléphone', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6077', 'fr', 'other_ads_of', 'Autres annonces de', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6078', 'fr', 'store_home', 'Accueil du magasin', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6079', 'fr', 'top_selling', 'Meilleures ventes', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6080', 'fr', 'shop_settings', 'Paramètres de la boutique', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6081', 'fr', 'visit_shop', 'Visiter la boutique', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6082', 'fr', 'pickup_points', 'Points de ramassage', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6083', 'fr', 'select_pickup_point', 'Sélectionnez le point de ramassage', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6084', 'fr', 'slider_settings', 'Paramètres du curseur', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6085', 'fr', 'social_media_link', 'Lien de médias sociaux', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6086', 'fr', 'facebook', 'Facebook', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6087', 'fr', 'twitter', 'Twitter', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6088', 'fr', 'google', 'Google', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6089', 'fr', 'new_arrival_products', 'Nouveaux produits d\'arrivée', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6090', 'fr', 'check_your_order_status', 'Vérifiez l\'état de votre commande', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6091', 'fr', 'shipping_method', 'Mode de livraison', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6092', 'fr', 'shipped_by', 'Expédié par', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6093', 'fr', 'image', 'Image', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6094', 'fr', 'sub_sub_category', 'Sous sous-catégorie', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6095', 'fr', 'inhouse_products', 'Produits internes', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6096', 'fr', 'forgot_password', 'Mot de passe oublié?', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6097', 'fr', 'enter_your_email_address_to_recover_your_password', 'Entrez votre adresse e-mail pour récupérer votre mot de passe.', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6098', 'fr', 'email_or_phone', 'Email ou téléphone', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6099', 'fr', 'send_password_reset_link', 'Envoyer le lien de réinitialisation du mot de passe', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6100', 'fr', 'back_to_login', 'Retour connexion', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6101', 'fr', 'index', 'indice', '2021-02-09 12:34:52', '2021-02-09 12:34:52'),
('6102', 'fr', 'download_your_product', 'Téléchargez votre produit', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6103', 'fr', 'option', 'Option', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6104', 'fr', 'applied_refund_request', 'Demande de remboursement appliquée', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6105', 'fr', 'item_has_been_renoved_from_wishlist', 'L\'article a été retiré de la liste de souhaits', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6106', 'fr', 'bulk_products_upload', 'Téléchargement de produits en masse', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6107', 'fr', 'upload_csv', 'Télécharger CSV', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6108', 'fr', 'create_a_ticket', 'Créer un ticket', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6109', 'fr', 'tickets', 'Des billets', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6110', 'fr', 'ticket_id', 'ID de billets', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6111', 'fr', 'sending_date', 'Date d\'envoi', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6112', 'fr', 'subject', 'Matière', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6113', 'fr', 'view_details', 'Voir les détails', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6114', 'fr', 'provide_a_detailed_description', 'Fournissez une description détaillée', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6115', 'fr', 'type_your_reply', 'Tapez votre réponse', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6116', 'fr', 'send_ticket', 'Envoyer un ticket', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6117', 'fr', 'load_more', 'Charger plus', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6118', 'fr', 'jewelry__watches', 'Bijoux & Montres', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6119', 'fr', 'filters', 'Filtres', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6120', 'fr', 'contact_address', 'Adresse de contact', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6121', 'fr', 'contact_phone', 'Numéro du contact', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6122', 'fr', 'contact_email', 'Email du contact', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6123', 'fr', 'filter_by', 'Filtrer par', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6124', 'fr', 'condition', 'État', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6125', 'fr', 'all_type', 'Tous les types', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6126', 'fr', 'pay_with_wallet', 'Payer avec portefeuille', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6127', 'fr', 'select_variation', 'Sélectionnez une variante', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6128', 'fr', 'no_product_added', 'Aucun produit ajouté', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6129', 'fr', 'status_has_been_updated_successfully', 'Le statut a été mis à jour avec succès', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6130', 'fr', 'all_seller_packages', 'Tous les packages du vendeur', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6131', 'fr', 'add_new_package', 'Ajouter un nouveau package', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6132', 'fr', 'package_logo', 'Logo du paquet', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6133', 'fr', 'days', 'journées', '2021-02-09 12:34:52', '2021-02-09 12:34:52'),
('6134', 'fr', 'create_new_seller_package', 'Créer un nouveau package vendeur', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6135', 'fr', 'package_name', 'Nom du paquet', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6136', 'fr', 'duration', 'Durée', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6137', 'fr', 'validity_in_number_of_days', 'Validité en nombre de jours', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6138', 'fr', 'update_package_information', 'Mettre à jour les informations du package', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6139', 'fr', 'package_has_been_inserted_successfully', 'Le package a été inséré avec succès', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6140', 'fr', 'refund_request', 'Demande de remboursement', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6141', 'fr', 'reason', 'Raison', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6142', 'fr', 'label', 'Étiquette', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6143', 'fr', 'select_label', 'Sélectionnez l\'étiquette', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6144', 'fr', 'multiple_select_label', 'Étiquette de sélection multiple', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6145', 'fr', 'radio_label', 'Étiquette radio', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6146', 'fr', 'pickup_point_orders', 'Commandes au point de ramassage', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6147', 'fr', 'view', 'Vue', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6148', 'fr', 'order_', 'Ordre #', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6149', 'fr', 'order_status', 'Statut de la commande', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6150', 'fr', 'total_amount', 'Montant total', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6151', 'fr', 'total', 'TOTAL', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6152', 'fr', 'delivery_status_has_been_updated', 'Le statut de livraison a été mis à jour', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6153', 'fr', 'payment_status_has_been_updated', 'Le statut du paiement a été mis à jour', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6154', 'fr', 'invoice', 'FACTURE D\'ACHAT', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6155', 'fr', 'set_refund_time', 'Définir l\'heure de remboursement', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6156', 'fr', 'set_time_for_sending_refund_request', 'Définir l\'heure d\'envoi de la demande de remboursement', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6157', 'fr', 'set_refund_sticker', 'Définir l\'autocollant de remboursement', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6158', 'fr', 'sticker', 'Autocollant', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6159', 'fr', 'refund_request_all', 'Demande de remboursement Tous', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6160', 'fr', 'order_id', 'Numéro de commande', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6161', 'fr', 'seller_approval', 'Approbation du vendeur', '2021-02-09 12:34:52', '2021-09-20 12:59:25'),
('6162', 'fr', 'admin_approval', 'Approbation de l\'administrateur', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6163', 'fr', 'refund_status', 'Statut de remboursement', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6164', 'fr', 'no_refund', 'Aucun remboursement', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6165', 'fr', 'status_updated_successfully', 'Statut mis à jour avec succès', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6166', 'fr', 'user_search_report', 'Rapport de recherche d\'utilisateurs', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6167', 'fr', 'search_by', 'Recherché par', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6168', 'fr', 'number_searches', 'Recherches numériques', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6169', 'fr', 'sender', 'Expéditeur', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6170', 'fr', 'receiver', 'Destinataire', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6171', 'fr', 'verification_form_updated_successfully', 'Formulaire de vérification mis à jour avec succès', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6172', 'fr', 'invalid_email_or_password', 'email ou mot de passe invalide', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6173', 'fr', 'all_coupons', 'Tous les coupons', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6174', 'fr', 'add_new_coupon', 'Ajouter un nouveau coupon', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6175', 'fr', 'coupon_information', 'Informations sur le coupon', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6176', 'fr', 'start_date', 'Date de début', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6177', 'fr', 'end_date', 'Date de fin', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6178', 'fr', 'product_base', 'Base de produit', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6179', 'fr', 'send_newsletter', 'Envoyer la newsletter', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6180', 'fr', 'mobile_users', 'Utilisateurs mobiles', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6181', 'fr', 'sms_subject', 'Objet du SMS', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6182', 'fr', 'sms_content', 'Contenu SMS', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6183', 'fr', 'all_flash_delas', 'Tous Flash Delas', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6184', 'fr', 'create_new_flash_dela', 'Créer un nouveau Flash Dela', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6185', 'fr', 'page_link', 'Lien de page', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6186', 'fr', 'flash_deal_information', 'Informations sur l\'offre Flash', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6187', 'fr', 'background_color', 'Couleur de l\'arrière plan', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6188', 'fr', '0000ff', '# 0000ff', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6189', 'fr', 'text_color', 'Couleur du texte', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6190', 'fr', 'white', 'blanc', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6191', 'fr', 'dark', 'Foncé', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6192', 'fr', 'choose_products', 'Choisissez des produits', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6193', 'fr', 'discounts', 'Réductions', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6194', 'fr', 'discount_type', 'Type de remise', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6195', 'fr', 'twillo_credential', 'Titres d\'identité Twillo', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6196', 'fr', 'twilio_sid', 'TWILIO SID', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6197', 'fr', 'twilio_auth_token', 'JETON D\'AUTH TWILIO', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6198', 'fr', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6199', 'fr', 'valid_twillo_number', 'NUMÉRO DE TWILLO VALIDE', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6200', 'fr', 'nexmo_credential', 'Identifiant Nexmo', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6201', 'fr', 'nexmo_key', 'CLÉ NEXMO', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6202', 'fr', 'nexmo_secret', 'NEXMO SECRET', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6203', 'fr', 'ssl_wireless_credential', 'Identifiant sans fil SSL', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6204', 'fr', 'ssl_sms_api_token', 'TOKEN API SMS SSL', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6205', 'fr', 'ssl_sms_sid', 'SID SMS SSL', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6206', 'fr', 'ssl_sms_url', 'URL SMS SSL', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6207', 'fr', 'fast2sms_credential', 'Informations d\'identification Fast2SMS', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6208', 'fr', 'auth_key', 'CLÉ D\'AUTHENTIFICATION', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6209', 'fr', 'route', 'ROUTE', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6210', 'fr', 'promotional_use', 'Utilisation promotionnelle', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6211', 'fr', 'transactional_use', 'Utilisation transactionnelle', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6212', 'fr', 'sender_id', 'ID de l\'expéditeur', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6213', 'fr', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6214', 'fr', 'twillo_otp', 'Twillo OTP', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6215', 'fr', 'ssl_wireless_otp', 'OTP sans fil SSL', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6216', 'fr', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6217', 'fr', 'order_placement', 'Placement de commande', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6218', 'fr', 'delivery_status_changing_time', 'Heure de changement du statut de livraison', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6219', 'fr', 'paid_status_changing_time', 'Temps de changement de statut payé', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6220', 'fr', 'send_bulk_sms', 'Envoyer des SMS en masse', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6221', 'fr', 'all_subscribers', 'Tous les abonnés', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6222', 'fr', 'coupon_information_adding', 'Ajout d\'informations sur le coupon', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6223', 'fr', 'coupon_type', 'Type de coupon', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6224', 'fr', 'for_products', 'Pour les produits', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6225', 'fr', 'for_total_orders', 'Pour le total des commandes', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6226', 'fr', 'add_your_product_base_coupon', 'Ajouter votre coupon de base de produits', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6227', 'fr', 'coupon_code', 'Code de coupon', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6228', 'fr', 'sub_category', 'Sous-catégorie', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6229', 'fr', 'add_more', 'Ajouter plus de', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6230', 'fr', 'add_your_cart_base_coupon', 'Ajouter votre coupon de base de panier', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6231', 'fr', 'minimum_shopping', 'Achat minimum', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6232', 'fr', 'maximum_discount_amount', 'Montant maximum de la remise', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6233', 'fr', 'coupon_information_update', 'Mise à jour des informations sur le coupon', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6234', 'fr', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Veuillez configurer le paramètre SMTP pour qu\'il fonctionne avec toutes les fonctionnalités d\'envoi d\'e-mails', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6235', 'fr', 'configure_now', 'Configurer maintenant', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6236', 'fr', 'total_published_products', 'Total des produits publiés', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6237', 'fr', 'total_sellers_products', 'Total des produits vendeurs', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6238', 'fr', 'total_admin_products', 'Total des produits d\'administration', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6239', 'fr', 'manage_products', 'Gérer les produits', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6240', 'fr', 'total_product_category', 'Catégorie de produit totale', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6241', 'fr', 'create_category', 'Créer une catégorie', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6242', 'fr', 'total_product_sub_sub_category', 'Sous-catégorie totale de produits', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6243', 'fr', 'create_sub_sub_category', 'Créer une sous-sous-catégorie', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6244', 'fr', 'total_product_sub_category', 'Sous-catégorie totale de produits', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6245', 'fr', 'create_sub_category', 'Créer une sous-catégorie', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6246', 'fr', 'total_product_brand', 'Marque totale du produit', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6247', 'fr', 'create_brand', 'Créer une marque', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6248', 'fr', 'total_sellers', 'Total vendeurs', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6249', 'fr', 'total_approved_sellers', 'Nombre total de vendeurs approuvés', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6250', 'fr', 'total_pending_sellers', 'Total des vendeurs en attente', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6251', 'fr', 'manage_sellers', 'Gérer les vendeurs', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6252', 'fr', 'category_wise_product_sale', 'Vente de produits par catégorie', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6253', 'fr', 'sale', 'Vente', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6254', 'fr', 'category_wise_product_stock', 'Stock de produits par catégorie', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6255', 'fr', 'category_name', 'Nom de catégorie', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6256', 'fr', 'stock', 'Stock', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6257', 'fr', 'frontend', 'L\'extrémité avant', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6258', 'fr', 'home_page', 'Page d\'accueil', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6259', 'fr', 'setting', 'réglage', '2021-02-09 12:34:53', '2021-02-09 12:34:53'),
('6260', 'fr', 'policy_page', 'Page de politique', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6261', 'fr', 'general', 'Général', '2021-02-09 12:34:53', '2021-09-20 12:59:25'),
('6262', 'fr', 'click_here', 'Cliquez ici', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6263', 'fr', 'useful_link', 'Lien utile', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6264', 'fr', 'activation', 'Activation', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6265', 'fr', 'smtp', 'SMTP', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6266', 'fr', 'payment_method', 'Mode de paiement', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6267', 'fr', 'social_media', 'Des médias sociaux', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6268', 'fr', 'business', 'Entreprise', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6269', 'fr', 'seller_verification', 'Vérification du vendeur', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6270', 'fr', 'form_setting', 'paramètre de formulaire', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6271', 'fr', 'language', 'Langue', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6272', 'fr', 'dashboard', 'Tableau de bord', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6273', 'fr', 'pos_system', 'Système de point de vente', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6274', 'fr', 'pos_manager', 'Gestionnaire de point de vente', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6275', 'fr', 'pos_configuration', 'Configuration du point de vente', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6276', 'fr', 'products', 'Des produits', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6277', 'fr', 'add_new_product', 'Ajouter un nouveau produit', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6278', 'fr', 'all_products', 'Tous les produits', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6279', 'fr', 'in_house_products', 'Produits maison', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6280', 'fr', 'seller_products', 'Produits du vendeur', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6281', 'fr', 'digital_products', 'Produits numériques', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6282', 'fr', 'bulk_import', 'Importation en masse', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6283', 'fr', 'bulk_export', 'Exportation en masse', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6284', 'fr', 'category', 'Catégorie', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6285', 'fr', 'subcategory', 'Sous-catégorie', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6286', 'fr', 'sub_subcategory', 'Sous sous-catégorie', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6287', 'fr', 'brand', 'Marque', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6288', 'fr', 'attribute', 'Attribut', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6289', 'fr', 'product_reviews', 'Avis sur les produits', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6290', 'fr', 'sales', 'Ventes', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6291', 'fr', 'all_orders', 'Tous les ordres', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6292', 'fr', 'inhouse_orders', 'Commandes internes', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6293', 'fr', 'seller_orders', 'Commandes du vendeur', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6294', 'fr', 'pickup_point_order', 'Commande au point de ramassage', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6295', 'fr', 'refunds', 'Remboursements', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6296', 'fr', 'refund_requests', 'Demandes de remboursement', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6297', 'fr', 'approved_refund', 'Remboursement approuvé', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6298', 'fr', 'refund_configuration', 'Configuration du remboursement', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6299', 'fr', 'customers', 'Les clients', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6300', 'fr', 'customer_list', 'Liste de clients', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6301', 'fr', 'classified_products', 'Produits classés', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6302', 'fr', 'classified_packages', 'Forfaits classifiés', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6303', 'fr', 'sellers', 'Les vendeurs', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6304', 'fr', 'all_seller', 'Tous les vendeurs', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6305', 'fr', 'payouts', 'Paiements', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6306', 'fr', 'payout_requests', 'Demandes de paiement', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6307', 'fr', 'seller_commission', 'Commission du vendeur', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6308', 'fr', 'seller_packages', 'Packages du vendeur', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6309', 'fr', 'seller_verification_form', 'Formulaire de vérification du vendeur', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6310', 'fr', 'reports', 'Rapports', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6311', 'fr', 'in_house_product_sale', 'Vente de produits en interne', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6312', 'fr', 'seller_products_sale', 'Vente de produits du vendeur', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6313', 'fr', 'products_stock', 'Stock de produits', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6314', 'fr', 'products_wishlist', 'Liste de souhaits de produits', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6315', 'fr', 'user_searches', 'Recherches d\'utilisateurs', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6316', 'fr', 'marketing', 'Commercialisation', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6317', 'fr', 'flash_deals', 'Offres Flash', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6318', 'fr', 'newsletters', 'Bulletins', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6319', 'fr', 'bulk_sms', 'SMS en masse', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6320', 'fr', 'subscribers', 'Les abonnés', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6321', 'fr', 'coupon', 'Coupon', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6322', 'fr', 'support', 'Soutien', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6323', 'fr', 'ticket', 'Billet', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6324', 'fr', 'product_queries', 'Requêtes sur les produits', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6325', 'fr', 'website_setup', 'Configuration du site Web', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6326', 'fr', 'header', 'Entête', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6327', 'fr', 'footer', 'Bas de page', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6328', 'fr', 'pages', 'Des pages', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6329', 'fr', 'appearance', 'Apparence', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6330', 'fr', 'setup__configurations', 'Installation et configurations', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6331', 'fr', 'general_settings', 'réglages généraux', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6332', 'fr', 'features_activation', 'Activation des fonctionnalités', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6333', 'fr', 'languages', 'Langues', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6334', 'fr', 'currency', 'Devise', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6335', 'fr', 'pickup_point', 'Point de ramassage', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6336', 'fr', 'smtp_settings', 'Paramètres SMTP', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6337', 'fr', 'payment_methods', 'méthodes de payement', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6338', 'fr', 'file_system_configuration', 'Configuration du système de fichiers', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6339', 'fr', 'social_media_logins', 'Connexions aux réseaux sociaux', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6340', 'fr', 'analytics_tools', 'Outils d\'analyse', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6341', 'fr', 'facebook_chat', 'Chat Facebook', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6342', 'fr', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6343', 'fr', 'shipping_configuration', 'Configuration d\'expédition', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6344', 'fr', 'shipping_countries', 'Pays d\'expédition', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6345', 'fr', 'affiliate_system', 'Système d\'affiliation', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6346', 'fr', 'affiliate_registration_form', 'Formulaire d\'inscription d\'affilié', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6347', 'fr', 'affiliate_configurations', 'Configurations d\'affiliation', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6348', 'fr', 'affiliate_users', 'Utilisateurs affiliés', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6349', 'fr', 'referral_users', 'Utilisateurs référents', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6350', 'fr', 'affiliate_withdraw_requests', 'Demandes de retrait des affiliés', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6351', 'fr', 'offline_payment_system', 'Système de paiement hors ligne', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6352', 'fr', 'manual_payment_methods', 'Modes de paiement manuels', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6353', 'fr', 'offline_wallet_recharge', 'Recharge de portefeuille hors ligne', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6354', 'fr', 'offline_customer_package_payments', 'Paiements de forfait client hors ligne', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6355', 'fr', 'offline_seller_package_payments', 'Paiements hors ligne du package du vendeur', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6356', 'fr', 'paytm_payment_gateway', 'Passerelle de paiement Paytm', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6357', 'fr', 'set_paytm_credentials', 'Définir les informations d\'identification Paytm', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6358', 'fr', 'club_point_system', 'Système de points Club', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6359', 'fr', 'club_point_configurations', 'Configurations des points Club', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6360', 'fr', 'set_product_point', 'Définir le point de produit', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6361', 'fr', 'user_points', 'Points utilisateur', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6362', 'fr', 'otp_system', 'Système OTP', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6363', 'fr', 'otp_configurations', 'Configurations OTP', '2021-02-09 12:34:54', '2021-09-20 12:59:25'),
('6364', 'fr', 'set_otp_credentials', 'Définir les informations d\'identification OTP', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6365', 'fr', 'staffs', 'Personnel', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6366', 'fr', 'all_staffs', 'Tous les états-majors', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6367', 'fr', 'staff_permissions', 'Autorisations du personnel', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6368', 'fr', 'addon_manager', 'Gestionnaire de modules complémentaires', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6369', 'fr', 'browse_website', 'Parcourir le site Web', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6370', 'fr', 'pos', 'POS', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6371', 'fr', 'notifications', 'Notifications', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6372', 'fr', 'new_orders', 'nouvelles commandes', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6373', 'fr', 'userimage', 'image-utilisateur', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6374', 'fr', 'profile', 'Profil', '2021-02-09 12:34:55', '2021-09-20 12:59:25'),
('6375', 'fr', 'logout', 'Se déconnecter', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6376', 'fr', 'page_not_found', 'Page non trouvée!', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6377', 'fr', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'La page que vous recherchez n\'a pas été trouvée sur notre serveur.', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6378', 'fr', 'registration', 'enregistrement', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6379', 'fr', 'i_am_shopping_for', 'Je fais des achats pour...', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6380', 'fr', 'compare', 'Comparer', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6381', 'fr', 'wishlist', 'Liste de souhaits', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6382', 'fr', 'cart', 'Chariot', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6383', 'fr', 'your_cart_is_empty', 'Votre panier est vide', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6384', 'fr', 'categories', 'Catégories', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6385', 'fr', 'see_all', 'Voir tout', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6386', 'fr', 'seller_policy', 'Politique du vendeur', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6387', 'fr', 'return_policy', 'Politique de retour', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6388', 'fr', 'support_policy', 'Politique d\'assistance', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6389', 'fr', 'privacy_policy', 'Politique de confidentialité', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6390', 'fr', 'your_email_address', 'Votre adresse email', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6391', 'fr', 'subscribe', 'Souscrire', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6392', 'fr', 'contact_info', 'Informations de contact', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6393', 'fr', 'address', 'Adresse', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6394', 'fr', 'phone', 'Téléphone', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6395', 'fr', 'email', 'Email', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6396', 'fr', 'login', 'S\'identifier', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6397', 'fr', 'my_account', 'Mon compte', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6398', 'fr', 'order_history', 'Historique des commandes', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6399', 'fr', 'my_wishlist', 'Ma liste d\'envies', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6400', 'fr', 'track_order', 'Suivi de commande', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6401', 'fr', 'be_an_affiliate_partner', 'Soyez un partenaire affilié', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6402', 'fr', 'be_a_seller', 'Soyez vendeur', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6403', 'fr', 'apply_now', 'Appliquer maintenant', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6404', 'fr', 'confirmation', 'Confirmation', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6405', 'fr', 'delete_confirmation_message', 'Supprimer le message de confirmation', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6406', 'fr', 'cancel', 'Annuler', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6407', 'fr', 'delete', 'Effacer', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6408', 'fr', 'item_has_been_added_to_compare_list', 'L\'article a été ajouté à la liste de comparaison', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6409', 'fr', 'please_login_first', 'S\'il vous plait Connectez-vous d\'abord', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6410', 'fr', 'total_earnings_from', 'Total des revenus de', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6411', 'fr', 'client_subscription', 'Abonnement client', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6412', 'fr', 'product_category', 'Catégorie de produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6413', 'fr', 'product_sub_sub_category', 'Sous-catégorie de produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6414', 'fr', 'product_sub_category', 'Sous-catégorie de produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6415', 'fr', 'product_brand', 'Marque de produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6416', 'fr', 'top_client_packages', 'Meilleurs packages clients', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6417', 'fr', 'top_freelancer_packages', 'Meilleurs forfaits Freelancer', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6418', 'fr', 'number_of_sale', 'Numéro de vente', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6419', 'fr', 'number_of_stock', 'Nombre de stock', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6420', 'fr', 'top_10_products', 'Top 10 des produits', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6421', 'fr', 'top_12_products', 'Top 12 des produits', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6422', 'fr', 'admin_can_not_be_a_seller', 'L\'administrateur ne peut pas être un vendeur', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6423', 'fr', 'filter_by_rating', 'Filtrer par note', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6424', 'fr', 'published_reviews_updated_successfully', 'Avis publiés mis à jour avec succès', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6425', 'fr', 'refund_sticker_has_been_updated_successfully', 'L\'autocollant de remboursement a été mis à jour avec succès', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6426', 'fr', 'edit_product', 'Modifier le produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6427', 'fr', 'meta_images', 'Images méta', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6428', 'fr', 'update_product', 'Mettre à jour le produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6429', 'fr', 'product_has_been_deleted_successfully', 'Le produit a été supprimé avec succès', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6430', 'fr', 'your_profile_has_been_updated_successfully', 'Votre profil a été mis à jour avec succés!', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6431', 'fr', 'upload_limit_has_been_reached_please_upgrade_your_package', 'La limite de téléchargement a été atteinte. Veuillez mettre à jour votre package.', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6432', 'fr', 'add_your_product', 'Ajoutez votre produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6433', 'fr', 'select_a_category', 'choisissez une catégorie', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6434', 'fr', 'select_a_brand', 'Sélectionnez une marque', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6435', 'fr', 'product_unit', 'Unité de produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6436', 'fr', 'minimum_qty', 'Qté minimum.', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6437', 'fr', 'product_tag', 'Étiquette de produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6438', 'fr', 'type__hit_enter', 'Tapez et appuyez sur Entrée', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6439', 'fr', 'videos', 'Vidéos', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6440', 'fr', 'video_from', 'Vidéo de', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6441', 'fr', 'video_url', 'URL de la vidéo', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6442', 'fr', 'customer_choice', 'Choix du client', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6443', 'fr', 'pdf', 'PDF', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6444', 'fr', 'choose_pdf', 'Choisissez PDF', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6445', 'fr', 'select_category', 'Choisir une catégorie', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6446', 'fr', 'target_category', 'Catégorie cible', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6447', 'fr', 'subsubcategory', 'sous-sous-catégorie', '2021-02-09 12:35:23', '2021-02-09 12:35:23'),
('6448', 'fr', 'search_category', 'Rechercher une catégorie', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6449', 'fr', 'search_subcategory', 'Rechercher une sous-catégorie', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6450', 'fr', 'search_subsubcategory', 'Rechercher une sous-sous-catégorie', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6451', 'fr', 'update_your_product', 'Mettez à jour votre produit', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6452', 'fr', 'product_has_been_updated_successfully', 'Le produit a été mis à jour avec succès', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6453', 'fr', 'add_your_digital_product', 'Ajoutez votre produit numérique', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6454', 'fr', 'active_ecommerce_cms_update_process', 'Processus de mise à jour du CMS de commerce électronique actif', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6455', 'fr', 'codecanyon_purchase_code', 'Code d\'achat Codecanyon', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6456', 'fr', 'database_name', 'Nom de la base de données', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6457', 'fr', 'database_username', 'Nom d\'utilisateur de la base de données', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6458', 'fr', 'database_password', 'Mot de passe de la base de données', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6459', 'fr', 'database_hostname', 'Nom d\'hôte de la base de données', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6460', 'fr', 'update_now', 'Mettez à jour maintenant', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6461', 'fr', 'congratulations', 'Toutes nos félicitations', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6462', 'fr', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'Vous avez terminé avec succès le processus de mise à jour. Veuillez vous connecter pour continuer', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6463', 'fr', 'go_to_home', 'Aller à la maison', '2021-02-09 12:35:23', '2021-09-20 12:59:26'),
('6464', 'fr', 'login_to_admin_panel', 'Connectez-vous au panneau d\'administration', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6465', 'fr', 's3_file_system_credentials', 'Informations d\'identification du système de fichiers S3', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6466', 'fr', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6467', 'fr', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6468', 'fr', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6469', 'fr', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6470', 'fr', 'aws_url', 'AWS_URL', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6471', 'fr', 's3_file_system_activation', 'Activation du système de fichiers S3', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6472', 'fr', 'your_phone_number', 'Votre numéro de téléphone', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6473', 'fr', 'zip_file', 'Fichier zip', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6474', 'fr', 'install', 'Installer', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6475', 'fr', 'this_version_is_not_capable_of_installing_addons_please_update', 'Cette version n\'est pas capable d\'installer des addons, veuillez mettre à jour.', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6476', 'fr', 'search_in_menu', 'Rechercher dans le menu', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6477', 'fr', 'uploaded_files', 'Fichiers téléchargés', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6478', 'fr', 'shipping_cities', 'Villes d\'expédition', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6479', 'fr', 'system', 'Système', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6480', 'fr', 'server_status', 'État du serveur', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6481', 'fr', 'nothing_found', 'rien n\'a été trouvé', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6482', 'fr', 'parent_category', 'Catégorie Parentale', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6483', 'fr', 'level', 'Niveau', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6484', 'fr', 'category_information', 'Information sur la catégorie', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6485', 'fr', 'translatable', 'Traduisible', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6486', 'fr', 'no_parent', 'Aucun parent', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6487', 'fr', 'physical', 'Physique', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6488', 'fr', 'digital', 'Numérique', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6489', 'fr', '200x200', '200 x 200', '2021-02-09 12:35:24', '2021-02-09 12:35:24'),
('6490', 'fr', '32x32', '32 x 32', '2021-02-09 12:35:24', '2021-02-09 12:35:24'),
('6491', 'fr', 'search_your_files', 'Recherchez vos fichiers', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6492', 'fr', 'category_has_been_updated_successfully', 'La catégorie a été mise à jour avec succès', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6493', 'fr', 'all_uploaded_files', 'Tous les fichiers téléchargés', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6494', 'fr', 'upload_new_file', 'Télécharger un nouveau fichier', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6495', 'fr', 'all_files', 'Tous les fichiers', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6496', 'fr', 'search', 'Chercher', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6497', 'fr', 'details_info', 'Détails Info', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6498', 'fr', 'copy_link', 'Copier le lien', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6499', 'fr', 'are_you_sure_to_delete_this_file', 'Êtes-vous sûr de vouloir supprimer ce fichier?', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6500', 'fr', 'file_info', 'Informations sur le fichier', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6501', 'fr', 'link_copied_to_clipboard', 'Lien copié dans le presse-papiers', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6502', 'fr', 'oops_unable_to_copy', 'Oups, impossible de copier', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6503', 'fr', 'file_deleted_successfully', 'Fichier supprimé avec succès', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6504', 'fr', 'add_new_brand', 'Ajouter une nouvelle marque', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6505', 'fr', '120x80', '120 x 80', '2021-02-09 12:35:24', '2021-02-09 12:35:24'),
('6506', 'fr', 'brand_information', 'Information sur la marque', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6507', 'fr', 'brand_has_been_updated_successfully', 'La marque a été mise à jour avec succès', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6508', 'fr', 'brand_has_been_deleted_successfully', 'La marque a été supprimée avec succès', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6509', 'fr', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'Ceci est utilisé pour la recherche. Saisissez les mots par lesquels le client peut trouver ce produit.', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6510', 'fr', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'Ces images sont visibles dans la galerie de pages de détails du produit. Utilisez des images de taille 600x600.', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6511', 'fr', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'Cette image est visible dans toutes les boîtes de produits. Utilisez une image de tailles 300x300. Gardez un espace vide autour de l\'objet principal de votre image car nous avons dû recadrer certains bords dans différents appareils pour le rendre réactif.', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6512', 'fr', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Utilisez le lien approprié sans paramètre supplémentaire. N\'utilisez pas de lien de partage court / de code iframe intégré.', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6513', 'fr', 'save_product', 'Enregistrer le produit', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6514', 'fr', 'product_has_been_inserted_successfully', 'Le produit a été inséré avec succès', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6515', 'fr', 'something_went_wrong', 'Un problème est survenu!', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6516', 'fr', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Désolé pour le désagrément, mais nous y travaillons.', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6517', 'fr', 'error_code', 'Code d\'erreur', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6518', 'fr', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Veuillez configurer les paramètres SMTP pour que toutes les fonctionnalités d\'envoi d\'e-mails fonctionnent', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6519', 'fr', 'order', 'Ordre', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6520', 'fr', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'Nous avons une hauteur de bannière limitée pour maintenir l\'interface utilisateur. Nous avons dû recadrer à la fois du côté gauche et du côté droit en vue de différents appareils pour le rendre réactif. Avant de concevoir une bannière, gardez ces points à l\'esprit.', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6521', 'fr', 'home_banner_3_max_3', 'Bannière d\'accueil 3 (Max 3)', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6522', 'fr', 'add_new_seller', 'Ajouter un nouveau vendeur', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6523', 'fr', 'filter_by_approval', 'Filtrer par approbation', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6524', 'fr', 'nonapproved', 'Non approuvé', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6525', 'fr', 'type_name_or_email__enter', 'Tapez le nom ou l\'e-mail et entrez', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6526', 'fr', 'due_to_seller', 'Dû au vendeur', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6527', 'fr', 'log_in_as_this_seller', 'Connectez-vous en tant que vendeur', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6528', 'fr', 'go_to_payment', 'Aller au paiement', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6529', 'fr', 'ban_this_seller', 'Interdire ce vendeur', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6530', 'fr', 'do_you_really_want_to_ban_this_seller', 'Voulez-vous vraiment interdire ce vendeur?', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6531', 'fr', 'proceed', 'Procéder!', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6532', 'fr', 'approved_sellers_updated_successfully', 'Vendeurs approuvés mis à jour avec succès', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6533', 'fr', 'seller_has_been_deleted_successfully', 'Le vendeur a été supprimé avec succès', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6534', 'fr', 'seller_information', 'Information du vendeur', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6535', 'fr', 'seller_has_been_inserted_successfully', 'Le vendeur a été inséré avec succès', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6536', 'fr', 'email_already_exists', 'L\'email existe déjà!', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6537', 'fr', 'verify_your_email_address', 'Vérifiez votre adresse e-mail', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6538', 'fr', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Avant de continuer, veuillez vérifier votre messagerie pour un lien de vérification.', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6539', 'fr', 'if_you_did_not_receive_the_email', 'Si vous n\'avez pas reçu l\'e-mail.', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6540', 'fr', 'click_here_to_request_another', 'Cliquez ici pour en demander un autre', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6541', 'fr', 'email_verification', 'vérification de l\'E-mail', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6542', 'fr', 'email_verification__', 'Vérification de l\'E-mail -', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6543', 'fr', 'https_activation', 'Activation HTTPS', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6544', 'fr', 'maintenance_mode', 'Maintenance Mode', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6545', 'fr', 'maintenance_mode_activation', 'Activation du mode de maintenance', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6546', 'fr', 'classified_product_activate', 'Activation du produit classifié', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6547', 'fr', 'classified_product', 'Produit classé', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6548', 'fr', 'business_related', 'Lié aux affaires', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6549', 'fr', 'vendor_system_activation', 'Activation du système du fournisseur', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6550', 'fr', 'wallet_system_activation', 'Activation du système de portefeuille', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6551', 'fr', 'coupon_system_activation', 'Activation du système de coupons', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6552', 'fr', 'pickup_point_activation', 'Activation du point de ramassage', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6553', 'fr', 'conversation_activation', 'Activation de la conversation', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6554', 'fr', 'guest_checkout_activation', 'Activation de la vérification des invités', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6555', 'fr', 'categorybased_commission', 'Commission par catégorie', '2021-02-09 12:35:24', '2021-09-20 12:59:26'),
('6556', 'fr', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'Après avoir activé cette option, la commission du vendeur sera désactivée et vous devez définir une commission sur chaque catégorie, sinon l\'administrateur ne recevra aucune commission.', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6557', 'fr', 'set_commisssion_now', 'Définir la commission maintenant', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6558', 'fr', 'payment_related', 'Lié au paiement', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6559', 'fr', 'paypal_payment_activation', 'Activation du paiement Paypal', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6560', 'fr', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'Vous devez configurer Paypal correctement pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6561', 'fr', 'stripe_payment_activation', 'Activation du paiement Stripe', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6562', 'fr', 'sslcommerz_activation', 'Activation de SSlCommerz', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6563', 'fr', 'instamojo_payment_activation', 'Activation du paiement Instamojo', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6564', 'fr', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'Vous devez configurer correctement le paiement Instamojo pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6565', 'fr', 'razor_pay_activation', 'Activation de Razor Pay', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6566', 'fr', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'Vous devez configurer Razor correctement pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6567', 'fr', 'paystack_activation', 'Activation PayStack', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6568', 'fr', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'Vous devez configurer PayStack correctement pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6569', 'fr', 'voguepay_activation', 'Activation de VoguePay', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6570', 'fr', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'Vous devez configurer correctement VoguePay pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6571', 'fr', 'payhere_activation', 'Activation Payhere', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6572', 'fr', 'ngenius_activation', 'Activation de Ngenius', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6573', 'fr', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'Vous devez configurer correctement Ngenius pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6574', 'fr', 'iyzico_activation', 'Activation d\'Iyzico', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6575', 'fr', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'Vous devez configurer correctement iyzico pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6576', 'fr', 'bkash_activation', 'Activation Bkash', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6577', 'fr', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'Vous devez configurer correctement bkash pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6578', 'fr', 'nagad_activation', 'Activation de Nagad', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6579', 'fr', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'Vous devez configurer correctement nagad pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6580', 'fr', 'cash_payment_activation', 'Activation du paiement en espèces', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6581', 'fr', 'social_media_login', 'Connexion aux médias sociaux', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6582', 'fr', 'facebook_login', 'Identifiant Facebook', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6583', 'fr', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'Vous devez configurer correctement le client Facebook pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6584', 'fr', 'google_login', 'Connexion Google', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6585', 'fr', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'Vous devez configurer correctement Google Client pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6586', 'fr', 'twitter_login', 'Connexion Twitter', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6587', 'fr', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'Vous devez configurer correctement le client Twitter pour activer cette fonctionnalité', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6588', 'fr', 'shop_logo', 'Logo de la boutique', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6589', 'fr', 'shop_address', 'Adresse de la boutique', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6590', 'fr', 'banner_settings', 'Paramètres de la bannière', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6591', 'fr', 'banners', 'Bannières', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6592', 'fr', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'Nous avons dû limiter la hauteur à la cohérence du maintien. Sur certains appareils, les deux côtés de la bannière peuvent être rognés pour limiter la hauteur.', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6593', 'fr', 'insert_link_with_https_', 'Insérer un lien avec https', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6594', 'fr', 'your_shop_has_been_updated_successfully', 'Votre boutique a été mise à jour avec succès!', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6595', 'fr', 'search_result_for_', 'Résultat de la recherche pour', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6596', 'fr', 'brand_has_been_inserted_successfully', 'La marque a été insérée avec succès', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6597', 'fr', 'about', 'À propos de', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6598', 'fr', 'payout_info', 'Informations de paiement', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6599', 'fr', 'bank_acc_name', 'Nom de la banque', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6600', 'fr', 'bank_acc_number', 'Numéro d\'accès bancaire', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6601', 'fr', 'total_products', 'Total produits', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6602', 'fr', 'total_sold_amount', 'Montant total vendu', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6603', 'fr', 'wallet_balance', 'Solde Google Wallet', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6604', 'fr', 'cookies_agreement', 'Accord de cookies', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6605', 'fr', 'cookies_agreement_text', 'Texte de l\'accord sur les cookies', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6606', 'fr', 'show_cookies_agreement', 'Afficher l\'accord de cookies?', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6607', 'fr', 'custom_script', 'Script personnalisé', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6608', 'fr', 'header_custom_script__before_head', 'Script personnalisé d\'en-tête - avant </head>', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6609', 'fr', 'write_script_with_script_tag', 'Ecrire un script avec la balise <script>', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6610', 'fr', 'footer_custom_script__before_body', 'Script personnalisé de pied de page - avant </body>', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6611', 'fr', 'category_has_been_inserted_successfully', 'La catégorie a été insérée avec succès', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6612', 'fr', 'all_flash_deals', 'Toutes les offres Flash', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6613', 'fr', 'create_new_flash_deal', 'Créer une nouvelle offre Flash', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6614', 'fr', 'ffffff', '#FFFFFF', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6615', 'fr', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Cette image est affichée comme bannière de couverture dans la page de détails de l\'offre flash.', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6616', 'fr', 'flash_deal_has_been_inserted_successfully', 'L\'offre Flash a été insérée avec succès', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6617', 'fr', 'flash_deal_status_updated_successfully', 'État de l\'accord Flash mis à jour avec succès', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6618', 'fr', 'flash_deal_has_been_updated_successfully', 'L\'offre Flash a été mise à jour avec succès', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6619', 'fr', 'update_language_info', 'mettre à jour les informations sur la langue', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6620', 'fr', 'language_has_been_updated_successfully', 'La langue a été mise à jour avec succès', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6621', 'fr', 'type_key__enter', 'Tapez la clé et entrez', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6622', 'fr', 'translations_updated_for_', 'Traductions mises à jour pour', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6623', 'fr', 'language_has_been_inserted_successfully', 'La langue a été insérée avec succès', '2021-02-09 12:35:25', '2021-09-20 12:59:26'),
('6624', 'in', 'all_category', 'सभी श्रेणी', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6625', 'in', 'all', 'सब', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6626', 'in', 'flash_sale', 'तेज़ बिक्री', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6627', 'in', 'view_more', 'और देखो', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6628', 'in', 'add_to_wishlist', 'इच्छा सूची में जोड़ें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6629', 'in', 'add_to_compare', 'तुलना करने के लिए जोड़ें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6630', 'in', 'add_to_cart', 'कार्ट में जोड़ें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6631', 'in', 'club_point', 'क्लब प्वाइंट', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6632', 'in', 'classified_ads', 'वर्गीकृत विज्ञापन', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6633', 'in', 'used', 'उपयोग किया गया', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6634', 'in', 'top_10_categories', 'शीर्ष 10 श्रेणियाँ', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6635', 'in', 'view_all_categories', 'सभी श्रेणियाँ देखें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6636', 'in', 'top_10_brands', 'शीर्ष 10 ब्रांड', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6637', 'in', 'view_all_brands', 'सभी ब्रांड देखें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6638', 'in', 'terms__conditions', 'नियम एवं शर्तें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6639', 'in', 'best_selling', 'सर्वश्रेष्ठ बिक्री', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6640', 'in', 'top_20', 'शीर्ष 20', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6641', 'in', 'featured_products', 'विशेष रुप से प्रदर्शित प्रोडक्टस', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6642', 'in', 'best_sellers', 'सर्वाधिक बिकाऊ', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6643', 'in', 'visit_store', 'स्टोर पर जाये', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6644', 'in', 'popular_suggestions', 'लोकप्रिय सुझाव', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6645', 'in', 'category_suggestions', 'श्रेणी सुझाव', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6646', 'in', 'automobile__motorcycle', 'ऑटोमोबाइल और मोटरसाइकिल', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6647', 'in', 'price_range', 'मूल्य सीमा', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6648', 'in', 'filter_by_color', 'रंग से छान लें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6649', 'in', 'home', 'घर', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6650', 'in', 'newest', 'सबसे नया', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6651', 'in', 'oldest', 'सबसे पुराना', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6652', 'in', 'price_low_to_high', 'कीमतों का उतार - चढ़ाव', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6653', 'in', 'price_high_to_low', 'कीमत ऊंची से नीची', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6654', 'in', 'brands', 'ब्रांड', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6655', 'in', 'all_brands', 'सभी ब्रांडों', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6656', 'in', 'all_sellers', 'सभी विक्रेता', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6657', 'in', 'inhouse_product', 'इनहाउस उत्पाद', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6658', 'in', 'message_seller', 'संदेश विक्रेता', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6659', 'in', 'price', 'कीमत', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6660', 'in', 'discount_price', 'डिस्काउंट कीमत', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6661', 'in', 'color', 'रंग', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6662', 'in', 'quantity', 'मात्रा', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6663', 'in', 'available', 'उपलब्ध', '2021-02-09 12:37:17', '2021-02-09 12:37:17'),
('6664', 'in', 'total_price', 'कुल कीमत', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6665', 'in', 'out_of_stock', 'स्टॉक ख़त्म', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6666', 'in', 'refund', 'वापसी', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6667', 'in', 'share', 'साझा करें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6668', 'in', 'sold_by', 'द्वारा बेचा', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6669', 'in', 'customer_reviews', 'ग्राहक समीक्षा', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6670', 'in', 'top_selling_products', 'शीर्ष बेचना उत्पाद', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6671', 'in', 'description', 'विवरण', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6672', 'in', 'video', 'वीडियो', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6673', 'in', 'reviews', 'समीक्षा', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6674', 'in', 'download', 'डाउनलोड', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6675', 'in', 'there_have_been_no_reviews_for_this_product_yet', 'इस उत्पाद के लिए अभी तक कोई समीक्षा नहीं हुई है।', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6676', 'in', 'related_products', 'संबंधित उत्पाद', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6677', 'in', 'any_query_about_this_product', 'इस उत्पाद के बारे में कोई भी प्रश्न', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6678', 'in', 'product_name', 'प्रोडक्ट का नाम', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6679', 'in', 'your_question', 'आपका प्रश्न', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6680', 'in', 'send', 'भेज दो', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6681', 'in', 'use_country_code_before_number', 'संख्या से पहले देश कोड का उपयोग करें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6682', 'in', 'remember_me', 'मुझे याद रखें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6683', 'in', 'dont_have_an_account', 'खाता नहीं है?', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6684', 'in', 'register_now', 'अभी पंजीकरण करें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6685', 'in', 'or_login_with', 'या लॉगिन करें', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6686', 'in', 'oops', 'उफ़ ..', '2021-02-09 12:37:17', '2021-09-20 12:59:26'),
('6687', 'in', 'this_item_is_out_of_stock', 'यह आइटम स्टॉक में नहीं है!', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6688', 'in', 'back_to_shopping', 'वापस खरीदारी के लिए', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6689', 'in', 'login_to_your_account', 'अपने अकाउंट में लॉग इन करें।', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6690', 'in', 'purchase_history', 'खरीद इतिहास', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6691', 'in', 'new', 'नया', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6692', 'in', 'downloads', 'डाउनलोड', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6693', 'in', 'sent_refund_request', 'भेजा गया रिफंड अनुरोध', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6694', 'in', 'product_bulk_upload', 'उत्पाद थोक अपलोड', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6695', 'in', 'orders', 'आदेश', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6696', 'in', 'recieved_refund_request', 'रिफ़ंड का अनुरोध', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6697', 'in', 'shop_setting', 'दुकान की स्थापना', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6698', 'in', 'payment_history', 'भुगतान इतिहास', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6699', 'in', 'money_withdraw', 'पैसे की निकासी', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6700', 'in', 'conversations', 'बात चिट', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6701', 'in', 'my_wallet', 'मेरा बटुआ', '2021-02-09 12:37:18', '2021-09-20 12:59:26'),
('6702', 'in', 'earning_points', 'कमाई के अंक', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6703', 'in', 'support_ticket', 'समर्थन टिकट', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6704', 'in', 'manage_profile', 'प्रोफ़ाइल प्रबंधित करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6705', 'in', 'sold_amount', 'बेची गई राशि', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6706', 'in', 'your_sold_amount_current_month', 'आपकी बेची गई राशि (चालू माह)', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6707', 'in', 'total_sold', 'कुल बिक गया', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6708', 'in', 'last_month_sold', 'पिछले महीने बेच दिया', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6709', 'in', 'total_sale', 'कुल बिक्री', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6710', 'in', 'total_earnings', 'कुल आय', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6711', 'in', 'successful_orders', 'सफल आदेश', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6712', 'in', 'total_orders', 'कुल आदेश', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6713', 'in', 'pending_orders', 'लंबित ऑर्डर', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6714', 'in', 'cancelled_orders', 'रद्द किए गए आदेश', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6715', 'in', 'product', 'उत्पाद', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6716', 'in', 'purchased_package', 'खरीदा हुआ पैकेज', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6717', 'in', 'package_not_found', 'पैकेज नहीं मिला', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6718', 'in', 'upgrade_package', 'अपग्रेड पैकेज', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6719', 'in', 'shop', 'दुकान', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6720', 'in', 'manage__organize_your_shop', 'अपनी दुकान को प्रबंधित और व्यवस्थित करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6721', 'in', 'go_to_setting', 'सेटिंग पर जाएं', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6722', 'in', 'payment', 'भुगतान', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6723', 'in', 'configure_your_payment_method', 'अपनी भुगतान विधि कॉन्फ़िगर करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6724', 'in', 'my_panel', 'मेरा पैनल', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6725', 'in', 'item_has_been_added_to_wishlist', 'आइटम को इच्छा-सूची में जोड़ा गया है', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6726', 'in', 'my_points', 'मेरे अंक', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6727', 'in', '_points', 'अंक', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6728', 'in', 'wallet_money', 'वॉलेट मनी', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6729', 'in', 'exchange_rate', 'विनिमय दर', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6730', 'in', 'point_earning_history', 'बिंदु कमाई का इतिहास', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6731', 'in', 'date', 'तारीख', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6732', 'in', 'points', 'अंक', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6733', 'in', 'converted', 'रूपांतरित किया हुआ', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6734', 'in', 'action', 'क्रिया', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6735', 'in', 'no_history_found', 'कोई इतिहास नहीं मिला।', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6736', 'in', 'convert_has_been_done_successfully_check_your_wallets', 'कनवर्ट किया गया है सफलतापूर्वक अपने वॉलेट की जाँच करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6737', 'in', 'something_went_wrong', 'कुछ गलत हो गया', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6738', 'in', 'remaining_uploads', 'शेष अपलोड', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6739', 'in', 'no_package_found', 'कोई पैकेज नहीं मिला', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6740', 'in', 'search_product', 'खोज उत्पाद', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6741', 'in', 'name', 'नाम', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6742', 'in', 'current_qty', 'वर्तमान मात्रा', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6743', 'in', 'base_price', 'आधार मूल्य', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6744', 'in', 'published', 'प्रकाशित किया गया', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6745', 'in', 'featured', 'विशेष रुप से प्रदर्शित', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6746', 'in', 'options', 'विकल्प', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6747', 'in', 'edit', 'संपादित करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6748', 'in', 'duplicate', 'डुप्लिकेट', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6749', 'in', '1_download_the_skeleton_file_and_fill_it_with_data', '1. कंकाल फ़ाइल डाउनलोड करें और इसे डेटा के साथ भरें।', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6750', 'in', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. डेटा को कैसे भरना चाहिए, यह समझने के लिए आप उदाहरण फ़ाइल डाउनलोड कर सकते हैं।', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6751', 'in', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. एक बार जब आप कंकाल फ़ाइल को डाउनलोड और भर लें, तो नीचे दिए गए फॉर्म में अपलोड करें और सबमिट करें।', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6752', 'in', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. उत्पादों को अपलोड करने के बाद आपको उन्हें संपादित करने और उत्पादों की छवियों और विकल्पों को सेट करने की आवश्यकता है।', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6753', 'in', 'download_csv', 'CSV डाउनलोड करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6754', 'in', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. श्रेणी, उप श्रेणी, उप उप श्रेणी और ब्रांड संख्यात्मक आईडी में होनी चाहिए।', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6755', 'in', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. आप श्रेणी, उप श्रेणी, उप उप श्रेणी और ब्रांड आईडी प्राप्त करने के लिए पीडीएफ डाउनलोड कर सकते हैं।', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6756', 'in', 'download_category', 'डाउनलोड श्रेणी', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6757', 'in', 'download_sub_category', 'उप श्रेणी डाउनलोड करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6758', 'in', 'download_sub_sub_category', 'उप सब कैटेगरी डाउनलोड करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6759', 'in', 'download_brand', 'ब्रांड डाउनलोड करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6760', 'in', 'upload_csv_file', 'CSV फ़ाइल अपलोड करें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6761', 'in', 'csv', 'सीएसवी', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6762', 'in', 'choose_csv_file', 'CSV फ़ाइल चुनें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6763', 'in', 'upload', 'डालना', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6764', 'in', 'add_new_digital_product', 'नया डिजिटल उत्पाद जोड़ें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6765', 'in', 'available_status', 'उपलब्ध स्थिति', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6766', 'in', 'admin_status', 'व्यवस्थापक की स्थिति', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6767', 'in', 'pending_balance', 'बकाया राशि', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6768', 'in', 'send_withdraw_request', 'विदड्रॉ रिक्वेस्ट भेजें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6769', 'in', 'withdraw_request_history', 'इतिहास वापस लेना', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6770', 'in', 'amount', 'रकम', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6771', 'in', 'status', 'स्थिति', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6772', 'in', 'message', 'संदेश', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6773', 'in', 'send_a_withdraw_request', 'एक निकासी अनुरोध भेजें', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6774', 'in', 'basic_info', 'बुनियादी जानकारी', '2021-02-09 12:37:18', '2021-09-20 12:59:27'),
('6775', 'in', 'your_phone', 'अपने फोन को', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6776', 'in', 'photo', 'तस्वीर', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6777', 'in', 'browse', 'ब्राउज़ करें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6778', 'in', 'your_password', 'आपका पासवर्ड', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6779', 'in', 'new_password', 'नया पासवर्ड', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6780', 'in', 'confirm_password', 'पासवर्ड की पुष्टि कीजिये', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6781', 'in', 'add_new_address', 'नया पता जोड़ें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6782', 'in', 'payment_setting', 'भुगतान सेटिंग', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6783', 'in', 'cash_payment', 'नकद भुगतान', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6784', 'in', 'bank_payment', 'बैंक भुगतान', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6785', 'in', 'bank_name', 'बैंक का नाम', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6786', 'in', 'bank_account_name', 'बैंक खाते का नाम', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6787', 'in', 'bank_account_number', 'बैंक खाता संख्या', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6788', 'in', 'bank_routing_number', 'अधिकोष क्रम संख्या', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6789', 'in', 'update_profile', 'प्रोफ़ाइल अपडेट करें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6790', 'in', 'change_your_email', 'अपना ईमेल बदलें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6791', 'in', 'your_email', 'आपका ईमेल', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6792', 'in', 'sending_email', 'ईमेल भेज रहा हूं...', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6793', 'in', 'verify', 'सत्यापित करें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6794', 'in', 'update_email', 'ईमेल अपडेट करें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6795', 'in', 'new_address', 'नया पता', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6796', 'in', 'your_address', 'तुम्हारा पता', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6797', 'in', 'country', 'देश', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6798', 'in', 'select_your_country', 'अपने देश का चयन करें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6799', 'in', 'city', 'Faridabad', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6800', 'in', 'your_city', 'आपके शहर', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6801', 'in', 'your_postal_code', 'आपका डाक पिन', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6802', 'in', '880', '+880', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6803', 'in', 'save', 'सहेजें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6804', 'in', 'received_refund_request', 'रिफ़ंड रिक्वेस्ट मिली', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6805', 'in', 'delete_confirmation', 'पुष्टिकरण हटाएं', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6806', 'in', 'are_you_sure_to_delete_this', 'क्या आप इसे हटाना सुनिश्चित कर रहे हैं?', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6807', 'in', 'premium_packages_for_sellers', 'विक्रेताओं के लिए प्रीमियम पैकेज', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6808', 'in', 'product_upload', 'उत्पाद अपलोड', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6809', 'in', 'digital_product_upload', 'डिजिटल उत्पाद अपलोड', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6810', 'in', 'purchase_package', 'खरीद पैकेज', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6811', 'in', 'select_payment_type', 'भुगतान प्रकार चुनें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6812', 'in', 'payment_type', 'भुगतान प्रकार', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6813', 'in', 'select_one', 'एक चुनो', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6814', 'in', 'online_payment', 'ऑनलाइन भुगतान', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6815', 'in', 'offline_payment', 'ऑफ़लाइन भुगतान', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6816', 'in', 'purchase_your_package', 'आपका पैकेज खरीदें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6817', 'in', 'paypal', 'पेपैल', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6818', 'in', 'stripe', 'धारी', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6819', 'in', 'sslcommerz', 'sslcommerz', '2021-02-09 12:37:19', '2021-02-09 12:37:19'),
('6820', 'in', 'confirm', 'पुष्टि करें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6821', 'in', 'offline_package_payment', 'ऑफलाइन पैकेज भुगतान', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6822', 'in', 'transaction_id', 'लेनदेन आईडी', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6823', 'in', 'choose_image', 'छवि चुनें', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6824', 'in', 'code', 'कोड', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6825', 'in', 'delivery_status', 'वितरण की स्थिति', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6826', 'in', 'payment_status', 'भुगतान की स्थिति', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6827', 'in', 'paid', 'भुगतान किया', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6828', 'in', 'order_details', 'ऑर्डर का विवरण', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6829', 'in', 'download_invoice', 'इनवाइस को डाउनलोड करो', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6830', 'in', 'unpaid', 'अवैतनिक', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6831', 'in', 'order_placed', 'आदेश रखा', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6832', 'in', 'confirmed', 'की पुष्टि की', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6833', 'in', 'on_delivery', 'डिलीवरी पर', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6834', 'in', 'delivered', 'पहुंचा दिया', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6835', 'in', 'order_summary', 'आदेश सारांश', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6836', 'in', 'order_code', 'आदेश कोड', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6837', 'in', 'customer', 'ग्राहक', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6838', 'in', 'total_order_amount', 'कुल आदेश राशि', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6839', 'in', 'shipping_metdod', 'शिपिंग मेटडॉड', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6840', 'in', 'flat_shipping_rate', 'फ्लैट नौवहन दर', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6841', 'in', 'payment_metdod', 'भुगतान मेटॉडोड', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6842', 'in', 'variation', 'भिन्नता', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6843', 'in', 'delivery_type', 'वितरण के प्रकार', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6844', 'in', 'home_delivery', 'घर पहुँचाना', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6845', 'in', 'order_ammount', 'आदेश अमाउंट', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6846', 'in', 'subtotal', 'उप-योग', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6847', 'in', 'shipping', 'शिपिंग', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6848', 'in', 'coupon_discount', 'कूपन छूट', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6849', 'in', 'na', 'एन / ए', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6850', 'in', 'in_stock', 'स्टॉक में', '2021-02-09 12:37:19', '2021-09-20 12:59:27'),
('6851', 'in', 'buy_now', 'अभी खरीदें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6852', 'in', 'item_added_to_your_cart', 'आइटम को आपके कार्ट में शामिल किया गया!', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6853', 'in', 'proceed_to_checkout', 'चेक आउट करने के लिए आगे बढ़ें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6854', 'in', 'cart_items', 'कार्ट आइटम', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6855', 'in', '1_my_cart', '1. मेरी गाड़ी', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6856', 'in', 'view_cart', 'गाडी देंखे', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6857', 'in', '2_shipping_info', '2. शिपिंग जानकारी', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6858', 'in', 'checkout', 'चेक आउट', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6859', 'in', '3_delivery_info', '3. डिलीवरी की जानकारी', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6860', 'in', '4_payment', '4. भुगतान', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6861', 'in', '5_confirmation', '5. पुष्टि', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6862', 'in', 'remove', 'हटाना', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6863', 'in', 'return_to_shop', 'खरीदारी करने के लिए वापस लौटें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6864', 'in', 'continue_to_shipping', 'शिपिंग के लिए जारी रखें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6865', 'in', 'or', 'या', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6866', 'in', 'guest_checkout', 'अतिथि के होटल छोड़ने का समय', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6867', 'in', 'continue_to_delivery_info', 'डिलीवरी की जानकारी जारी रखें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6868', 'in', 'postal_code', 'डाक कोड', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6869', 'in', 'choose_delivery_type', 'वितरण प्रकार चुनें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6870', 'in', 'local_pickup', 'खुद जाकर ले आना', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6871', 'in', 'select_your_nearest_pickup_point', 'अपने निकटतम पिकअप बिंदु का चयन करें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6872', 'in', 'continue_to_payment', 'भुगतान जारी रखें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6873', 'in', 'select_a_payment_option', 'एक भुगतान विकल्प चुनें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6874', 'in', 'razorpay', 'रज्जोर्पाय', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6875', 'in', 'paystack', 'तनख्वाह', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6876', 'in', 'voguepay', 'वोगपाय', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6877', 'in', 'payhere', 'यहां भुगतान करें', '2021-02-09 12:37:20', '2021-02-09 12:37:20'),
('6878', 'in', 'ngenius', 'जन्मजात', '2021-02-09 12:37:20', '2021-02-09 12:37:20'),
('6879', 'in', 'paytm', 'पेटीएम', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6880', 'in', 'cash_on_delivery', 'डिलवरी पर नकदी', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6881', 'in', 'your_wallet_balance_', 'आपका बटुआ संतुलन:', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6882', 'in', 'insufficient_balance', 'अपर्याप्त शेषराशि', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6883', 'in', 'i_agree_to_the', 'मैं करने के लिए सहमत हूं', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6884', 'in', 'complete_order', 'आदेश पूरा', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6885', 'in', 'summary', 'सारांश', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6886', 'in', 'items', 'आइटम', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6887', 'in', 'total_club_point', 'कुल क्लब बिंदु', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6888', 'in', 'total_shipping', 'कुल शिपिंग', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6889', 'in', 'have_coupon_code_enter_here', 'कूपन कोड है? यहाँ से प्रवेश करें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6890', 'in', 'apply', 'लागू', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6891', 'in', 'you_need_to_agree_with_our_policies', 'आपको हमारी नीतियों से सहमत होने की आवश्यकता है', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6892', 'in', 'forgot_password', 'पासवर्ड भूल गए', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6893', 'in', 'seo_setting', 'एसईओ सेटिंग', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6894', 'in', 'system_update', 'सिस्टम अद्यतन', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6895', 'in', 'add_new_payment_method', 'नई भुगतान विधि जोड़ें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6896', 'in', 'manual_payment_method', 'मैनुअल भुगतान विधि', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6897', 'in', 'heading', 'हेडिंग', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6898', 'in', 'logo', 'प्रतीक चिन्ह', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6899', 'in', 'manual_payment_information', 'मैनुअल भुगतान जानकारी', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6900', 'in', 'type', 'प्रकार', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6901', 'in', 'custom_payment', 'कस्टम भुगतान', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6902', 'in', 'check_payment', 'भुगतान की जाँच करें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6903', 'in', 'checkout_thumbnail', 'चेकआउट थंबनेल', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6904', 'in', 'payment_instruction', 'भुगतान अनुदेश', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6905', 'in', 'bank_information', 'बैंक संबंधी जानकारी', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6906', 'in', 'select_file', 'फ़ाइल का चयन करें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6907', 'in', 'upload_new', 'नया अपलोड करें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6908', 'in', 'sort_by_newest', 'नए द्वारा क्रमबद्ध करें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6909', 'in', 'sort_by_oldest', 'सबसे पुराने द्वारा क्रमबद्ध करें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6910', 'in', 'sort_by_smallest', 'सबसे छोटे द्वारा क्रमबद्ध करें', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6911', 'in', 'sort_by_largest', 'सबसे बड़ा छाँटकर', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6912', 'in', 'selected_only', 'केवल चयनित', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6913', 'in', 'no_files_found', 'कोई फाईल नहीं मिली', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6914', 'in', '0_file_selected', '0 फ़ाइल चयनित', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6915', 'in', 'clear', 'स्पष्ट', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6916', 'in', 'prev', 'प्रीव', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6917', 'in', 'next', 'अगला', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6918', 'in', 'add_files', 'फाइलें जोड़ो', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6919', 'in', 'method_has_been_inserted_successfully', 'विधि सफलतापूर्वक डाली गई है', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6920', 'in', 'order_date', 'आदेश की तारीख', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6921', 'in', 'bill_to', 'बिल प्राप्तकर्ता', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6922', 'in', 'sub_total', 'उप कुल', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6923', 'in', 'total_tax', 'कुल कर', '2021-02-09 12:37:20', '2021-09-20 12:59:27'),
('6924', 'in', 'grand_total', 'कुल योग', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6925', 'in', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'आपका आदेश सफलतापूर्वक रखा गया है। कृपया खरीद इतिहास से भुगतान जानकारी सबमिट करें', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6926', 'in', 'thank_you_for_your_order', 'आपके क्रय आदेश के लिए धन्यवाद!', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6927', 'in', 'order_code', 'आदेश कोड:', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6928', 'in', 'a_copy_or_your_order_summary_has_been_sent_to', 'एक प्रतिलिपि या आपका आदेश सारांश भेजा गया है', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6929', 'in', 'make_payment', 'भुगतान करें', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6930', 'in', 'payment_screenshot', 'भुगतान स्क्रीनशॉट', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6931', 'in', 'paypal_credential', 'पेपैल क्रेडेंशियल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6932', 'in', 'paypal_client_id', 'पेपैल ग्राहक आईडी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6933', 'in', 'paypal_client_secret', 'पेपैल ग्राहक गुप्त', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6934', 'in', 'paypal_sandbox_mode', 'पेपैल सैंडबॉक्स मोड', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6935', 'in', 'sslcommerz_credential', 'Sslcommerz क्रेडेंशियल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6936', 'in', 'sslcz_store_id', 'Sslcz Store Id', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6937', 'in', 'sslcz_store_password', 'Sslcz स्टोर पासवर्ड', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6938', 'in', 'sslcommerz_sandbox_mode', 'Sslcommerz Sandbox मोड', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6939', 'in', 'stripe_credential', 'धारी साख', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6940', 'in', 'stripe_key', 'स्ट्रिप कुंजी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6941', 'in', 'stripe_secret', 'स्ट्रिप सिक्रेट', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6942', 'in', 'razorpay_credential', 'रज़ोरपे क्रेडेंशियल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6943', 'in', 'razor_key', 'रेजर कुंजी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6944', 'in', 'razor_secret', 'RAZOR SECRET', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6945', 'in', 'instamojo_credential', 'Instamojo क्रेडेंशियल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6946', 'in', 'api_key', 'एपीआई कुंजी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6947', 'in', 'im_api_key', 'आईएम एपीआई कुंजी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6948', 'in', 'auth_token', 'ऑटो टोकेन', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6949', 'in', 'im_auth_token', 'आईएम ऑटो टोकन', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6950', 'in', 'instamojo_sandbox_mode', 'Instamojo Sandbox मोड', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6951', 'in', 'paystack_credential', 'PayStack क्रेडेंशियल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6952', 'in', 'public_key', 'सार्वजनिक कुंजी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6953', 'in', 'secret_key', 'गुप्त कुंजी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6954', 'in', 'merchant_email', 'मर्चेंट ईमेल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6955', 'in', 'voguepay_credential', 'VoguePay क्रेडेंशियल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6956', 'in', 'merchant_id', 'व्यापारी आइडी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6957', 'in', 'sandbox_mode', 'सैंडबॉक्स मोड', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6958', 'in', 'payhere_credential', 'श्रेय देना', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6959', 'in', 'payhere_merchant_id', 'PAYHERE MERCHANT ID', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6960', 'in', 'payhere_secret', 'PAYHERE SECRET', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6961', 'in', 'payhere_currency', 'PAYHERE CURRENCY', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6962', 'in', 'payhere_sandbox_mode', 'सैंडबॉक्स मोड का भुगतान करें', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6963', 'in', 'ngenius_credential', 'Ngenius क्रेडेंशियल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6964', 'in', 'ngenius_outlet_id', 'NGENIUS OUTLET ID', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6965', 'in', 'ngenius_api_key', 'NGENIUS API कुंजी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6966', 'in', 'ngenius_currency', 'NGENIUS CURRENCY', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6967', 'in', 'mpesa_credential', 'Mpesa क्रेडेंशियल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6968', 'in', 'mpesa_consumer_key', 'MPESA उपभोक्ता कुंजी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6969', 'in', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6970', 'in', 'mpesa_consumer_secret', 'MPESA उपभोक्ता SECRET', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6971', 'in', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6972', 'in', 'mpesa_short_code', 'MPESA SHORT CODE', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6973', 'in', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6974', 'in', 'mpesa_sandbox_activation', 'MPESA SANDBOX गतिविधि', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6975', 'in', 'flutterwave_credential', 'फ्लटरवेट क्रेडेंशियल', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6976', 'in', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6977', 'in', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6978', 'in', 'rave_title', 'RAVE_TITLE', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6979', 'in', 'stagin_activation', 'स्थिर गतिविधि', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6980', 'in', 'all_product', 'सभी उत्पाद', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6981', 'in', 'sort_by', 'इसके अनुसार क्रमबद्ध करें', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6982', 'in', 'rating_high__low', 'रेटिंग (उच्च> निम्न)', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6983', 'in', 'rating_low__high', 'रेटिंग (निम्न> उच्च)', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6984', 'in', 'num_of_sale_high__low', 'बिक्री की संख्या (उच्च> कम)', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6985', 'in', 'num_of_sale_low__high', 'बिक्री की संख्या (कम> उच्च)', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6986', 'in', 'base_price_high__low', 'आधार मूल्य (उच्च> कम)', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6987', 'in', 'base_price_low__high', 'आधार मूल्य (कम> उच्च)', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6988', 'in', 'type__enter', 'टाइप करें और एंटर करें', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6989', 'in', 'added_by', 'द्वारा जोड़ा', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6990', 'in', 'num_of_sale', 'बिक्री की संख्या', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6991', 'in', 'total_stock', 'कुल स्टॉक', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6992', 'in', 'todays_deal', 'टोड्स डील', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6993', 'in', 'rating', 'रेटिंग', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6994', 'in', 'times', 'समय', '2021-02-09 12:37:21', '2021-02-09 12:37:21'),
('6995', 'in', 'add_nerw_product', 'Nerw उत्पाद जोड़ें', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6996', 'in', 'product_information', 'उत्पाद की जानकारी', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6997', 'in', 'unit', 'इकाई', '2021-02-09 12:37:21', '2021-09-20 12:59:27'),
('6998', 'in', 'unit_eg_kg_pc_etc', 'इकाई (उदाहरण केजी, पीसी आदि)', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('6999', 'in', 'minimum_qty', 'न्यूनतम मात्रा', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7000', 'in', 'tags', 'टैग', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7001', 'in', 'type_and_hit_enter_to_add_a_tag', 'टैग जोड़ने के लिए टाइप और हिट दर्ज करें', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7002', 'in', 'barcode', 'बारकोड', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7003', 'in', 'refundable', 'वापसी योग्य', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7004', 'in', 'product_images', 'उत्पाद छवियाँ', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7005', 'in', 'gallery_images', 'गैलरी छवियाँ', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7006', 'in', 'todays_deal_updated_successfully', 'टोड्स डील सफलतापूर्वक अपडेट की गई', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7007', 'in', 'published_products_updated_successfully', 'प्रकाशित उत्पाद सफलतापूर्वक अपडेट किए गए', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7008', 'in', 'thumbnail_image', 'थंबनेल छवि', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7009', 'in', 'featured_products_updated_successfully', 'विशेष रुप से प्रदर्शित उत्पाद सफलतापूर्वक अपडेट किए गए', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7010', 'in', 'product_videos', 'उत्पाद वीडियो', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7011', 'in', 'video_provider', 'वीडियो प्रदाता', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7012', 'in', 'youtube', 'यूट्यूब', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7013', 'in', 'dailymotion', 'डेलीमोशन', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7014', 'in', 'vimeo', 'Vimeo', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7015', 'in', 'video_link', 'वीडियो लिंक', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7016', 'in', 'product_variation', 'उत्पाद विविधता', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7017', 'in', 'colors', 'रंग की', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7018', 'in', 'attributes', 'विशेषताएँ', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7019', 'in', 'choose_attributes', 'विशेषताएँ चुनें', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7020', 'in', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'इस उत्पाद की विशेषताओं को चुनें और फिर प्रत्येक विशेषता के इनपुट मानों को', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7021', 'in', 'product_price__stock', 'उत्पाद की कीमत + स्टॉक', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7022', 'in', 'unit_price', 'यूनिट मूल्य', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7023', 'in', 'purchase_price', 'खरीद मूल्य', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7024', 'in', 'flat', 'समतल', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7025', 'in', 'percent', 'प्रतिशत है', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7026', 'in', 'discount', 'छूट', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7027', 'in', 'product_description', 'उत्पाद वर्णन', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7028', 'in', 'product_shipping_cost', 'उत्पाद शिपिंग लागत', '2021-02-09 12:37:22', '2021-09-20 12:59:27'),
('7029', 'in', 'free_shipping', 'मुफ़्त शिपिंग', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7030', 'in', 'flat_rate', 'फ्लैट रेट', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7031', 'in', 'shipping_cost', 'शिपिंग लागत', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7032', 'in', 'pdf_specification', 'पीडीएफ विशिष्टता', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7033', 'in', 'seo_meta_tags', 'एसईओ मेटा टैग', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7034', 'in', 'meta_title', 'मेटा शीर्षक', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7035', 'in', 'meta_image', 'मेटा इमेज', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7036', 'in', 'choice_title', 'पसंद का शीर्षक', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7037', 'in', 'enter_choice_values', 'पसंद मान दर्ज करें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7038', 'in', 'all_categories', 'सब वर्ग', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7039', 'in', 'add_new_category', 'नई श्रेणी जोड़ें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7040', 'in', 'type_name__enter', 'नाम टाइप करें और दर्ज करें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7041', 'in', 'banner', 'बैनर', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7042', 'in', 'commission', 'आयोग', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7043', 'in', 'icon', 'आइकन', '2021-02-09 12:37:22', '2021-02-09 12:37:22'),
('7044', 'in', 'featured_categories_updated_successfully', 'विशेष रूप से अपडेट की गई श्रेणियां', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7045', 'in', 'hot', 'गरम', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7046', 'in', 'filter_by_payment_status', 'भुगतान स्थिति द्वारा फ़िल्टर करें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7047', 'in', 'unpaid', 'अन-पेड', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7048', 'in', 'filter_by_deliver_status', 'डेलीवर स्थिति के अनुसार फ़िल्टर करें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7049', 'in', 'pending', 'लंबित है', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7050', 'in', 'type_order_code__hit_enter', 'ऑर्डर कोड टाइप करें और एंटर दबाएं', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7051', 'in', 'num_of_products', 'अंक। उत्पादों की', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7052', 'in', 'walk_in_customer', 'ग्राहक में चलो', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7053', 'in', 'qty', 'मात्रा', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7054', 'in', 'without_shipping_charge', 'बिना शिपिंग चार्ज', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7055', 'in', 'with_shipping_charge', 'शिपिंग चार्ज के साथ', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7056', 'in', 'pay_with_cash', 'नकद के साथ भुगतान करें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7057', 'in', 'shipping_address', 'शिपिंग पता', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7058', 'in', 'close', 'बंद करे', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7059', 'in', 'select_country', 'देश चुनें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7060', 'in', 'order_confirmation', 'आदेश की पुष्टि', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7061', 'in', 'are_you_sure_to_confirm_this_order', 'क्या आप इस आदेश की पुष्टि करना सुनिश्चित करते हैं?', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7062', 'in', 'comfirm_order', 'Comfirm आदेश', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7063', 'in', 'personal_info', 'व्यक्तिगत जानकारी', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7064', 'in', 'repeat_password', 'पासवर्ड दोहराएं', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7065', 'in', 'shop_name', 'दुकान का नाम', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7066', 'in', 'register_your_shop', 'अपनी दुकान पंजीकृत करें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7067', 'in', 'affiliate_informations', 'संबद्ध जानकारी', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7068', 'in', 'affiliate', 'संबद्ध करें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7069', 'in', 'user_info', 'उपयोगकर्ता जानकारी', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7070', 'in', 'installed_addon', 'एडऑन स्थापित किया', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7071', 'in', 'available_addon', 'उपलब्ध एडऑन', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7072', 'in', 'install_new_addon', 'नया Addon स्थापित करें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7073', 'in', 'version', 'संस्करण', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7074', 'in', 'activated', 'सक्रिय किया हुआ', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7075', 'in', 'deactivated', 'निष्क्रिय कर दिया', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7076', 'in', 'activate_otp', 'OTP को सक्रिय करें', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7077', 'in', 'otp_will_be_used_for', 'OTP का उपयोग किया जाएगा', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7078', 'in', 'settings_updated_successfully', 'सेटिंग्स सफलतापूर्वक अपडेट की गईं', '2021-02-09 12:37:22', '2021-09-20 12:59:28'),
('7079', 'in', 'product_owner', 'उत्पाद स्वामी', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7080', 'in', 'point', 'बिंदु', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7081', 'in', 'set_point_for_product_within_a_range', 'एक सीमा के भीतर उत्पाद के लिए बिंदु निर्धारित करें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7082', 'in', 'set_point_for_multiple_products', 'कई उत्पादों के लिए प्वाइंट सेट करें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7083', 'in', 'min_price', 'न्यूनतम मूल्य', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7084', 'in', 'max_price', 'अधिकतम मूल्य', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7085', 'in', 'set_point_for_all_products', 'सभी उत्पादों के लिए बिंदु निर्धारित करें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7086', 'in', 'set_point_for_', 'के लिए बिंदु निर्धारित करें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7087', 'in', 'convert_status', 'स्थिति बदलें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7088', 'in', 'earned_at', 'पर अर्जित किया', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7089', 'in', 'seller_based_selling_report', 'विक्रेता आधारित विक्रय रिपोर्ट', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7090', 'in', 'sort_by_verificarion_status', 'क्रमानुसार स्थिति के अनुसार क्रमबद्ध करें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7091', 'in', 'approved', 'मंजूर की', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7092', 'in', 'non_approved', 'गैर अनुमोदित', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7093', 'in', 'filter', 'फ़िल्टर करें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7094', 'in', 'seller_name', 'विक्रेता का नाम', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7095', 'in', 'number_of_product_sale', 'उत्पाद बिक्री की संख्या', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7096', 'in', 'order_amount', 'ऑर्डर करने की राशि', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7097', 'in', 'facebook_chat_setting', 'फेसबुक चैट सेटिंग', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7098', 'in', 'facebook_page_id', 'फेसबुक पेज आईडी', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7099', 'in', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'कृपया सावधान रहें जब आप फेसबुक चैट को कॉन्फ़िगर कर रहे हैं। गलत कॉन्फ़िगरेशन के लिए आपको अपने यूज़र-एंड साइट पर मैसेंजर आइकन नहीं मिलेगा।', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7100', 'in', 'login_into_your_facebook_page', 'अपने फेसबुक पेज में लॉगिन करें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7101', 'in', 'find_the_about_option_of_your_facebook_page', 'अपने फेसबुक पेज के बारे में विकल्प खोजें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7102', 'in', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'सबसे नीचे, आप \\ \"फेसबुक पेज आईडी \\\" पा सकते हैं', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7103', 'in', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'अपने पृष्ठ की सेटिंग में जाएं और \\ \"एडवांस मैसेजिंग \\\" का विकल्प खोजें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7104', 'in', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'उस पृष्ठ को नीचे स्क्रॉल करें और आपको \"सफेद सूचीबद्ध डोमेन\" मिल जाएगा', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7105', 'in', 'set_your_website_domain_name', 'अपना वेबसाइट डोमेन नाम सेट करें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7106', 'in', 'google_recaptcha_setting', 'Google reCAPTCHA सेटिंग', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7107', 'in', 'site_key', 'कार्यस्थल की कुंजी', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7108', 'in', 'select_shipping_method', 'जलयात्रा पद्धति का चयन करें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7109', 'in', 'product_wise_shipping_cost', 'उत्पाद वार शिपिंग लागत', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7110', 'in', 'flat_rate_shipping_cost', 'फ्लैट दर शिपिंग लागत', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7111', 'in', 'seller_wise_flat_shipping_cost', 'विक्रेता बुद्धिमान फ्लैट शिपिंग लागत', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7112', 'in', 'note', 'ध्यान दें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7113', 'in', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'उत्पाद वार शिपिंग लागत की गणना: शिपिंग लागत की गणना प्रत्येक उत्पाद शिपिंग लागत के अलावा की जाती है', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7114', 'in', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'फ़्लैट रेट शिपिंग कॉस्ट केल्युलेशन: ग्राहक द्वारा कितने उत्पादों की खरीद, कोई फर्क नहीं पड़ता। शिपिंग लागत तय है', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7115', 'in', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'विक्रेता वार फ्लैट शिपिंग लागत की समाप्ति: प्रत्येक विक्रेता के लिए निश्चित दर। यदि कोई ग्राहक दो विक्रेता शिपिंग लागत से 2 उत्पाद खरीदता है, तो प्रत्येक विक्रेता फ्लैट शिपिंग लागत को जोड़कर गणना की जाती है', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7116', 'in', 'flat_rate_cost', 'फ्लैट दर लागत', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7117', 'in', 'shipping_cost_for_admin_products', 'व्यवस्थापक उत्पादों के लिए शिपिंग लागत', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7118', 'in', 'countries', 'देश', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7119', 'in', 'showhide', 'दिखाओ छुपाओ', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7120', 'in', 'country_status_updated_successfully', 'देश की स्थिति सफलतापूर्वक अपडेट की गई', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7121', 'in', 'all_subcategories', 'सभी उपश्रेणियाँ', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7122', 'in', 'add_new_subcategory', 'नई उपश्रेणी जोड़ें', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7123', 'in', 'subcategories', 'उप-श्रेणियाँ', '2021-02-09 12:37:23', '2021-09-20 12:59:28'),
('7124', 'in', 'sub_category_information', 'उप श्रेणी जानकारी', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7125', 'in', 'slug', 'स्लग', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7126', 'in', 'all_sub_subcategories', 'सभी उप उपश्रेणियाँ', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7127', 'in', 'add_new_sub_subcategory', 'नई उप उपश्रेणी जोड़ें', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7128', 'in', 'subsubcategories', 'उप-उप-श्रेणियां', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7129', 'in', 'make_this_default', 'इसे डिफ़ॉल्ट बनाएं', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7130', 'in', 'shops', 'दुकानें', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7131', 'in', 'women_clothing__fashion', 'महिला वस्त्र और फैशन', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7132', 'in', 'cellphones__tabs', 'सेलफोन और टैब', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7133', 'in', 'welcome_to', 'में स्वागत', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7134', 'in', 'create_a_new_account', 'एक नया खाता बनाएं', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7135', 'in', 'full_name', 'पूरा नाम', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7136', 'in', 'password', 'पारण शब्द', '2021-02-09 12:38:11', '2021-02-09 12:38:11'),
('7137', 'in', 'confrim_password', 'पासवर्ड की पुष्टि करें', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7138', 'in', 'i_agree_with_the', 'मैं इससे सहमत हूं', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7139', 'in', 'terms_and_conditions', 'नियम और शर्तें', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7140', 'in', 'register', 'रजिस्टर करें', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7141', 'in', 'already_have_an_account', 'क्या आपके पास पहले से एक खाता मौजूद है', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7142', 'in', 'sign_up_with', 'इसके साथ साइन अप करें', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7143', 'in', 'i_agree_with_the_terms_and_conditions', 'मैं नियम और शर्तों से सहमत हूं', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7144', 'in', 'all_role', 'सभी भूमिका', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7145', 'in', 'add_new_role', 'नई भूमिका जोड़ें', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7146', 'in', 'roles', 'रोल्स', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7147', 'in', 'add_new_staffs', 'नए कर्मचारी जोड़ें', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7148', 'in', 'role', 'भूमिका', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7149', 'in', 'frontend_website_name', 'फ्रंटेंड वेबसाइट का नाम', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7150', 'in', 'website_name', 'वेबसाइट का नाम', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7151', 'in', 'site_motto', 'साइट का आदर्श वाक्य', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7152', 'in', 'best_ecommerce_website', 'सर्वश्रेष्ठ ईकामर्स वेबसाइट', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7153', 'in', 'site_icon', 'साइट आइकन', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7154', 'in', 'website_favicon_32x32_png', 'वेबसाइट favicon। 32x32 .png', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7155', 'in', 'website_base_color', 'वेबसाइट का आधार रंग', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7156', 'in', 'hex_color_code', 'हेक्स रंग कोड', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7157', 'in', 'website_base_hover_color', 'वेबसाइट बेस हॉवर कलर', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7158', 'in', 'update', 'अपडेट करें', '2021-02-09 12:38:11', '2021-09-20 12:59:28'),
('7159', 'in', 'global_seo', 'ग्लोबल एसईओ', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7160', 'in', 'meta_description', 'मेटा विवरण', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7161', 'in', 'keywords', 'कीवर्ड', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7162', 'in', 'separate_with_coma', 'कोमा से अलग', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7163', 'in', 'website_pages', 'वेबसाइट के पेज', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7164', 'in', 'all_pages', 'सभी पेज', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7165', 'in', 'add_new_page', 'नया पेज जोड़ें', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7166', 'in', 'url', 'URL', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7167', 'in', 'actions', 'क्रिया', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7168', 'in', 'edit_page_information', 'पृष्ठ जानकारी संपादित करें', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7169', 'in', 'page_content', 'पृष्ठ सामग्री', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7170', 'in', 'title', 'शीर्षक', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7171', 'in', 'link', 'संपर्क', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7172', 'in', 'use_character_number_hypen_only', 'चरित्र, संख्या, सम्मोहन का ही उपयोग करें', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7173', 'in', 'add_content', 'सामग्री जोड़ें', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7174', 'in', 'seo_fields', 'एसईओ फील्ड्स', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7175', 'in', 'update_page', 'अद्यतन पृष्ठ', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7176', 'in', 'default_language', 'डिफ़ॉल्ट भाषा', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7177', 'in', 'add_new_language', 'नई भाषा जोड़ें', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7178', 'in', 'rtl', 'आरटीएल', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7179', 'in', 'translation', 'अनुवाद', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7180', 'in', 'language_information', 'भाषा की जानकारी', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7181', 'in', 'save_page', 'पेज सुरक्षित करें', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7182', 'in', 'home_page_settings', 'मुख पृष्ठ सेटिंग्स', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7183', 'in', 'home_slider', 'होम स्लाइडर', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7184', 'in', 'photos__links', 'तस्वीरें और लिंक', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7185', 'in', 'add_new', 'नया जोड़ो', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7186', 'in', 'home_categories', 'घर श्रेणियाँ', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7187', 'in', 'home_banner_1_max_3', 'होम बैनर 1 (अधिकतम 3)', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7188', 'in', 'banner__links', 'बैनर और लिंक', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7189', 'in', 'home_banner_2_max_3', 'होम बैनर 2 (अधिकतम 3)', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7190', 'in', 'top_10', 'सर्वोत्तम 10', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7191', 'in', 'top_categories_max_10', 'शीर्ष श्रेणियां (अधिकतम 10)', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7192', 'in', 'top_brands_max_10', 'शीर्ष ब्रांड (अधिकतम 10)', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7193', 'in', 'system_name', 'सिस्टम का नाम', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7194', 'in', 'system_logo__white', 'सिस्टम लोगो - सफेद', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7195', 'in', 'choose_files', 'फ़ाइलों का चयन करें', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7196', 'in', 'will_be_used_in_admin_panel_side_menu', 'व्यवस्थापक पैनल साइड मेनू में उपयोग किया जाएगा', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7197', 'in', 'system_logo__black', 'सिस्टम लोगो - काला', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7198', 'in', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'मोबाइल + व्यवस्थापक लॉगिन पृष्ठ में व्यवस्थापक पैनल टॉपबार में उपयोग किया जाएगा', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7199', 'in', 'system_timezone', 'सिस्टम टाइमज़ोन', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7200', 'in', 'admin_login_page_background', 'व्यवस्थापक लॉगिन पृष्ठ की पृष्ठभूमि', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7201', 'in', 'website_header', 'वेबसाइट हैडर', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7202', 'in', 'header_setting', 'हैडर सेटिंग', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7203', 'in', 'header_logo', 'शीर्षलेख का लोगो', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7204', 'in', 'show_language_switcher', 'भाषा स्विचर दिखाएँ?', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7205', 'in', 'show_currency_switcher', 'करेंसी स्विचर दिखाओ?', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7206', 'in', 'enable_stikcy_header', 'स्टिकसी हेडर सक्षम करें?', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7207', 'in', 'website_footer', 'वेबसाइट पाद', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7208', 'in', 'footer_widget', 'पाद विजेट', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7209', 'in', 'about_widget', 'विजेट के बारे में', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7210', 'in', 'footer_logo', 'पाद लोगो', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7211', 'in', 'about_description', 'विवरण के बारे में', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7212', 'in', 'contact_info_widget', 'संपर्क जानकारी विजेट', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7213', 'in', 'footer_contact_address', 'पाद संपर्क संपर्क पता', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7214', 'in', 'footer_contact_phone', 'पाद संपर्क फोन', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7215', 'in', 'footer_contact_email', 'पाद संपर्क ईमेल', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7216', 'in', 'link_widget_one', 'लिंक विजेट एक', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7217', 'in', 'links', 'लिंक', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7218', 'in', 'footer_bottom', 'पाद नीचे', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7219', 'in', 'copyright_widget_', 'कॉपीराइट विजेट', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7220', 'in', 'copyright_text', 'कॉपीराइट पाठ', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7221', 'in', 'social_link_widget_', 'सामाजिक लिंक विजेट', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7222', 'in', 'show_social_links', 'सामाजिक लिंक दिखाएं?', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7223', 'in', 'social_links', 'सामाजिक लिंक', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7224', 'in', 'payment_methods_widget_', 'भुगतान के तरीके विजेट', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7225', 'in', 'rtl_status_updated_successfully', 'RTL स्थिति सफलतापूर्वक अपडेट की गई', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7226', 'in', 'language_changed_to_', 'भाषा बदल गई', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7227', 'in', 'inhouse_product_sale_report', 'इनहाउस उत्पाद बिक्री रिपोर्ट', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7228', 'in', 'sort_by_category', 'श्रेणी के आधार पर छाँटें', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7229', 'in', 'product_wise_stock_report', 'उत्पाद वार स्टॉक रिपोर्ट', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7230', 'in', 'currency_changed_to_', 'मुद्रा में बदल गया', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7231', 'in', 'avatar', 'अवतार', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7232', 'in', 'copy', 'कॉपी करें', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7233', 'in', 'variant', 'वेरिएंट', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7234', 'in', 'variant_price', 'भिन्न मूल्य', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7235', 'in', 'sku', 'SKU', '2021-02-09 12:38:12', '2021-09-20 12:59:28'),
('7236', 'in', 'key', 'चाभी', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7237', 'in', 'value', 'मान', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7238', 'in', 'copy_translations', 'अनुवाद की प्रतिलिपि बनाएँ', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7239', 'in', 'all_pickup_points', 'सभी पिक-अप अंक', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7240', 'in', 'add_new_pickup_point', 'नया पिक-अप पॉइंट जोड़ें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7241', 'in', 'manager', 'प्रबंधक', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7242', 'in', 'location', 'स्थान', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7243', 'in', 'pickup_station_contact', 'पिकअप स्टेशन संपर्क', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7244', 'in', 'open', 'खुला हुआ', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7245', 'in', 'pos_activation_for_seller', 'विक्रेता के लिए POS सक्रियण', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7246', 'in', 'order_completed_successfully', 'आदेश सफलतापूर्वक पूरा हुआ।', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7247', 'in', 'text_input', 'पाठ इनपुट', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7248', 'in', 'select', 'चुनते हैं', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7249', 'in', 'multiple_select', 'एकाधिक चयन करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7250', 'in', 'radio', 'रेडियो', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7251', 'in', 'file', 'फ़ाइल', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7252', 'in', 'email_address', 'ईमेल पता', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7253', 'in', 'verification_info', 'सत्यापन की जानकारी', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7254', 'in', 'approval', 'अनुमोदन', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7255', 'in', 'due_amount', 'बकाया राशि', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7256', 'in', 'show', 'प्रदर्शन', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7257', 'in', 'pay_now', 'अब भुगतान करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7258', 'in', 'affiliate_user_verification', 'संबद्ध उपयोगकर्ता सत्यापन', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7259', 'in', 'reject', 'अस्वीकार', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7260', 'in', 'accept', 'स्वीकार करना', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7261', 'in', 'beauty_health__hair', 'सौंदर्य, स्वास्थ्य और बाल', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7262', 'in', 'comparison', 'तुलना', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7263', 'in', 'reset_compare_list', 'रीसेट सूची की तुलना करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7264', 'in', 'your_comparison_list_is_empty', 'आपकी तुलना सूची खाली है', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7265', 'in', 'convert_point_to_wallet', 'Convert Point to Wallet', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7266', 'in', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'नोट: आपको क्लब पॉइंट एडऑन का उपयोग करने से पहले पहले वॉलेट विकल्प को सक्रिय करना होगा।', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7267', 'in', 'create_an_account', 'खाता बनाएं।', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7268', 'in', 'use_email_instead', 'इसके बजाय ईमेल का उपयोग करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7269', 'in', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'साइन अप करके आप हमारे नियमों और शर्तों से सहमत हैं।', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7270', 'in', 'create_account', 'खाता बनाएं', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7271', 'in', 'or_join_with', 'या के साथ जुड़ें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7272', 'in', 'already_have_an_account', 'क्या आपके पास पहले से एक खाता मौजूद है?', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7273', 'in', 'log_in', 'लॉग इन करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7274', 'in', 'computer__accessories', 'कंप्यूटर के सहायक उपकरण', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7275', 'in', 'products', 'उत्पाद', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7276', 'in', 'in_your_cart', 'आपकी गाड़ी में', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7277', 'in', 'in_your_wishlist', 'आपकी इच्छा सूची में', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7278', 'in', 'you_ordered', 'आपने ऑर्डर किया', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7279', 'in', 'default_shipping_address', 'सामान भेजने के लिए मूल पता', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7280', 'in', 'sports__outdoor', 'खेल और आउटडोर', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7281', 'in', 'copied', 'नकल की गई', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7282', 'in', 'copy_the_promote_link', 'प्रचार लिंक की प्रतिलिपि बनाएँ', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7283', 'in', 'write_a_review', 'एक समीक्षा लिखे', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7284', 'in', 'your_name', 'तुम्हारा नाम', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7285', 'in', 'comment', 'टिप्पणी', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7286', 'in', 'your_review', 'आपकी समीक्षा', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7287', 'in', 'submit_review', 'समीक्षा जमा करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7288', 'in', 'claire_willis', 'क्लेयर विलिस', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7289', 'in', 'germaine_greene', 'जर्मेन ग्रीन', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7290', 'in', 'product_file', 'उत्पाद फ़ाइल', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7291', 'in', 'choose_file', 'फ़ाइल का चयन', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7292', 'in', 'type_to_add_a_tag', 'एक टैग जोड़ने के लिए टाइप करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7293', 'in', 'images', 'इमेजिस', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7294', 'in', 'main_images', 'मुख्य चित्र', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7295', 'in', 'meta_tags', 'मेटा टैग', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7296', 'in', 'digital_product_has_been_inserted_successfully', 'डिजिटल उत्पाद सफलतापूर्वक डाला गया है', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7297', 'in', 'edit_digital_product', 'डिजिटल उत्पाद संपादित करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7298', 'in', 'select_an_option', 'कोई विकल्प चुनें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7299', 'in', 'tax', 'कर', '2021-02-09 12:38:13', '2021-02-09 12:38:13'),
('7300', 'in', 'any_question_about_this_product', 'इस उत्पाद के बारे में कोई प्रश्न?', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7301', 'in', 'sign_in', 'साइन इन करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7302', 'in', 'login_with_google', 'Google के साथ लॉगिन करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7303', 'in', 'login_with_facebook', 'फेसबुक में जाये', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7304', 'in', 'login_with_twitter', 'ट्विटर से लॉगिन करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7305', 'in', 'click_to_show_phone_number', 'फ़ोन नंबर दिखाने के लिए क्लिक करें', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7306', 'in', 'other_ads_of', 'के अन्य विज्ञापन', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7307', 'in', 'store_home', 'भंडार घर', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7308', 'in', 'top_selling', 'शीर्ष विक्रय', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7309', 'in', 'shop_settings', 'दुकान सेटिंग्स', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7310', 'in', 'visit_shop', 'दुकान पर जाएँ', '2021-02-09 12:38:13', '2021-09-20 12:59:28'),
('7311', 'in', 'pickup_points', 'पिकअप अंक', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7312', 'in', 'select_pickup_point', 'पिकअप प्वाइंट का चयन करें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7313', 'in', 'slider_settings', 'स्लाइडर सेटिंग्स', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7314', 'in', 'social_media_link', 'सोशल मीडिया लिंक', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7315', 'in', 'facebook', 'फेसबुक', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7316', 'in', 'twitter', 'ट्विटर', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7317', 'in', 'google', 'गूगल', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7318', 'in', 'new_arrival_products', 'नए आगमन उत्पाद', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7319', 'in', 'check_your_order_status', 'अपने ऑर्डर की स्थिति जांचें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7320', 'in', 'shipping_method', 'शिपिंग का तरीका', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7321', 'in', 'shipped_by', 'द्वारा भेजा गया', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7322', 'in', 'image', 'छवि', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7323', 'in', 'sub_sub_category', 'उप उप श्रेणी', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7324', 'in', 'inhouse_products', 'इनहाउस उत्पाद', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7325', 'in', 'forgot_password', 'पासवर्ड भूल गए?', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7326', 'in', 'enter_your_email_address_to_recover_your_password', 'अपना पासवर्ड पुनर्प्राप्त करने के लिए अपना ईमेल पता दर्ज करें।', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7327', 'in', 'email_or_phone', 'ईमेल या फोन', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7328', 'in', 'send_password_reset_link', 'पासवर्ड रीसेट लिंक भेजें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7329', 'in', 'back_to_login', 'लॉगिन पर वापस जाएं', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7330', 'in', 'index', 'सूचकांक', '2021-02-09 12:38:14', '2021-02-09 12:38:14'),
('7331', 'in', 'download_your_product', 'अपने उत्पाद को डाउनलोड करें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7332', 'in', 'option', 'विकल्प', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7333', 'in', 'applied_refund_request', 'एप्लाइड रिफंड अनुरोध', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7334', 'in', 'item_has_been_renoved_from_wishlist', 'आइटम को विशलिस्ट से बदल दिया गया है', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7335', 'in', 'bulk_products_upload', 'थोक उत्पाद अपलोड करें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7336', 'in', 'upload_csv', 'CSV अपलोड करें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7337', 'in', 'create_a_ticket', 'एक टिकट बनाएँ', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7338', 'in', 'tickets', 'टिकट', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7339', 'in', 'ticket_id', 'टिकट आईडी', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7340', 'in', 'sending_date', 'भेजने की तिथि', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7341', 'in', 'subject', 'विषय', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7342', 'in', 'view_details', 'विवरण देखें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7343', 'in', 'provide_a_detailed_description', 'विस्तृत विवरण प्रदान करें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7344', 'in', 'type_your_reply', 'अपना उत्तर लिखें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7345', 'in', 'send_ticket', 'टिकट भेजें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7346', 'in', 'load_more', 'और लोड करें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7347', 'in', 'jewelry__watches', 'गहने और घड़ियाँ', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7348', 'in', 'filters', 'फिल्टर करता है', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7349', 'in', 'contact_address', 'संपर्क पता', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7350', 'in', 'contact_phone', 'संपर्क फ़ोन', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7351', 'in', 'contact_email', 'ई - मेल से संपर्क करे', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7352', 'in', 'filter_by', 'के द्वारा छनित', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7353', 'in', 'condition', 'स्थिति', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7354', 'in', 'all_type', 'हर तरह के', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7355', 'in', 'pay_with_wallet', 'बटुए के साथ भुगतान करें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7356', 'in', 'select_variation', 'भिन्नता का चयन करें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7357', 'in', 'no_product_added', 'कोई उत्पाद नहीं जोड़ा गया', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7358', 'in', 'status_has_been_updated_successfully', 'स्थिति सफलतापूर्वक अपडेट कर दी गई है', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7359', 'in', 'all_seller_packages', 'सभी विक्रेता पैकेज', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7360', 'in', 'add_new_package', 'नया पैकेज जोड़ें', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7361', 'in', 'package_logo', 'पैकेज लोगो', '2021-02-09 12:38:14', '2021-09-20 12:59:28'),
('7362', 'in', 'days', 'दिन', '2021-02-09 12:38:14', '2021-02-09 12:38:14'),
('7363', 'in', 'create_new_seller_package', 'नया विक्रेता पैकेज बनाएँ', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7364', 'in', 'package_name', 'पैकेज का नाम', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7365', 'in', 'duration', 'अवधि', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7366', 'in', 'validity_in_number_of_days', 'दिनों की संख्या में वैधता', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7367', 'in', 'update_package_information', 'अद्यतन पैकेज जानकारी', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7368', 'in', 'package_has_been_inserted_successfully', 'पैकेज सफलतापूर्वक डाला गया है', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7369', 'in', 'refund_request', 'धन वापस करने का अनुरोध', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7370', 'in', 'reason', 'कारण', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7371', 'in', 'label', 'लेबल', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7372', 'in', 'select_label', 'लेबल का चयन करें', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7373', 'in', 'multiple_select_label', 'एकाधिक चयन लेबल', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7374', 'in', 'radio_label', 'रेडियो लेबल', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7375', 'in', 'pickup_point_orders', 'पिकअप प्वाइंट आदेश', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7376', 'in', 'view', 'राय', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7377', 'in', 'order_', 'गण #', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7378', 'in', 'order_status', 'आदेश की स्थिति', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7379', 'in', 'total_amount', 'कुल रकम', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7380', 'in', 'total', 'कुल', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7381', 'in', 'delivery_status_has_been_updated', 'वितरण की स्थिति अपडेट कर दी गई है', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7382', 'in', 'payment_status_has_been_updated', 'भुगतान की स्थिति अपडेट कर दी गई है', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7383', 'in', 'invoice', 'चालान', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7384', 'in', 'set_refund_time', 'रिफंड समय निर्धारित करें', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7385', 'in', 'set_time_for_sending_refund_request', 'धनवापसी अनुरोध भेजने का समय निर्धारित करें', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7386', 'in', 'set_refund_sticker', 'रिफ़ंड स्टिकर सेट करें', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7387', 'in', 'sticker', 'स्टिकर', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7388', 'in', 'refund_request_all', 'वापसी का अनुरोध सभी', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7389', 'in', 'order_id', 'आदेश ID', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7390', 'in', 'seller_approval', 'विक्रेता अनुमोदन', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7391', 'in', 'admin_approval', 'व्यवस्थापक अनुमोदन', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7392', 'in', 'refund_status', 'वापसी की स्थिति', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7393', 'in', 'no_refund', 'कोई प्रतिदाय नहीं', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7394', 'in', 'status_updated_successfully', 'स्थिति सफलतापूर्वक अपडेट की गई', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7395', 'in', 'user_search_report', 'उपयोगकर्ता खोज रिपोर्ट', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7396', 'in', 'search_by', 'द्वारा खोज', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7397', 'in', 'number_searches', 'नंबर खोजता है', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7398', 'in', 'sender', 'प्रेषक', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7399', 'in', 'receiver', 'प्राप्त करने वाला', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7400', 'in', 'verification_form_updated_successfully', 'सत्यापन फ़ॉर्म सफलतापूर्वक अपडेट किया गया', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7401', 'in', 'invalid_email_or_password', 'अमान्य ईमेल या पासवर्ड', '2021-02-09 12:38:14', '2021-09-20 12:59:29'),
('7402', 'in', 'all_coupons', 'सभी कूपन', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7403', 'in', 'add_new_coupon', 'नया कूपन जोड़ें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7404', 'in', 'coupon_information', 'कूपन जानकारी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7405', 'in', 'start_date', 'आरंभ करने की तिथि', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7406', 'in', 'end_date', 'समाप्ति तिथि', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7407', 'in', 'product_base', 'उत्पाद का आधार', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7408', 'in', 'send_newsletter', 'न्यूज़लेटर भेजें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7409', 'in', 'mobile_users', 'मोबाइल उपयोगकर्ता', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7410', 'in', 'sms_subject', 'एसएमएस विषय', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7411', 'in', 'sms_content', 'एसएमएस सामग्री', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7412', 'in', 'all_flash_delas', 'सभी फ्लैश डेल्स', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7413', 'in', 'create_new_flash_dela', 'नई फ्लैश Dela बनाएँ', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7414', 'in', 'page_link', 'पेज लिंक', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7415', 'in', 'flash_deal_information', 'फ्लैश डील की जानकारी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7416', 'in', 'background_color', 'पीछे का रंग', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7417', 'in', '0000ff', '# 0000ff', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7418', 'in', 'text_color', 'लिखावट का रंग', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7419', 'in', 'white', 'सफेद', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7420', 'in', 'dark', 'अंधेरा', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7421', 'in', 'choose_products', 'उत्पाद चुनें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7422', 'in', 'discounts', 'छूट देता है', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7423', 'in', 'discount_type', 'डिस्काउंट प्रकार', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7424', 'in', 'twillo_credential', 'ट्विल्लो क्रेडेंशियल', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7425', 'in', 'twilio_sid', 'TWILIO SID', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7426', 'in', 'twilio_auth_token', 'TWILIO ऑटो टोकन', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7427', 'in', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7428', 'in', 'valid_twillo_number', 'वैध दो नंबर', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7429', 'in', 'nexmo_credential', 'नेक्समो क्रेडेंशियल', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7430', 'in', 'nexmo_key', 'NEXMO कुंजी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7431', 'in', 'nexmo_secret', 'NEXMO SECRET', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7432', 'in', 'ssl_wireless_credential', 'एसएसएल वायरलेस क्रेडेंशियल', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7433', 'in', 'ssl_sms_api_token', 'एसएसएल एसएमएस एपीआई टोकन', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7434', 'in', 'ssl_sms_sid', 'एसएसएल एसएमएस एसआईडी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7435', 'in', 'ssl_sms_url', 'एसएसएल एसएमएस यूआरएल', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7436', 'in', 'fast2sms_credential', 'Fast2SMS क्रेडेंशियल', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7437', 'in', 'auth_key', 'प्रमाणन कुंजी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7438', 'in', 'route', 'मार्ग', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7439', 'in', 'promotional_use', 'प्रचारक उपयोग', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7440', 'in', 'transactional_use', 'लेन-देन का उपयोग', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7441', 'in', 'sender_id', 'प्रेषक आईडी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7442', 'in', 'nexmo_otp', 'नेक्समो ओटीपी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7443', 'in', 'twillo_otp', 'ट्विलो ओटीपी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7444', 'in', 'ssl_wireless_otp', 'एसएसएल वायरलेस ओटीपी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7445', 'in', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7446', 'in', 'order_placement', 'ऑर्डर देना', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7447', 'in', 'delivery_status_changing_time', 'डिलीवरी की स्थिति बदलने का समय', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7448', 'in', 'paid_status_changing_time', 'पेड स्टेटस चेंजिंग टाइम', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7449', 'in', 'send_bulk_sms', 'थोक एसएमएस भेजें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7450', 'in', 'all_subscribers', 'सभी सदस्य', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7451', 'in', 'coupon_information_adding', 'कूपन जानकारी जोड़ना', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7452', 'in', 'coupon_type', 'कूपन प्रकार', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7453', 'in', 'for_products', 'उत्पादों के लिए', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7454', 'in', 'for_total_orders', 'कुल आदेशों के लिए', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7455', 'in', 'add_your_product_base_coupon', 'अपना उत्पाद आधार कूपन जोड़ें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7456', 'in', 'coupon_code', 'कूपन कोड', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7457', 'in', 'sub_category', 'उप श्रेणी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7458', 'in', 'add_more', 'अधिक जोड़ें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7459', 'in', 'add_your_cart_base_coupon', 'अपनी गाड़ी का आधार कूपन जोड़ें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7460', 'in', 'minimum_shopping', 'न्यूनतम खरीदारी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7461', 'in', 'maximum_discount_amount', 'अधिकतम छूट राशि', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7462', 'in', 'coupon_information_update', 'कूपन सूचना अद्यतन', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7463', 'in', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'कृपया सभी ईमेल भेजने के लिए SMTP सेटिंग कॉन्फ़िगर करें, जो फ़ंक्शनलिटी भेज रही है', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7464', 'in', 'configure_now', 'अब कॉन्फ़िगर करें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7465', 'in', 'total_published_products', 'कुल प्रकाशित उत्पाद', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7466', 'in', 'total_sellers_products', 'कुल विक्रेता उत्पाद', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7467', 'in', 'total_admin_products', 'कुल व्यवस्थापक उत्पाद', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7468', 'in', 'manage_products', 'उत्पाद प्रबंधित करें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7469', 'in', 'total_product_category', 'कुल उत्पाद श्रेणी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7470', 'in', 'create_category', 'श्रेणी बनाएँ', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7471', 'in', 'total_product_sub_sub_category', 'कुल उत्पाद उप उप श्रेणी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7472', 'in', 'create_sub_sub_category', 'उप सब कैटेगरी बनाएँ', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7473', 'in', 'total_product_sub_category', 'कुल उत्पाद उप श्रेणी', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7474', 'in', 'create_sub_category', 'उप श्रेणी बनाएँ', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7475', 'in', 'total_product_brand', 'कुल उत्पाद ब्रांड', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7476', 'in', 'create_brand', 'ब्रांड बनाएँ', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7477', 'in', 'total_sellers', 'कुल विक्रेता', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7478', 'in', 'total_approved_sellers', 'कुल अनुमोदित विक्रेता', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7479', 'in', 'total_pending_sellers', 'कुल लंबित विक्रेता', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7480', 'in', 'manage_sellers', 'विक्रेताओं को प्रबंधित करें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7481', 'in', 'category_wise_product_sale', 'श्रेणी वार उत्पाद बिक्री', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7482', 'in', 'sale', 'बिक्री', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7483', 'in', 'category_wise_product_stock', 'श्रेणी वार उत्पाद स्टॉक', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7484', 'in', 'category_name', 'श्रेणी नाम', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7485', 'in', 'stock', 'भण्डार', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7486', 'in', 'frontend', 'फ़्रंट एंड', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7487', 'in', 'home_page', 'मुख पृष्ठ', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7488', 'in', 'setting', 'स्थापना', '2021-02-09 12:38:15', '2021-02-09 12:38:15'),
('7489', 'in', 'policy_page', 'नीति पृष्ठ', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7490', 'in', 'general', 'सामान्य', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7491', 'in', 'click_here', 'यहां क्लिक करें', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7492', 'in', 'useful_link', 'उपयोगी लिंक', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7493', 'in', 'activation', 'सक्रियण', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7494', 'in', 'smtp', 'SMTP', '2021-02-09 12:38:15', '2021-09-20 12:59:29'),
('7495', 'in', 'payment_method', 'भुगतान विधि', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7496', 'in', 'social_media', 'सामाजिक मीडिया', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7497', 'in', 'business', 'व्यापार', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7498', 'in', 'seller_verification', 'विक्रेता सत्यापन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7499', 'in', 'form_setting', 'फार्म सेटिंग', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7500', 'in', 'language', 'भाषा: हिन्दी', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7501', 'in', 'dashboard', 'डैशबोर्ड', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7502', 'in', 'pos_system', 'पीओएस सिस्टम', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7503', 'in', 'pos_manager', 'पीओएस मैनेजर', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7504', 'in', 'pos_configuration', 'पीओएस कॉन्फ़िगरेशन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7505', 'in', 'products', 'उत्पाद', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7506', 'in', 'add_new_product', 'नया उत्पाद जोड़ें', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7507', 'in', 'all_products', 'सभी प्रोडक्ट', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7508', 'in', 'in_house_products', 'हाउस प्रोडक्ट्स में', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7509', 'in', 'seller_products', 'विक्रेता उत्पाद', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7510', 'in', 'digital_products', 'डिजिटल उत्पाद', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7511', 'in', 'bulk_import', 'थोक आयात', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7512', 'in', 'bulk_export', 'थोक निर्यात', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7513', 'in', 'category', 'वर्ग', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7514', 'in', 'subcategory', 'उपश्रेणी', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7515', 'in', 'sub_subcategory', 'उप उपश्रेणी', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7516', 'in', 'brand', 'ब्रांड', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7517', 'in', 'attribute', 'विशेषता', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7518', 'in', 'product_reviews', 'उत्पाद की समीक्षा', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7519', 'in', 'sales', 'बिक्री', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7520', 'in', 'all_orders', 'सभी आदेश', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7521', 'in', 'inhouse_orders', 'इनहाउस आदेश', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7522', 'in', 'seller_orders', 'विक्रेता आदेश', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7523', 'in', 'pickup_point_order', 'पिक-अप पॉइंट ऑर्डर', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7524', 'in', 'refunds', 'धन वापसी', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7525', 'in', 'refund_requests', 'वापसी का अनुरोध', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7526', 'in', 'approved_refund', 'स्वीकृत धन वापसी', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7527', 'in', 'refund_configuration', 'रिफंड कॉन्फ़िगरेशन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7528', 'in', 'customers', 'ग्राहक', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7529', 'in', 'customer_list', 'ग्राहकू सूची', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7530', 'in', 'classified_products', 'वर्गीकृत उत्पाद', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7531', 'in', 'classified_packages', 'वर्गीकृत पैकेज', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7532', 'in', 'sellers', 'बेचने वाला', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7533', 'in', 'all_seller', 'सभी विक्रेता', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7534', 'in', 'payouts', 'भुगतान करता है', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7535', 'in', 'payout_requests', 'भुगतान अनुरोध', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7536', 'in', 'seller_commission', 'विक्रेता आयोग', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7537', 'in', 'seller_packages', 'विक्रेता संकुल', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7538', 'in', 'seller_verification_form', 'विक्रेता सत्यापन प्रपत्र', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7539', 'in', 'reports', 'रिपोर्ट', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7540', 'in', 'in_house_product_sale', 'हाउस प्रोडक्ट सेल में', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7541', 'in', 'seller_products_sale', 'विक्रेता उत्पाद बिक्री', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7542', 'in', 'products_stock', 'उत्पाद स्टॉक', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7543', 'in', 'products_wishlist', 'उत्पाद इच्छा सूची', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7544', 'in', 'user_searches', 'उपयोगकर्ता खोजें', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7545', 'in', 'marketing', 'विपणन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7546', 'in', 'flash_deals', 'फ्लैश सौदों', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7547', 'in', 'newsletters', 'समाचारपत्रिकाएँ', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7548', 'in', 'bulk_sms', 'बड़ी संख्या में एसएमएस', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7549', 'in', 'subscribers', 'सदस्य', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7550', 'in', 'coupon', 'कूपन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7551', 'in', 'support', 'सहयोग', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7552', 'in', 'ticket', 'टिकट', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7553', 'in', 'product_queries', 'उत्पाद क्वेरी', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7554', 'in', 'website_setup', 'वेबसाइट सेटअप', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7555', 'in', 'header', 'हेडर', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7556', 'in', 'footer', 'फुटर', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7557', 'in', 'pages', 'पेज', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7558', 'in', 'appearance', 'रूप', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7559', 'in', 'setup__configurations', 'सेटअप और कॉन्फ़िगरेशन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7560', 'in', 'general_settings', 'सामान्य सेटिंग्स', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7561', 'in', 'features_activation', 'सक्रियण सुविधाएँ', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7562', 'in', 'languages', 'भाषाएँ', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7563', 'in', 'currency', 'मुद्रा', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7564', 'in', 'pickup_point', 'पिक अप बिंदु', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7565', 'in', 'smtp_settings', 'SMTP सेटिंग्स', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7566', 'in', 'payment_methods', 'भुगतान की विधि', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7567', 'in', 'file_system_configuration', 'फ़ाइल सिस्टम कॉन्फ़िगरेशन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7568', 'in', 'social_media_logins', 'सोशल मीडिया लॉगिन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7569', 'in', 'analytics_tools', 'विश्लेषिकी उपकरण', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7570', 'in', 'facebook_chat', 'फेसबुक लिखचित', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7571', 'in', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7572', 'in', 'shipping_configuration', 'शिपिंग कॉन्फ़िगरेशन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7573', 'in', 'shipping_countries', 'नौवहन देश', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7574', 'in', 'affiliate_system', 'संबद्ध प्रणाली', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7575', 'in', 'affiliate_registration_form', 'संबद्ध पंजीकरण फॉर्म', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7576', 'in', 'affiliate_configurations', 'संबद्ध कॉन्फ़िगरेशन', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7577', 'in', 'affiliate_users', 'संबद्ध उपयोगकर्ता', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7578', 'in', 'referral_users', 'रेफरल उपयोगकर्ता', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7579', 'in', 'affiliate_withdraw_requests', 'संबद्ध निकासी अनुरोध', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7580', 'in', 'offline_payment_system', 'ऑफलाइन भुगतान प्रणाली', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7581', 'in', 'manual_payment_methods', 'मैनुअल भुगतान के तरीके', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7582', 'in', 'offline_wallet_recharge', 'ऑफलाइन वॉलेट रिचार्ज', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7583', 'in', 'offline_customer_package_payments', 'ऑफलाइन ग्राहक पैकेज भुगतान', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7584', 'in', 'offline_seller_package_payments', 'ऑफलाइन विक्रेता पैकेज भुगतान', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7585', 'in', 'paytm_payment_gateway', 'पेटीएम पेमेंट गेटवे', '2021-02-09 12:38:16', '2021-09-20 12:59:29'),
('7586', 'in', 'set_paytm_credentials', 'पेटीएम क्रेडेंशियल सेट करें', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7587', 'in', 'club_point_system', 'क्लब प्वाइंट सिस्टम', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7588', 'in', 'club_point_configurations', 'क्लब प्वाइंट कॉन्फ़िगरेशन', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7589', 'in', 'set_product_point', 'उत्पाद बिंदु सेट करें', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7590', 'in', 'user_points', 'उपयोगकर्ता अंक', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7591', 'in', 'otp_system', 'ओटीपी सिस्टम', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7592', 'in', 'otp_configurations', 'OTP कॉन्फ़िगरेशन', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7593', 'in', 'set_otp_credentials', 'OTP क्रेडेंशियल सेट करें', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7594', 'in', 'staffs', 'कर्मचारी', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7595', 'in', 'all_staffs', 'सभी कर्मचारी', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7596', 'in', 'staff_permissions', 'स्टाफ की अनुमति', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7597', 'in', 'addon_manager', 'एडऑन मैनेजर', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7598', 'in', 'browse_website', 'वेबसाइट ब्राउज़ करें', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7599', 'in', 'pos', 'पीओएस', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7600', 'in', 'notifications', 'सूचनाएं', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7601', 'in', 'new_orders', 'नए आदेश', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7602', 'in', 'userimage', 'उपयोगकर्ता-छवि', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7603', 'in', 'profile', 'प्रोफाइल', '2021-02-09 12:38:17', '2021-09-20 12:59:29'),
('7604', 'in', 'logout', 'लॉग आउट', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7605', 'in', 'page_not_found', 'पृष्ठ नहीं मिला!', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7606', 'in', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'जो पृष्ठ आप खोज रहे हैं, वह हमारे सर्वर पर नहीं मिला है।', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7607', 'in', 'registration', 'पंजीकरण', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7608', 'in', 'i_am_shopping_for', 'मेरी खरीदारी है किसलिए...', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7609', 'in', 'compare', 'तुलना कीजिए', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7610', 'in', 'wishlist', 'विशलिस्ट', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7611', 'in', 'cart', 'गाड़ी', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7612', 'in', 'your_cart_is_empty', 'आपकी गाड़ी खाली है', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7613', 'in', 'categories', 'श्रेणियाँ', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7614', 'in', 'see_all', 'सभी देखें', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7615', 'in', 'seller_policy', 'विक्रेता नीति', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7616', 'in', 'return_policy', 'वापसी नीति', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7617', 'in', 'support_policy', 'समर्थन नीति', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7618', 'in', 'privacy_policy', 'गोपनीयता नीति', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7619', 'in', 'your_email_address', 'आपका ईमेल पता', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7620', 'in', 'subscribe', 'सदस्यता लें', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7621', 'in', 'contact_info', 'संपर्क सूचना', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7622', 'in', 'address', 'पता', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7623', 'in', 'phone', 'फ़ोन', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7624', 'in', 'email', 'ईमेल', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7625', 'in', 'login', 'लॉग इन करें', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7626', 'in', 'my_account', 'मेरा खाता', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7627', 'in', 'order_history', 'आदेश इतिहास', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7628', 'in', 'my_wishlist', 'मेरी इच्छा सूची', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7629', 'in', 'track_order', 'ऑर्डर पर नज़र रखना', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7630', 'in', 'be_an_affiliate_partner', 'सहयोगी बनो', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7631', 'in', 'be_a_seller', 'एक विक्रेता बनो', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7632', 'in', 'apply_now', 'अभी अप्लाई करें', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7633', 'in', 'confirmation', 'पुष्टि', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7634', 'in', 'delete_confirmation_message', 'पुष्टिकरण संदेश हटाएं', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7635', 'in', 'cancel', 'रद्द करना', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7636', 'in', 'delete', 'हटा दें', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7637', 'in', 'item_has_been_added_to_compare_list', 'सूची की तुलना करने के लिए आइटम जोड़ा गया है', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7638', 'in', 'please_login_first', 'पहले प्रवेश करें', '2021-02-09 12:38:44', '2021-09-20 12:59:29'),
('7639', 'in', 'total_earnings_from', 'से कुल कमाई', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7640', 'in', 'client_subscription', 'ग्राहक सदस्यता', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7641', 'in', 'product_category', 'उत्पाद श्रेणी', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7642', 'in', 'product_sub_sub_category', 'उत्पाद उप उप श्रेणी', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7643', 'in', 'product_sub_category', 'उत्पाद उप श्रेणी', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7644', 'in', 'product_brand', 'उत्पाद का ब्रांड', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7645', 'in', 'top_client_packages', 'शीर्ष ग्राहक पैकेज', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7646', 'in', 'top_freelancer_packages', 'शीर्ष फ्रीलांसर पैकेज', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7647', 'in', 'number_of_sale', 'बिक्री की संख्या', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7648', 'in', 'number_of_stock', 'स्टॉक की संख्या', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7649', 'in', 'top_10_products', 'शीर्ष 10 उत्पाद', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7650', 'in', 'top_12_products', 'शीर्ष 12 उत्पाद', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7651', 'in', 'admin_can_not_be_a_seller', 'व्यवस्थापक विक्रेता नहीं हो सकता', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7652', 'in', 'filter_by_rating', 'फ़िल्टर रेटिंग द्वारा', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7653', 'in', 'published_reviews_updated_successfully', 'प्रकाशित समीक्षाएँ सफलतापूर्वक अपडेट की गईं', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7654', 'in', 'refund_sticker_has_been_updated_successfully', 'रिफंड स्टिकर को सफलतापूर्वक अपडेट किया गया है', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7655', 'in', 'edit_product', 'उत्पाद संपादित करें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7656', 'in', 'meta_images', 'मेटा छवियाँ', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7657', 'in', 'update_product', 'अद्यतन उत्पाद', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7658', 'in', 'product_has_been_deleted_successfully', 'उत्पाद सफलतापूर्वक हटा दिया गया है', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7659', 'in', 'your_profile_has_been_updated_successfully', 'आपकी प्रोफ़ाइल सफलतापूर्वक अद्यतन किया गया है!', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7660', 'in', 'upload_limit_has_been_reached_please_upgrade_your_package', 'अपलोड सीमा समाप्त हो गई है। कृपया अपना पैकेज अपग्रेड करें।', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7661', 'in', 'add_your_product', 'अपने उत्पाद जोड़ें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7662', 'in', 'select_a_category', 'एक श्रेणी चुनें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7663', 'in', 'select_a_brand', 'एक ब्रांड का चयन करें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7664', 'in', 'product_unit', 'उत्पाद इकाई', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7665', 'in', 'minimum_qty', 'न्यूनतम मात्रा।', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7666', 'in', 'product_tag', 'उत्पाद टैग', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7667', 'in', 'type__hit_enter', 'टाइप करें और एंटर करें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7668', 'in', 'videos', 'वीडियो', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7669', 'in', 'video_from', 'वीडियो से', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7670', 'in', 'video_url', 'वीडियो यूआरएल', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7671', 'in', 'customer_choice', 'ग्राहक की पसंद', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7672', 'in', 'pdf', 'पीडीएफ', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7673', 'in', 'choose_pdf', 'पीडीएफ चुनें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7674', 'in', 'select_category', 'श्रेणी चुनना', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7675', 'in', 'target_category', 'लक्ष्य श्रेणी', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7676', 'in', 'subsubcategory', 'उप-वर्ग', '2021-02-09 12:38:45', '2021-02-09 12:38:45'),
('7677', 'in', 'search_category', 'श्रेणी खोजें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7678', 'in', 'search_subcategory', 'उपश्रेणी खोजें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7679', 'in', 'search_subsubcategory', 'SubSubCategory खोजें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7680', 'in', 'update_your_product', 'अपने उत्पाद को अपडेट करें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7681', 'in', 'product_has_been_updated_successfully', 'उत्पाद सफलतापूर्वक अपडेट किया गया है', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7682', 'in', 'add_your_digital_product', 'अपने डिजिटल उत्पाद जोड़ें', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7683', 'in', 'active_ecommerce_cms_update_process', 'सक्रिय ईकामर्स सीएमएस अपडेट प्रक्रिया', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7684', 'in', 'codecanyon_purchase_code', 'कोडेकनयन खरीद कोड', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7685', 'in', 'database_name', 'डेटाबेस का नाम', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7686', 'in', 'database_username', 'डेटाबेस उपयोगकर्ता नाम', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7687', 'in', 'database_password', 'डेटाबेस पासवर्ड', '2021-02-09 12:38:45', '2021-09-20 12:59:29'),
('7688', 'in', 'database_hostname', 'डेटाबेस होस्टनाम', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7689', 'in', 'update_now', 'अभी अद्यतन करें', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7690', 'in', 'congratulations', 'बधाई हो', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7691', 'in', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'आपने अद्यतन प्रक्रिया सफलतापूर्वक पूरी कर ली है। जारी रखने के लिए लॉग इन करें', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7692', 'in', 'go_to_home', 'घर जाओ', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7693', 'in', 'login_to_admin_panel', 'व्यवस्थापक पैनल में लॉगिन करें', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7694', 'in', 's3_file_system_credentials', 'S3 फ़ाइल सिस्टम क्रेडेंशियल', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7695', 'in', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7696', 'in', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7697', 'in', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7698', 'in', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7699', 'in', 'aws_url', 'AWS_URL', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7700', 'in', 's3_file_system_activation', 'S3 फ़ाइल सिस्टम सक्रियण', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7701', 'in', 'your_phone_number', 'आपका फोन नंबर', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7702', 'in', 'zip_file', 'ज़िप फ़ाइल', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7703', 'in', 'install', 'इंस्टॉल', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7704', 'in', 'this_version_is_not_capable_of_installing_addons_please_update', 'यह संस्करण Addons स्थापित करने में सक्षम नहीं है, कृपया अपडेट करें।', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7705', 'in', 'search_in_menu', 'मेनू में खोजें', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7706', 'in', 'uploaded_files', 'अपलोड की गई फाइलें', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7707', 'in', 'shipping_cities', 'शिपिंग शहर', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7708', 'in', 'system', 'प्रणाली', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7709', 'in', 'server_status', 'सर्वर की स्थिति', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7710', 'in', 'nothing_found', 'कुछ नहीं मिला', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7711', 'in', 'parent_category', 'अभिभावक श्रेणी', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7712', 'in', 'level', 'स्तर', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7713', 'in', 'category_information', 'श्रेणी की जानकारी', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7714', 'in', 'translatable', 'अनुवाद करने योग्य', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7715', 'in', 'no_parent', 'कोई जनक नहीं', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7716', 'in', 'physical', 'शारीरिक', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7717', 'in', 'digital', 'डिजिटल', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7718', 'in', '200x200', '200x200', '2021-02-09 12:38:45', '2021-02-09 12:38:45'),
('7719', 'in', '32x32', '32x32', '2021-02-09 12:38:45', '2021-02-09 12:38:45'),
('7720', 'in', 'search_your_files', 'अपनी फ़ाइलें खोजें', '2021-02-09 12:38:45', '2021-09-20 12:59:30'),
('7721', 'in', 'category_has_been_updated_successfully', 'श्रेणी को सफलतापूर्वक अपडेट कर दिया गया है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7722', 'in', 'all_uploaded_files', 'सभी अपलोड की गई फ़ाइलें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7723', 'in', 'upload_new_file', 'नई फ़ाइल अपलोड करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7724', 'in', 'all_files', 'सारे दस्तावेज', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7725', 'in', 'search', 'खोज', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7726', 'in', 'details_info', 'विवरण जानकारी', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7727', 'in', 'copy_link', 'लिंक की प्रतिलिपि करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7728', 'in', 'are_you_sure_to_delete_this_file', 'क्या आप इस फ़ाइल को हटाना सुनिश्चित कर रहे हैं?', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7729', 'in', 'file_info', 'फाइल के बारे में', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7730', 'in', 'link_copied_to_clipboard', 'लिंक को क्लिपबोर्ड पर कॉपी किया गया', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7731', 'in', 'oops_unable_to_copy', 'ओह, कॉपी करने में असमर्थ', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7732', 'in', 'file_deleted_successfully', 'फ़ाइल सफलतापूर्वक हटा दी गई', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7733', 'in', 'add_new_brand', 'नया ब्रांड जोड़ें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7734', 'in', '120x80', '120x80', '2021-02-09 12:38:46', '2021-02-09 12:38:46'),
('7735', 'in', 'brand_information', 'ब्रांड जानकारी', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7736', 'in', 'brand_has_been_updated_successfully', 'ब्रांड को सफलतापूर्वक अपडेट कर दिया गया है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7737', 'in', 'brand_has_been_deleted_successfully', 'ब्रांड को सफलतापूर्वक हटा दिया गया है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7738', 'in', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'यह खोज के लिए उपयोग किया जाता है। उन शब्दों को इनपुट करें जिनके द्वारा कटर इस उत्पाद को पा सकते हैं।', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7739', 'in', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'ये चित्र उत्पाद विवरण पृष्ठ गैलरी में दिखाई देते हैं। 600x600 आकारों की छवियों का उपयोग करें।', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7740', 'in', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'यह छवि सभी उत्पाद बॉक्स में दिखाई देती है। 300x300 आकार की छवि का उपयोग करें। अपनी छवि के मुख्य ऑब्जेक्ट के चारों ओर कुछ खाली जगह रखें क्योंकि हमें इसे उत्तरदायी बनाने के लिए विभिन्न उपकरणों में कुछ किनारे लगाने थे।', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7741', 'in', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'अतिरिक्त पैरामीटर के बिना उचित लिंक का उपयोग करें। शॉर्ट शेयर लिंक / एंबेडेड iframe कोड का उपयोग न करें।', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7742', 'in', 'save_product', 'उत्पाद सहेजें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7743', 'in', 'product_has_been_inserted_successfully', 'उत्पाद सफलतापूर्वक डाला गया है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7744', 'in', 'something_went_wrong', 'कुछ गलत हो गया!', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7745', 'in', 'sorry_for_the_inconvenience_but_were_working_on_it', 'असुविधा के लिए खेद है, लेकिन हम इस पर काम कर रहे हैं।', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7746', 'in', 'error_code', 'एरर कोड', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7747', 'in', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'कृपया कार्यक्षमता भेजने वाले सभी ईमेल को काम करने के लिए SMTP सेटिंग कॉन्फ़िगर करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7748', 'in', 'order', 'गण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7749', 'in', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'UI को बनाए रखने के लिए हमारे पास सीमित बैनर ऊंचाई है। हमें अलग-अलग उपकरणों के लिए इसे संवेदनशील बनाने के लिए बाईं और दाईं ओर से फ़सल करनी थी। बैनर डिजाइन करने से पहले इन बिंदुओं को ध्यान में रखें।', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7750', 'in', 'home_banner_3_max_3', 'होम बैनर 3 (अधिकतम 3)', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7751', 'in', 'add_new_seller', 'नया विक्रेता जोड़ें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7752', 'in', 'filter_by_approval', 'स्वीकृति द्वारा फ़िल्टर करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7753', 'in', 'nonapproved', 'गैर-स्वीकृत', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7754', 'in', 'type_name_or_email__enter', 'नाम या ईमेल लिखें और दर्ज करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7755', 'in', 'due_to_seller', 'विक्रेता के कारण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7756', 'in', 'log_in_as_this_seller', 'इस विक्रेता के रूप में लॉग इन करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7757', 'in', 'go_to_payment', 'पेमेंट पर जाएं', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7758', 'in', 'ban_this_seller', 'इस विक्रेता को प्रतिबंधित करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7759', 'in', 'do_you_really_want_to_ban_this_seller', 'क्या आप वास्तव में इस विक्रेता को प्रतिबंधित करना चाहते हैं?', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7760', 'in', 'proceed', 'आगे बढ़ें!', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7761', 'in', 'approved_sellers_updated_successfully', 'स्वीकृत विक्रेता सफलतापूर्वक अपडेट किए गए', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7762', 'in', 'seller_has_been_deleted_successfully', 'विक्रेता को सफलतापूर्वक हटा दिया गया है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7763', 'in', 'seller_information', 'विक्रेता जानकारी', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7764', 'in', 'seller_has_been_inserted_successfully', 'विक्रेता को सफलतापूर्वक डाला गया है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7765', 'in', 'email_already_exists', 'ईमेल पहले से ही मौजूद है!', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7766', 'in', 'verify_your_email_address', 'अपने ईमेल पते की पुष्टि करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7767', 'in', 'before_proceeding_please_check_your_email_for_a_verification_link', 'आगे बढ़ने से पहले, सत्यापन लिंक के लिए कृपया अपना ईमेल देखें।', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7768', 'in', 'if_you_did_not_receive_the_email', 'यदि आपको ईमेल प्राप्त नहीं हुआ है।', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7769', 'in', 'click_here_to_request_another', 'दूसरा अनुरोध करने के लिए यहां क्लिक करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7770', 'in', 'email_verification', 'ई - मेल सत्यापन', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7771', 'in', 'email_verification__', 'ई - मेल सत्यापन -', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7772', 'in', 'https_activation', 'HTTPS एक्टिवेशन', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7773', 'in', 'maintenance_mode', 'रखरखाव मोड', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7774', 'in', 'maintenance_mode_activation', 'रखरखाव मोड सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7775', 'in', 'classified_product_activate', 'वर्गीकृत उत्पाद सक्रिय करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7776', 'in', 'classified_product', 'वर्गीकृत उत्पाद', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7777', 'in', 'business_related', 'कारोबार से जुड़ा हुआ', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7778', 'in', 'vendor_system_activation', 'विक्रेता प्रणाली सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7779', 'in', 'wallet_system_activation', 'वॉलेट सिस्टम सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7780', 'in', 'coupon_system_activation', 'कूपन प्रणाली सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7781', 'in', 'pickup_point_activation', 'पिकअप प्वाइंट सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7782', 'in', 'conversation_activation', 'वार्तालाप सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7783', 'in', 'guest_checkout_activation', 'अतिथि चेकआउट सक्रियकरण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7784', 'in', 'categorybased_commission', 'श्रेणी-आधारित आयोग', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7785', 'in', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'इस विकल्प को सक्रिय करने के बाद सेलर कमिशन डिसेबल हो जाएगा और आपको प्रत्येक श्रेणी पर कमीशन सेट करना होगा अन्यथा एडमिन को कोई भी कमिशन नहीं मिलेगा', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7786', 'in', 'set_commisssion_now', 'अब कमिशन सेट करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7787', 'in', 'payment_related', 'भुगतान संबंधी', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7788', 'in', 'paypal_payment_activation', 'पेपैल भुगतान सक्रियकरण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7789', 'in', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको पेपैल को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7790', 'in', 'stripe_payment_activation', 'धारी भुगतान सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7791', 'in', 'sslcommerz_activation', 'SSlCommerz सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7792', 'in', 'instamojo_payment_activation', 'Instamojo Payment एक्टिवेशन', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7793', 'in', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको Instamojo Payment को सही तरीके से कॉन्फ़िगर करना होगा', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7794', 'in', 'razor_pay_activation', 'रेजर पे एक्टिवेशन', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7795', 'in', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको रेजर को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7796', 'in', 'paystack_activation', 'PayStack सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7797', 'in', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको PayStack को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7798', 'in', 'voguepay_activation', 'VoguePay सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7799', 'in', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको VoguePay को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7800', 'in', 'payhere_activation', 'सक्रियता का भुगतान करें', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7801', 'in', 'ngenius_activation', 'Ngenius सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7802', 'in', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको Ngenius को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7803', 'in', 'iyzico_activation', 'इज़िको सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7804', 'in', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको iyzico को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7805', 'in', 'bkash_activation', 'Bkash सक्रियण', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7806', 'in', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको bkash को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7807', 'in', 'nagad_activation', 'नागद सक्रियता', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7808', 'in', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको सही ढंग से नगाड को कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:46', '2021-09-20 12:59:30'),
('7809', 'in', 'cash_payment_activation', 'नकद भुगतान सक्रियकरण', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7810', 'in', 'social_media_login', 'सोशल मीडिया लॉगिन', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7811', 'in', 'facebook_login', 'फेसबुक लॉग इन', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7812', 'in', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको फेसबुक क्लाइंट को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7813', 'in', 'google_login', 'Google लॉगिन', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7814', 'in', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको Google क्लाइंट को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7815', 'in', 'twitter_login', 'ट्विटर लॉगिन', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7816', 'in', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'इस सुविधा को सक्षम करने के लिए आपको ट्विटर क्लाइंट को सही ढंग से कॉन्फ़िगर करने की आवश्यकता है', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7817', 'in', 'shop_logo', 'दुकान का लोगो', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7818', 'in', 'shop_address', 'दुकान का पता', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7819', 'in', 'banner_settings', 'बैनर सेटिंग्स', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7820', 'in', 'banners', 'बैनर', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7821', 'in', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'हमें मुख्य स्थिरता से ऊंचाई को सीमित करना था। कुछ डिवाइस में बैनर के दोनों तरफ ऊंचाई सीमा के लिए फसली हो सकती है।', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7822', 'in', 'insert_link_with_https_', 'Https के साथ लिंक डालें', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7823', 'in', 'your_shop_has_been_updated_successfully', 'आपकी दुकान सफलतापूर्वक अपडेट हो गई है!', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7824', 'in', 'search_result_for_', 'के लिए खोज परिणाम', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7825', 'in', 'brand_has_been_inserted_successfully', 'ब्रांड को सफलतापूर्वक डाला गया है', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7826', 'in', 'about', 'के बारे में', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7827', 'in', 'payout_info', 'पेआउट जानकारी', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7828', 'in', 'bank_acc_name', 'बैंक Acc नाम', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7829', 'in', 'bank_acc_number', 'बैंक Acc नंबर', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7830', 'in', 'total_products', 'कुल उत्पाद', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7831', 'in', 'total_sold_amount', 'कुल बेची गई राशि', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7832', 'in', 'wallet_balance', 'बटुआ संतुलन', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7833', 'in', 'cookies_agreement', 'कुकीज़ समझौता', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7834', 'in', 'cookies_agreement_text', 'कुकीज़ समझौता पाठ', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7835', 'in', 'show_cookies_agreement', 'कुकीज़ समझौता दिखाएँ?', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7836', 'in', 'custom_script', 'कस्टम स्क्रिप्ट', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7837', 'in', 'header_custom_script__before_head', 'हेडर कस्टम स्क्रिप्ट - </ head> से पहले', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7838', 'in', 'write_script_with_script_tag', '<Script> टैग के साथ स्क्रिप्ट लिखें', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7839', 'in', 'footer_custom_script__before_body', 'पाद कस्टम स्क्रिप्ट - </ body> से पहले', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7840', 'in', 'category_has_been_inserted_successfully', 'श्रेणी को सफलतापूर्वक डाला गया है', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7841', 'in', 'all_flash_deals', 'सभी फ्लैश डील', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7842', 'in', 'create_new_flash_deal', 'नई फ्लैश डील बनाएं', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7843', 'in', 'ffffff', '# फाफ', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7844', 'in', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'यह चित्र फ्लैश डील विवरण पृष्ठ में कवर बैनर के रूप में दिखाया गया है।', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7845', 'in', 'flash_deal_has_been_inserted_successfully', 'फ्लैश डील सफलतापूर्वक डाली गई है', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7846', 'in', 'flash_deal_status_updated_successfully', 'फ़्लैश सौदा स्थिति सफलतापूर्वक अपडेट की गई', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7847', 'in', 'flash_deal_has_been_updated_successfully', 'फ्लैश डील को सफलतापूर्वक अपडेट किया गया है', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7848', 'in', 'update_language_info', 'अद्यतन भाषा की जानकारी', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7849', 'in', 'language_has_been_updated_successfully', 'भाषा को सफलतापूर्वक अपडेट कर दिया गया है', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7850', 'in', 'type_key__enter', 'कुंजी टाइप करें और दर्ज करें', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7851', 'in', 'translations_updated_for_', 'अनुवाद के लिए अद्यतन किया गया', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7852', 'in', 'language_has_been_inserted_successfully', 'भाषा को सफलतापूर्वक डाला गया है', '2021-02-09 12:38:47', '2021-09-20 12:59:30'),
('7853', 'nl', 'all_category', 'Alle categorieën', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7854', 'nl', 'all', 'Alle', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7855', 'nl', 'flash_sale', 'Flash-verkoop', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7856', 'nl', 'view_more', 'Bekijk meer', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7857', 'nl', 'add_to_wishlist', 'Toevoegen aan verlanglijst', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7858', 'nl', 'add_to_compare', 'Voeg toe om te vergelijken', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7859', 'nl', 'add_to_cart', 'Voeg toe aan winkelkar', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7860', 'nl', 'club_point', 'Club punt', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7861', 'nl', 'classified_ads', 'Rubrieksadvertenties', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7862', 'nl', 'used', 'Gebruikt', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7863', 'nl', 'top_10_categories', 'Top 10 categorieën', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7864', 'nl', 'view_all_categories', 'Bekijk alle categorieën', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7865', 'nl', 'top_10_brands', 'Top 10 merken', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7866', 'nl', 'view_all_brands', 'Bekijk alle merken', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7867', 'nl', 'terms__conditions', 'Algemene voorwaarden', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7868', 'nl', 'best_selling', 'Best verkopende', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7869', 'nl', 'top_20', 'Top 20', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7870', 'nl', 'featured_products', 'Uitgelichte producten', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7871', 'nl', 'best_sellers', 'Beste verkopers', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7872', 'nl', 'visit_store', 'Winkel bezoeken', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7873', 'nl', 'popular_suggestions', 'Populaire suggesties', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7874', 'nl', 'category_suggestions', 'Categorie Suggesties', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7875', 'nl', 'automobile__motorcycle', 'Auto\'s en motorfietsen', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7876', 'nl', 'price_range', 'Prijsbereik', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7877', 'nl', 'filter_by_color', 'Filter op kleur', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7878', 'nl', 'home', 'Huis', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7879', 'nl', 'newest', 'Nieuwste', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7880', 'nl', 'oldest', 'Oudste', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7881', 'nl', 'price_low_to_high', 'Prijs laag naar hoog', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7882', 'nl', 'price_high_to_low', 'Prijs van hoog naar laag', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7883', 'nl', 'brands', 'Merken', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7884', 'nl', 'all_brands', 'Alle merken', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7885', 'nl', 'all_sellers', 'Alle verkopers', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7886', 'nl', 'inhouse_product', 'Eigen product', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7887', 'nl', 'message_seller', 'Stuur een bericht naar de verkoper', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7888', 'nl', 'price', 'Prijs', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7889', 'nl', 'discount_price', 'Kortingsprijs', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7890', 'nl', 'color', 'Kleur', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7891', 'nl', 'quantity', 'Hoeveelheid', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7892', 'nl', 'available', 'beschikbaar', '2021-02-09 12:41:58', '2021-02-09 12:41:58'),
('7893', 'nl', 'total_price', 'Totale prijs', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7894', 'nl', 'out_of_stock', 'Niet op voorraad', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7895', 'nl', 'refund', 'Terugbetaling', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7896', 'nl', 'share', 'Delen', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7897', 'nl', 'sold_by', 'Verkocht door', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7898', 'nl', 'customer_reviews', 'klanten-reviews', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7899', 'nl', 'top_selling_products', 'Best verkopende producten', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7900', 'nl', 'description', 'Omschrijving', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7901', 'nl', 'video', 'Video', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7902', 'nl', 'reviews', 'Beoordelingen', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7903', 'nl', 'download', 'Downloaden', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7904', 'nl', 'there_have_been_no_reviews_for_this_product_yet', 'Er zijn nog geen recensies voor dit product.', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7905', 'nl', 'related_products', 'Gerelateerde producten', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7906', 'nl', 'any_query_about_this_product', 'Elke vraag over dit product', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7907', 'nl', 'product_name', 'productnaam', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7908', 'nl', 'your_question', 'Uw vraag', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7909', 'nl', 'send', 'Sturen', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7910', 'nl', 'use_country_code_before_number', 'Gebruik landcode voor nummer', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7911', 'nl', 'remember_me', 'Onthoud me', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7912', 'nl', 'dont_have_an_account', 'Nog geen account?', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7913', 'nl', 'register_now', 'Registreer nu', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7914', 'nl', 'or_login_with', 'Of log in met', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7915', 'nl', 'oops', 'oeps ..', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7916', 'nl', 'this_item_is_out_of_stock', 'Dit product is niet meer op voorraad!', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7917', 'nl', 'back_to_shopping', 'Terug naar winkelen', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7918', 'nl', 'login_to_your_account', 'Log in op jouw account.', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7919', 'nl', 'purchase_history', 'Aankoop geschiedenis', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7920', 'nl', 'new', 'Nieuw', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7921', 'nl', 'downloads', 'Downloads', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7922', 'nl', 'sent_refund_request', 'Verzonden restitutieverzoek', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7923', 'nl', 'product_bulk_upload', 'Bulkupload van producten', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7924', 'nl', 'orders', 'Bestellingen', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7925', 'nl', 'recieved_refund_request', 'Terugbetalingsverzoek ontvangen', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7926', 'nl', 'shop_setting', 'Winkel instelling', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7927', 'nl', 'payment_history', 'Betaalgeschiedenis', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7928', 'nl', 'money_withdraw', 'Geld opnemen', '2021-02-09 12:41:58', '2021-09-20 12:59:30'),
('7929', 'nl', 'conversations', 'Gesprekken', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7930', 'nl', 'my_wallet', 'Mijn portemonnee', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7931', 'nl', 'earning_points', 'Punten verdienen', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7932', 'nl', 'support_ticket', 'Ondersteuningsticket', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7933', 'nl', 'manage_profile', 'Beheer profiel', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7934', 'nl', 'sold_amount', 'Verkocht bedrag', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7935', 'nl', 'your_sold_amount_current_month', 'Uw verkochte bedrag (huidige maand)', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7936', 'nl', 'total_sold', 'Totaal verkocht', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7937', 'nl', 'last_month_sold', 'Afgelopen maand verkocht', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7938', 'nl', 'total_sale', 'Totale verkoop', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7939', 'nl', 'total_earnings', 'Totale winst', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7940', 'nl', 'successful_orders', 'Succesvolle bestellingen', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7941', 'nl', 'total_orders', 'Totaal aantal bestellingen', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7942', 'nl', 'pending_orders', 'Openstaande bestellingen', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7943', 'nl', 'cancelled_orders', 'Geannuleerde bestellingen', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7944', 'nl', 'product', 'Product', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7945', 'nl', 'purchased_package', 'Gekocht pakket', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7946', 'nl', 'package_not_found', 'Pakket niet gevonden', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7947', 'nl', 'upgrade_package', 'Upgrade-pakket', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7948', 'nl', 'shop', 'Winkel', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7949', 'nl', 'manage__organize_your_shop', 'Beheer en organiseer uw winkel', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7950', 'nl', 'go_to_setting', 'Ga naar instelling', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7951', 'nl', 'payment', 'Betaling', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7952', 'nl', 'configure_your_payment_method', 'Configureer uw betalingsmethode', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7953', 'nl', 'my_panel', 'Mijn paneel', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7954', 'nl', 'item_has_been_added_to_wishlist', 'Artikel is toegevoegd aan de verlanglijst', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7955', 'nl', 'my_points', 'Mijn punten', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7956', 'nl', '_points', 'Punten', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7957', 'nl', 'wallet_money', 'Portemonnee geld', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7958', 'nl', 'exchange_rate', 'Wisselkoers', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7959', 'nl', 'point_earning_history', 'Punt verdienen geschiedenis', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7960', 'nl', 'date', 'Datum', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7961', 'nl', 'points', 'Punten', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7962', 'nl', 'converted', 'Geconverteerd', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7963', 'nl', 'action', 'Actie', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7964', 'nl', 'no_history_found', 'Geen geschiedenis gevonden.', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7965', 'nl', 'convert_has_been_done_successfully_check_your_wallets', 'Het omzetten is met succes voltooid Controleer uw portemonnee', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7966', 'nl', 'something_went_wrong', 'Er is iets fout gegaan', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7967', 'nl', 'remaining_uploads', 'Resterende uploads', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7968', 'nl', 'no_package_found', 'Geen pakket gevonden', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7969', 'nl', 'search_product', 'Zoek product', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7970', 'nl', 'name', 'Naam', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7971', 'nl', 'current_qty', 'Huidig ​​aantal', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7972', 'nl', 'base_price', 'Basisprijs', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7973', 'nl', 'published', 'Gepubliceerd', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7974', 'nl', 'featured', 'Uitgelicht', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7975', 'nl', 'options', 'Opties', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7976', 'nl', 'edit', 'Bewerk', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7977', 'nl', 'duplicate', 'Duplicaat', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7978', 'nl', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Download het skeletbestand en vul het met gegevens.', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7979', 'nl', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. U kunt het voorbeeldbestand downloaden om te begrijpen hoe de gegevens moeten worden ingevuld.', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7980', 'nl', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Zodra u het skeletbestand heeft gedownload en gevuld, upload het in het onderstaande formulier en verzend het.', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7981', 'nl', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Na het uploaden van producten moet u deze bewerken en productafbeeldingen en keuzes instellen.', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7982', 'nl', 'download_csv', 'Download CSV', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7983', 'nl', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Categorie, subcategorie, subsubcategorie en merk moeten in numerieke id\'s zijn.', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7984', 'nl', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. U kunt de pdf downloaden om de categorie, subcategorie, subsubcategorie en merk-ID op te halen.', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7985', 'nl', 'download_category', 'Download categorie', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7986', 'nl', 'download_sub_category', 'Download subcategorie', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7987', 'nl', 'download_sub_sub_category', 'Download de subsubcategorie', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7988', 'nl', 'download_brand', 'Download merk', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7989', 'nl', 'upload_csv_file', 'Upload CSV-bestand', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7990', 'nl', 'csv', 'CSV', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7991', 'nl', 'choose_csv_file', 'Kies CSV-bestand', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7992', 'nl', 'upload', 'Uploaden', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7993', 'nl', 'add_new_digital_product', 'Voeg een nieuw digitaal product toe', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7994', 'nl', 'available_status', 'Beschikbare status', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7995', 'nl', 'admin_status', 'Beheerdersstatus', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7996', 'nl', 'pending_balance', 'In afwachting van saldo', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7997', 'nl', 'send_withdraw_request', 'Verzend een intrekkingsverzoek', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7998', 'nl', 'withdraw_request_history', 'Verzoekhistorie intrekken', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('7999', 'nl', 'amount', 'Bedrag', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('8000', 'nl', 'status', 'Toestand', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('8001', 'nl', 'message', 'Bericht', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('8002', 'nl', 'send_a_withdraw_request', 'Stuur een uitbetalingsverzoek', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('8003', 'nl', 'basic_info', 'Basis informatie', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('8004', 'nl', 'your_phone', 'Jouw telefoon', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('8005', 'nl', 'photo', 'Foto', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('8006', 'nl', 'browse', 'Bladeren', '2021-02-09 12:41:59', '2021-09-20 12:59:30'),
('8007', 'nl', 'your_password', 'Je wachtwoord', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8008', 'nl', 'new_password', 'nieuw paswoord', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8009', 'nl', 'confirm_password', 'bevestig wachtwoord', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8010', 'nl', 'add_new_address', 'Nieuw adres toevoegen', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8011', 'nl', 'payment_setting', 'Betalingsinstelling', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8012', 'nl', 'cash_payment', 'Contante betaling', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8013', 'nl', 'bank_payment', 'Bankbetaling', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8014', 'nl', 'bank_name', 'Banknaam', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8015', 'nl', 'bank_account_name', 'Bank Account naam', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8016', 'nl', 'bank_account_number', 'Bankrekeningnummer', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8017', 'nl', 'bank_routing_number', 'Banknummer', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8018', 'nl', 'update_profile', 'Profiel bijwerken', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8019', 'nl', 'change_your_email', 'Wijzig uw e-mailadres', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8020', 'nl', 'your_email', 'Jouw email', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8021', 'nl', 'sending_email', 'Email verzenden...', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8022', 'nl', 'verify', 'Verifiëren', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8023', 'nl', 'update_email', 'E-mail bijwerken', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8024', 'nl', 'new_address', 'Nieuw adres', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8025', 'nl', 'your_address', 'Jouw adres', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8026', 'nl', 'country', 'Land', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8027', 'nl', 'select_your_country', 'Kies je land', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8028', 'nl', 'city', 'stad', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8029', 'nl', 'your_city', 'Jouw stad', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8030', 'nl', 'your_postal_code', 'Je post code', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8031', 'nl', '880', '+880', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8032', 'nl', 'save', 'Sparen', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8033', 'nl', 'received_refund_request', 'Restitutieverzoek ontvangen', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8034', 'nl', 'delete_confirmation', 'Bevestiging verwijderen', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8035', 'nl', 'are_you_sure_to_delete_this', 'Weet u zeker dat u dit wilt verwijderen?', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8036', 'nl', 'premium_packages_for_sellers', 'Premium-pakketten voor verkopers', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8037', 'nl', 'product_upload', 'Product uploaden', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8038', 'nl', 'digital_product_upload', 'Digitale productupload', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8039', 'nl', 'purchase_package', 'Aankooppakket', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8040', 'nl', 'select_payment_type', 'Selecteer betalingstype', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8041', 'nl', 'payment_type', 'Betalingswijze', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8042', 'nl', 'select_one', 'Kies een', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8043', 'nl', 'online_payment', 'Online betaling', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8044', 'nl', 'offline_payment', 'Offline betaling', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8045', 'nl', 'purchase_your_package', 'Koop uw pakket', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8046', 'nl', 'paypal', 'Paypal', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8047', 'nl', 'stripe', 'Streep', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8048', 'nl', 'sslcommerz', 'sslcommerz', '2021-02-09 12:42:00', '2021-02-09 12:42:00'),
('8049', 'nl', 'confirm', 'Bevestigen', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8050', 'nl', 'offline_package_payment', 'Offline pakketbetaling', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8051', 'nl', 'transaction_id', 'Transactie ID', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8052', 'nl', 'choose_image', 'Kies afbeelding', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8053', 'nl', 'code', 'Code', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8054', 'nl', 'delivery_status', 'Aflever status', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8055', 'nl', 'payment_status', 'Betalingsstatus', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8056', 'nl', 'paid', 'Betaald', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8057', 'nl', 'order_details', 'Bestel Details', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8058', 'nl', 'download_invoice', 'Factuur downloaden', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8059', 'nl', 'unpaid', 'Onbetaald', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8060', 'nl', 'order_placed', 'Bestelling geplaatst', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8061', 'nl', 'confirmed', 'Bevestigd', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8062', 'nl', 'on_delivery', 'Bij aflevering', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8063', 'nl', 'delivered', 'Geleverd', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8064', 'nl', 'order_summary', 'overzicht van de bestelling', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8065', 'nl', 'order_code', 'Bestelcode', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8066', 'nl', 'customer', 'Klant', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8067', 'nl', 'total_order_amount', 'Totaal orderbedrag', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8068', 'nl', 'shipping_metdod', 'Verzending metdod', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8069', 'nl', 'flat_shipping_rate', 'Vaste vervoerskosten', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8070', 'nl', 'payment_metdod', 'Betaling metdod', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8071', 'nl', 'variation', 'Variatie', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8072', 'nl', 'delivery_type', 'Soort levering', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8073', 'nl', 'home_delivery', 'Levering aan huis', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8074', 'nl', 'order_ammount', 'Bestelbedrag', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8075', 'nl', 'subtotal', 'Subtotaal', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8076', 'nl', 'shipping', 'Verzenden', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8077', 'nl', 'coupon_discount', 'Kortingsbon', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8078', 'nl', 'na', 'Nvt', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8079', 'nl', 'in_stock', 'Op voorraad', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8080', 'nl', 'buy_now', 'Nu kopen', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8081', 'nl', 'item_added_to_your_cart', 'Artikel toegevoegd aan uw winkelwagen!', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8082', 'nl', 'proceed_to_checkout', 'Ga naar de kassa', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8083', 'nl', 'cart_items', 'Winkelwagen Artikelen', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8084', 'nl', '1_my_cart', '1. Mijn winkelwagen', '2021-02-09 12:42:00', '2021-09-20 12:59:31'),
('8085', 'nl', 'view_cart', 'Bekijk winkelwagen', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8086', 'nl', '2_shipping_info', '2. Verzendinformatie', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8087', 'nl', 'checkout', 'Uitchecken', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8088', 'nl', '3_delivery_info', '3. Afleverinformatie', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8089', 'nl', '4_payment', '4. Betaling', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8090', 'nl', '5_confirmation', '5. Bevestiging', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8091', 'nl', 'remove', 'Verwijderen', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8092', 'nl', 'return_to_shop', 'Ga terug naar de winkel', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8093', 'nl', 'continue_to_shipping', 'Ga verder naar Verzenden', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8094', 'nl', 'or', 'Of', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8095', 'nl', 'guest_checkout', 'Afrekenen als gast', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8096', 'nl', 'continue_to_delivery_info', 'Ga verder naar Afleverinformatie', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8097', 'nl', 'postal_code', 'Postcode', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8098', 'nl', 'choose_delivery_type', 'Kies Leveringstype', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8099', 'nl', 'local_pickup', 'Lokale ophaalservice', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8100', 'nl', 'select_your_nearest_pickup_point', 'Selecteer je dichtstbijzijnde ophaalpunt', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8101', 'nl', 'continue_to_payment', 'Ga verder met betalen', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8102', 'nl', 'select_a_payment_option', 'Selecteer een betalingsoptie', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8103', 'nl', 'razorpay', 'Razorpay', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8104', 'nl', 'paystack', 'Paystack', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8105', 'nl', 'voguepay', 'VoguePay', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8106', 'nl', 'payhere', 'betaal hier', '2021-02-09 12:42:01', '2021-02-09 12:42:01'),
('8107', 'nl', 'ngenius', 'ngenius', '2021-02-09 12:42:01', '2021-02-09 12:42:01'),
('8108', 'nl', 'paytm', 'Paytm', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8109', 'nl', 'cash_on_delivery', 'Onder rembours', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8110', 'nl', 'your_wallet_balance_', 'Uw portemonnee-saldo:', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8111', 'nl', 'insufficient_balance', 'Onvoldoende balans', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8112', 'nl', 'i_agree_to_the', 'Ik ga akkoord met de', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8113', 'nl', 'complete_order', 'Maak bestelling af', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8114', 'nl', 'summary', 'Samenvatting', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8115', 'nl', 'items', 'Artikelen', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8116', 'nl', 'total_club_point', 'Totaal clubpunt', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8117', 'nl', 'total_shipping', 'Totale verzending', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8118', 'nl', 'have_coupon_code_enter_here', 'Heeft u een kortingscode? Kom hier binnen', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8119', 'nl', 'apply', 'Van toepassing zijn', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8120', 'nl', 'you_need_to_agree_with_our_policies', 'U moet akkoord gaan met ons beleid', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8121', 'nl', 'forgot_password', 'Wachtwoord vergeten', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8122', 'nl', 'seo_setting', 'SEO-instelling', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8123', 'nl', 'system_update', 'Systeem update', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8124', 'nl', 'add_new_payment_method', 'Voeg een nieuwe betaalmethode toe', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8125', 'nl', 'manual_payment_method', 'Handmatige betalingsmethode', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8126', 'nl', 'heading', 'Rubriek', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8127', 'nl', 'logo', 'Logo', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8128', 'nl', 'manual_payment_information', 'Handmatige betalingsinformatie', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8129', 'nl', 'type', 'Type', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8130', 'nl', 'custom_payment', 'Aangepaste betaling', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8131', 'nl', 'check_payment', 'Controleer de betaling', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8132', 'nl', 'checkout_thumbnail', 'Afrekenen Thumbnail', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8133', 'nl', 'payment_instruction', 'Betalings instructie', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8134', 'nl', 'bank_information', 'Bank informatie', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8135', 'nl', 'select_file', 'Selecteer bestand', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8136', 'nl', 'upload_new', 'Nieuw uploaden', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8137', 'nl', 'sort_by_newest', 'Sorteer op nieuwste', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8138', 'nl', 'sort_by_oldest', 'Sorteer op oudste', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8139', 'nl', 'sort_by_smallest', 'Sorteer op kleinste', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8140', 'nl', 'sort_by_largest', 'Sorteer op grootste', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8141', 'nl', 'selected_only', 'Alleen geselecteerd', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8142', 'nl', 'no_files_found', 'Geen bestanden gevonden', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8143', 'nl', '0_file_selected', '0 Bestand geselecteerd', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8144', 'nl', 'clear', 'Doorzichtig', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8145', 'nl', 'prev', 'Vorige', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8146', 'nl', 'next', 'De volgende', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8147', 'nl', 'add_files', 'Bestanden toevoegen', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8148', 'nl', 'method_has_been_inserted_successfully', 'De methode is met succes ingevoegd', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8149', 'nl', 'order_date', 'Besteldatum', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8150', 'nl', 'bill_to', 'Rekening naar', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8151', 'nl', 'sub_total', 'Subtotaal', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8152', 'nl', 'total_tax', 'Totale belasting', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8153', 'nl', 'grand_total', 'Eindtotaal', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8154', 'nl', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Uw bestelling is succesvol geplaatst. Geef betalingsinformatie op vanuit de aankoopgeschiedenis', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8155', 'nl', 'thank_you_for_your_order', 'Bedankt voor je bestelling!', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8156', 'nl', 'order_code', 'Bestelcode:', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8157', 'nl', 'a_copy_or_your_order_summary_has_been_sent_to', 'Er is een kopie van uw bestellingsoverzicht verzonden naar', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8158', 'nl', 'make_payment', 'Betaling maken', '2021-02-09 12:42:01', '2021-09-20 12:59:31'),
('8159', 'nl', 'payment_screenshot', 'Schermafbeelding van betaling', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8160', 'nl', 'paypal_credential', 'Paypal-inloggegevens', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8161', 'nl', 'paypal_client_id', 'Paypal Client-ID', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8162', 'nl', 'paypal_client_secret', 'Paypal Client Geheim', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8163', 'nl', 'paypal_sandbox_mode', 'Paypal Sandbox-modus', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8164', 'nl', 'sslcommerz_credential', 'Sslcommerz-inloggegevens', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8165', 'nl', 'sslcz_store_id', 'Sslcz-winkel-id', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8166', 'nl', 'sslcz_store_password', 'Sslcz Store-wachtwoord', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8167', 'nl', 'sslcommerz_sandbox_mode', 'Sslcommerz Sandbox-modus', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8168', 'nl', 'stripe_credential', 'Stripe-legitimatie', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8169', 'nl', 'stripe_key', 'STREEP SLEUTEL', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8170', 'nl', 'stripe_secret', 'STREEP GEHEIM', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8171', 'nl', 'razorpay_credential', 'RazorPay-inloggegevens', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8172', 'nl', 'razor_key', 'RAZOR SLEUTEL', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8173', 'nl', 'razor_secret', 'SCHEERGEHEIM', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8174', 'nl', 'instamojo_credential', 'Instamojo-legitimatie', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8175', 'nl', 'api_key', 'API SLEUTEL', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8176', 'nl', 'im_api_key', 'IM API-SLEUTEL', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8177', 'nl', 'auth_token', 'AUTH TOKEN', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8178', 'nl', 'im_auth_token', 'IM AUTH TOKEN', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8179', 'nl', 'instamojo_sandbox_mode', 'Instamojo Sandbox-modus', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8180', 'nl', 'paystack_credential', 'PayStack-inloggegevens', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8181', 'nl', 'public_key', 'PUBLIEKE SLEUTEL', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8182', 'nl', 'secret_key', 'GEHEIME SLEUTEL', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8183', 'nl', 'merchant_email', 'E-MAIL VAN DE HANDELAAR', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8184', 'nl', 'voguepay_credential', 'VoguePay-inloggegevens', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8185', 'nl', 'merchant_id', 'HANDELAAR ID', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8186', 'nl', 'sandbox_mode', 'Sandbox-modus', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8187', 'nl', 'payhere_credential', 'Payhere-inloggegevens', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8188', 'nl', 'payhere_merchant_id', 'PAYHERE MERCHANT ID', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8189', 'nl', 'payhere_secret', 'PAYHERE SECRET', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8190', 'nl', 'payhere_currency', 'PAYHERE VALUTA', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8191', 'nl', 'payhere_sandbox_mode', 'Payhere Sandbox-modus', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8192', 'nl', 'ngenius_credential', 'Ngenius Credential', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8193', 'nl', 'ngenius_outlet_id', 'NGENIUS OUTLET ID', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8194', 'nl', 'ngenius_api_key', 'NGENIUS API-SLEUTEL', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8195', 'nl', 'ngenius_currency', 'NGENIUS VALUTA', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8196', 'nl', 'mpesa_credential', 'Mpesa-referentie', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8197', 'nl', 'mpesa_consumer_key', 'MPESA CONSUMENTENSLEUTEL', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8198', 'nl', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8199', 'nl', 'mpesa_consumer_secret', 'MPESA CONSUMENT SECRET', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8200', 'nl', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8201', 'nl', 'mpesa_short_code', 'MPESA KORTE CODE', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8202', 'nl', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8203', 'nl', 'mpesa_sandbox_activation', 'MPESA-ZANDBAK ACTIVERING', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8204', 'nl', 'flutterwave_credential', 'Flutterwave-referentie', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8205', 'nl', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8206', 'nl', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8207', 'nl', 'rave_title', 'RAVE_TITLE', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8208', 'nl', 'stagin_activation', 'STAGIN-ACTIVERING', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8209', 'nl', 'all_product', 'Alle producten', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8210', 'nl', 'sort_by', 'Sorteer op', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8211', 'nl', 'rating_high__low', 'Beoordeling (hoog> laag)', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8212', 'nl', 'rating_low__high', 'Beoordeling (laag> hoog)', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8213', 'nl', 'num_of_sale_high__low', 'Aantal verkoop (hoog> laag)', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8214', 'nl', 'num_of_sale_low__high', 'Aantal verkoop (laag> hoog)', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8215', 'nl', 'base_price_high__low', 'Basisprijs (hoog> laag)', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8216', 'nl', 'base_price_low__high', 'Basisprijs (laag> hoog)', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8217', 'nl', 'type__enter', 'Typ & Enter', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8218', 'nl', 'added_by', 'Toegevoegd door', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8219', 'nl', 'num_of_sale', 'Aantal verkoop', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8220', 'nl', 'total_stock', 'Totale voorraad', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8221', 'nl', 'todays_deal', 'De deal van vandaag', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8222', 'nl', 'rating', 'Beoordeling', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8223', 'nl', 'times', 'keer', '2021-02-09 12:42:02', '2021-02-09 12:42:02'),
('8224', 'nl', 'add_nerw_product', 'Voeg Nerw-product toe', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8225', 'nl', 'product_information', 'Productinformatie', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8226', 'nl', 'unit', 'Eenheid', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8227', 'nl', 'unit_eg_kg_pc_etc', 'Eenheid (bijv. KG, Pc enz.)', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8228', 'nl', 'minimum_qty', 'Minimum aantal', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8229', 'nl', 'tags', 'Tags', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8230', 'nl', 'type_and_hit_enter_to_add_a_tag', 'Typ en druk op enter om een ​​tag toe te voegen', '2021-02-09 12:42:02', '2021-09-20 12:59:31'),
('8231', 'nl', 'barcode', 'Streepjescode', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8232', 'nl', 'refundable', 'Restitutie mogelijk', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8233', 'nl', 'product_images', 'Productafbeeldingen', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8234', 'nl', 'gallery_images', 'Galerij afbeeldingen', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8235', 'nl', 'todays_deal_updated_successfully', 'De deal van vandaag is succesvol bijgewerkt', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8236', 'nl', 'published_products_updated_successfully', 'Gepubliceerde producten zijn bijgewerkt', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8237', 'nl', 'thumbnail_image', 'Miniatuurafbeelding', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8238', 'nl', 'featured_products_updated_successfully', 'Uitgelichte producten zijn bijgewerkt', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8239', 'nl', 'product_videos', 'Productvideo\'s', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8240', 'nl', 'video_provider', 'Videoprovider', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8241', 'nl', 'youtube', 'Youtube', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8242', 'nl', 'dailymotion', 'Dailymotion', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8243', 'nl', 'vimeo', 'Vimeo', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8244', 'nl', 'video_link', 'Video link', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8245', 'nl', 'product_variation', 'Productvariatie', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8246', 'nl', 'colors', 'Kleuren', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8247', 'nl', 'attributes', 'Attributen', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8248', 'nl', 'choose_attributes', 'Kies kenmerken', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8249', 'nl', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Kies de kenmerken van dit product en voer vervolgens de waarden van elk kenmerk in', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8250', 'nl', 'product_price__stock', 'Productprijs + voorraad', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8251', 'nl', 'unit_price', 'Eenheid prijs', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8252', 'nl', 'purchase_price', 'Aankoopprijs', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8253', 'nl', 'flat', 'Vlak', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8254', 'nl', 'percent', 'Procent', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8255', 'nl', 'discount', 'Korting', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8256', 'nl', 'product_description', 'Productomschrijving', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8257', 'nl', 'product_shipping_cost', 'Product verzendkosten', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8258', 'nl', 'free_shipping', 'Gratis verzending', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8259', 'nl', 'flat_rate', 'Vast bedrag', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8260', 'nl', 'shipping_cost', 'Transportkosten', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8261', 'nl', 'pdf_specification', 'PDF-specificatie', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8262', 'nl', 'seo_meta_tags', 'SEO-metatags', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8263', 'nl', 'meta_title', 'Metatitel', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8264', 'nl', 'meta_image', 'Meta afbeelding', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8265', 'nl', 'choice_title', 'Keuze titel', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8266', 'nl', 'enter_choice_values', 'Voer keuzewaarden in', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8267', 'nl', 'all_categories', 'Alle categorieën', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8268', 'nl', 'add_new_category', 'Voeg een nieuwe categorie toe', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8269', 'nl', 'type_name__enter', 'Typ naam en voer in', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8270', 'nl', 'banner', 'Banner', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8271', 'nl', 'commission', 'Commissie', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8272', 'nl', 'icon', 'icoon', '2021-02-09 12:42:03', '2021-02-09 12:42:03'),
('8273', 'nl', 'featured_categories_updated_successfully', 'Uitgelichte categorieën zijn bijgewerkt', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8274', 'nl', 'hot', 'Heet', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8275', 'nl', 'filter_by_payment_status', 'Filter op betalingsstatus', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8276', 'nl', 'unpaid', 'Onbetaald', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8277', 'nl', 'filter_by_deliver_status', 'Filteren op bezorgstatus', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8278', 'nl', 'pending', 'In afwachting', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8279', 'nl', 'type_order_code__hit_enter', 'Typ Bestelcode en druk op Enter', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8280', 'nl', 'num_of_products', 'Num. van producten', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8281', 'nl', 'walk_in_customer', 'Loop in klant', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8282', 'nl', 'qty', 'AANTAL', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8283', 'nl', 'without_shipping_charge', 'Zonder verzendkosten', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8284', 'nl', 'with_shipping_charge', 'Met verzendkosten', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8285', 'nl', 'pay_with_cash', 'Betaal contant', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8286', 'nl', 'shipping_address', 'afleveradres', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8287', 'nl', 'close', 'Dichtbij', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8288', 'nl', 'select_country', 'Selecteer land', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8289', 'nl', 'order_confirmation', 'Order bevestiging', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8290', 'nl', 'are_you_sure_to_confirm_this_order', 'Weet u zeker dat u deze bestelling bevestigt?', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8291', 'nl', 'comfirm_order', 'Bevestig bestelling', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8292', 'nl', 'personal_info', 'Persoonlijke informatie', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8293', 'nl', 'repeat_password', 'Herhaal wachtwoord', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8294', 'nl', 'shop_name', 'Winkel naam', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8295', 'nl', 'register_your_shop', 'Registreer uw winkel', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8296', 'nl', 'affiliate_informations', 'Aangesloten informatie', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8297', 'nl', 'affiliate', 'Aangesloten', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8298', 'nl', 'user_info', 'gebruikers informatie', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8299', 'nl', 'installed_addon', 'Geïnstalleerde add-on', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8300', 'nl', 'available_addon', 'Beschikbare add-on', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8301', 'nl', 'install_new_addon', 'Installeer een nieuwe add-on', '2021-02-09 12:42:03', '2021-09-20 12:59:31'),
('8302', 'nl', 'version', 'Versie', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8303', 'nl', 'activated', 'Geactiveerd', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8304', 'nl', 'deactivated', 'Gedeactiveerd', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8305', 'nl', 'activate_otp', 'Activeer OTP', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8306', 'nl', 'otp_will_be_used_for', 'OTP wordt gebruikt voor', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8307', 'nl', 'settings_updated_successfully', 'Instellingen zijn bijgewerkt', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8308', 'nl', 'product_owner', 'Product eigenaar', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8309', 'nl', 'point', 'Punt', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8310', 'nl', 'set_point_for_product_within_a_range', 'Instelpunt voor product binnen een bereik', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8311', 'nl', 'set_point_for_multiple_products', 'Instelpunt voor meerdere producten', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8312', 'nl', 'min_price', 'Min. Prijs', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8313', 'nl', 'max_price', 'Max prijs', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8314', 'nl', 'set_point_for_all_products', 'Instelpunt voor alle producten', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8315', 'nl', 'set_point_for_', 'Instelpunt voor', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8316', 'nl', 'convert_status', 'Converteren Status', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8317', 'nl', 'earned_at', 'Verdiend bij', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8318', 'nl', 'seller_based_selling_report', 'Verkopers gebaseerd verkooprapport', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8319', 'nl', 'sort_by_verificarion_status', 'Sorteer op verificarion status', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8320', 'nl', 'approved', 'Goedgekeurd', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8321', 'nl', 'non_approved', 'Niet goedgekeurd', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8322', 'nl', 'filter', 'Filter', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8323', 'nl', 'seller_name', 'Naam van de verkoper', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8324', 'nl', 'number_of_product_sale', 'Aantal verkochte producten', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8325', 'nl', 'order_amount', 'Bestelbedrag', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8326', 'nl', 'facebook_chat_setting', 'Facebook Chat-instelling', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8327', 'nl', 'facebook_page_id', 'Facebook-pagina-ID', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8328', 'nl', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Wees voorzichtig wanneer u Facebook-chat configureert. Bij een onjuiste configuratie krijgt u geen messenger-pictogram op uw gebruikerssite.', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8329', 'nl', 'login_into_your_facebook_page', 'Log in op uw Facebook-pagina', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8330', 'nl', 'find_the_about_option_of_your_facebook_page', 'Zoek de Over-optie van uw Facebook-pagina', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8331', 'nl', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'Helemaal onderaan vindt u de \\ \"Facebook-pagina-ID \\\"', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8332', 'nl', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Ga naar de instellingen van uw pagina en zoek de optie \\ \"Advance Messaging \\\"', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8333', 'nl', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Scroll naar beneden op die pagina en je krijgt \\ \"wit vermeld domein \\\"', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8334', 'nl', 'set_your_website_domain_name', 'Stel de domeinnaam van uw website in', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8335', 'nl', 'google_recaptcha_setting', 'Google reCAPTCHA-instelling', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8336', 'nl', 'site_key', 'Site KEY', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8337', 'nl', 'select_shipping_method', 'selecteer verzendmethode', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8338', 'nl', 'product_wise_shipping_cost', 'Product verstandige verzendkosten', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8339', 'nl', 'flat_rate_shipping_cost', 'Forfaitaire verzendkosten', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8340', 'nl', 'seller_wise_flat_shipping_cost', 'Verkoper verstandige platte verzendkosten', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8341', 'nl', 'note', 'Opmerking', '2021-02-09 12:42:04', '2021-09-20 12:59:31'),
('8342', 'nl', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Berekening van product verstandige verzendkosten: De verzendkosten worden berekend door de verzendkosten van elk product op te tellen', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8343', 'nl', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Berekening van vaste verzendkosten: hoeveel producten een klant koopt, maakt niet uit. De verzendkosten zijn vast', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8344', 'nl', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Berekening van verstandige vaste verzendkosten van verkoper: vast tarief voor elke verkoper. Als een klant 2 producten van twee verkopers koopt, worden de verzendkosten berekend door toevoeging van de vaste verzendkosten van elke verkoper', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8345', 'nl', 'flat_rate_cost', 'Forfaitaire kosten', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8346', 'nl', 'shipping_cost_for_admin_products', 'Verzendkosten voor beheerproducten', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8347', 'nl', 'countries', 'Landen', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8348', 'nl', 'showhide', 'Laten zien verbergen', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8349', 'nl', 'country_status_updated_successfully', 'Landstatus is succesvol bijgewerkt', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8350', 'nl', 'all_subcategories', 'Alle subcategorieën', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8351', 'nl', 'add_new_subcategory', 'Nieuwe subcategorie toevoegen', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8352', 'nl', 'subcategories', 'Subcategorieën', '2021-02-09 12:42:04', '2021-09-20 12:59:32'),
('8353', 'nl', 'sub_category_information', 'Subcategorie-informatie', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8354', 'nl', 'slug', 'Naaktslak', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8355', 'nl', 'all_sub_subcategories', 'Alle subsubcategorieën', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8356', 'nl', 'add_new_sub_subcategory', 'Nieuwe subsubcategorie toevoegen', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8357', 'nl', 'subsubcategories', 'Sub-subcategorieën', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8358', 'nl', 'make_this_default', 'Maak dit standaard', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8359', 'nl', 'shops', 'Winkels', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8360', 'nl', 'women_clothing__fashion', 'Dameskleding en mode', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8361', 'nl', 'cellphones__tabs', 'Mobiele telefoons en tabbladen', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8362', 'nl', 'welcome_to', 'Welkom bij', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8363', 'nl', 'create_a_new_account', 'Maak een nieuw account aan', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8364', 'nl', 'full_name', 'Voor-en achternaam', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8365', 'nl', 'password', 'wachtwoord', '2021-02-09 12:42:35', '2021-02-09 12:42:35'),
('8366', 'nl', 'confrim_password', 'Wachtwoord bevestigen', '2021-02-09 12:42:35', '2021-09-20 12:59:32'),
('8367', 'nl', 'i_agree_with_the', 'Ik ben het eens met de', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8368', 'nl', 'terms_and_conditions', 'Voorwaarden', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8369', 'nl', 'register', 'Registreren', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8370', 'nl', 'already_have_an_account', 'U heeft al een account', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8371', 'nl', 'sign_up_with', 'Meld je aan met', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8372', 'nl', 'i_agree_with_the_terms_and_conditions', 'Ik ga akkoord met de algemene voorwaarden', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8373', 'nl', 'all_role', 'Alle rollen', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8374', 'nl', 'add_new_role', 'Nieuwe rol toevoegen', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8375', 'nl', 'roles', 'Rollen', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8376', 'nl', 'add_new_staffs', 'Voeg nieuwe staven toe', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8377', 'nl', 'role', 'Rol', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8378', 'nl', 'frontend_website_name', 'Frontend website naam', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8379', 'nl', 'website_name', 'website naam', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8380', 'nl', 'site_motto', 'Motto van de site', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8381', 'nl', 'best_ecommerce_website', 'Beste eCommerce-website', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8382', 'nl', 'site_icon', 'Site Icoon', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8383', 'nl', 'website_favicon_32x32_png', 'Website favicon. 32x32 .png', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8384', 'nl', 'website_base_color', 'Website Basiskleur', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8385', 'nl', 'hex_color_code', 'Hex kleurcode', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8386', 'nl', 'website_base_hover_color', 'Website Base Hover Color', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8387', 'nl', 'update', 'Bijwerken', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8388', 'nl', 'global_seo', 'Wereldwijde SEO', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8389', 'nl', 'meta_description', 'Meta omschrijving', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8390', 'nl', 'keywords', 'Sleutelwoorden', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8391', 'nl', 'separate_with_coma', 'Scheid met coma', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8392', 'nl', 'website_pages', 'Website-pagina\'s', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8393', 'nl', 'all_pages', 'Alle pagina\'s', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8394', 'nl', 'add_new_page', 'Nieuwe pagina toevoegen', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8395', 'nl', 'url', 'URL', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8396', 'nl', 'actions', 'Acties', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8397', 'nl', 'edit_page_information', 'Pagina-informatie bewerken', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8398', 'nl', 'page_content', 'Pagina inhoud', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8399', 'nl', 'title', 'Titel', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8400', 'nl', 'link', 'Koppeling', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8401', 'nl', 'use_character_number_hypen_only', 'Gebruik alleen tekens, cijfers en koppeltekens', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8402', 'nl', 'add_content', 'Content toevoegen', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8403', 'nl', 'seo_fields', 'SEO-velden', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8404', 'nl', 'update_page', 'Update pagina', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8405', 'nl', 'default_language', 'Standaard taal', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8406', 'nl', 'add_new_language', 'Nieuwe taal toevoegen', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8407', 'nl', 'rtl', 'RTL', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8408', 'nl', 'translation', 'Vertaling', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8409', 'nl', 'language_information', 'Taalinformatie', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8410', 'nl', 'save_page', 'Sla pagina op', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8411', 'nl', 'home_page_settings', 'Startpagina-instellingen', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8412', 'nl', 'home_slider', 'Home-schuifregelaar', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8413', 'nl', 'photos__links', 'Foto\'s en links', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8414', 'nl', 'add_new', 'Nieuw toevoegen', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8415', 'nl', 'home_categories', 'Home Categorieën', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8416', 'nl', 'home_banner_1_max_3', 'Home Banner 1 (Max 3)', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8417', 'nl', 'banner__links', 'Banner en links', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8418', 'nl', 'home_banner_2_max_3', 'Home Banner 2 (Max 3)', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8419', 'nl', 'top_10', 'Top 10', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8420', 'nl', 'top_categories_max_10', 'Topcategorieën (max. 10)', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8421', 'nl', 'top_brands_max_10', 'Topmerken (max 10)', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8422', 'nl', 'system_name', 'Systeemnaam', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8423', 'nl', 'system_logo__white', 'Systeemlogo - Wit', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8424', 'nl', 'choose_files', 'Kies documenten', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8425', 'nl', 'will_be_used_in_admin_panel_side_menu', 'Wordt gebruikt in het zijmenu van het admin-paneel', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8426', 'nl', 'system_logo__black', 'Systeemlogo - Zwart', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8427', 'nl', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Wordt gebruikt in de bovenbalk van het admin-paneel op de mobiele + Admin-inlogpagina', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8428', 'nl', 'system_timezone', 'Systeemtijdzone', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8429', 'nl', 'admin_login_page_background', 'Admin login pagina achtergrond', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8430', 'nl', 'website_header', 'Website Header', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8431', 'nl', 'header_setting', 'Header-instelling', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8432', 'nl', 'header_logo', 'Header logo', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8433', 'nl', 'show_language_switcher', 'Taalwisselaar weergeven?', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8434', 'nl', 'show_currency_switcher', 'Valutawisselaar weergeven?', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8435', 'nl', 'enable_stikcy_header', 'Stikcy-koptekst inschakelen?', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8436', 'nl', 'website_footer', 'Voettekst website', '2021-02-09 12:42:36', '2021-09-20 12:59:32'),
('8437', 'nl', 'footer_widget', 'Voettekst Widget', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8438', 'nl', 'about_widget', 'Over Widget', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8439', 'nl', 'footer_logo', 'Voettekst Logo', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8440', 'nl', 'about_description', 'Over beschrijving', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8441', 'nl', 'contact_info_widget', 'Contactinformatie Widget', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8442', 'nl', 'footer_contact_address', 'Voettekst contactadres', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8443', 'nl', 'footer_contact_phone', 'Voettekst telefoonnummer', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8444', 'nl', 'footer_contact_email', 'Voettekst contact e-mailadres', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8445', 'nl', 'link_widget_one', 'Link Widget One', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8446', 'nl', 'links', 'Links', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8447', 'nl', 'footer_bottom', 'Voettekst onderaan', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8448', 'nl', 'copyright_widget_', 'Widget voor auteursrechten', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8449', 'nl', 'copyright_text', 'Copyright-tekst', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8450', 'nl', 'social_link_widget_', 'Widget voor sociale links', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8451', 'nl', 'show_social_links', 'Sociale links weergeven?', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8452', 'nl', 'social_links', 'Sociale links', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8453', 'nl', 'payment_methods_widget_', 'Widget voor betalingsmethoden', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8454', 'nl', 'rtl_status_updated_successfully', 'RTL-status succesvol bijgewerkt', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8455', 'nl', 'language_changed_to_', 'Taal veranderd in', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8456', 'nl', 'inhouse_product_sale_report', 'Verkooprapport voor eigen producten', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8457', 'nl', 'sort_by_category', 'Sorteer op categorie', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8458', 'nl', 'product_wise_stock_report', 'Productgewijs voorraadrapport', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8459', 'nl', 'currency_changed_to_', 'Valuta gewijzigd in', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8460', 'nl', 'avatar', 'Avatar', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8461', 'nl', 'copy', 'Kopiëren', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8462', 'nl', 'variant', 'Variant', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8463', 'nl', 'variant_price', 'Variantprijs', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8464', 'nl', 'sku', 'SKU', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8465', 'nl', 'key', 'Sleutel', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8466', 'nl', 'value', 'Waarde', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8467', 'nl', 'copy_translations', 'Kopieer vertalingen', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8468', 'nl', 'all_pickup_points', 'Alle ophaalpunten', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8469', 'nl', 'add_new_pickup_point', 'Nieuw afhaalpunt toevoegen', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8470', 'nl', 'manager', 'Manager', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8471', 'nl', 'location', 'Plaats', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8472', 'nl', 'pickup_station_contact', 'Ophaalstation Contact', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8473', 'nl', 'open', 'Open', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8474', 'nl', 'pos_activation_for_seller', 'POS-activering voor verkoper', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8475', 'nl', 'order_completed_successfully', 'Bestelling met succes voltooid.', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8476', 'nl', 'text_input', 'Tekst invoer', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8477', 'nl', 'select', 'Selecteer', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8478', 'nl', 'multiple_select', 'Meerdere selecteren', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8479', 'nl', 'radio', 'Radio', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8480', 'nl', 'file', 'het dossier', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8481', 'nl', 'email_address', 'E-mailadres', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8482', 'nl', 'verification_info', 'Verificatie-informatie', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8483', 'nl', 'approval', 'Goedkeuring', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8484', 'nl', 'due_amount', 'Te betalen bedrag', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8485', 'nl', 'show', 'Tonen', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8486', 'nl', 'pay_now', 'Nu betalen', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8487', 'nl', 'affiliate_user_verification', 'Verificatie van aangesloten gebruikers', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8488', 'nl', 'reject', 'Weigeren', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8489', 'nl', 'accept', 'Aanvaarden', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8490', 'nl', 'beauty_health__hair', 'Schoonheid, gezondheid en haar', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8491', 'nl', 'comparison', 'Vergelijking', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8492', 'nl', 'reset_compare_list', 'Reset vergelijkingslijst', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8493', 'nl', 'your_comparison_list_is_empty', 'Uw vergelijkingslijst is leeg', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8494', 'nl', 'convert_point_to_wallet', 'Converteer punt naar portemonnee', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8495', 'nl', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Opmerking: u moet eerst de portemonnee-optie activeren voordat u de clubpunt-add-on gebruikt.', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8496', 'nl', 'create_an_account', 'Account aanmaken.', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8497', 'nl', 'use_email_instead', 'Gebruik in plaats daarvan e-mail', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8498', 'nl', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Door je aan te melden ga je akkoord met onze algemene voorwaarden.', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8499', 'nl', 'create_account', 'Account aanmaken', '2021-02-09 12:42:37', '2021-09-20 12:59:32'),
('8500', 'nl', 'or_join_with', 'Of doe mee met', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8501', 'nl', 'already_have_an_account', 'Heb je al een account?', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8502', 'nl', 'log_in', 'Log in', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8503', 'nl', 'computer__accessories', 'Computer accessoires', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8504', 'nl', 'products', 'Product (en)', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8505', 'nl', 'in_your_cart', 'in uw winkelwagen', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8506', 'nl', 'in_your_wishlist', 'in je verlanglijst', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8507', 'nl', 'you_ordered', 'u bestelde', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8508', 'nl', 'default_shipping_address', 'Standaard verzendadres', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8509', 'nl', 'sports__outdoor', 'Sport en buiten', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8510', 'nl', 'copied', 'Gekopieerd', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8511', 'nl', 'copy_the_promote_link', 'Kopieer de bevorderingslink', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8512', 'nl', 'write_a_review', 'Schrijf een recensie', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8513', 'nl', 'your_name', 'Uw naam', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8514', 'nl', 'comment', 'Commentaar', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8515', 'nl', 'your_review', 'Je recensie', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8516', 'nl', 'submit_review', 'Review versturen', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8517', 'nl', 'claire_willis', 'Claire Willis', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8518', 'nl', 'germaine_greene', 'Germaine Greene', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8519', 'nl', 'product_file', 'Productbestand', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8520', 'nl', 'choose_file', 'Kies bestand', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8521', 'nl', 'type_to_add_a_tag', 'Typ om een ​​tag toe te voegen', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8522', 'nl', 'images', 'Afbeeldingen', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8523', 'nl', 'main_images', 'Belangrijkste afbeeldingen', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8524', 'nl', 'meta_tags', 'Meta-tags', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8525', 'nl', 'digital_product_has_been_inserted_successfully', 'Digitaal product is met succes geplaatst', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8526', 'nl', 'edit_digital_product', 'Bewerk digitaal product', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8527', 'nl', 'select_an_option', 'Kies een optie', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8528', 'nl', 'tax', 'belasting', '2021-02-09 12:42:38', '2021-02-09 12:42:38'),
('8529', 'nl', 'any_question_about_this_product', 'Heeft u een vraag over dit product?', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8530', 'nl', 'sign_in', 'Aanmelden', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8531', 'nl', 'login_with_google', 'Log in met Google', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8532', 'nl', 'login_with_facebook', 'Inloggen met Facebook', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8533', 'nl', 'login_with_twitter', 'Log in met Twitter', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8534', 'nl', 'click_to_show_phone_number', 'Klik om het telefoonnummer weer te geven', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8535', 'nl', 'other_ads_of', 'Andere advertenties van', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8536', 'nl', 'store_home', 'Winkel huis', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8537', 'nl', 'top_selling', 'Best verkopende', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8538', 'nl', 'shop_settings', 'Winkelinstellingen', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8539', 'nl', 'visit_shop', 'Bezoek Shop', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8540', 'nl', 'pickup_points', 'Ophaalpunten', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8541', 'nl', 'select_pickup_point', 'Selecteer Afhaalpunt', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8542', 'nl', 'slider_settings', 'Schuifregelaarinstellingen', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8543', 'nl', 'social_media_link', 'Link naar sociale media', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8544', 'nl', 'facebook', 'Facebook', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8545', 'nl', 'twitter', 'Twitter', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8546', 'nl', 'google', 'Google', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8547', 'nl', 'new_arrival_products', 'Nieuwe aankomstproducten', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8548', 'nl', 'check_your_order_status', 'Controleer uw bestelstatus', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8549', 'nl', 'shipping_method', 'Verzendwijze', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8550', 'nl', 'shipped_by', 'Verscheept door', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8551', 'nl', 'image', 'Beeld', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8552', 'nl', 'sub_sub_category', 'Sub subcategorie', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8553', 'nl', 'inhouse_products', 'Eigen producten', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8554', 'nl', 'forgot_password', 'Wachtwoord vergeten?', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8555', 'nl', 'enter_your_email_address_to_recover_your_password', 'Voer uw e-mailadres in om uw wachtwoord te herstellen.', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8556', 'nl', 'email_or_phone', 'Email of telefoon', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8557', 'nl', 'send_password_reset_link', 'Stuur wachtwoord reset link', '2021-02-09 12:42:38', '2021-09-20 12:59:32'),
('8558', 'nl', 'back_to_login', 'Terug naar Inloggen', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8559', 'nl', 'index', 'inhoudsopgave', '2021-02-09 12:42:39', '2021-02-09 12:42:39'),
('8560', 'nl', 'download_your_product', 'Download uw product', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8561', 'nl', 'option', 'Keuze', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8562', 'nl', 'applied_refund_request', 'Toegepast restitutieverzoek', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8563', 'nl', 'item_has_been_renoved_from_wishlist', 'Item is gerenoveerd vanaf de verlanglijst', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8564', 'nl', 'bulk_products_upload', 'Bulkproducten uploaden', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8565', 'nl', 'upload_csv', 'Upload CSV', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8566', 'nl', 'create_a_ticket', 'Maak een ticket', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8567', 'nl', 'tickets', 'Kaartjes', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8568', 'nl', 'ticket_id', 'Ticket ID', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8569', 'nl', 'sending_date', 'Verzenddatum', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8570', 'nl', 'subject', 'Onderwerpen', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8571', 'nl', 'view_details', 'Details bekijken', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8572', 'nl', 'provide_a_detailed_description', 'Geef een gedetailleerde beschrijving', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8573', 'nl', 'type_your_reply', 'Typ uw antwoord', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8574', 'nl', 'send_ticket', 'Ticket verzenden', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8575', 'nl', 'load_more', 'Meer laden', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8576', 'nl', 'jewelry__watches', 'sieraden', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8577', 'nl', 'filters', 'Filters', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8578', 'nl', 'contact_address', 'Contact adres', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8579', 'nl', 'contact_phone', 'Contact telefoon', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8580', 'nl', 'contact_email', 'Contact email', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8581', 'nl', 'filter_by', 'Filteren op', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8582', 'nl', 'condition', 'Staat', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8583', 'nl', 'all_type', 'Alle soorten', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8584', 'nl', 'pay_with_wallet', 'Betaal met portemonnee', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8585', 'nl', 'select_variation', 'Selecteer variatie', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8586', 'nl', 'no_product_added', 'Geen product toegevoegd', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8587', 'nl', 'status_has_been_updated_successfully', 'Status is succesvol bijgewerkt', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8588', 'nl', 'all_seller_packages', 'Alle pakketten van de verkoper', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8589', 'nl', 'add_new_package', 'Nieuw pakket toevoegen', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8590', 'nl', 'package_logo', 'Pakket Logo', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8591', 'nl', 'days', 'dagen', '2021-02-09 12:42:39', '2021-02-09 12:42:39'),
('8592', 'nl', 'create_new_seller_package', 'Maak een nieuw verkoperspakket aan', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8593', 'nl', 'package_name', 'Verpakkingsnaam', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8594', 'nl', 'duration', 'Looptijd', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8595', 'nl', 'validity_in_number_of_days', 'Geldigheid in aantal dagen', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8596', 'nl', 'update_package_information', 'Update pakketinformatie', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8597', 'nl', 'package_has_been_inserted_successfully', 'Pakket is succesvol geplaatst', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8598', 'nl', 'refund_request', 'Verzoek om teruggave', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8599', 'nl', 'reason', 'Reden', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8600', 'nl', 'label', 'Label', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8601', 'nl', 'select_label', 'Selecteer Label', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8602', 'nl', 'multiple_select_label', 'Meerdere labels selecteren', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8603', 'nl', 'radio_label', 'Radio-etiket', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8604', 'nl', 'pickup_point_orders', 'Afhaalpunt bestellingen', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8605', 'nl', 'view', 'Visie', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8606', 'nl', 'order_', 'Bestellen #', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8607', 'nl', 'order_status', 'Bestelstatus', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8608', 'nl', 'total_amount', 'Totale hoeveelheid', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8609', 'nl', 'total', 'TOTAAL', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8610', 'nl', 'delivery_status_has_been_updated', 'Bezorgstatus is bijgewerkt', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8611', 'nl', 'payment_status_has_been_updated', 'De betalingsstatus is bijgewerkt', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8612', 'nl', 'invoice', 'FACTUUR', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8613', 'nl', 'set_refund_time', 'Stel de terugbetalingstijd in', '2021-02-09 12:42:39', '2021-09-20 12:59:32'),
('8614', 'nl', 'set_time_for_sending_refund_request', 'Tijd instellen voor het verzenden van een restitutieverzoek', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8615', 'nl', 'set_refund_sticker', 'Set restitutie sticker', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8616', 'nl', 'sticker', 'Sticker', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8617', 'nl', 'refund_request_all', 'Verzoek om terugbetaling allemaal', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8618', 'nl', 'order_id', 'Order ID', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8619', 'nl', 'seller_approval', 'Goedkeuring van de verkoper', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8620', 'nl', 'admin_approval', 'Goedkeuring door de beheerder', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8621', 'nl', 'refund_status', 'Restitutiestatus', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8622', 'nl', 'no_refund', 'Geen terugbetaling', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8623', 'nl', 'status_updated_successfully', 'Status succesvol bijgewerkt', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8624', 'nl', 'user_search_report', 'User Search Report', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8625', 'nl', 'search_by', 'Zoek met', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8626', 'nl', 'number_searches', 'Aantal zoekopdrachten', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8627', 'nl', 'sender', 'Afzender', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8628', 'nl', 'receiver', 'Ontvanger', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8629', 'nl', 'verification_form_updated_successfully', 'Verificatieformulier succesvol bijgewerkt', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8630', 'nl', 'invalid_email_or_password', 'Ongeldig e-mailadres of wachtwoord', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8631', 'nl', 'all_coupons', 'Alle kortingsbonnen', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8632', 'nl', 'add_new_coupon', 'Nieuwe coupon toevoegen', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8633', 'nl', 'coupon_information', 'Coupon-informatie', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8634', 'nl', 'start_date', 'Begin datum', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8635', 'nl', 'end_date', 'Einddatum', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8636', 'nl', 'product_base', 'Productbasis', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8637', 'nl', 'send_newsletter', 'Nieuwsbrief versturen', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8638', 'nl', 'mobile_users', 'Mobiele gebruikers', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8639', 'nl', 'sms_subject', 'SMS-onderwerp', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8640', 'nl', 'sms_content', 'SMS-inhoud', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8641', 'nl', 'all_flash_delas', 'Alle Flash Delas', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8642', 'nl', 'create_new_flash_dela', 'Maak een nieuwe Flash Dela', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8643', 'nl', 'page_link', 'pagina link', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8644', 'nl', 'flash_deal_information', 'Flash Deal-informatie', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8645', 'nl', 'background_color', 'Achtergrond kleur', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8646', 'nl', '0000ff', '# 0000ff', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8647', 'nl', 'text_color', 'Tekst kleur', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8648', 'nl', 'white', 'Wit', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8649', 'nl', 'dark', 'Donker', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8650', 'nl', 'choose_products', 'Kies Producten', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8651', 'nl', 'discounts', 'Kortingen', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8652', 'nl', 'discount_type', 'Type korting', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8653', 'nl', 'twillo_credential', 'Twillo-legitimatie', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8654', 'nl', 'twilio_sid', 'TWILIO SID', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8655', 'nl', 'twilio_auth_token', 'TWILIO AUTH TOKEN', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8656', 'nl', 'twilio_verify_sid', 'TWILIO CONTROLEER SID', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8657', 'nl', 'valid_twillo_number', 'GELDIG TWILLO AANTAL', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8658', 'nl', 'nexmo_credential', 'Nexmo-referentie', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8659', 'nl', 'nexmo_key', 'NEXMO SLEUTEL', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8660', 'nl', 'nexmo_secret', 'NEXMO SECRET', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8661', 'nl', 'ssl_wireless_credential', 'SSL Wireless-referentie', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8662', 'nl', 'ssl_sms_api_token', 'SSL SMS API TOKEN', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8663', 'nl', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8664', 'nl', 'ssl_sms_url', 'SSL-sms-URL', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8665', 'nl', 'fast2sms_credential', 'Fast2SMS-legitimatie', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8666', 'nl', 'auth_key', 'INLOGCODE', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8667', 'nl', 'route', 'ROUTE', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8668', 'nl', 'promotional_use', 'Promotiegebruik', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8669', 'nl', 'transactional_use', 'Transactioneel gebruik', '2021-02-09 12:42:40', '2021-09-20 12:59:32'),
('8670', 'nl', 'sender_id', 'ZENDER ID', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8671', 'nl', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8672', 'nl', 'twillo_otp', 'Twillo OTP', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8673', 'nl', 'ssl_wireless_otp', 'SSL draadloze OTP', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8674', 'nl', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8675', 'nl', 'order_placement', 'Bestelling plaatsen', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8676', 'nl', 'delivery_status_changing_time', 'Bezorgstatus Veranderende tijd', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8677', 'nl', 'paid_status_changing_time', 'Betaalde statuswijzigingstijd', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8678', 'nl', 'send_bulk_sms', 'Verzend bulk-sms', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8679', 'nl', 'all_subscribers', 'Alle abonnees', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8680', 'nl', 'coupon_information_adding', 'Couponinformatie toevoegen', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8681', 'nl', 'coupon_type', 'Coupontype', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8682', 'nl', 'for_products', 'Voor producten', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8683', 'nl', 'for_total_orders', 'Voor totale bestellingen', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8684', 'nl', 'add_your_product_base_coupon', 'Voeg uw productbasisbon toe', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8685', 'nl', 'coupon_code', 'Coupon code', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8686', 'nl', 'sub_category', 'Subcategorie', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8687', 'nl', 'add_more', 'Voeg meer toe', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8688', 'nl', 'add_your_cart_base_coupon', 'Voeg uw winkelwagen basiscoupon toe', '2021-02-09 12:42:40', '2021-09-20 12:59:33'),
('8689', 'nl', 'minimum_shopping', 'Minimaal winkelen', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8690', 'nl', 'maximum_discount_amount', 'Maximaal kortingsbedrag', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8691', 'nl', 'coupon_information_update', 'Update couponinformatie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8692', 'nl', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Configureer de SMTP-instelling om alle e-mailverzendfunctionaliteit te laten werken', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8693', 'nl', 'configure_now', 'Nu configureren', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8694', 'nl', 'total_published_products', 'Totaal aantal gepubliceerde producten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8695', 'nl', 'total_sellers_products', 'Totaal aantal verkopersproducten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8696', 'nl', 'total_admin_products', 'Totaal aantal beheerproducten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8697', 'nl', 'manage_products', 'Beheer producten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8698', 'nl', 'total_product_category', 'Totale productcategorie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8699', 'nl', 'create_category', 'Categorie aanmaken', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8700', 'nl', 'total_product_sub_sub_category', 'Totale productsubcategorie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8701', 'nl', 'create_sub_sub_category', 'Maak een subsubcategorie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8702', 'nl', 'total_product_sub_category', 'Totale productsubcategorie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8703', 'nl', 'create_sub_category', 'Maak een subcategorie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8704', 'nl', 'total_product_brand', 'Totaal productmerk', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8705', 'nl', 'create_brand', 'Merk creëren', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8706', 'nl', 'total_sellers', 'Totaal aantal verkopers', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8707', 'nl', 'total_approved_sellers', 'Totaal aantal goedgekeurde verkopers', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8708', 'nl', 'total_pending_sellers', 'Totaal aantal openstaande verkopers', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8709', 'nl', 'manage_sellers', 'Beheer verkopers', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8710', 'nl', 'category_wise_product_sale', 'Categorie verstandige productverkoop', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8711', 'nl', 'sale', 'Uitverkoop', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8712', 'nl', 'category_wise_product_stock', 'Categorie verstandige productvoorraad', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8713', 'nl', 'category_name', 'categorie naam', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8714', 'nl', 'stock', 'Voorraad', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8715', 'nl', 'frontend', 'Voorkant', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8716', 'nl', 'home_page', 'Startpagina', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8717', 'nl', 'setting', 'instelling', '2021-02-09 12:42:41', '2021-02-09 12:42:41'),
('8718', 'nl', 'policy_page', 'Beleidspagina', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8719', 'nl', 'general', 'Algemeen', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8720', 'nl', 'click_here', 'Klik hier', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8721', 'nl', 'useful_link', 'Handige link', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8722', 'nl', 'activation', 'Activering', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8723', 'nl', 'smtp', 'SMTP', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8724', 'nl', 'payment_method', 'Betalingswijze', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8725', 'nl', 'social_media', 'Sociale media', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8726', 'nl', 'business', 'Bedrijf', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8727', 'nl', 'seller_verification', 'Verkopersverificatie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8728', 'nl', 'form_setting', 'vorm instelling', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8729', 'nl', 'language', 'Taal', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8730', 'nl', 'dashboard', 'Dashboard', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8731', 'nl', 'pos_system', 'POS-systeem', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8732', 'nl', 'pos_manager', 'POS-manager', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8733', 'nl', 'pos_configuration', 'POS-configuratie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8734', 'nl', 'products', 'Producten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8735', 'nl', 'add_new_product', 'Nieuw product toevoegen', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8736', 'nl', 'all_products', 'Alle producten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8737', 'nl', 'in_house_products', 'In-house producten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8738', 'nl', 'seller_products', 'Producten van de verkoper', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8739', 'nl', 'digital_products', 'Digitale producten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8740', 'nl', 'bulk_import', 'Bulk importeren', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8741', 'nl', 'bulk_export', 'Bulk exporteren', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8742', 'nl', 'category', 'Categorie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8743', 'nl', 'subcategory', 'Subcategorie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8744', 'nl', 'sub_subcategory', 'Sub subcategorie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8745', 'nl', 'brand', 'Merk', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8746', 'nl', 'attribute', 'Attribuut', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8747', 'nl', 'product_reviews', 'Product beoordelingen', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8748', 'nl', 'sales', 'verkoop', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8749', 'nl', 'all_orders', 'Alle bestellingen', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8750', 'nl', 'inhouse_orders', 'Inhouse bestellingen', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8751', 'nl', 'seller_orders', 'Verkoper bestellingen', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8752', 'nl', 'pickup_point_order', 'Bestelling afhaalpunt', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8753', 'nl', 'refunds', 'Restituties', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8754', 'nl', 'refund_requests', 'Verzoeken om terugbetaling', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8755', 'nl', 'approved_refund', 'Goedgekeurde terugbetaling', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8756', 'nl', 'refund_configuration', 'Restitutieconfiguratie', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8757', 'nl', 'customers', 'Klanten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8758', 'nl', 'customer_list', 'Klantenlijst', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8759', 'nl', 'classified_products', 'Geclassificeerde producten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8760', 'nl', 'classified_packages', 'Geclassificeerde pakketten', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8761', 'nl', 'sellers', 'Verkopers', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8762', 'nl', 'all_seller', 'Alle verkoper', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8763', 'nl', 'payouts', 'Uitbetalingen', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8764', 'nl', 'payout_requests', 'Uitbetalingsverzoeken', '2021-02-09 12:42:41', '2021-09-20 12:59:33'),
('8765', 'nl', 'seller_commission', 'Verkoperscommissie', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8766', 'nl', 'seller_packages', 'Verkoperspakketten', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8767', 'nl', 'seller_verification_form', 'Verkopersverificatieformulier', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8768', 'nl', 'reports', 'Rapporten', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8769', 'nl', 'in_house_product_sale', 'Verkoop van eigen producten', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8770', 'nl', 'seller_products_sale', 'Verkoop van verkoperproducten', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8771', 'nl', 'products_stock', 'Producten Voorraad', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8772', 'nl', 'products_wishlist', 'Producten verlanglijst', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8773', 'nl', 'user_searches', 'Gebruikerszoekopdrachten', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8774', 'nl', 'marketing', 'Marketing', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8775', 'nl', 'flash_deals', 'Flash-deals', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8776', 'nl', 'newsletters', 'Nieuwsbrieven', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8777', 'nl', 'bulk_sms', 'Bulk SMS', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8778', 'nl', 'subscribers', 'Abonnees', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8779', 'nl', 'coupon', 'Coupon', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8780', 'nl', 'support', 'Ondersteuning', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8781', 'nl', 'ticket', 'Ticket', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8782', 'nl', 'product_queries', 'Productvragen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8783', 'nl', 'website_setup', 'Website instellen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8784', 'nl', 'header', 'Header', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8785', 'nl', 'footer', 'Voettekst', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8786', 'nl', 'pages', 'Pagina\'s', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8787', 'nl', 'appearance', 'Verschijning', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8788', 'nl', 'setup__configurations', 'Installatie en configuraties', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8789', 'nl', 'general_settings', 'Algemene instellingen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8790', 'nl', 'features_activation', 'Functies activering', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8791', 'nl', 'languages', 'Talen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8792', 'nl', 'currency', 'Valuta', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8793', 'nl', 'pickup_point', 'Ophaalpunt', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8794', 'nl', 'smtp_settings', 'SMTP-instellingen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8795', 'nl', 'payment_methods', 'Betaalmethodes', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8796', 'nl', 'file_system_configuration', 'Bestandssysteemconfiguratie', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8797', 'nl', 'social_media_logins', 'Aanmeldingen op sociale media', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8798', 'nl', 'analytics_tools', 'Analytics-tools', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8799', 'nl', 'facebook_chat', 'Facebook chat', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8800', 'nl', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8801', 'nl', 'shipping_configuration', 'Verzendconfiguratie', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8802', 'nl', 'shipping_countries', 'Verzendlanden', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8803', 'nl', 'affiliate_system', 'Aangesloten systeem', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8804', 'nl', 'affiliate_registration_form', 'Affiliate registratieformulier', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8805', 'nl', 'affiliate_configurations', 'Affiliate configuraties', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8806', 'nl', 'affiliate_users', 'Aangesloten gebruikers', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8807', 'nl', 'referral_users', 'Verwijzende gebruikers', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8808', 'nl', 'affiliate_withdraw_requests', 'Verzoeken om intrekking door een partner', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8809', 'nl', 'offline_payment_system', 'Offline betalingssysteem', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8810', 'nl', 'manual_payment_methods', 'Handmatige betalingsmethoden', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8811', 'nl', 'offline_wallet_recharge', 'Offline portemonnee opladen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8812', 'nl', 'offline_customer_package_payments', 'Offline klantpakketbetalingen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8813', 'nl', 'offline_seller_package_payments', 'Offline verkoper pakketbetalingen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8814', 'nl', 'paytm_payment_gateway', 'Paytm-betalingsgateway', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8815', 'nl', 'set_paytm_credentials', 'Stel Paytm-inloggegevens in', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8816', 'nl', 'club_point_system', 'Club Point-systeem', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8817', 'nl', 'club_point_configurations', 'Club Point-configuraties', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8818', 'nl', 'set_product_point', 'Productpunt instellen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8819', 'nl', 'user_points', 'Gebruikerspunten', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8820', 'nl', 'otp_system', 'OTP-systeem', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8821', 'nl', 'otp_configurations', 'OTP-configuraties', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8822', 'nl', 'set_otp_credentials', 'Stel OTP-inloggegevens in', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8823', 'nl', 'staffs', 'Personeel', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8824', 'nl', 'all_staffs', 'Alle medewerkers', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8825', 'nl', 'staff_permissions', 'Machtigingen van het personeel', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8826', 'nl', 'addon_manager', 'Addon Manager', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8827', 'nl', 'browse_website', 'Bladeren door website', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8828', 'nl', 'pos', 'POS', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8829', 'nl', 'notifications', 'Meldingen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8830', 'nl', 'new_orders', 'Nieuwe bevelen', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8831', 'nl', 'userimage', 'gebruikersafbeelding', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8832', 'nl', 'profile', 'Profiel', '2021-02-09 12:42:42', '2021-09-20 12:59:33'),
('8833', 'nl', 'logout', 'Uitloggen', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8834', 'nl', 'page_not_found', 'Pagina niet gevonden!', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8835', 'nl', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'De pagina die u zoekt, is niet gevonden op onze server.', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8836', 'nl', 'registration', 'Registratie', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8837', 'nl', 'i_am_shopping_for', 'Ik ben aan het winkelen voor ...', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8838', 'nl', 'compare', 'Vergelijken', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8839', 'nl', 'wishlist', 'Verlanglijst', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8840', 'nl', 'cart', 'Winkelwagen', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8841', 'nl', 'your_cart_is_empty', 'Uw winkelwagen is leeg', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8842', 'nl', 'categories', 'Categorieën', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8843', 'nl', 'see_all', 'Alles zien', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8844', 'nl', 'seller_policy', 'Verkopersbeleid', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8845', 'nl', 'return_policy', 'TERUGSTUURBELEID', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8846', 'nl', 'support_policy', 'Ondersteuningsbeleid', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8847', 'nl', 'privacy_policy', 'Privacybeleid', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8848', 'nl', 'your_email_address', 'Jouw e-mailadres', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8849', 'nl', 'subscribe', 'Abonneren', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8850', 'nl', 'contact_info', 'Contact Info', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8851', 'nl', 'address', 'Adres', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8852', 'nl', 'phone', 'Telefoon', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8853', 'nl', 'email', 'E-mail', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8854', 'nl', 'login', 'Log in', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8855', 'nl', 'my_account', 'Mijn rekening', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8856', 'nl', 'order_history', 'Bestelgeschiedenis', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8857', 'nl', 'my_wishlist', 'mijn wenslijst', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8858', 'nl', 'track_order', 'Order volgen', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8859', 'nl', 'be_an_affiliate_partner', 'Wees een aangesloten partner', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8860', 'nl', 'be_a_seller', 'Wees een verkoper', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8861', 'nl', 'apply_now', 'Nu toepassen', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8862', 'nl', 'confirmation', 'Bevestiging', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8863', 'nl', 'delete_confirmation_message', 'Bevestigingsbericht verwijderen', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8864', 'nl', 'cancel', 'annuleren', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8865', 'nl', 'delete', 'Verwijderen', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8866', 'nl', 'item_has_been_added_to_compare_list', 'Artikel is toegevoegd aan de vergelijkingslijst', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8867', 'nl', 'please_login_first', 'Log alstublieft eerst in', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8868', 'nl', 'total_earnings_from', 'Totale inkomsten van', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8869', 'nl', 'client_subscription', 'Klantabonnement', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8870', 'nl', 'product_category', 'Product categorie', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8871', 'nl', 'product_sub_sub_category', 'Product subsubcategorie', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8872', 'nl', 'product_sub_category', 'Product subcategorie', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8873', 'nl', 'product_brand', 'Product merk', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8874', 'nl', 'top_client_packages', 'Top Client-pakketten', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8875', 'nl', 'top_freelancer_packages', 'Top Freelancer-pakketten', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8876', 'nl', 'number_of_sale', 'Aantal verkopen', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8877', 'nl', 'number_of_stock', 'Aantal voorraad', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8878', 'nl', 'top_10_products', 'Top 10 producten', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8879', 'nl', 'top_12_products', 'Top 12 producten', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8880', 'nl', 'admin_can_not_be_a_seller', 'Admin kan geen verkoper zijn', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8881', 'nl', 'filter_by_rating', 'Filteren op beoordeling', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8882', 'nl', 'published_reviews_updated_successfully', 'Gepubliceerde beoordelingen zijn bijgewerkt', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8883', 'nl', 'refund_sticker_has_been_updated_successfully', 'Restitutiesticker is succesvol bijgewerkt', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8884', 'nl', 'edit_product', 'Product bewerken', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8885', 'nl', 'meta_images', 'Meta-afbeeldingen', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8886', 'nl', 'update_product', 'Product bijwerken', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8887', 'nl', 'product_has_been_deleted_successfully', 'Product is succesvol verwijderd', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8888', 'nl', 'your_profile_has_been_updated_successfully', 'Uw profiel is succesvol bijgewerkt!', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8889', 'nl', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Uploadlimiet is bereikt. Upgrade uw pakket.', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8890', 'nl', 'add_your_product', 'Voeg uw product toe', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8891', 'nl', 'select_a_category', 'Selecteer een categorie', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8892', 'nl', 'select_a_brand', 'Kies een merk', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8893', 'nl', 'product_unit', 'Producteenheid', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8894', 'nl', 'minimum_qty', 'Minimum aantal.', '2021-02-09 12:43:15', '2021-09-20 12:59:33'),
('8895', 'nl', 'product_tag', 'Productlabel', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8896', 'nl', 'type__hit_enter', 'Typ en druk op enter', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8897', 'nl', 'videos', 'Videos', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8898', 'nl', 'video_from', 'Video van', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8899', 'nl', 'video_url', 'Video URL', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8900', 'nl', 'customer_choice', 'Keuze van de klant', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8901', 'nl', 'pdf', 'Pdf', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8902', 'nl', 'choose_pdf', 'Kies PDF', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8903', 'nl', 'select_category', 'selecteer categorie', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8904', 'nl', 'target_category', 'Doelcategorie', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8905', 'nl', 'subsubcategory', 'subsubcategorie', '2021-02-09 12:43:16', '2021-02-09 12:43:16'),
('8906', 'nl', 'search_category', 'Zoek categorie', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8907', 'nl', 'search_subcategory', 'Zoek in subcategorie', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8908', 'nl', 'search_subsubcategory', 'Zoek in SubSubCategory', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8909', 'nl', 'update_your_product', 'Update uw product', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8910', 'nl', 'product_has_been_updated_successfully', 'Product is succesvol bijgewerkt', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8911', 'nl', 'add_your_digital_product', 'Voeg uw digitale product toe', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8912', 'nl', 'active_ecommerce_cms_update_process', 'Actief eCommerce CMS-updateproces', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8913', 'nl', 'codecanyon_purchase_code', 'Codecanyon-aankoopcode', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8914', 'nl', 'database_name', 'Database naam', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8915', 'nl', 'database_username', 'Database gebruikersnaam', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8916', 'nl', 'database_password', 'Database wachtwoord', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8917', 'nl', 'database_hostname', 'Hostnaam van database', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8918', 'nl', 'update_now', 'Update nu', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8919', 'nl', 'congratulations', 'Gefeliciteerd', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8920', 'nl', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'U hebt het updateproces met succes voltooid. Log in om door te gaan', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8921', 'nl', 'go_to_home', 'Ga naar huis', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8922', 'nl', 'login_to_admin_panel', 'Log in op het beheerderspaneel', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8923', 'nl', 's3_file_system_credentials', 'S3 Bestandssysteemreferenties', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8924', 'nl', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8925', 'nl', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8926', 'nl', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8927', 'nl', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8928', 'nl', 'aws_url', 'AWS_URL', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8929', 'nl', 's3_file_system_activation', 'S3 Bestandssysteemactivering', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8930', 'nl', 'your_phone_number', 'Jouw telefoon nummer', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8931', 'nl', 'zip_file', 'Zip bestand', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8932', 'nl', 'install', 'Installeren', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8933', 'nl', 'this_version_is_not_capable_of_installing_addons_please_update', 'Deze versie kan geen add-ons installeren. Update.', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8934', 'nl', 'search_in_menu', 'Zoeken in menu', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8935', 'nl', 'uploaded_files', 'Geüploade bestanden', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8936', 'nl', 'shipping_cities', 'Verzendsteden', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8937', 'nl', 'system', 'Systeem', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8938', 'nl', 'server_status', 'Server Status', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8939', 'nl', 'nothing_found', 'niets gevonden', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8940', 'nl', 'parent_category', 'Bovenliggende categorie', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8941', 'nl', 'level', 'Niveau', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8942', 'nl', 'category_information', 'Categorie-informatie', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8943', 'nl', 'translatable', 'Vertaalbaar', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8944', 'nl', 'no_parent', 'Geen ouder', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8945', 'nl', 'physical', 'Fysiek', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8946', 'nl', 'digital', 'Digitaal', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8947', 'nl', '200x200', '200x200', '2021-02-09 12:43:16', '2021-02-09 12:43:16'),
('8948', 'nl', '32x32', '32x32', '2021-02-09 12:43:16', '2021-02-09 12:43:16'),
('8949', 'nl', 'search_your_files', 'Zoek uw bestanden', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8950', 'nl', 'category_has_been_updated_successfully', 'Categorie is succesvol bijgewerkt', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8951', 'nl', 'all_uploaded_files', 'Alle geüploade bestanden', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8952', 'nl', 'upload_new_file', 'Upload een nieuw bestand', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8953', 'nl', 'all_files', 'Alle bestanden', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8954', 'nl', 'search', 'Zoeken', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8955', 'nl', 'details_info', 'Details Info', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8956', 'nl', 'copy_link', 'Kopieer link', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8957', 'nl', 'are_you_sure_to_delete_this_file', 'Weet u zeker dat u dit bestand wilt verwijderen?', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8958', 'nl', 'file_info', 'Bestandsinformatie', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8959', 'nl', 'link_copied_to_clipboard', 'Link gekopieerd naar klembord', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8960', 'nl', 'oops_unable_to_copy', 'Oeps, kan niet kopiëren', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8961', 'nl', 'file_deleted_successfully', 'Bestand succesvol verwijderd', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8962', 'nl', 'add_new_brand', 'Nieuw merk toevoegen', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8963', 'nl', '120x80', '120 x 80', '2021-02-09 12:43:16', '2021-02-09 12:43:16'),
('8964', 'nl', 'brand_information', 'Merkinformatie', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8965', 'nl', 'brand_has_been_updated_successfully', 'Merk is succesvol bijgewerkt', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8966', 'nl', 'brand_has_been_deleted_successfully', 'Merk is succesvol verwijderd', '2021-02-09 12:43:16', '2021-09-20 12:59:33'),
('8967', 'nl', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'Dit wordt gebruikt voor zoeken. Voer de woorden in waarmee de cutomer dit product kan vinden.', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8968', 'nl', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'Deze afbeeldingen zijn zichtbaar in de galerij met productdetails. Gebruik afbeeldingen van 600 x 600 formaat.', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8969', 'nl', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'Deze afbeelding is zichtbaar in alle productverpakkingen. Gebruik een afbeelding van 300x300. Bewaar wat lege ruimte rond het hoofdobject van je afbeelding, want we moesten een rand op verschillende apparaten bijsnijden om het responsief te maken.', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8970', 'nl', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Gebruik de juiste link zonder extra parameter. Gebruik geen short share link / embedded iframe-code.', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8971', 'nl', 'save_product', 'Product opslaan', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8972', 'nl', 'product_has_been_inserted_successfully', 'Het product is succesvol geplaatst', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8973', 'nl', 'something_went_wrong', 'Er is iets fout gegaan!', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8974', 'nl', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Excuses voor het ongemak, maar we werken eraan.', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8975', 'nl', 'error_code', 'Foutcode', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8976', 'nl', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Configureer de SMTP-instelling om alle e-mailverzendfunctionaliteit te laten werken', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8977', 'nl', 'order', 'Bestellen', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8978', 'nl', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'We hebben een beperkte bannerhoogte om de gebruikersinterface te behouden. We moesten zowel links als rechts bijsnijden voor verschillende apparaten om het responsief te maken. Houd deze punten in gedachten voordat u een banner ontwerpt.', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8979', 'nl', 'home_banner_3_max_3', 'Home Banner 3 (max. 3)', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8980', 'nl', 'add_new_seller', 'Nieuwe verkoper toevoegen', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8981', 'nl', 'filter_by_approval', 'Filteren op goedkeuring', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8982', 'nl', 'nonapproved', 'Niet goedgekeurd', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8983', 'nl', 'type_name_or_email__enter', 'Typ naam of e-mailadres en voer in', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8984', 'nl', 'due_to_seller', 'Vanwege verkoper', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8985', 'nl', 'log_in_as_this_seller', 'Log in als deze verkoper', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8986', 'nl', 'go_to_payment', 'Ga naar Betalen', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8987', 'nl', 'ban_this_seller', 'Verbied deze verkoper', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8988', 'nl', 'do_you_really_want_to_ban_this_seller', 'Wil je deze verkoper echt verbannen?', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8989', 'nl', 'proceed', 'Doorgaan!', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8990', 'nl', 'approved_sellers_updated_successfully', 'Goedgekeurde verkopers zijn bijgewerkt', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8991', 'nl', 'seller_has_been_deleted_successfully', 'De verkoper is succesvol verwijderd', '2021-02-09 12:43:17', '2021-09-20 12:59:33'),
('8992', 'nl', 'seller_information', 'Verkopersinformatie', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('8993', 'nl', 'seller_has_been_inserted_successfully', 'De verkoper is met succes geplaatst', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('8994', 'nl', 'email_already_exists', 'E-mailadres bestaat al!', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('8995', 'nl', 'verify_your_email_address', 'Verifieer je e-mailadres', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('8996', 'nl', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Controleer voordat u verder gaat uw e-mail voor een verificatielink.', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('8997', 'nl', 'if_you_did_not_receive_the_email', 'Als u de e-mail niet heeft ontvangen.', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('8998', 'nl', 'click_here_to_request_another', 'Klik hier om een ​​nieuwe aan te vragen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('8999', 'nl', 'email_verification', 'email verificatie', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9000', 'nl', 'email_verification__', 'Email verificatie -', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9001', 'nl', 'https_activation', 'HTTPS-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9002', 'nl', 'maintenance_mode', 'onderhoudsstand', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9003', 'nl', 'maintenance_mode_activation', 'Activering onderhoudsmodus', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9004', 'nl', 'classified_product_activate', 'Geclassificeerd product activeren', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9005', 'nl', 'classified_product', 'Geclassificeerd product', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9006', 'nl', 'business_related', 'Zakelijk gerelateerd', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9007', 'nl', 'vendor_system_activation', 'Vendor System Activation', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9008', 'nl', 'wallet_system_activation', 'Wallet-systeemactivering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9009', 'nl', 'coupon_system_activation', 'Activering couponsysteem', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9010', 'nl', 'pickup_point_activation', 'Activering afhaalpunt', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9011', 'nl', 'conversation_activation', 'Conversatie-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9012', 'nl', 'guest_checkout_activation', 'Activering van het uitchecken als gast', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9013', 'nl', 'categorybased_commission', 'Categorie-gebaseerde commissie', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9014', 'nl', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'Na het activeren van deze optie wordt de verkoperscommissie uitgeschakeld en moet u de commissie voor elke categorie instellen, anders krijgt de beheerder geen commissie', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9015', 'nl', 'set_commisssion_now', 'Stel nu de Commissie in', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9016', 'nl', 'payment_related', 'Betaling gerelateerd', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9017', 'nl', 'paypal_payment_activation', 'Paypal-betalingsactivering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9018', 'nl', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'U moet Paypal correct configureren om deze functie in te schakelen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9019', 'nl', 'stripe_payment_activation', 'Activering van Stripe-betaling', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9020', 'nl', 'sslcommerz_activation', 'SSlCommerz-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9021', 'nl', 'instamojo_payment_activation', 'Activering van Instamojo-betalingen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9022', 'nl', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'U moet Instamojo Payment correct configureren om deze functie in te schakelen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9023', 'nl', 'razor_pay_activation', 'Razor Pay-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9024', 'nl', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'U moet Razor correct configureren om deze functie in te schakelen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9025', 'nl', 'paystack_activation', 'PayStack-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9026', 'nl', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'U moet PayStack correct configureren om deze functie in te schakelen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9027', 'nl', 'voguepay_activation', 'VoguePay-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9028', 'nl', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'U moet VoguePay correct configureren om deze functie in te schakelen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9029', 'nl', 'payhere_activation', 'Payhere-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9030', 'nl', 'ngenius_activation', 'Ngenius-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9031', 'nl', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'U moet Ngenius correct configureren om deze functie in te schakelen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9032', 'nl', 'iyzico_activation', 'Iyzico-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9033', 'nl', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'U moet iyzico correct configureren om deze functie in te schakelen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9034', 'nl', 'bkash_activation', 'Bkash-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9035', 'nl', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'U moet bkash correct configureren om deze functie in te schakelen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9036', 'nl', 'nagad_activation', 'Nagad-activering', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9037', 'nl', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'U moet nagad correct configureren om deze functie in te schakelen', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9038', 'nl', 'cash_payment_activation', 'Activering van contante betaling', '2021-02-09 12:43:17', '2021-09-20 12:59:34'),
('9039', 'nl', 'social_media_login', 'Inloggen op sociale media', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9040', 'nl', 'facebook_login', 'Facebook login', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9041', 'nl', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'U moet Facebook Client correct configureren om deze functie in te schakelen', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9042', 'nl', 'google_login', 'Google-login', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9043', 'nl', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'U moet Google Client correct configureren om deze functie in te schakelen', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9044', 'nl', 'twitter_login', 'Twitter login', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9045', 'nl', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'U moet Twitter Client correct configureren om deze functie in te schakelen', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9046', 'nl', 'shop_logo', 'Winkel Logo', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9047', 'nl', 'shop_address', 'Winkel adres', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9048', 'nl', 'banner_settings', 'Banner-instellingen', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9049', 'nl', 'banners', 'Banners', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9050', 'nl', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'We moesten de hoogte beperken tot een constante consistentie. Op sommige apparaten kunnen beide zijden van de banner worden bijgesneden om de hoogte te beperken.', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9051', 'nl', 'insert_link_with_https_', 'Voeg een link in met https', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9052', 'nl', 'your_shop_has_been_updated_successfully', 'Uw winkel is succesvol bijgewerkt!', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9053', 'nl', 'search_result_for_', 'Zoekresultaat voor', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9054', 'nl', 'brand_has_been_inserted_successfully', 'Merk is succesvol ingevoegd', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9055', 'nl', 'about', 'Over', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9056', 'nl', 'payout_info', 'Uitbetalingsinformatie', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9057', 'nl', 'bank_acc_name', 'Bank Acc Naam', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9058', 'nl', 'bank_acc_number', 'Bankrekeningnummer', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9059', 'nl', 'total_products', 'Totaal producten', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9060', 'nl', 'total_sold_amount', 'Totaal verkocht bedrag', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9061', 'nl', 'wallet_balance', 'Wallet-saldo', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9062', 'nl', 'cookies_agreement', 'Cookies-overeenkomst', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9063', 'nl', 'cookies_agreement_text', 'Tekst van cookiesovereenkomst', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9064', 'nl', 'show_cookies_agreement', 'Cookies-overeenkomst weergeven?', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9065', 'nl', 'custom_script', 'Aangepast script', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9066', 'nl', 'header_custom_script__before_head', 'Header aangepast script - vóór </head>', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9067', 'nl', 'write_script_with_script_tag', 'Schrijf script met <script> -tag', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9068', 'nl', 'footer_custom_script__before_body', 'Footer custom script - voor </body>', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9069', 'nl', 'category_has_been_inserted_successfully', 'Categorie is succesvol ingevoegd', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9070', 'nl', 'all_flash_deals', 'Alle Flash-deals', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9071', 'nl', 'create_new_flash_deal', 'Maak een nieuwe Flash-deal', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9072', 'nl', 'ffffff', '#FFFFFF', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9073', 'nl', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Deze afbeelding wordt weergegeven als omslagbanner op de pagina met flash-dealdetails.', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9074', 'nl', 'flash_deal_has_been_inserted_successfully', 'Flash Deal is succesvol ingevoegd', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9075', 'nl', 'flash_deal_status_updated_successfully', 'Status van Flash-deal is bijgewerkt', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9076', 'nl', 'flash_deal_has_been_updated_successfully', 'Flash Deal is succesvol bijgewerkt', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9077', 'nl', 'update_language_info', 'update taalinfo', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9078', 'nl', 'language_has_been_updated_successfully', 'Taal is succesvol bijgewerkt', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9079', 'nl', 'type_key__enter', 'Typ key & Enter', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9080', 'nl', 'translations_updated_for_', 'Vertalingen bijgewerkt voor', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9081', 'nl', 'language_has_been_inserted_successfully', 'De taal is met succes ingevoerd', '2021-02-09 12:43:18', '2021-09-20 12:59:34'),
('9082', 'af', 'all_category', 'ټوله کټګورۍ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9083', 'af', 'all', 'ټول', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9084', 'af', 'flash_sale', 'فلش پلور', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9085', 'af', 'view_more', 'نور وګوره', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9086', 'af', 'add_to_wishlist', 'په نوملړ کې اضافه کړئ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9087', 'af', 'add_to_compare', 'پرتله کولو کې اضافه کړئ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9088', 'af', 'add_to_cart', 'کارټ ته یی اضافه کړه', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9089', 'af', 'club_point', 'د کلب ځای', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9090', 'af', 'classified_ads', 'محرم اعلانونه', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9091', 'af', 'used', 'کارول شوی', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9092', 'af', 'top_10_categories', 'غوره 10 کټګورۍ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9093', 'af', 'view_all_categories', 'ټولې کټګورۍ وګورئ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9094', 'af', 'top_10_brands', 'غوره 10 نښې', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9095', 'af', 'view_all_brands', 'ټولې نښې وګورئ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9096', 'af', 'terms__conditions', 'شرایط او مقررات', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9097', 'af', 'best_selling', 'غوره پلور', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9098', 'af', 'top_20', 'غوره 20', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9099', 'af', 'featured_products', 'ب Featه شوي محصولات', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9100', 'af', 'best_sellers', 'غوره پلورونکي', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9101', 'af', 'visit_store', 'پلورنځي ته ورځي', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9102', 'af', 'popular_suggestions', 'مشهور وړاندیزونه', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9103', 'af', 'category_suggestions', 'کټګورۍ وړاندیزونه', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9104', 'af', 'automobile__motorcycle', 'موټر او موټرسایکل', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9105', 'af', 'price_range', 'د نرخ حد', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9106', 'af', 'filter_by_color', 'د رنګ په واسطه چاter کړئ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9107', 'af', 'home', 'کور', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9108', 'af', 'newest', 'نوی', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9109', 'af', 'oldest', 'زوړ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9110', 'af', 'price_low_to_high', 'نرخ ټیټ ته لوړ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9111', 'af', 'price_high_to_low', 'نرخ له ټیټې کچې', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9112', 'af', 'brands', 'نښې', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9113', 'af', 'all_brands', 'ټولې نښې', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9114', 'af', 'all_sellers', 'ټول پلورونکي', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9115', 'af', 'inhouse_product', 'د کور دننه محصول', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9116', 'af', 'message_seller', 'د پیغام پلورونکی', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9117', 'af', 'price', 'قیمت', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9118', 'af', 'discount_price', 'تخفیف قیمت', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9119', 'af', 'color', 'رنګ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9120', 'af', 'quantity', 'مقدار', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9121', 'af', 'available', 'شتون لري', '2021-02-09 12:46:49', '2021-02-09 12:46:49'),
('9122', 'af', 'total_price', 'ټول قیمت', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9123', 'af', 'out_of_stock', 'پلورل شوي دي', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9124', 'af', 'refund', 'بیرته ورکول', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9125', 'af', 'share', 'شریک کړئ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9126', 'af', 'sold_by', 'لخوا وپلورل شو', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9127', 'af', 'customer_reviews', 'د پیرودونکو بیاکتنې', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9128', 'af', 'top_selling_products', 'د پلور غوره محصولات', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9129', 'af', 'description', 'توضيح', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9130', 'af', 'video', 'ویډیو', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9131', 'af', 'reviews', 'بیاکتنې', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9132', 'af', 'download', 'ډاونلوډ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9133', 'af', 'there_have_been_no_reviews_for_this_product_yet', 'تر دې دمه د دې محصول لپاره هیڅ بیاکتنه نه ده شوې.', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9134', 'af', 'related_products', 'اړوند توليدات', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9135', 'af', 'any_query_about_this_product', 'د دې محصول په اړه کومه پوښتنه', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9136', 'af', 'product_name', 'د محصول نوم', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9137', 'af', 'your_question', 'ستا پوښتنه', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9138', 'af', 'send', 'ولېږئ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9139', 'af', 'use_country_code_before_number', 'د نمبر دمخه د هیواد کوډ وکاروئ', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9140', 'af', 'remember_me', 'ما په یاد ولره', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9141', 'af', 'dont_have_an_account', 'اکاونټ نه لری؟', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9142', 'af', 'register_now', 'اوس ې ثبت کړه', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9143', 'af', 'or_login_with', 'یا سره ننوتل', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9144', 'af', 'oops', 'اوه ..', '2021-02-09 12:46:49', '2021-09-20 12:59:34'),
('9145', 'af', 'this_item_is_out_of_stock', 'دا توکی بهر دی!', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9146', 'af', 'back_to_shopping', 'بیرته شاپینګ ته', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9147', 'af', 'login_to_your_account', 'خپل حساب ته ننوتل.', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9148', 'af', 'purchase_history', 'د پیرود تاریخ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9149', 'af', 'new', 'نوی', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9150', 'af', 'downloads', 'کښته کوونې', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9151', 'af', 'sent_refund_request', 'د لیږل شوي بیرته ستنولو غوښتنه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9152', 'af', 'product_bulk_upload', 'د محصول بلک اپلوډ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9153', 'af', 'orders', 'امرونه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9154', 'af', 'recieved_refund_request', 'د بیرته ستنیدو غوښتنه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9155', 'af', 'shop_setting', 'د پلورنځي تنظیم', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9156', 'af', 'payment_history', 'د تادیې تاریخ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9157', 'af', 'money_withdraw', 'د پیسو بیرته اخیستل', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9158', 'af', 'conversations', 'خبرې اترې', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9159', 'af', 'my_wallet', 'زما بټوه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9160', 'af', 'earning_points', 'د عاید ټکي', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9161', 'af', 'support_ticket', 'د ملاتړ ټیکټ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9162', 'af', 'manage_profile', 'پروفایل سمبال کړئ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9163', 'af', 'sold_amount', 'وپلورل شوې پیسې', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9164', 'af', 'your_sold_amount_current_month', 'ستاسو د پلور مقدار (روانه میاشت)', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9165', 'af', 'total_sold', 'ټول وپلورل شو', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9166', 'af', 'last_month_sold', 'تیره میاشت وپلورل شوه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9167', 'af', 'total_sale', 'ټول پلور', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9168', 'af', 'total_earnings', 'ټوله عاید', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9169', 'af', 'successful_orders', 'بریالي امرونه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9170', 'af', 'total_orders', 'ټول امرونه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9171', 'af', 'pending_orders', 'منتظر پاتې کیدل', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9172', 'af', 'cancelled_orders', 'لغوه شوي حکمونه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9173', 'af', 'product', 'محصول', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9174', 'af', 'purchased_package', 'پیرودل شوی ګیډۍ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9175', 'af', 'package_not_found', 'بنډل ونه موندل شو', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9176', 'af', 'upgrade_package', 'بنډل لوړول', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9177', 'af', 'shop', 'پلورنځی', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9178', 'af', 'manage__organize_your_shop', 'خپل دوکان اداره او تنظیم کړئ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9179', 'af', 'go_to_setting', 'تنظیم کولو ته لاړ شه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9180', 'af', 'payment', 'تادیه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9181', 'af', 'configure_your_payment_method', 'ستاسو د تادیې میتود تنظیم کړئ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9182', 'af', 'my_panel', 'زما پینل', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9183', 'af', 'item_has_been_added_to_wishlist', 'توکی په لیست کې شامل شو', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9184', 'af', 'my_points', 'زما نښې', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9185', 'af', '_points', 'ټکي', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9186', 'af', 'wallet_money', 'د والټ پیسې', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9187', 'af', 'exchange_rate', 'د تبادلې نرخ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9188', 'af', 'point_earning_history', 'ټکی د اخستلو تاریخچه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9189', 'af', 'date', 'نیټه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9190', 'af', 'points', 'ټکي', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9191', 'af', 'converted', 'بدل شوی', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9192', 'af', 'action', 'عمل', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9193', 'af', 'no_history_found', 'هیڅ تاریخ ونه موندل شو.', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9194', 'af', 'convert_has_been_done_successfully_check_your_wallets', 'بدلول په بریالیتوب سره ترسره شوي خپل بٹوې چیک کړئ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9195', 'af', 'something_went_wrong', 'کومه تیروتنه وشوه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9196', 'af', 'remaining_uploads', 'پاتې اپلوډونه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9197', 'af', 'no_package_found', 'هیڅ بسته ونه موندل شوه', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9198', 'af', 'search_product', 'د محصول لټون', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9199', 'af', 'name', 'نوم', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9200', 'af', 'current_qty', 'اوسنی مقدار', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9201', 'af', 'base_price', 'اساس قیمت', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9202', 'af', 'published', 'خپور شوی', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9203', 'af', 'featured', 'ب .ه شوې', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9204', 'af', 'options', 'غوراوي', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9205', 'af', 'edit', 'سمول', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9206', 'af', 'duplicate', 'نقل', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9207', 'af', '1_download_the_skeleton_file_and_fill_it_with_data', '1. د سکلیټون فایل ډاونلوډ کړئ او د معلوماتو سره یې ډک کړئ.', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9208', 'af', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. تاسو کولی شئ د مثال فایل ډاونلوډ کړئ ترڅو پوه شئ چې ډاټا باید څنګه ډکه شي.', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9209', 'af', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. یوځل چې تاسو د سکلیټون فایل ډاونلوډ او ډک کړئ ، دا لاندې فارم کې اپلوډ کړئ او وسپارئ.', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9210', 'af', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. د محصولاتو اپلوډ کولو وروسته تاسو اړتیا لرئ دوی تنظیم کړئ او د محصولاتو عکسونه او انتخابونه تنظیم کړئ.', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9211', 'af', 'download_csv', 'CSV ډاونلوډ کړئ', '2021-02-09 12:46:50', '2021-09-20 12:59:34'),
('9212', 'af', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. کټګورۍ ، فرعي کټګورۍ ، فرعي فر کټګورۍ او برانډ باید په شمیرو ایډونو کې وي.', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9213', 'af', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. تاسو کولی شئ د کټګورۍ ، فرعي کټګورۍ ، فرعي فر کټګورۍ او برانډ ID ترلاسه کولو لپاره pdf ډاونلوډ کړئ.', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9214', 'af', 'download_category', 'ډاونلوډ کټګورۍ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9215', 'af', 'download_sub_category', 'ډاونلوډ فرعي کټګورۍ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9216', 'af', 'download_sub_sub_category', 'د فرعي فر کټګورۍ ډاونلوډ کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9217', 'af', 'download_brand', 'ډاونلوډ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9218', 'af', 'upload_csv_file', 'د CSV فایل اپلوډ کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9219', 'af', 'csv', 'CSV', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9220', 'af', 'choose_csv_file', 'د CSV فایل غوره کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9221', 'af', 'upload', 'اپلوډ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9222', 'af', 'add_new_digital_product', 'نوی ډیجیټل محصول اضافه کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9223', 'af', 'available_status', 'موجود حالت', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9224', 'af', 'admin_status', 'د ادارې حالت', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9225', 'af', 'pending_balance', 'توازن پاتې دی', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9226', 'af', 'send_withdraw_request', 'د بیرته ستنیدو غوښتنه ولیږئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9227', 'af', 'withdraw_request_history', 'د درخواست تاریخ بیرته راګرځول', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9228', 'af', 'amount', 'مقدار', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9229', 'af', 'status', 'حالت', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9230', 'af', 'message', 'پیغام', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9231', 'af', 'send_a_withdraw_request', 'د بیرته ستنیدو غوښتنه ولیږئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9232', 'af', 'basic_info', 'لومړني معلومات', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9233', 'af', 'your_phone', 'ستاسو تلیفون', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9234', 'af', 'photo', 'عکس', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9235', 'af', 'browse', 'لټول', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9236', 'af', 'your_password', 'ستاسو رمز', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9237', 'af', 'new_password', 'نوئ پټ نوم', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9238', 'af', 'confirm_password', 'پاسورډ تایید کړه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9239', 'af', 'add_new_address', 'نوې پته اضافه کړه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9240', 'af', 'payment_setting', 'د تادیې تنظیم', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9241', 'af', 'cash_payment', 'نغدي تادیه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9242', 'af', 'bank_payment', 'د بانک تادیه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9243', 'af', 'bank_name', 'د بانک نوم', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9244', 'af', 'bank_account_name', 'د بانکي حساب نوم', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9245', 'af', 'bank_account_number', 'د بانکي حساب شمیره', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9246', 'af', 'bank_routing_number', 'د بانک د راوتلو شمیره', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9247', 'af', 'update_profile', 'تازه معلومات', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9248', 'af', 'change_your_email', 'خپل بریښنالیک بدل کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9249', 'af', 'your_email', 'ستا برېښنالیک', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9250', 'af', 'sending_email', 'د بریښنالیک لیږل ...', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9251', 'af', 'verify', 'تصدیق کول', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9252', 'af', 'update_email', 'تازه بریښنالیک', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9253', 'af', 'new_address', 'نوی پته', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9254', 'af', 'your_address', 'ستاسو پته', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9255', 'af', 'country', 'هیواد', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9256', 'af', 'select_your_country', 'خپل هیواد غوره کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9257', 'af', 'city', 'ښار', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9258', 'af', 'your_city', 'ستاسو ښار', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9259', 'af', 'your_postal_code', 'ستاسو د پوستي کوډ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9260', 'af', '880', '+880', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9261', 'af', 'save', 'خوندي کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9262', 'af', 'received_refund_request', 'د بیرته ستنیدو غوښتنه ترلاسه شوه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9263', 'af', 'delete_confirmation', 'باوري ړنګول', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9264', 'af', 'are_you_sure_to_delete_this', 'ایا ته باوري یې چې دا ړنګول غواړې؟', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9265', 'af', 'premium_packages_for_sellers', 'د پلورونکو لپاره پریمیم کڅوړې', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9266', 'af', 'product_upload', 'د محصول پورته کول', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9267', 'af', 'digital_product_upload', 'د ډیجیټل محصول اپلوډ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9268', 'af', 'purchase_package', 'د پیرود بنډل', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9269', 'af', 'select_payment_type', 'د تادیې ډول وټاکئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9270', 'af', 'payment_type', 'د پیسو ډول', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9271', 'af', 'select_one', 'یو یې وټاکئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9272', 'af', 'online_payment', 'آنلاین تادیه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9273', 'af', 'offline_payment', 'آفلاین تادیه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9274', 'af', 'purchase_your_package', 'خپل کڅوړه واخلئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9275', 'af', 'paypal', 'تادیه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9276', 'af', 'stripe', 'پټه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9277', 'af', 'sslcommerz', 'sslcommerz', '2021-02-09 12:46:51', '2021-02-09 12:46:51'),
('9278', 'af', 'confirm', 'تصدیق یې کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9279', 'af', 'offline_package_payment', 'د پیسو آفلاین تادیه', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9280', 'af', 'transaction_id', 'د راکړې ورکړې پیژند', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9281', 'af', 'choose_image', 'انځور غوره کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9282', 'af', 'code', 'کوډ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9283', 'af', 'delivery_status', 'تحویلي حالت', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9284', 'af', 'payment_status', 'د تادیې وضعیت', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9285', 'af', 'paid', 'تادیه شوې', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9286', 'af', 'order_details', 'د سپارنې توضیحات', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9287', 'af', 'download_invoice', 'انوائس ډاونلوډ کړئ', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9288', 'af', 'unpaid', 'بې تادیه شوې', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9289', 'af', 'order_placed', 'آرډر ورکړل شو', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9290', 'af', 'confirmed', 'تصدیق شوی', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9291', 'af', 'on_delivery', 'په تحویل کې', '2021-02-09 12:46:51', '2021-09-20 12:59:34'),
('9292', 'af', 'delivered', 'ورکړل شوی', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9293', 'af', 'order_summary', 'د لنډیز لنډیز', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9294', 'af', 'order_code', 'د امر کوډ', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9295', 'af', 'customer', 'پیرودونکی', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9296', 'af', 'total_order_amount', 'د امر مجموعه', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9297', 'af', 'shipping_metdod', 'بار وړلو میټډوډ', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9298', 'af', 'flat_shipping_rate', 'د فلیټ بار وړلو نرخ', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9299', 'af', 'payment_metdod', 'د تادیې میټود', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9300', 'af', 'variation', 'تغیر', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9301', 'af', 'delivery_type', 'تحویل ډول', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9302', 'af', 'home_delivery', 'کور وړاندې کول', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9303', 'af', 'order_ammount', 'د امر مقدار', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9304', 'af', 'subtotal', 'ټوله', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9305', 'af', 'shipping', 'لېږدول', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9306', 'af', 'coupon_discount', 'د کوپن تخفیف', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9307', 'af', 'na', 'N / A', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9308', 'af', 'in_stock', 'په ګدام کښي', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9309', 'af', 'buy_now', 'همدا اوس پیرل', '2021-02-09 12:46:52', '2021-09-20 12:59:34'),
('9310', 'af', 'item_added_to_your_cart', 'توکي ستاسو په موټر کې اضافه کړل!', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9311', 'af', 'proceed_to_checkout', 'چیک آوټ ته لاړشئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9312', 'af', 'cart_items', 'د کارټ توکي', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9313', 'af', '1_my_cart', '1. زما موټر', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9314', 'af', 'view_cart', 'ګاډۍ وګورئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9315', 'af', '2_shipping_info', '2. د لېږلو معلومات', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9316', 'af', 'checkout', 'بشپړ ی وګوره', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9317', 'af', '3_delivery_info', 'د تحویل معلومات', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9318', 'af', '4_payment', '4. تادیه', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9319', 'af', '5_confirmation', '5. تایید', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9320', 'af', 'remove', 'لرې کړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9321', 'af', 'return_to_shop', 'پلورنځي ته راستون شو', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9322', 'af', 'continue_to_shipping', 'بار وړلو ته دوام ورکړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9323', 'af', 'or', 'یا', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9324', 'af', 'guest_checkout', 'میلمه چیک', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9325', 'af', 'continue_to_delivery_info', 'تحویلي معلوماتو ته ادامه ورکړه', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9326', 'af', 'postal_code', 'د ډاګ کوډ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9327', 'af', 'choose_delivery_type', 'د سپارنې ډول غوره کړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9328', 'af', 'local_pickup', 'ځایي اخیستل', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9329', 'af', 'select_your_nearest_pickup_point', 'خپل د نیولو نږدې ځای غوره کړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9330', 'af', 'continue_to_payment', 'تادیې ته ادامه ورکړه', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9331', 'af', 'select_a_payment_option', 'د تادیې انتخاب غوره کړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9332', 'af', 'razorpay', 'استرایی', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9333', 'af', 'paystack', 'تادیه', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9334', 'af', 'voguepay', 'VoguePay', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9335', 'af', 'payhere', 'دلته تادیه وکړئ', '2021-02-09 12:46:52', '2021-02-09 12:46:52'),
('9336', 'af', 'ngenius', 'نګینی', '2021-02-09 12:46:52', '2021-02-09 12:46:52'),
('9337', 'af', 'paytm', 'پیټم', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9338', 'af', 'cash_on_delivery', 'د تحویلۍ پر مهال نغدي', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9339', 'af', 'your_wallet_balance_', 'ستاسو د بکس توازن:', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9340', 'af', 'insufficient_balance', 'ناکافي توازن', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9341', 'af', 'i_agree_to_the', 'زه د', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9342', 'af', 'complete_order', 'بشپړ امر', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9343', 'af', 'summary', 'لنډیز', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9344', 'af', 'items', 'توکي', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9345', 'af', 'total_club_point', 'د کلب ټکی', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9346', 'af', 'total_shipping', 'ټوله بار وړل', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9347', 'af', 'have_coupon_code_enter_here', 'د کوپن کوډ لری؟ دلته دننه شه', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9348', 'af', 'apply', 'غوښتنه وکړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9349', 'af', 'you_need_to_agree_with_our_policies', 'تاسو اړتیا لرئ زموږ له پالیسیو سره موافق شئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9350', 'af', 'forgot_password', 'خپل پټ نوم درڅخه هیر دی', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9351', 'af', 'seo_setting', 'د SEO تنظیم', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9352', 'af', 'system_update', 'سیسټم اوسمهالول', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9353', 'af', 'add_new_payment_method', 'د تادیې نوي میتود اضافه کړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9354', 'af', 'manual_payment_method', 'د پیسو د ورکړې لارښود', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9355', 'af', 'heading', 'سرلیک', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9356', 'af', 'logo', 'لوگو', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9357', 'af', 'manual_payment_information', 'لاسي تادیه معلومات', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9358', 'af', 'type', 'ډول', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9359', 'af', 'custom_payment', 'ګمرکي تادیات', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9360', 'af', 'check_payment', 'تادیه وګوره', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9361', 'af', 'checkout_thumbnail', 'تمبینل چیک چیک', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9362', 'af', 'payment_instruction', 'د پیسو لارښود', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9363', 'af', 'bank_information', 'د بانک معلومات', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9364', 'af', 'select_file', 'فایل غوره کړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9365', 'af', 'upload_new', 'نوی پورته کړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9366', 'af', 'sort_by_newest', 'په نوي بortه برابرول', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9367', 'af', 'sort_by_oldest', 'د زاړه لخوا ترتیب شوی', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9368', 'af', 'sort_by_smallest', 'په وړه کچه ترتیب کړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9369', 'af', 'sort_by_largest', 'په لویه کچه ترتیب کړئ', '2021-02-09 12:46:52', '2021-09-20 12:59:35'),
('9370', 'af', 'selected_only', 'یوازې ټاکل شوی', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9371', 'af', 'no_files_found', 'هیڅ فایل ونه موندل شو', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9372', 'af', '0_file_selected', '0 فایل غوره شوی', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9373', 'af', 'clear', 'پاک', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9374', 'af', 'prev', 'تېر', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9375', 'af', 'next', 'بل', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9376', 'af', 'add_files', 'فایلونه زیات کړئ', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9377', 'af', 'method_has_been_inserted_successfully', 'میتود په بریالیتوب سره دننه شوی دی', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9378', 'af', 'order_date', 'د سپارنې نیټه', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9379', 'af', 'bill_to', 'په نوم يې بل لیکل', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9380', 'af', 'sub_total', 'ټول ټال', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9381', 'af', 'total_tax', 'ټول ټیکس', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9382', 'af', 'grand_total', 'ستره مجموعه', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9383', 'af', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'ستاسو آرډر په بریالیتوب سره ورکړل شوی دی مهرباني وکړئ د پیرود تاریخ څخه د تادیاتو معلومات وسپارئ', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9384', 'af', 'thank_you_for_your_order', 'ستاسو له امر څخه مننه!', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9385', 'af', 'order_code', 'د امر کوډ:', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9386', 'af', 'a_copy_or_your_order_summary_has_been_sent_to', 'یوه کاپي یا ستاسو د غوښتنې لنډیز استول شوي', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9387', 'af', 'make_payment', 'پیسې ورکړئ', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9388', 'af', 'payment_screenshot', 'د تادیې سکرین شاټ', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9389', 'af', 'paypal_credential', 'د تادیې اعتبار', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9390', 'af', 'paypal_client_id', 'د تادیې پیرودونکي پیژند', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9391', 'af', 'paypal_client_secret', 'د تادیې پیرودونکي راز', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9392', 'af', 'paypal_sandbox_mode', 'د تادیې سانډباک حالت', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9393', 'af', 'sslcommerz_credential', 'د Sslcommerz اعتبار', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9394', 'af', 'sslcz_store_id', 'د Sslcz Store Store', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9395', 'af', 'sslcz_store_password', 'د Sslcz پلورنځی رمز', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9396', 'af', 'sslcommerz_sandbox_mode', 'د Sslcommerz Sandbox حالت', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9397', 'af', 'stripe_credential', 'پټه اعتبار', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9398', 'af', 'stripe_key', 'سټاپ کلي', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9399', 'af', 'stripe_secret', 'سټراټیټ سیکټ', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9400', 'af', 'razorpay_credential', 'د ریزرپای اعتبار', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9401', 'af', 'razor_key', 'RAZOR KEY', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9402', 'af', 'razor_secret', 'د راز راز', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9403', 'af', 'instamojo_credential', 'د انسټایمو سندونه', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9404', 'af', 'api_key', 'د API KEY', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9405', 'af', 'im_api_key', 'د IM API KEY', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9406', 'af', 'auth_token', 'د توکین ټوک', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9407', 'af', 'im_auth_token', 'د IM توکین', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9408', 'af', 'instamojo_sandbox_mode', 'د انسټایموج سینڈ باکس حالت', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9409', 'af', 'paystack_credential', 'د تادیه کولو سند', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9410', 'af', 'public_key', 'عامه کلي', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9411', 'af', 'secret_key', 'کليدي کلي', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9412', 'af', 'merchant_email', 'اختصاصي بریښنالیک', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9413', 'af', 'voguepay_credential', 'د VoguePay اعتبار', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9414', 'af', 'merchant_id', 'دماشوم پیژند', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9415', 'af', 'sandbox_mode', 'د سانډباک حالت', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9416', 'af', 'payhere_credential', 'د تادیاتو اعتبار', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9417', 'af', 'payhere_merchant_id', 'د تادیه سوداګریزه پیژند', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9418', 'af', 'payhere_secret', 'د پټنتیا محرم', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9419', 'af', 'payhere_currency', 'د تادیاتو وخت', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9420', 'af', 'payhere_sandbox_mode', 'دلته د سانډ باکس حالت', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9421', 'af', 'ngenius_credential', 'د نګینیانو اعتبار', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9422', 'af', 'ngenius_outlet_id', 'د غیر نظامي پا IDې پیژند', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9423', 'af', 'ngenius_api_key', 'د NGENIUS API کلید', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9424', 'af', 'ngenius_currency', 'د نجنسي اوسني حالت', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9425', 'af', 'mpesa_credential', 'د میپسا سند', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9426', 'af', 'mpesa_consumer_key', 'د MPESA CONSUMER KEY', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9427', 'af', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9428', 'af', 'mpesa_consumer_secret', 'د MPESA ضمیمه محرم', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9429', 'af', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9430', 'af', 'mpesa_short_code', 'د MPESA لنډ کوډ', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9431', 'af', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9432', 'af', 'mpesa_sandbox_activation', 'د MPESA SANDBOX فعالیت', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9433', 'af', 'flutterwave_credential', 'د فلوټ ویو سند', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9434', 'af', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9435', 'af', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9436', 'af', 'rave_title', 'RAVE_TITLE', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9437', 'af', 'stagin_activation', 'د', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9438', 'af', 'all_product', 'ټول محصول', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9439', 'af', 'sort_by', 'ترتیب یی کړه په', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9440', 'af', 'rating_high__low', 'کچونګ (لوړ> ټیټ)', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9441', 'af', 'rating_low__high', 'کچې (ټیټ> لوړ)', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9442', 'af', 'num_of_sale_high__low', 'د پلور شمېر (لوړ> ټیټ)', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9443', 'af', 'num_of_sale_low__high', 'د پلور شمېره (ټیټ> لوړ)', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9444', 'af', 'base_price_high__low', 'اساس قیمت (لوړ> ټیټ)', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9445', 'af', 'base_price_low__high', 'اساس قیمت (ټیټ> لوړ)', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9446', 'af', 'type__enter', 'ولیکئ او ولیکئ', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9447', 'af', 'added_by', 'اضافه شوی له خوا', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9448', 'af', 'num_of_sale', 'د پلور شمیر', '2021-02-09 12:46:53', '2021-09-20 12:59:35'),
('9449', 'af', 'total_stock', 'ټوله سټاک', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9450', 'af', 'todays_deal', 'د نن ورځې معاملې', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9451', 'af', 'rating', 'درجه ورکول', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9452', 'af', 'times', 'وختونه', '2021-02-09 12:46:54', '2021-02-09 12:46:54'),
('9453', 'af', 'add_nerw_product', 'د اعصاب محصول اضافه کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9454', 'af', 'product_information', 'د محصول معلومات', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9455', 'af', 'unit', 'واحد', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9456', 'af', 'unit_eg_kg_pc_etc', 'واحد (د مثال په توګه KG ، Pc نور)', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9457', 'af', 'minimum_qty', 'لږترلږه مقدار', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9458', 'af', 'tags', 'ټاګزونه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9459', 'af', 'type_and_hit_enter_to_add_a_tag', 'د ټیګ اضافه کولو لپاره دننه او ټایپ کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9460', 'af', 'barcode', 'بارکوډ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9461', 'af', 'refundable', 'د بیرته ستنیدو وړ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9462', 'af', 'product_images', 'د محصول عکسونه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9463', 'af', 'gallery_images', 'د ګالري عکسونه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9464', 'af', 'todays_deal_updated_successfully', 'د نن ورځې معاملې په بریالیتوب سره تازه شوې', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9465', 'af', 'published_products_updated_successfully', 'خپاره شوي محصولات په بریالیتوب سره تازه شوي', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9466', 'af', 'thumbnail_image', 'بumbه انځور', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9467', 'af', 'featured_products_updated_successfully', 'ب productsه شوي محصولات په بریالیتوب سره نوي شوي', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9468', 'af', 'product_videos', 'د محصول ویډیوګانې', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9469', 'af', 'video_provider', 'ویډیو چمتو کونکی', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9470', 'af', 'youtube', 'یوټیوب', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9471', 'af', 'dailymotion', 'ورځنۍ خپرونه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9472', 'af', 'vimeo', 'Vimeo', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9473', 'af', 'video_link', 'ویډیو لینک', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9474', 'af', 'product_variation', 'د محصول توپیر', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9475', 'af', 'colors', 'رنګونه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9476', 'af', 'attributes', 'صفات', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9477', 'af', 'choose_attributes', 'صفات غوره کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9478', 'af', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'د دې محصول خصوصيات وټاکئ او بیا د هرې خاصیت ننوتون ارزښتونه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9479', 'af', 'product_price__stock', 'د محصول نرخ + سټاک', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9480', 'af', 'unit_price', 'د واحد قیمت', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9481', 'af', 'purchase_price', 'د پیرودلو بیه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9482', 'af', 'flat', 'فلیټ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9483', 'af', 'percent', 'سلنه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9484', 'af', 'discount', 'تخفیف', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9485', 'af', 'product_description', 'د تولید ځانګړتیاوې', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9486', 'af', 'product_shipping_cost', 'د محصول لیږد لګښت', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9487', 'af', 'free_shipping', 'وړیا بار وړل', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9488', 'af', 'flat_rate', 'د فلیټ نرخ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9489', 'af', 'shipping_cost', 'د لېږد کرایه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9490', 'af', 'pdf_specification', 'د پی ډي ایف توضیحات', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9491', 'af', 'seo_meta_tags', 'د SEO میټا ټاګونه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9492', 'af', 'meta_title', 'د میټا سرلیک', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9493', 'af', 'meta_image', 'د میټا عکس', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9494', 'af', 'choice_title', 'د انتخاب سرلیک', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9495', 'af', 'enter_choice_values', 'د انتخاب ارزښتونه دننه کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9496', 'af', 'all_categories', 'ټولې کټګورۍ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9497', 'af', 'add_new_category', 'نوې کټګورۍ اضافه کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9498', 'af', 'type_name__enter', 'نوم او دننه ټایپ کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9499', 'af', 'banner', 'بینر', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9500', 'af', 'commission', 'کمیسیون', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9501', 'af', 'icon', 'نښه', '2021-02-09 12:46:54', '2021-02-09 12:46:54'),
('9502', 'af', 'featured_categories_updated_successfully', 'ب categoriesه شوې کټګورۍ په بریالیتوب سره نوي شوي', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9503', 'af', 'hot', 'ګرم', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9504', 'af', 'filter_by_payment_status', 'د تادیې وضعیت لخوا فلټر کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9505', 'af', 'unpaid', 'بې تادیه شوې', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9506', 'af', 'filter_by_deliver_status', 'د تحویلونکي حالت لخوا فلټر', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9507', 'af', 'pending', 'پاتې کول', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9508', 'af', 'type_order_code__hit_enter', 'د امر کوډ ولیکئ او په نښه یې ټک کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9509', 'af', 'num_of_products', 'شمېر د محصولاتو', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9510', 'af', 'walk_in_customer', 'په پیرودونکي کې ولاړ شه', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9511', 'af', 'qty', 'QTY', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9512', 'af', 'without_shipping_charge', 'پرته د بار وړلو لګښت', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9513', 'af', 'with_shipping_charge', 'د بار وړلو لګښت سره', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9514', 'af', 'pay_with_cash', 'د نغدو سره تادیه وکړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9515', 'af', 'shipping_address', 'د وړلو او راوړلو پته', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9516', 'af', 'close', 'بندول', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9517', 'af', 'select_country', 'هیواد غوره کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9518', 'af', 'order_confirmation', 'د امر تایید', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9519', 'af', 'are_you_sure_to_confirm_this_order', 'ایا تاسو باوري یاست چې دا سپارښتنه تایید کړئ؟', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9520', 'af', 'comfirm_order', 'د امر تصدیق کول', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9521', 'af', 'personal_info', 'شخصي معلومات', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9522', 'af', 'repeat_password', 'تکرار تکرار کړئ', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9523', 'af', 'shop_name', 'د پلورنځي نوم', '2021-02-09 12:46:54', '2021-09-20 12:59:35'),
('9524', 'af', 'register_your_shop', 'خپله هټۍ ثبت کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9525', 'af', 'affiliate_informations', 'وابسته خبرتیاوې', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9526', 'af', 'affiliate', 'وابسته', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9527', 'af', 'user_info', 'کارن معلومات', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9528', 'af', 'installed_addon', 'لګول شوی اډون', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9529', 'af', 'available_addon', 'موجود اډون', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9530', 'af', 'install_new_addon', 'نوی اډون ولګوه', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9531', 'af', 'version', 'نسخه', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9532', 'af', 'activated', 'فعال شوی', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9533', 'af', 'deactivated', 'غیر فعال شوی', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9534', 'af', 'activate_otp', 'OTP فعال کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9535', 'af', 'otp_will_be_used_for', 'OTP به د دې لپاره وکارول شي', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9536', 'af', 'settings_updated_successfully', 'امستنې په بریالیتوب سره تازه شوې', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9537', 'af', 'product_owner', 'د محصول مالک', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9538', 'af', 'point', 'ټکی', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9539', 'af', 'set_point_for_product_within_a_range', 'د حدود دننه د محصول لپاره نقطه ترتیب کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9540', 'af', 'set_point_for_multiple_products', 'د ډیری محصولاتو لپاره نقطه ترتیب کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9541', 'af', 'min_price', 'لږ لګښت', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9542', 'af', 'max_price', 'اعظمي قيمت', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9543', 'af', 'set_point_for_all_products', 'د ټولو محصولاتو لپاره نقطه ترتیب کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9544', 'af', 'set_point_for_', 'لپاره ټکی وټاکئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9545', 'af', 'convert_status', 'د حالت بدلول', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9546', 'af', 'earned_at', 'ترلاسه شوی په', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9547', 'af', 'seller_based_selling_report', 'د پلور پر اساس د پلور راپور', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9548', 'af', 'sort_by_verificarion_status', 'د تثبیت وضعیت سره برابرول', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9549', 'af', 'approved', 'منظور شوی', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9550', 'af', 'non_approved', 'غیر منل شوی', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9551', 'af', 'filter', 'چا.', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9552', 'af', 'seller_name', 'د پلورونکي نوم', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9553', 'af', 'number_of_product_sale', 'د محصول د پلور شمیره', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9554', 'af', 'order_amount', 'د مقدار مقدار', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9555', 'af', 'facebook_chat_setting', 'د فېسبوک چټ تنظیم کول', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9556', 'af', 'facebook_page_id', 'د فېسبوک پا IDې پېژند', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9557', 'af', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'مهرباني وکړئ په پام کې ونیسئ کله چې تاسو د فېسبوک چت تنظیم کوئ. د غلط ترتیب لپاره به تاسو د خپل کارن-پای سایټ کې میسنجر عکس ونه ترلاسه کوئ.', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9558', 'af', 'login_into_your_facebook_page', 'خپل فېسبوک پا intoې ته ننوتل', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9559', 'af', 'find_the_about_option_of_your_facebook_page', 'د خپل فېسبوک پا ofې په اړه اختیار ومومئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9560', 'af', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'په خورا ټیټ کې ، تاسو کولی شئ د Facebook \"فیسبوک پا IDې ID \\\" ومومئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9561', 'af', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'د خپلې پا ofې تنظیماتو ته لاړ شئ او د Advance \"پرمختللي پیغام رسونې \\\" اختیار ومومئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9562', 'af', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'هغه پا downه ښکته کړئ او تاسو به white \"سپین لیست ډومین \\\" ترلاسه کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9563', 'af', 'set_your_website_domain_name', 'ستاسو د ویب پا domainې ډومین نوم تنظیم کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9564', 'af', 'google_recaptcha_setting', 'د ګوګل ریکاټا تنظیم', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9565', 'af', 'site_key', 'سایټ کیی', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9566', 'af', 'select_shipping_method', 'د بار وړلو میتود غوره کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9567', 'af', 'product_wise_shipping_cost', 'د محصول له مخې د بار وړلو لګښت', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9568', 'af', 'flat_rate_shipping_cost', 'د فلیټ نرخ د لیږد لګښت', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9569', 'af', 'seller_wise_flat_shipping_cost', 'د پلور مطابق وار د بار وړلو لګښت', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9570', 'af', 'note', 'یادونه', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9571', 'af', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'د محصول له مخې د بار وړلو لګښت حساب: د بار وړلو لګښت د هر محصول بار وړلو لګښت سربیره محاسبه کیږي', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9572', 'af', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'د فلیټ نرخ د لیږد لګښت حساب: څومره پیرودونکي پیرودونکي پیرود کوي ، اهمیت نلري. د بار وړلو لګښت ټاکل شوی دی', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9573', 'af', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'د پلور وار وار فلیټ بار وړلو لګښت حساب: د هر پلورونکي لپاره ټاکل شوې نرخ. که چیرې پیرودونکی د دوه پلورونکي بار وړلو لګښت څخه 2 محصول واخلي نو د هر پلورونکي د فلیټ بار وړلو لګښت اضافه کولو سره محاسبه کیږي', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9574', 'af', 'flat_rate_cost', 'د فلیټ نرخ قیمت', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9575', 'af', 'shipping_cost_for_admin_products', 'د اډمین محصولاتو لپاره د بار وړلو لګښت', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9576', 'af', 'countries', 'هیوادونه', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9577', 'af', 'showhide', 'ښودل / پټ کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9578', 'af', 'country_status_updated_successfully', 'د هیواد حالت په بریالیتوب سره تازه شوی', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9579', 'af', 'all_subcategories', 'ټولې فرعي کټګورۍ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9580', 'af', 'add_new_subcategory', 'نوې فرعي کتګورۍ اضافه کړئ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9581', 'af', 'subcategories', 'فرعي کټګورۍ', '2021-02-09 12:46:55', '2021-09-20 12:59:35'),
('9582', 'af', 'sub_category_information', 'د فرعي کټګورۍ معلومات', '2021-02-09 12:47:37', '2021-09-20 12:59:35'),
('9583', 'af', 'slug', 'سلګ', '2021-02-09 12:47:37', '2021-09-20 12:59:35'),
('9584', 'af', 'all_sub_subcategories', 'ټولې فرعي وېشنيزې', '2021-02-09 12:47:37', '2021-09-20 12:59:35'),
('9585', 'af', 'add_new_sub_subcategory', 'نوې فرعي فرعي کتګورۍ اضافه کړئ', '2021-02-09 12:47:37', '2021-09-20 12:59:35'),
('9586', 'af', 'subsubcategories', 'فرعي فرعي کټګورۍ', '2021-02-09 12:47:37', '2021-09-20 12:59:35'),
('9587', 'af', 'make_this_default', 'دا ډیفالټ کړئ', '2021-02-09 12:47:37', '2021-09-20 12:59:35'),
('9588', 'af', 'shops', 'دوکان', '2021-02-09 12:47:37', '2021-09-20 12:59:35'),
('9589', 'af', 'women_clothing__fashion', 'د ښځو کالي او فیشن', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9590', 'af', 'cellphones__tabs', 'ګرځنده ټلیفونونه او ټبونه', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9591', 'af', 'welcome_to', 'ښه راغلاست', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9592', 'af', 'create_a_new_account', 'نوی حساب جوړ کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9593', 'af', 'full_name', 'بشپړ نوم', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9594', 'af', 'password', 'رمز', '2021-02-09 12:47:38', '2021-02-09 12:47:38'),
('9595', 'af', 'confrim_password', 'پټنوم تاييد کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9596', 'af', 'i_agree_with_the', 'زه د', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9597', 'af', 'terms_and_conditions', 'شرایط او مقررات', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9598', 'af', 'register', 'ثبت کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9599', 'af', 'already_have_an_account', 'دمخه حساب لري', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9600', 'af', 'sign_up_with', 'سره ننوتل', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9601', 'af', 'i_agree_with_the_terms_and_conditions', 'زه د شرایطو او شرایطو سره موافق یم', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9602', 'af', 'all_role', 'ټول رول', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9603', 'af', 'add_new_role', 'نوی رول اضافه کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9604', 'af', 'roles', 'رولونه', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9605', 'af', 'add_new_staffs', 'نوي کارمندان اضافه کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9606', 'af', 'role', 'رول', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9607', 'af', 'frontend_website_name', 'د فرنټ فایډ نوم', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9608', 'af', 'website_name', 'د ویب پا Nameې نوم', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9609', 'af', 'site_motto', 'سایټ موټو', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9610', 'af', 'best_ecommerce_website', 'د ای کامرس غوره ویب پا .ه', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9611', 'af', 'site_icon', 'ګورت پا .ه', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9612', 'af', 'website_favicon_32x32_png', 'ویب پا favه. 32x32 .png', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9613', 'af', 'website_base_color', 'د ویب پا Baseې اساس رنګ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9614', 'af', 'hex_color_code', 'د Hex رنګ کوډ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9615', 'af', 'website_base_hover_color', 'د ویب پا Baseې اساس هور رنګ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9616', 'af', 'update', 'تازه', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9617', 'af', 'global_seo', 'نړیوال SEO', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9618', 'af', 'meta_description', 'د میټا توضیحات', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9619', 'af', 'keywords', 'کلیدي ټکي', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9620', 'af', 'separate_with_coma', 'د کوما سره جلا کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9621', 'af', 'website_pages', 'د ویب پا Pagesې پا .ې', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9622', 'af', 'all_pages', 'ټولې پا .ې', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9623', 'af', 'add_new_page', 'نوې پا Addه اضافه کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9624', 'af', 'url', 'یو آر ایل', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9625', 'af', 'actions', 'کړنې', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9626', 'af', 'edit_page_information', 'د پا Informationې معلومات', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9627', 'af', 'page_content', 'د پا Contentې مینځپانګه', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9628', 'af', 'title', 'سرلیک', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9629', 'af', 'link', 'لینک', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9630', 'af', 'use_character_number_hypen_only', 'یوازې کرکټر ، شمیره ، هیپین وکاروئ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9631', 'af', 'add_content', 'مینځپانګه اضافه کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9632', 'af', 'seo_fields', 'د Seo ډګرونه', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9633', 'af', 'update_page', 'اوسمهال پا Pageه', '2021-02-09 12:47:38', '2021-09-20 12:59:35'),
('9634', 'af', 'default_language', 'اصلي ژبه', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9635', 'af', 'add_new_language', 'نوې ژبه اضافه کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9636', 'af', 'rtl', 'RTL', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9637', 'af', 'translation', 'ژباړه', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9638', 'af', 'language_information', 'د ژبې معلومات', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9639', 'af', 'save_page', 'پا Saveه خوندي کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9640', 'af', 'home_page_settings', 'د کور پا Settingsې تنظیمات', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9641', 'af', 'home_slider', 'کور سلایډ', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9642', 'af', 'photos__links', 'عکسونه او لینکونه', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9643', 'af', 'add_new', 'نوی اضافه کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9644', 'af', 'home_categories', 'کور کټګورۍ', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9645', 'af', 'home_banner_1_max_3', 'د کور بینر 1 (اعظمي 3)', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9646', 'af', 'banner__links', 'بینر او لینکونه', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9647', 'af', 'home_banner_2_max_3', 'د کور بینر 2 (اعظمي 3)', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9648', 'af', 'top_10', 'سر 10', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9649', 'af', 'top_categories_max_10', 'غوره کټګورۍ (تر 10 ډیر)', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9650', 'af', 'top_brands_max_10', 'غوره برانډونه (تر 10 ډیر)', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9651', 'af', 'system_name', 'د سیسټم نوم', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9652', 'af', 'system_logo__white', 'د سیسټم لوګو - سپین', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9653', 'af', 'choose_files', 'فایلونه غوره کړئ', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9654', 'af', 'will_be_used_in_admin_panel_side_menu', 'د ایڈمن پینل اړخ مینو کې به وکارول شي', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9655', 'af', 'system_logo__black', 'د سیسټم لوګو - تور', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9656', 'af', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'په ګرځنده + اډمین ننوتل پا pageه کې به د ایڈمن پینل ټاپبار کې وکارول شي', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9657', 'af', 'system_timezone', 'د سیستم وخت زون', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9658', 'af', 'admin_login_page_background', 'د اډمین ننوتل پا backgroundه شالید', '2021-02-09 12:47:38', '2021-09-20 12:59:36'),
('9659', 'af', 'website_header', 'د ویب پا Headې سرۍ', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9660', 'af', 'header_setting', 'سرۍ تنظیم کول', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9661', 'af', 'header_logo', 'سرۍ لوګو', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9662', 'af', 'show_language_switcher', 'د ژبې سویچر ښکاره کول؟', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9663', 'af', 'show_currency_switcher', 'د اسعارو بدلون؟', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9664', 'af', 'enable_stikcy_header', 'د سخت دریځ سرلیک وړ کړئ؟', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9665', 'af', 'website_footer', 'د ویب پا Footې', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9666', 'af', 'footer_widget', 'فوټ ویجټ', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9667', 'af', 'about_widget', 'د ویجټ په اړه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9668', 'af', 'footer_logo', 'فوټر لوګو', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9669', 'af', 'about_description', 'د تفصیل په اړه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9670', 'af', 'contact_info_widget', 'د اړیکې معلوماتو ویجیټ', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9671', 'af', 'footer_contact_address', 'د فوټر د تماس پته', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9672', 'af', 'footer_contact_phone', 'د فوټر تماس تلیفون', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9673', 'af', 'footer_contact_email', 'د فوټر تماس بریښنالیک', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9674', 'af', 'link_widget_one', 'د لینک ویجټ یو', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9675', 'af', 'links', 'لینکونه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9676', 'af', 'footer_bottom', 'فوټر ښکته', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9677', 'af', 'copyright_widget_', 'د چاپ حق', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9678', 'af', 'copyright_text', 'د چاپ حق', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9679', 'af', 'social_link_widget_', 'د ټولنیز لینک ویجټ', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9680', 'af', 'show_social_links', 'ټولنیز لینکونه ښیې؟', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9681', 'af', 'social_links', 'ټولنیزې اړیکې', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9682', 'af', 'payment_methods_widget_', 'د تادیې میتودونو ویجټ', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9683', 'af', 'rtl_status_updated_successfully', 'د RTL حالت په بریالیتوب سره تازه شو', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9684', 'af', 'language_changed_to_', 'ژبه ته', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9685', 'af', 'inhouse_product_sale_report', 'د داخلي محصولاتو د پلور راپور', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9686', 'af', 'sort_by_category', 'د کټګورۍ لخوا ترتیب شوی', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9687', 'af', 'product_wise_stock_report', 'د محصول وار وار وار راپور', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9688', 'af', 'currency_changed_to_', 'اسعارو ته بدل شو', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9689', 'af', 'avatar', 'اوتار', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9690', 'af', 'copy', 'کاپي', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9691', 'af', 'variant', 'متغیر', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9692', 'af', 'variant_price', 'مختلف قیمت', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9693', 'af', 'sku', 'SKU', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9694', 'af', 'key', 'کیلي', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9695', 'af', 'value', 'ارزښت', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9696', 'af', 'copy_translations', 'کاپي ژباړه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9697', 'af', 'all_pickup_points', 'ټولې د راټولو ځایونه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9698', 'af', 'add_new_pickup_point', 'نوی د پورته کولو نقطه اضافه کړه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9699', 'af', 'manager', 'مدیر', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9700', 'af', 'location', 'ځای', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9701', 'af', 'pickup_station_contact', 'د غوره کولو سټیشن اړیکه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9702', 'af', 'open', 'خلاص', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9703', 'af', 'pos_activation_for_seller', 'د پلورونکي لپاره POS فعالیت', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9704', 'af', 'order_completed_successfully', 'امر په بریالیتوب بشپړ شو.', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9705', 'af', 'text_input', 'متن متن', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9706', 'af', 'select', 'وټاکئ', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9707', 'af', 'multiple_select', 'ګ Select ټاکنه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9708', 'af', 'radio', 'راډیو', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9709', 'af', 'file', 'دوتنه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9710', 'af', 'email_address', 'بریښنالیک', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9711', 'af', 'verification_info', 'د تایید معلومات', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9712', 'af', 'approval', 'تصویب', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9713', 'af', 'due_amount', 'ټاکل شوې پیسې', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9714', 'af', 'show', 'ښودل', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9715', 'af', 'pay_now', 'اوس یې ورکړه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9716', 'af', 'affiliate_user_verification', 'د وابسته کارن تایید', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9717', 'af', 'reject', 'رد کړئ', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9718', 'af', 'accept', 'ومنه', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9719', 'af', 'beauty_health__hair', 'ښکلا ، روغتیا او ویښتان', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9720', 'af', 'comparison', 'پرتله کول', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9721', 'af', 'reset_compare_list', 'د پرتله کولو لیست تنظیمول', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9722', 'af', 'your_comparison_list_is_empty', 'ستاسو د پرتله کولو لیست خالي دی', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9723', 'af', 'convert_point_to_wallet', 'واټ ته ټکی بدل کړئ', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9724', 'af', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'یادونه: تاسو اړتیا لرئ لومړی د کلب پوائنټ اډون کارولو دمخه د والټ اختیار فعال کړئ.', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9725', 'af', 'create_an_account', 'ګڼون پرانیستل.', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9726', 'af', 'use_email_instead', 'پرځای یې بریښنالیک وکاروئ', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9727', 'af', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'په لاسلیک کولو سره تاسو زموږ شرایطو او شرایطو سره موافق یاست.', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9728', 'af', 'create_account', 'ګڼون جوړول', '2021-02-09 12:47:39', '2021-09-20 12:59:36'),
('9729', 'af', 'or_join_with', 'یا سره ګډون وکړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9730', 'af', 'already_have_an_account', 'دمخه یو حساب لرئ؟', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9731', 'af', 'log_in', 'د ننه کیدل', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9732', 'af', 'computer__accessories', 'کمپیوټر او لوازم', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9733', 'af', 'products', 'محصولات', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9734', 'af', 'in_your_cart', 'ستاسو په موټر کې', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9735', 'af', 'in_your_wishlist', 'ستاسو په لست کې', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9736', 'af', 'you_ordered', 'تاسو امر کړی', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9737', 'af', 'default_shipping_address', 'د لیږلو لومړنی پته', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9738', 'af', 'sports__outdoor', 'لوبې او بهر', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9739', 'af', 'copied', 'کاپي شوی', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9740', 'af', 'copy_the_promote_link', 'د پرومو لینک کاپي کړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9741', 'af', 'write_a_review', 'بیاکتنه ولیکئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9742', 'af', 'your_name', 'ستاسو نوم', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9743', 'af', 'comment', 'څرګندونه', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9744', 'af', 'your_review', 'ستاسو بیاکتنه', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9745', 'af', 'submit_review', 'بیاکتنه وسپارئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9746', 'af', 'claire_willis', 'کلیر ولیس', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9747', 'af', 'germaine_greene', 'ګرمین ګرین', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9748', 'af', 'product_file', 'د محصول دوتنه', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9749', 'af', 'choose_file', 'فایل غوره کړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9750', 'af', 'type_to_add_a_tag', 'د ټګ اضاف کولو لپاره ولیکئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9751', 'af', 'images', 'انځورونه', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9752', 'af', 'main_images', 'اصلي انځورونه', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9753', 'af', 'meta_tags', 'میټا ټاګز', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9754', 'af', 'digital_product_has_been_inserted_successfully', 'ډیجیټل محصول په بریالیتوب سره دننه شوی', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9755', 'af', 'edit_digital_product', 'ډیجیټل محصول', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9756', 'af', 'select_an_option', 'یو انتخاب غوره کړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9757', 'af', 'tax', 'مالیات', '2021-02-09 12:47:40', '2021-02-09 12:47:40'),
('9758', 'af', 'any_question_about_this_product', 'د دې محصول په اړه کومه پوښتنه؟', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9759', 'af', 'sign_in', 'ننوزئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9760', 'af', 'login_with_google', 'د ګوګل سره ننوتل', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9761', 'af', 'login_with_facebook', 'له فېسبوک سره ننوتل', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9762', 'af', 'login_with_twitter', 'له ټویټر سره ننوتل', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9763', 'af', 'click_to_show_phone_number', 'د تلیفون شمیره ښودلو لپاره کلیک وکړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9764', 'af', 'other_ads_of', 'د نورو اعلاناتو', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9765', 'af', 'store_home', 'پلورنځی کور', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9766', 'af', 'top_selling', 'غوره پلورل', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9767', 'af', 'shop_settings', 'د پلور امستنې', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9768', 'af', 'visit_shop', 'پلورنځي ته ورځي', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9769', 'af', 'pickup_points', 'د غوره کولو ځایونه', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9770', 'af', 'select_pickup_point', 'د غوره کولو ټکی غوره کړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9771', 'af', 'slider_settings', 'د سلایډ تنظیمات', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9772', 'af', 'social_media_link', 'د ټولنیزو رسنیو لینک', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9773', 'af', 'facebook', 'فېسبوک', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9774', 'af', 'twitter', 'ټویټر', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9775', 'af', 'google', 'Google', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9776', 'af', 'new_arrival_products', 'نوي راغونډ شوي محصولات', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9777', 'af', 'check_your_order_status', 'د خپل امر حالت وګوره', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9778', 'af', 'shipping_method', 'د لیږدولو طریقه', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9779', 'af', 'shipped_by', 'لخوا لیږل شوی', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9780', 'af', 'image', 'انځور', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9781', 'af', 'sub_sub_category', 'فرعي فرعي کټګورۍ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9782', 'af', 'inhouse_products', 'د کور دننه محصولات', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9783', 'af', 'forgot_password', 'خپل پټ نوم درڅخه هیر دی؟', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9784', 'af', 'enter_your_email_address_to_recover_your_password', 'د خپل رمز بیرته ترلاسه کولو لپاره خپل بریښنالیک آدرس دننه کړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9785', 'af', 'email_or_phone', 'بریښنالیک یا تلیفون', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9786', 'af', 'send_password_reset_link', 'د پاسورډ ریسیټ لینک واستوئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9787', 'af', 'back_to_login', 'بیرته ننوتل', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9788', 'af', 'index', 'شاخص', '2021-02-09 12:47:40', '2021-02-09 12:47:40'),
('9789', 'af', 'download_your_product', 'خپل محصول ډاونلوډ کړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9790', 'af', 'option', 'غوراوي', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9791', 'af', 'applied_refund_request', 'د تاوان غوښتنه شوې غوښتنه', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9792', 'af', 'item_has_been_renoved_from_wishlist', 'توکي د غوښتنې له لیست څخه ایستل شوي دي', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9793', 'af', 'bulk_products_upload', 'د عمده محصولاتو اپلوډ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9794', 'af', 'upload_csv', 'CSV اپلوډ کړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9795', 'af', 'create_a_ticket', 'ټیکټ جوړ کړئ', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9796', 'af', 'tickets', 'ټیکټونه', '2021-02-09 12:47:40', '2021-09-20 12:59:36'),
('9797', 'af', 'ticket_id', 'د ټیکټ پیژند', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9798', 'af', 'sending_date', 'د لیږلو نیټه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9799', 'af', 'subject', 'موضوع', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9800', 'af', 'view_details', 'توضیحات وګورئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9801', 'af', 'provide_a_detailed_description', 'یو مفصل بیان وړاندې کړئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9802', 'af', 'type_your_reply', 'خپل ځواب ولیکئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9803', 'af', 'send_ticket', 'ټیکټ واستوئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9804', 'af', 'load_more', 'نور ولګوه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9805', 'af', 'jewelry__watches', 'ګاwelryې او ساعتونه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9806', 'af', 'filters', 'فلټرونه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9807', 'af', 'contact_address', 'د اړیکې پته', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9808', 'af', 'contact_phone', 'د اړیکې تلیفون', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9809', 'af', 'contact_email', 'د اړیکې بریښنالیک', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9810', 'af', 'filter_by', 'له خوا چاter', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9811', 'af', 'condition', 'شرط', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9812', 'af', 'all_type', 'ټول ډول', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9813', 'af', 'pay_with_wallet', 'د بټوه سره تادیه وکړئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9814', 'af', 'select_variation', 'تغیر وټاکئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9815', 'af', 'no_product_added', 'هیڅ محصول ندی اضافه شوی', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9816', 'af', 'status_has_been_updated_successfully', 'حالت په بریالیتوب سره تازه شوی دی', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9817', 'af', 'all_seller_packages', 'ټول پلورونکي کڅوړې', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9818', 'af', 'add_new_package', 'نوی بنډل اضافه کړه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9819', 'af', 'package_logo', 'کڅوړه لوگو', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9820', 'af', 'days', 'ورځې', '2021-02-09 12:47:41', '2021-02-09 12:47:41'),
('9821', 'af', 'create_new_seller_package', 'نوی پلورونکی کڅوړه جوړه کړئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9822', 'af', 'package_name', 'د بنډل نوم', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9823', 'af', 'duration', 'دوره', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9824', 'af', 'validity_in_number_of_days', 'د ورځو په شمیر کې اعتبار', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9825', 'af', 'update_package_information', 'د کڅوړې معلومات تازه کړئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9826', 'af', 'package_has_been_inserted_successfully', 'بسته په بریالیتوب سره ورکړل شوې ده', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9827', 'af', 'refund_request', 'د بیرته ستنیدو غوښتنه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9828', 'af', 'reason', 'علت', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9829', 'af', 'label', 'لیبل', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9830', 'af', 'select_label', 'لیبل غوره کړئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9831', 'af', 'multiple_select_label', 'ګ Select انتخاب غوره نښه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9832', 'af', 'radio_label', 'د راډیو لیبل', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9833', 'af', 'pickup_point_orders', 'د پورته کولو ټکی', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9834', 'af', 'view', 'لید', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9835', 'af', 'order_', 'امر #', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9836', 'af', 'order_status', 'د نظم حالت', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9837', 'af', 'total_amount', 'جمله پیسی', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9838', 'af', 'total', 'ټول', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9839', 'af', 'delivery_status_has_been_updated', 'د تحویلۍ حالت تازه شوی', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9840', 'af', 'payment_status_has_been_updated', 'د تادیې حالت تازه شوی', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9841', 'af', 'invoice', 'انوائس', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9842', 'af', 'set_refund_time', 'د راستنیدو وخت وټاکئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9843', 'af', 'set_time_for_sending_refund_request', 'د بیرته ستنیدو غوښتنه لیږلو لپاره وخت وټاکئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9844', 'af', 'set_refund_sticker', 'د بیرته ستن سټیکر تنظیم کړئ', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9845', 'af', 'sticker', 'سټیکر', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9846', 'af', 'refund_request_all', 'د ټولو سره بیرته ورکولو غوښتنه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9847', 'af', 'order_id', 'د امر ایډی', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9848', 'af', 'seller_approval', 'د پلورونکي تصویب', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9849', 'af', 'admin_approval', 'د اداري تصویب', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9850', 'af', 'refund_status', 'د راستنیدو حالت', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9851', 'af', 'no_refund', 'نه راستنیدنه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9852', 'af', 'status_updated_successfully', 'حالت په بریالیتوب سره تازه شو', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9853', 'af', 'user_search_report', 'د کارونکي لټون راپور', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9854', 'af', 'search_by', 'لخوا لټول', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9855', 'af', 'number_searches', 'د شمیر لټونونه', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9856', 'af', 'sender', 'لیږونکی', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9857', 'af', 'receiver', 'اخیستونکی', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9858', 'af', 'verification_form_updated_successfully', 'د تایید فورمه په بریالیتوب سره تازه شوې', '2021-02-09 12:47:41', '2021-09-20 12:59:36'),
('9859', 'af', 'invalid_email_or_password', 'ناباوره بریښنالیک یا پاسورډ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9860', 'af', 'all_coupons', 'ټولې کوپنونه', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9861', 'af', 'add_new_coupon', 'نوی کوپن اضافه کړئ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9862', 'af', 'coupon_information', 'د کوپن معلومات', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9863', 'af', 'start_date', 'پیل نېټه', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9864', 'af', 'end_date', 'د پای نیټه', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9865', 'af', 'product_base', 'د محصول اساس', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9866', 'af', 'send_newsletter', 'خبر پا Sendه واستوئ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9867', 'af', 'mobile_users', 'ګرځنده کارونکي', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9868', 'af', 'sms_subject', 'د پیغام موضوع', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9869', 'af', 'sms_content', 'د ایس ایم ایس مینځپانګه', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9870', 'af', 'all_flash_delas', 'ټول فلش ډیلس', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9871', 'af', 'create_new_flash_dela', 'نوی فلش Dela جوړ کړئ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9872', 'af', 'page_link', 'د پا Linkې لینک', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9873', 'af', 'flash_deal_information', 'د فلش معاملې معلومات', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9874', 'af', 'background_color', 'شاليد رنګ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9875', 'af', '0000ff', '# 0000ff', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9876', 'af', 'text_color', 'د متن رنګ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9877', 'af', 'white', 'سپین', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9878', 'af', 'dark', 'تياره', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9879', 'af', 'choose_products', 'محصول غوره کړئ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9880', 'af', 'discounts', 'تخفیفونه', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9881', 'af', 'discount_type', 'د تخفیف ډول', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9882', 'af', 'twillo_credential', 'د دوه ګوني اعتبار', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9883', 'af', 'twilio_sid', 'دوه', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9884', 'af', 'twilio_auth_token', 'دوه', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9885', 'af', 'twilio_verify_sid', 'دوه ځله د تصدیق تصدیق', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9886', 'af', 'valid_twillo_number', 'د ویلو شمیره', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9887', 'af', 'nexmo_credential', 'د Nexmo اعتبار', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9888', 'af', 'nexmo_key', 'NEXMO KEY', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9889', 'af', 'nexmo_secret', 'د NEXMO راز', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9890', 'af', 'ssl_wireless_credential', 'د ایس ایس ایل بې سیمه سند', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9891', 'af', 'ssl_sms_api_token', 'د ایس ایس ایل ایس ایم ایس API توکی', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9892', 'af', 'ssl_sms_sid', 'د ایس ایس ایل ایس ام', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9893', 'af', 'ssl_sms_url', 'د ایس ایس ایل ایس ار ایل', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9894', 'af', 'fast2sms_credential', 'د فاسټ 2SMS اعتبار', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9895', 'af', 'auth_key', 'د کلي کلي', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9896', 'af', 'route', 'روټ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9897', 'af', 'promotional_use', 'پروموشنل کارول', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9898', 'af', 'transactional_use', 'د راکړې ورکړې کارول', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9899', 'af', 'sender_id', 'د سپارلو پیژند', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9900', 'af', 'nexmo_otp', 'د Nexmo OTP', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9901', 'af', 'twillo_otp', 'دوهم ځل OTP', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9902', 'af', 'ssl_wireless_otp', 'د ایس ایس ایل بې سیمه OTP', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9903', 'af', 'fast2sms_otp', 'فاسټ 2SMS OTP', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9904', 'af', 'order_placement', 'د سپارنې ځای', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9905', 'af', 'delivery_status_changing_time', 'د تحویلي حالت بدلیدو وخت', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9906', 'af', 'paid_status_changing_time', 'ورکړل شوي حالت بدلولو وخت', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9907', 'af', 'send_bulk_sms', 'د بلک پیغام واستوئ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9908', 'af', 'all_subscribers', 'ټول پیرودونکي', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9909', 'af', 'coupon_information_adding', 'د کوپن معلوماتو اضافه کول', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9910', 'af', 'coupon_type', 'د کوپن ډول', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9911', 'af', 'for_products', 'د محصولاتو لپاره', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9912', 'af', 'for_total_orders', 'د ټول امر لپاره', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9913', 'af', 'add_your_product_base_coupon', 'خپل د محصول اساس کوپن اضافه کړئ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9914', 'af', 'coupon_code', 'د کوپن کوډ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9915', 'af', 'sub_category', 'فرعي کټګورۍ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9916', 'af', 'add_more', 'نور زیات کړئ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9917', 'af', 'add_your_cart_base_coupon', 'د خپل کارټ بیس کوپن اضافه کړئ', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9918', 'af', 'minimum_shopping', 'لږترلږه پیرود', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9919', 'af', 'maximum_discount_amount', 'د تخفیف اعظمي مقدار', '2021-02-09 12:47:42', '2021-09-20 12:59:36'),
('9920', 'af', 'coupon_information_update', 'د کوپن معلومات تازه', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9921', 'af', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'مهرباني وکړئ د بریښنالیک لیږلو ټول بریښنالیک کار کولو لپاره د SMTP ترتیب تنظیم کړئ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9922', 'af', 'configure_now', 'اوس یې تنظیم کړه', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9923', 'af', 'total_published_products', 'ټول خپاره شوي محصولات', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9924', 'af', 'total_sellers_products', 'د پلورونکو ټول محصولات', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9925', 'af', 'total_admin_products', 'د سمبال اداري محصولات', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9926', 'af', 'manage_products', 'محصولات اداره کړئ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9927', 'af', 'total_product_category', 'د ټول محصول کټګورۍ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9928', 'af', 'create_category', 'کټګورۍ جوړه کړئ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9929', 'af', 'total_product_sub_sub_category', 'د محصول ټول فرعي کټګورۍ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9930', 'af', 'create_sub_sub_category', 'فرعي فر کټګوري جوړه کړئ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9931', 'af', 'total_product_sub_category', 'د ټول محصول فرعي کټګورۍ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9932', 'af', 'create_sub_category', 'فرعي کټګورۍ جوړه کړئ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9933', 'af', 'total_product_brand', 'د بشپړ محصول نښه', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9934', 'af', 'create_brand', 'نښه جوړه کړئ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9935', 'af', 'total_sellers', 'ټول پلورونکي', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9936', 'af', 'total_approved_sellers', 'ټول تصویب شوي پلورونکي', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9937', 'af', 'total_pending_sellers', 'ټول پاتې پلورونکي', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9938', 'af', 'manage_sellers', 'پلورونکي اداره کړئ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9939', 'af', 'category_wise_product_sale', 'د کټګورۍ مطابق محصولاتو پلور', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9940', 'af', 'sale', 'پلور', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9941', 'af', 'category_wise_product_stock', 'د کټګورۍ وار وار محصول سټاک', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9942', 'af', 'category_name', 'د کټګورۍ نوم', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9943', 'af', 'stock', 'سټاک', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9944', 'af', 'frontend', 'مخ اخری', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9945', 'af', 'home_page', 'کور پا .ه', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9946', 'af', 'setting', 'تنظیم', '2021-02-09 12:47:43', '2021-02-09 12:47:43'),
('9947', 'af', 'policy_page', 'د پالیسۍ پا .ه', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9948', 'af', 'general', 'عمومي', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9949', 'af', 'click_here', 'دلته زور ورکړی', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9950', 'af', 'useful_link', 'ګټور لینک', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9951', 'af', 'activation', 'فعالول', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9952', 'af', 'smtp', 'SMTP', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9953', 'af', 'payment_method', 'د تادیې میتود', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9954', 'af', 'social_media', 'ټولنیزې رسنۍ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9955', 'af', 'business', 'سوداګري', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9956', 'af', 'seller_verification', 'د پلورونکی تایید', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9957', 'af', 'form_setting', 'ب settingه تنظیم', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9958', 'af', 'language', 'ژبه', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9959', 'af', 'dashboard', 'ډشبورډ', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9960', 'af', 'pos_system', 'پوسټ سیسټم', '2021-02-09 12:47:43', '2021-09-20 12:59:36'),
('9961', 'af', 'pos_manager', 'پوسټ سمبالګر', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9962', 'af', 'pos_configuration', 'د پوسټ شکل', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9963', 'af', 'products', 'محصولات', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9964', 'af', 'add_new_product', 'نوی محصول اضافه کړئ', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9965', 'af', 'all_products', 'ټول محصولات', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9966', 'af', 'in_house_products', 'د کور محصولاتو کې', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9967', 'af', 'seller_products', 'پلورونکي محصولات', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9968', 'af', 'digital_products', 'ډیجیټل محصولات', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9969', 'af', 'bulk_import', 'د حجم واردول', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9970', 'af', 'bulk_export', 'د حجم صادرات', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9971', 'af', 'category', 'کټګورۍ', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9972', 'af', 'subcategory', 'فرعي کټګورۍ', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9973', 'af', 'sub_subcategory', 'فرعی فرعی کټګورۍ', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9974', 'af', 'brand', 'نښه', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9975', 'af', 'attribute', 'خاصیت', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9976', 'af', 'product_reviews', 'د محصول بیاکتنه', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9977', 'af', 'sales', 'پلور', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9978', 'af', 'all_orders', 'ټولې سپارنې', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9979', 'af', 'inhouse_orders', 'د کور حکم', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9980', 'af', 'seller_orders', 'د پلورونکي امرونه', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9981', 'af', 'pickup_point_order', 'د پورته کولو ټکی ترتیب', '2021-02-09 12:47:43', '2021-09-20 12:59:37'),
('9982', 'af', 'refunds', 'بیرته ستنیدل', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9983', 'af', 'refund_requests', 'د بیرته ستنیدو غوښتنه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9984', 'af', 'approved_refund', 'تصویب شوی پیسې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9985', 'af', 'refund_configuration', 'د راستنولو ترتیب', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9986', 'af', 'customers', 'پیرودونکي', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9987', 'af', 'customer_list', 'د پیرودونکو لیست', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9988', 'af', 'classified_products', 'محرم شوي محصولات', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9989', 'af', 'classified_packages', 'کټګورۍ بسته', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9990', 'af', 'sellers', 'پلورونکي', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9991', 'af', 'all_seller', 'ټول پلورونکی', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9992', 'af', 'payouts', 'تادیات', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9993', 'af', 'payout_requests', 'د تادیاتو غوښتنه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9994', 'af', 'seller_commission', 'د پلور کمیسیون', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9995', 'af', 'seller_packages', 'د پلور کڅوړې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9996', 'af', 'seller_verification_form', 'د پلورونکي تایید فورمه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9997', 'af', 'reports', 'راپورونه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9998', 'af', 'in_house_product_sale', 'د کور محصول پلور کې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('9999', 'af', 'seller_products_sale', 'د پلور پلور محصولات', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10000', 'af', 'products_stock', 'د محصولاتو سټاک', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10001', 'af', 'products_wishlist', 'د محصولاتو لیست', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10002', 'af', 'user_searches', 'د کاروونکي لټونونه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10003', 'af', 'marketing', 'بازارموندنه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10004', 'af', 'flash_deals', 'د فلش معاملې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10005', 'af', 'newsletters', 'خبرتیاوې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10006', 'af', 'bulk_sms', 'لوی پیغامونه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10007', 'af', 'subscribers', 'پیرودونکي', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10008', 'af', 'coupon', 'کوپون', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10009', 'af', 'support', 'ملاتړ', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10010', 'af', 'ticket', 'ټیکټ', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10011', 'af', 'product_queries', 'د محصول پوښتنې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10012', 'af', 'website_setup', 'د ویب پا Setې تنظیم', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10013', 'af', 'header', 'سرۍ', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10014', 'af', 'footer', 'فوټر', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10015', 'af', 'pages', 'پا .ې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10016', 'af', 'appearance', 'ظاهري ب .ه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10017', 'af', 'setup__configurations', 'تنظیم او جوړونه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10018', 'af', 'general_settings', 'عمومي امستنې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10019', 'af', 'features_activation', 'ب Featuresې فعالول', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10020', 'af', 'languages', 'ژبې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10021', 'af', 'currency', 'اسعارو', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10022', 'af', 'pickup_point', 'د پورته کولو ټکی', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10023', 'af', 'smtp_settings', 'د SMTP تنظیمات', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10024', 'af', 'payment_methods', 'د تادیې میتودونه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10025', 'af', 'file_system_configuration', 'د فایل سیسټم شکل بندي', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10026', 'af', 'social_media_logins', 'ټولنیز رسنۍ ننوتل', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10027', 'af', 'analytics_tools', 'د تحلیل توکي', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10028', 'af', 'facebook_chat', 'د فېسبوک چټ', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10029', 'af', 'google_recaptcha', 'د ګوګل ریکاچا', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10030', 'af', 'shipping_configuration', 'د بارونې ترتیب', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10031', 'af', 'shipping_countries', 'بار وړلو هیوادونه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10032', 'af', 'affiliate_system', 'وابسته سیستم', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10033', 'af', 'affiliate_registration_form', 'د وابسته نوم لیکنې فورمه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10034', 'af', 'affiliate_configurations', 'وابسته تشکیلات', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10035', 'af', 'affiliate_users', 'وابسته کارونکي', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10036', 'af', 'referral_users', 'مرجع کارونکي', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10037', 'af', 'affiliate_withdraw_requests', 'د وابسته وتلو غوښتنې', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10038', 'af', 'offline_payment_system', 'د آف لائن تادیې سیسټم', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10039', 'af', 'manual_payment_methods', 'د لارښود تادیې میتودونه', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10040', 'af', 'offline_wallet_recharge', 'د آف لائن والیټ ریچارج', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10041', 'af', 'offline_customer_package_payments', 'د پیرودونکي پیرود کڅوړې تادیات', '2021-02-09 12:47:44', '2021-09-20 12:59:37'),
('10042', 'af', 'offline_seller_package_payments', 'د پلورونکي کڅوړې تادیه', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10043', 'af', 'paytm_payment_gateway', 'د پیټیم تادیې دروازه', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10044', 'af', 'set_paytm_credentials', 'د پیټیم سندونه تنظیم کړئ', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10045', 'af', 'club_point_system', 'د کلب پوسټ سیسټم', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10046', 'af', 'club_point_configurations', 'د کلب پوائنٹ تشکیلات', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10047', 'af', 'set_product_point', 'د محصول ټکی وټاکئ', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10048', 'af', 'user_points', 'کارونکي ټکي', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10049', 'af', 'otp_system', 'د OTP سیسټم', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10050', 'af', 'otp_configurations', 'د OTP تشکیلات', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10051', 'af', 'set_otp_credentials', 'د OTP سندونه تنظیم کړئ', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10052', 'af', 'staffs', 'کارمندان', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10053', 'af', 'all_staffs', 'ټول کارمندان', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10054', 'af', 'staff_permissions', 'د کارمندانو اجازه', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10055', 'af', 'addon_manager', 'د اډونز سمبالګر', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10056', 'af', 'browse_website', 'ویب پا Browseه لټول', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10057', 'af', 'pos', 'پوسټ', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10058', 'af', 'notifications', 'خبرتیاوې', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10059', 'af', 'new_orders', 'نوي امرونه', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10060', 'af', 'userimage', 'کارن عکس', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10061', 'af', 'profile', 'پروفایل', '2021-02-09 12:47:45', '2021-09-20 12:59:37'),
('10062', 'af', 'logout', 'وتل', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10063', 'af', 'page_not_found', 'پا Foundه ونه موندل شوه!', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10064', 'af', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'هغه پا pageه چې تاسو یې په لټه کې یاست زموږ په سرور کې ندي موندل شوي.', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10065', 'af', 'registration', 'ثبتول', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10066', 'af', 'i_am_shopping_for', 'زه د دې لپاره خریداری کوم ...', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10067', 'af', 'compare', 'پرتله کول', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10068', 'af', 'wishlist', 'نوملړ', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10069', 'af', 'cart', 'ګاډی', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10070', 'af', 'your_cart_is_empty', 'ستاسو کارټ تش دی', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10071', 'af', 'categories', 'کټګورۍ', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10072', 'af', 'see_all', 'ټول وګوره', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10073', 'af', 'seller_policy', 'د پلورنې تګلاره', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10074', 'af', 'return_policy', 'د راګرځولو شرايت', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10075', 'af', 'support_policy', 'د ملاتړ تګلاره', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10076', 'af', 'privacy_policy', 'د پټتیا تګلاره', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10077', 'af', 'your_email_address', 'ستاسو د بریښنالیک آدرس', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10078', 'af', 'subscribe', 'ګډون وکړئ', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10079', 'af', 'contact_info', 'د اړیکې معلومات', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10080', 'af', 'address', 'پته', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10081', 'af', 'phone', 'تلیفون', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10082', 'af', 'email', 'بریښنالیک', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10083', 'af', 'login', 'د ننه کیدل', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10084', 'af', 'my_account', 'زما حساب', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10085', 'af', 'order_history', 'د سپارنې تاریخ', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10086', 'af', 'my_wishlist', 'زما د غوښتنې لیست', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10087', 'af', 'track_order', 'د سپارنې امر', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10088', 'af', 'be_an_affiliate_partner', 'وابسته ملګري اوسئ', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10089', 'af', 'be_a_seller', 'پلورونکی اوسئ', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10090', 'af', 'apply_now', 'اوس غوښتنه وکړه', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10091', 'af', 'confirmation', 'تصدیق', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10092', 'af', 'delete_confirmation_message', 'د تایید پیغام حذف کړئ', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10093', 'af', 'cancel', 'لغوه کول', '2021-02-09 12:48:14', '2021-09-20 12:59:37'),
('10094', 'af', 'delete', 'ړنګول', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10095', 'af', 'item_has_been_added_to_compare_list', 'توکي د پرتله کولو لیست لپاره اضافه شوي', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10096', 'af', 'please_login_first', 'مهرباني وکړئ لومړی ننوتل', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10097', 'af', 'total_earnings_from', 'د ټولټال عاید څخه', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10098', 'af', 'client_subscription', 'د پیرودونکي ګډون', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10099', 'af', 'product_category', 'د محصول کټګورۍ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10100', 'af', 'product_sub_sub_category', 'د محصول فرعي کټګورۍ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10101', 'af', 'product_sub_category', 'د محصول فرعي کټګورۍ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10102', 'af', 'product_brand', 'د محصول نښه', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10103', 'af', 'top_client_packages', 'د پیرودونکي غوره کڅوړې', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10104', 'af', 'top_freelancer_packages', 'غوره فری لانس کڅوړې', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10105', 'af', 'number_of_sale', 'د پلور شمیره', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10106', 'af', 'number_of_stock', 'د سټاک شمیره', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10107', 'af', 'top_10_products', 'غوره 10 محصولات', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10108', 'af', 'top_12_products', 'غوره 12 محصولات', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10109', 'af', 'admin_can_not_be_a_seller', 'اډمین پلورونکی نشي کیدی', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10110', 'af', 'filter_by_rating', 'د درجې سره فلټر کړئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10111', 'af', 'published_reviews_updated_successfully', 'خپاره شوې بیاکتنې په بریالیتوب سره تازه شوې', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10112', 'af', 'refund_sticker_has_been_updated_successfully', 'د پیسو بیرته سټیکر په بریالیتوب سره تازه شوی', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10113', 'af', 'edit_product', 'محصول', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10114', 'af', 'meta_images', 'د میټا انځورونه', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10115', 'af', 'update_product', 'د محصول اوسمهالول', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10116', 'af', 'product_has_been_deleted_successfully', 'محصول په بریالیتوب سره ړنګ شوی دی', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10117', 'af', 'your_profile_has_been_updated_successfully', 'ستاسو پروفایل په بریالیتوب سره تازه شوی!', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10118', 'af', 'upload_limit_has_been_reached_please_upgrade_your_package', 'د پورته کولو حد ته رسیدلی مهرباني وکړئ خپله کڅوړه پرمختللې کړئ.', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10119', 'af', 'add_your_product', 'خپل محصول اضافه کړئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10120', 'af', 'select_a_category', 'کټګورۍ وټاکئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10121', 'af', 'select_a_brand', 'یو نښه غوره کړئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10122', 'af', 'product_unit', 'د محصول واحد', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10123', 'af', 'minimum_qty', 'لږترلږه مقدار.', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10124', 'af', 'product_tag', 'د محصول ټاګ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10125', 'af', 'type__hit_enter', 'ټایپ او ټک ورکړئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10126', 'af', 'videos', 'ویډیوګانې', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10127', 'af', 'video_from', 'ویډیو له', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10128', 'af', 'video_url', 'ویډیو URL', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10129', 'af', 'customer_choice', 'د پیرودونکي انتخاب', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10130', 'af', 'pdf', 'د پی ډی ایف', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10131', 'af', 'choose_pdf', 'د پی ډی ایف غوره کړئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10132', 'af', 'select_category', 'کټګورۍ غوره کړئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10133', 'af', 'target_category', 'د کټګورۍ کټګورۍ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10134', 'af', 'subsubcategory', 'فرعي وېشنيزه', '2021-02-09 12:48:15', '2021-02-09 12:48:15'),
('10135', 'af', 'search_category', 'کټګورۍ پلټنه', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10136', 'af', 'search_subcategory', 'فرعي کټګورۍ لټول', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10137', 'af', 'search_subsubcategory', 'د فرعي سایټ کټګوري ومومئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10138', 'af', 'update_your_product', 'خپل محصول تازه کړئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10139', 'af', 'product_has_been_updated_successfully', 'محصول په بریالیتوب سره تازه شوی دی', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10140', 'af', 'add_your_digital_product', 'خپل ډیجیټل محصول اضافه کړئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10141', 'af', 'active_ecommerce_cms_update_process', 'د فعال ای کامرس CMS تازه پروسه', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10142', 'af', 'codecanyon_purchase_code', 'د کوډیکانون پیرود کوډ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10143', 'af', 'database_name', 'د ډیټابیس نوم', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10144', 'af', 'database_username', 'د ډیټابیس کارن نوم', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10145', 'af', 'database_password', 'د ډیټابیس پټنوم', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10146', 'af', 'database_hostname', 'د ډیټابیس کوربه نوم', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10147', 'af', 'update_now', 'اوس تازه کړه', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10148', 'af', 'congratulations', 'مبارک شه', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10149', 'af', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'تاسو د اوسمهالولو بهیر په بریالیتوب سره بشپړ کړی دی. مهرباني وکړئ دوام ورکړئ', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10150', 'af', 'go_to_home', 'کور ته تلل', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10151', 'af', 'login_to_admin_panel', 'اډمین پینل ته ننوتل', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10152', 'af', 's3_file_system_credentials', 'د S3 فایل سیسټم سندونه', '2021-02-09 12:48:15', '2021-09-20 12:59:37'),
('10153', 'af', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10154', 'af', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10155', 'af', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10156', 'af', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10157', 'af', 'aws_url', 'AWS_URL', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10158', 'af', 's3_file_system_activation', 'د S3 فایل سیسټم فعالول', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10159', 'af', 'your_phone_number', 'ستاسو د تلیفون شمیره', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10160', 'af', 'zip_file', 'زپ فایل', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10161', 'af', 'install', 'ولګوه', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10162', 'af', 'this_version_is_not_capable_of_installing_addons_please_update', 'دا نسخه د اډونونو نصبولو توان نلري ، مهرباني وکړئ تازه کړئ.', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10163', 'af', 'search_in_menu', 'په مینو کې وپلټئ', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10164', 'af', 'uploaded_files', 'پورته شوې فایلونه', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10165', 'af', 'shipping_cities', 'بار وړلو ښارونه', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10166', 'af', 'system', 'سیسټم', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10167', 'af', 'server_status', 'د سرور حالت', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10168', 'af', 'nothing_found', 'څه پیدا نه شول', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10169', 'af', 'parent_category', 'اصلي کټګورۍ', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10170', 'af', 'level', 'کچه', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10171', 'af', 'category_information', 'کټګورۍ معلومات', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10172', 'af', 'translatable', 'د ژباړې وړ', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10173', 'af', 'no_parent', 'هیڅ مور نشته', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10174', 'af', 'physical', 'فزیکي', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10175', 'af', 'digital', 'ډیجیټل', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10176', 'af', '200x200', '200x200', '2021-02-09 12:48:16', '2021-02-09 12:48:16'),
('10177', 'af', '32x32', '32x32', '2021-02-09 12:48:16', '2021-02-09 12:48:16'),
('10178', 'af', 'search_your_files', 'خپل فایلونه وپلټئ', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10179', 'af', 'category_has_been_updated_successfully', 'کټګورۍ په بریالیتوب سره نوي شوې', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10180', 'af', 'all_uploaded_files', 'ټولې پورته شوې فایلونه', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10181', 'af', 'upload_new_file', 'نوې دوتنه پورته کول', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10182', 'af', 'all_files', 'ټولې فایلونه', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10183', 'af', 'search', 'لټون', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10184', 'af', 'details_info', 'توضیحي معلومات', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10185', 'af', 'copy_link', 'لینک کاپي کړئ', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10186', 'af', 'are_you_sure_to_delete_this_file', 'ایا ته باوري یې چې دا دوتنه ړنګول غواړې؟', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10187', 'af', 'file_info', 'د فایل معلومات', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10188', 'af', 'link_copied_to_clipboard', 'لینک کليپ بورډ ته کاپي شوی', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10189', 'af', 'oops_unable_to_copy', 'اوه ، د کاپي کولو توان نلري', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10190', 'af', 'file_deleted_successfully', 'فایل په بریالیتوب سره ړنګ شو', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10191', 'af', 'add_new_brand', 'نوی نښه', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10192', 'af', '120x80', '120x80', '2021-02-09 12:48:16', '2021-02-09 12:48:16'),
('10193', 'af', 'brand_information', 'د نښې معلومات', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10194', 'af', 'brand_has_been_updated_successfully', 'برانډ په بریالیتوب سره تازه شوی دی', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10195', 'af', 'brand_has_been_deleted_successfully', 'نښه په بریالیتوب سره ړنګه شوې ده', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10196', 'af', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'دا د لټون لپاره کارول کیږي. هغه ټکي داخل کړئ چې په کومو سره کټومر کولی شي دا محصول ومومي.', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10197', 'af', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'دا عکسونه د محصول توضیحي پا pageې ګالري کې لیدل کیږي. د 600x600 اندازې عکسونه وکاروئ.', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10198', 'af', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'دا عکس د ټولو محصول بکس کې څرګند دی. د 300x300 اندازو عکس وکاروئ. د خپل عکس اصلي اصلي شاوخوا شاوخوا خالي ځای وساتئ ځکه چې موږ باید په بیلابیلو وسیلو کې ځینې څنډې کراکې کړو ترڅو دا یې ځواب ویونکي وي.', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10199', 'af', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'د اضافي پیرامیټ پرته مناسب لینک وکاروئ. د لنډ شریک لینک / ایمبیډ شوي iframe کوډ مه کاروئ.', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10200', 'af', 'save_product', 'محصول خوندي کړئ', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10201', 'af', 'product_has_been_inserted_successfully', 'محصول په بریالیتوب سره داخل شوی دی', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10202', 'af', 'something_went_wrong', 'کومه تیروتنه وشوه!', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10203', 'af', 'sorry_for_the_inconvenience_but_were_working_on_it', 'د تکلیف لپاره بخښنه غواړو ، مګر موږ پدې کې کار کوو.', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10204', 'af', 'error_code', 'خطا کوډ', '2021-02-09 12:48:16', '2021-09-20 12:59:37'),
('10205', 'af', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'مهرباني وکړئ د بریښنالیک لیږلو ټول فعالیت کار کولو لپاره د SMTP ترتیب تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10206', 'af', 'order', 'امر', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10207', 'af', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'موږ د UI ساتلو لپاره محدود بینر قد لرو. موږ باید د بیلابیل وسیلو لپاره لید کې د کی left او ښیې اړخ څخه فصل کړو ، ترڅو ځواب ویونکي جوړ شي. د بینر ډیزاین کولو دمخه دا ټکي په ذهن کې وساتئ.', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10208', 'af', 'home_banner_3_max_3', 'د کور بینر 3 (اعظمي 3)', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10209', 'af', 'add_new_seller', 'نوی پلورونکی اضافه کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10210', 'af', 'filter_by_approval', 'د تایید لخوا فلټر', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10211', 'af', 'nonapproved', 'غیر منل شوی', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10212', 'af', 'type_name_or_email__enter', 'نوم یا بریښنالیک او ټایپ کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10213', 'af', 'due_to_seller', 'د پلورونکي له امله', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10214', 'af', 'log_in_as_this_seller', 'د دې پلورونکي په توګه ننوتل', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10215', 'af', 'go_to_payment', 'تادیې ته لاړشئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10216', 'af', 'ban_this_seller', 'دا پلورونکی منع کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10217', 'af', 'do_you_really_want_to_ban_this_seller', 'ایا تاسو واقعیا غواړئ چې دا پلورونکی بند کړئ؟', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10218', 'af', 'proceed', 'پرمخ لاړ شه!', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10219', 'af', 'approved_sellers_updated_successfully', 'منظور شوي پلورونکي په بریالیتوب سره نوي شوي', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10220', 'af', 'seller_has_been_deleted_successfully', 'پلورونکی په بریالیتوب سره حذف شوی دی', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10221', 'af', 'seller_information', 'د پلورونکي معلومات', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10222', 'af', 'seller_has_been_inserted_successfully', 'پلورونکی په بریالیتوب سره داخل شوی', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10223', 'af', 'email_already_exists', 'بریښنالیک لا دمخه شتون لري!', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10224', 'af', 'verify_your_email_address', 'خپل برېښنالیک تایید کړۍ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10225', 'af', 'before_proceeding_please_check_your_email_for_a_verification_link', 'د پرمخ تللو دمخه ، مهرباني وکړئ د تایید لینک لپاره خپل بریښنالیک وګورئ.', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10226', 'af', 'if_you_did_not_receive_the_email', 'که تاسو بریښنالیک ترلاسه نکړئ.', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10227', 'af', 'click_here_to_request_another', 'د بل غوښتنه کولو لپاره دلته کلیک وکړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10228', 'af', 'email_verification', 'د بریښنالیک تایید', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10229', 'af', 'email_verification__', 'د بریښنالیک تایید -', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10230', 'af', 'https_activation', 'د HTTPS فعالیت', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10231', 'af', 'maintenance_mode', 'د ساتنې حالت', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10232', 'af', 'maintenance_mode_activation', 'د ساتنې حالت فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10233', 'af', 'classified_product_activate', 'محرم محصول تولید', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10234', 'af', 'classified_product', 'محرم محصول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10235', 'af', 'business_related', 'د سوداګرۍ اړوند', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10236', 'af', 'vendor_system_activation', 'د پلورونکي سیسټم فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10237', 'af', 'wallet_system_activation', 'د والټ سیسټم فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10238', 'af', 'coupon_system_activation', 'د کوپن سیسټم فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10239', 'af', 'pickup_point_activation', 'د پورته کولو ټکی فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10240', 'af', 'conversation_activation', 'د خبرو اترو فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10241', 'af', 'guest_checkout_activation', 'د میلمه چیک چیک', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10242', 'af', 'categorybased_commission', 'د کټګورۍ پراساس کمیسیون', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10243', 'af', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'د دې اختیار فعالولو وروسته به د پلور کمیسون معلول شي او تاسو اړتیا لرئ په هره کټګورۍ کې کمیسون وټاکئ که نه نو اداره به هیڅ کمیسون ترلاسه نکړي', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10244', 'af', 'set_commisssion_now', 'اوس کمیسون تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10245', 'af', 'payment_related', 'اړوند تادیه', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10246', 'af', 'paypal_payment_activation', 'د تادیې تادیه فعالیت', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10247', 'af', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableه فعالولو لپاره د تادیې تنظیم په سمه توګه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10248', 'af', 'stripe_payment_activation', 'د پټې تادیه فعالیت', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10249', 'af', 'sslcommerz_activation', 'د ایس ایس ایل کامرس فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10250', 'af', 'instamojo_payment_activation', 'د انسټاګامو تادیه فعالیت', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10251', 'af', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableه فعالولو لپاره د انسټاګیمو تادیه په سمه توګه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10252', 'af', 'razor_pay_activation', 'د ریزر تادیه فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10253', 'af', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableې فعالولو لپاره ریزر په سمه توګه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10254', 'af', 'paystack_activation', 'د پیس سټیک فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10255', 'af', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableه فعالولو لپاره د تادیې سټیک په سمه توګه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10256', 'af', 'voguepay_activation', 'د VoguePay فعالیت', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10257', 'af', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableې وړ کولو لپاره د وګو پی پیسې په سمه توګه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10258', 'af', 'payhere_activation', 'د پایه فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10259', 'af', 'ngenius_activation', 'د نګنیانو فعالیت', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10260', 'af', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableې وړ کولو لپاره د نګینیوس سمه توګه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10261', 'af', 'iyzico_activation', 'د آیزیکو فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10262', 'af', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableه فعالولو لپاره آیژیکو په سمه توګه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10263', 'af', 'bkash_activation', 'د بکش فعالول', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10264', 'af', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableې وړ کولو لپاره د bkka سمه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10265', 'af', 'nagad_activation', 'د ناګډ فعالیت', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10266', 'af', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableه فعالولو لپاره ناګډ په سمه توګه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10267', 'af', 'cash_payment_activation', 'نغدي تادیه فعالیت', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10268', 'af', 'social_media_login', 'د ټولنیزو رسنیو ننوتل', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10269', 'af', 'facebook_login', 'د فیسبوک ننوتل', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10270', 'af', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableې وړ کولو لپاره د فېسبوک مراجع په سمه توګه تنظیم کړئ', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10271', 'af', 'google_login', 'ګوګل ننوتل', '2021-02-09 12:48:17', '2021-09-20 12:59:37'),
('10272', 'af', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableه فعالولو لپاره د ګوګل پیرودونکي په سمه توګه تنظیم کړئ', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10273', 'af', 'twitter_login', 'د ټویټر ننوتل', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10274', 'af', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'تاسو اړتیا لرئ د دې ب enableه فعالولو لپاره د ټویټر پیرودونکي په سمه توګه تنظیم کړئ', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10275', 'af', 'shop_logo', 'دوکان لوګو', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10276', 'af', 'shop_address', 'د پلورنځي پته', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10277', 'af', 'banner_settings', 'د بینر تنظیمات', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10278', 'af', 'banners', 'بینرونه', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10279', 'af', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'موږ باید لوړوالی د مینتستاني استحکام پورې محدود کړو. په ځینو وسیلو کې ممکن د لوړوالي محدودیت لپاره د بینر دواړه خواوې فصل شي.', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10280', 'af', 'insert_link_with_https_', 'د https سره لینک دننه کړئ', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10281', 'af', 'your_shop_has_been_updated_successfully', 'ستاسو پلورنځی په بریالیتوب سره تازه شوی دی!', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10282', 'af', 'search_result_for_', 'لپاره د لټون پایله', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10283', 'af', 'brand_has_been_inserted_successfully', 'برانډ په بریالیتوب سره داخل شوی دی', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10284', 'af', 'about', 'په اړه', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10285', 'af', 'payout_info', 'د تادیې معلومات', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10286', 'af', 'bank_acc_name', 'د بانک اکاونټ نوم', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10287', 'af', 'bank_acc_number', 'د بانکي حساب شمیره', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10288', 'af', 'total_products', 'ټول محصولات', '2021-02-09 12:48:18', '2021-09-20 12:59:37'),
('10289', 'af', 'total_sold_amount', 'د پلورل شوی مقدار', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10290', 'af', 'wallet_balance', 'د والټ بیلانس', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10291', 'af', 'cookies_agreement', 'د کوکیز تړون', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10292', 'af', 'cookies_agreement_text', 'د کوکیز تړون متن', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10293', 'af', 'show_cookies_agreement', 'د کوکیز تړون وښودئ؟', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10294', 'af', 'custom_script', 'دودیز متن', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10295', 'af', 'header_custom_script__before_head', 'سرۍ دودیز سکریپټ - دمخه </ سر>', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10296', 'af', 'write_script_with_script_tag', 'د <script> ټګ سره سکریپټ ولیکئ', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10297', 'af', 'footer_custom_script__before_body', 'د فوټر دودیز سکریپټ - دمخه </body>', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10298', 'af', 'category_has_been_inserted_successfully', 'کټګورۍ په بریالیتوب سره دننه شوې', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10299', 'af', 'all_flash_deals', 'ټولې فلش معاملې', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10300', 'af', 'create_new_flash_deal', 'نوی فلش ډیل رامینځته کړئ', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10301', 'af', 'ffffff', '#FFFFFF', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10302', 'af', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'دا عکس د فلش معاملې توضیحي پا pageې کې د پوښ بینر په توګه ښودل شوی.', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10303', 'af', 'flash_deal_has_been_inserted_successfully', 'د فلش ډیل په بریالیتوب سره دننه شوی', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10304', 'af', 'flash_deal_status_updated_successfully', 'د فلش معاملې حالت په بریالیتوب سره تازه شوی', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10305', 'af', 'flash_deal_has_been_updated_successfully', 'د فلش ډیل په بریالیتوب سره تازه شوی', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10306', 'af', 'update_language_info', 'د ژبې معلومات تازه کړئ', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10307', 'af', 'language_has_been_updated_successfully', 'ژبه په بریالیتوب سره تازه شوې', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10308', 'af', 'type_key__enter', 'کیلي ولیکئ', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10309', 'af', 'translations_updated_for_', 'لپاره ژباړې تازه شوي', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10310', 'af', 'language_has_been_inserted_successfully', 'ژبه په بریالیتوب سره دننه شوی', '2021-02-09 12:48:18', '2021-09-20 12:59:38'),
('10311', 'eg', 'all_category', 'كل الفئات', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10312', 'eg', 'all', 'الكل', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10313', 'eg', 'flash_sale', 'بيع مفاجئ', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10314', 'eg', 'view_more', 'عرض المزيد', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10315', 'eg', 'add_to_wishlist', 'أضف إلى قائمة الامنيات', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10316', 'eg', 'add_to_compare', 'أضف للمقارنة', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10317', 'eg', 'add_to_cart', 'أضف إلى السلة', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10318', 'eg', 'club_point', 'كلوب بوينت', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10319', 'eg', 'classified_ads', 'الإعلانات المبوبة', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10320', 'eg', 'used', 'مستخدم', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10321', 'eg', 'top_10_categories', 'أعلى 10 فئات', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10322', 'eg', 'view_all_categories', 'عرض جميع الفئات', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10323', 'eg', 'top_10_brands', 'أفضل 10 ماركات', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10324', 'eg', 'view_all_brands', 'عرض كل الماركات', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10325', 'eg', 'terms__conditions', 'البنود و الظروف', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10326', 'eg', 'best_selling', 'أفضل مبيعات', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10327', 'eg', 'top_20', 'أفضل 20', '2021-02-09 12:50:47', '2021-09-20 12:59:38'),
('10328', 'eg', 'featured_products', 'منتجات مميزة', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10329', 'eg', 'best_sellers', 'أفضل البائعين', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10330', 'eg', 'visit_store', 'قم بزيارة المعرض او المتجر', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10331', 'eg', 'popular_suggestions', 'الاقتراحات الشعبية', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10332', 'eg', 'category_suggestions', 'اقتراحات الفئة', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10333', 'eg', 'automobile__motorcycle', 'السيارات والدراجات النارية', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10334', 'eg', 'price_range', 'نطاق السعر', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10335', 'eg', 'filter_by_color', 'تصفية حسب اللون', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10336', 'eg', 'home', 'الصفحة الرئيسية', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10337', 'eg', 'newest', 'الأحدث', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10338', 'eg', 'oldest', 'الأقدم', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10339', 'eg', 'price_low_to_high', 'السعر من الارخص للاعلى', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10340', 'eg', 'price_high_to_low', 'السعر الاعلى الى الادنى', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10341', 'eg', 'brands', 'العلامات التجارية', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10342', 'eg', 'all_brands', 'جميع العلامات التجارية', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10343', 'eg', 'all_sellers', 'كل البائعين', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10344', 'eg', 'inhouse_product', 'منتج داخلي', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10345', 'eg', 'message_seller', 'مراسلة البائع', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10346', 'eg', 'price', 'السعر', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10347', 'eg', 'discount_price', 'سعر الخصم', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10348', 'eg', 'color', 'اللون', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10349', 'eg', 'quantity', 'كمية', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10350', 'eg', 'available', 'متاح', '2021-02-09 12:50:48', '2021-02-09 12:50:48'),
('10351', 'eg', 'total_price', 'السعر الكلي', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10352', 'eg', 'out_of_stock', 'إنتهى من المخزن', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10353', 'eg', 'refund', 'إعادة مال', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10354', 'eg', 'share', 'شارك', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10355', 'eg', 'sold_by', 'تم بيعها من قبل', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10356', 'eg', 'customer_reviews', 'آراء العملاء', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10357', 'eg', 'top_selling_products', 'المنتجات الأكثر مبيعًا', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10358', 'eg', 'description', 'وصف', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10359', 'eg', 'video', 'فيديو', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10360', 'eg', 'reviews', 'المراجعات', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10361', 'eg', 'download', 'تحميل', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10362', 'eg', 'there_have_been_no_reviews_for_this_product_yet', 'لم تكن هناك مراجعات لهذا المنتج حتى الآن.', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10363', 'eg', 'related_products', 'منتجات ذات صله', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10364', 'eg', 'any_query_about_this_product', 'أي استفسار عن هذا المنتج', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10365', 'eg', 'product_name', 'اسم المنتج', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10366', 'eg', 'your_question', 'سؤالك', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10367', 'eg', 'send', 'إرسال', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10368', 'eg', 'use_country_code_before_number', 'استخدم رمز البلد قبل الرقم', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10369', 'eg', 'remember_me', 'تذكرنى', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10370', 'eg', 'dont_have_an_account', 'ليس لديك حساب؟', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10371', 'eg', 'register_now', 'سجل الان', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10372', 'eg', 'or_login_with', 'أو تسجيل الدخول باستخدام', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10373', 'eg', 'oops', 'وجه الفتاة..', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10374', 'eg', 'this_item_is_out_of_stock', 'هذا العنصر غير متوفر في المخزون!', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10375', 'eg', 'back_to_shopping', 'العودة إلى التسوق', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10376', 'eg', 'login_to_your_account', 'تسجيل الدخول إلى حسابك.', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10377', 'eg', 'purchase_history', 'تاريخ شراء', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10378', 'eg', 'new', 'جديد', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10379', 'eg', 'downloads', 'التحميلات', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10380', 'eg', 'sent_refund_request', 'طلب استرداد مرسل', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10381', 'eg', 'product_bulk_upload', 'تحميل مجمع للمنتج', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10382', 'eg', 'orders', 'الطلب #٪ s', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10383', 'eg', 'recieved_refund_request', 'تم استلام طلب استرداد', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10384', 'eg', 'shop_setting', 'إعداد المتجر', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10385', 'eg', 'payment_history', 'تاريخ الدفع', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10386', 'eg', 'money_withdraw', 'سحب الأموال', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10387', 'eg', 'conversations', 'المحادثات', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10388', 'eg', 'my_wallet', 'محفظتى', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10389', 'eg', 'earning_points', 'كسب النقاط', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10390', 'eg', 'support_ticket', 'بطاقة الدعم', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10391', 'eg', 'manage_profile', 'إدارة الملف الشخصي', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10392', 'eg', 'sold_amount', 'المبلغ المباع', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10393', 'eg', 'your_sold_amount_current_month', 'المبلغ المباع (الشهر الحالي)', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10394', 'eg', 'total_sold', 'إجمالي المبيعات', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10395', 'eg', 'last_month_sold', 'تم بيع الشهر الماضي', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10396', 'eg', 'total_sale', 'إجمالي البيع', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10397', 'eg', 'total_earnings', 'الأرباح الكلية', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10398', 'eg', 'successful_orders', 'الطلبات الناجحة', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10399', 'eg', 'total_orders', 'إجمالي الطلبات', '2021-02-09 12:50:48', '2021-09-20 12:59:38'),
('10400', 'eg', 'pending_orders', 'الطلبات المعلقة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10401', 'eg', 'cancelled_orders', 'الطلبات الملغاة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10402', 'eg', 'product', 'المنتج', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10403', 'eg', 'purchased_package', 'الحزمة المشتراة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10404', 'eg', 'package_not_found', 'الحزمة غير موجودة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10405', 'eg', 'upgrade_package', 'حزمة الترقية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10406', 'eg', 'shop', 'متجر', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10407', 'eg', 'manage__organize_your_shop', 'إدارة وتنظيم متجرك', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10408', 'eg', 'go_to_setting', 'اذهب إلى الإعداد', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10409', 'eg', 'payment', 'دفع', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10410', 'eg', 'configure_your_payment_method', 'تكوين طريقة الدفع الخاصة بك', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10411', 'eg', 'my_panel', 'لوحتي', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10412', 'eg', 'item_has_been_added_to_wishlist', 'تمت إضافة العنصر إلى قائمة الرغبات', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10413', 'eg', 'my_points', 'نقاطي', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10414', 'eg', '_points', 'نقاط', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10415', 'eg', 'wallet_money', 'أموال المحفظة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10416', 'eg', 'exchange_rate', 'سعر الصرف', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10417', 'eg', 'point_earning_history', 'سجل كسب النقاط', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10418', 'eg', 'date', 'تاريخ', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10419', 'eg', 'points', 'نقاط', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10420', 'eg', 'converted', 'محولة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10421', 'eg', 'action', 'عمل', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10422', 'eg', 'no_history_found', 'لم يتم العثور على سجل.', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10423', 'eg', 'convert_has_been_done_successfully_check_your_wallets', 'تم التحويل بنجاح تحقق من محافظك', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10424', 'eg', 'something_went_wrong', 'هناك خطأ ما', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10425', 'eg', 'remaining_uploads', 'التحميلات المتبقية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10426', 'eg', 'no_package_found', 'لم يتم العثور على حزمة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10427', 'eg', 'search_product', 'البحث عن المنتج', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10428', 'eg', 'name', 'اسم', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10429', 'eg', 'current_qty', 'الكمية الحالية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10430', 'eg', 'base_price', 'السعر الأساسي', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10431', 'eg', 'published', 'نشرت', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10432', 'eg', 'featured', 'متميز', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10433', 'eg', 'options', 'خيارات', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10434', 'eg', 'edit', 'تعديل', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10435', 'eg', 'duplicate', 'مكرر', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10436', 'eg', '1_download_the_skeleton_file_and_fill_it_with_data', '1. قم بتنزيل ملف الهيكل العظمي واملأه بالبيانات.', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10437', 'eg', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. يمكنك تنزيل ملف المثال لفهم كيفية ملء البيانات.', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10438', 'eg', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. بمجرد تنزيل ملف الهيكل العظمي وتعبئته ، قم بتحميله في النموذج أدناه وأرسله.', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10439', 'eg', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. بعد تحميل المنتجات تحتاج إلى تعديلها وتعيين صور المنتجات والاختيارات.', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10440', 'eg', 'download_csv', 'تنزيل ملف CSV', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10441', 'eg', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. يجب أن تكون الفئة ، والفئة الفرعية ، والفئة الفرعية والعلامة التجارية في هويات رقمية.', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10442', 'eg', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. يمكنك تنزيل ملف pdf للحصول على الفئة والفئة الفرعية والفئة الفرعية ومعرف العلامة التجارية.', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10443', 'eg', 'download_category', 'فئة التحميل', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10444', 'eg', 'download_sub_category', 'تحميل فئة فرعية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10445', 'eg', 'download_sub_sub_category', 'تحميل فئة فرعية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10446', 'eg', 'download_brand', 'تحميل الماركة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10447', 'eg', 'upload_csv_file', 'تحميل ملف CSV', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10448', 'eg', 'csv', 'CSV', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10449', 'eg', 'choose_csv_file', 'اختر ملف CSV', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10450', 'eg', 'upload', 'تحميل', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10451', 'eg', 'add_new_digital_product', 'إضافة منتج رقمي جديد', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10452', 'eg', 'available_status', 'الحالة المتاحة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10453', 'eg', 'admin_status', 'حالة المسؤول', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10454', 'eg', 'pending_balance', 'رصيد معلق', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10455', 'eg', 'send_withdraw_request', 'إرسال طلب سحب', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10456', 'eg', 'withdraw_request_history', 'سحب تاريخ الطلب', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10457', 'eg', 'amount', 'كمية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10458', 'eg', 'status', 'الحالة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10459', 'eg', 'message', 'رسالة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10460', 'eg', 'send_a_withdraw_request', 'إرسال طلب سحب', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10461', 'eg', 'basic_info', 'معلومات أساسية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10462', 'eg', 'your_phone', 'هاتفك', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10463', 'eg', 'photo', 'صورة فوتوغرافية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10464', 'eg', 'browse', 'تصفح', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10465', 'eg', 'your_password', 'كلمتك السرية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10466', 'eg', 'new_password', 'كلمة المرور الجديدة', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10467', 'eg', 'confirm_password', 'تأكيد كلمة المرور', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10468', 'eg', 'add_new_address', 'أضف عنوان جديد', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10469', 'eg', 'payment_setting', 'إعداد الدفع', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10470', 'eg', 'cash_payment', 'دفع نقدا', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10471', 'eg', 'bank_payment', 'الدفع المصرفية', '2021-02-09 12:50:49', '2021-09-20 12:59:38'),
('10472', 'eg', 'bank_name', 'اسم البنك', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10473', 'eg', 'bank_account_name', 'اسم الحساب المصرفي', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10474', 'eg', 'bank_account_number', 'رقم الحساب المصرفي', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10475', 'eg', 'bank_routing_number', 'رقم التحويل المصرفي', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10476', 'eg', 'update_profile', 'تحديث الملف', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10477', 'eg', 'change_your_email', 'قم بتغيير بريدك الإلكتروني', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10478', 'eg', 'your_email', 'بريدك الالكتروني', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10479', 'eg', 'sending_email', 'إرسال البريد الإلكتروني...', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10480', 'eg', 'verify', 'تحقق', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10481', 'eg', 'update_email', 'تحديث البريد الإلكتروني', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10482', 'eg', 'new_address', 'عنوان جديد', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10483', 'eg', 'your_address', 'عنوانك', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10484', 'eg', 'country', 'بلد', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10485', 'eg', 'select_your_country', 'اختر بلدك', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10486', 'eg', 'city', 'مدينة', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10487', 'eg', 'your_city', 'مدينتك', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10488', 'eg', 'your_postal_code', 'رمزك البريدي', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10489', 'eg', '880', '+880', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10490', 'eg', 'save', 'حفظ', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10491', 'eg', 'received_refund_request', 'تم استلام طلب استرداد', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10492', 'eg', 'delete_confirmation', 'تأكيد الحذف', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10493', 'eg', 'are_you_sure_to_delete_this', 'هل أنت متأكد من حذف هذا؟', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10494', 'eg', 'premium_packages_for_sellers', 'حزم متميزة للبائعين', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10495', 'eg', 'product_upload', 'تحميل المنتج', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10496', 'eg', 'digital_product_upload', 'تحميل المنتج الرقمي', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10497', 'eg', 'purchase_package', 'حزمة الشراء', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10498', 'eg', 'select_payment_type', 'اختر طريقة الدفع', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10499', 'eg', 'payment_type', 'نوع الدفع', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10500', 'eg', 'select_one', 'حدد واحد', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10501', 'eg', 'online_payment', 'الدفع الالكتروني', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10502', 'eg', 'offline_payment', 'الدفع دون اتصال بالإنترنت', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10503', 'eg', 'purchase_your_package', 'شراء باقتك', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10504', 'eg', 'paypal', 'باي بال', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10505', 'eg', 'stripe', 'شريط', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10506', 'eg', 'sslcommerz', 'sslcommerz', '2021-02-09 12:50:50', '2021-02-09 12:50:50'),
('10507', 'eg', 'confirm', 'تؤكد', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10508', 'eg', 'offline_package_payment', 'دفع حزمة دون اتصال', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10509', 'eg', 'transaction_id', 'رقم المعاملة', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10510', 'eg', 'choose_image', 'اختر صورة', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10511', 'eg', 'code', 'الشفرة', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10512', 'eg', 'delivery_status', 'حالة التسليم', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10513', 'eg', 'payment_status', 'حالة السداد', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10514', 'eg', 'paid', 'دفع', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10515', 'eg', 'order_details', 'تفاصيل الطلب', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10516', 'eg', 'download_invoice', 'تحميل فاتورة', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10517', 'eg', 'unpaid', 'غير مدفوعة', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10518', 'eg', 'order_placed', 'تم الطلب', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10519', 'eg', 'confirmed', 'تم تأكيد', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10520', 'eg', 'on_delivery', 'عند التسليم', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10521', 'eg', 'delivered', 'تم التوصيل', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10522', 'eg', 'order_summary', 'ملخص الطلب', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10523', 'eg', 'order_code', 'رمز الطلب', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10524', 'eg', 'customer', 'الزبون', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10525', 'eg', 'total_order_amount', 'إجمالي مبلغ الطلب', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10526', 'eg', 'shipping_metdod', 'metdod الشحن', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10527', 'eg', 'flat_shipping_rate', 'سعر الشحن ثابت', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10528', 'eg', 'payment_metdod', 'metdod الدفع', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10529', 'eg', 'variation', 'الاختلاف', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10530', 'eg', 'delivery_type', 'نوع التوصيل', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10531', 'eg', 'home_delivery', 'توصيل منزلي', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10532', 'eg', 'order_ammount', 'مبلغ الطلب', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10533', 'eg', 'subtotal', 'المجموع الفرعي', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10534', 'eg', 'shipping', 'الشحن', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10535', 'eg', 'coupon_discount', 'خصم القسيمة', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10536', 'eg', 'na', 'غير متاح', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10537', 'eg', 'in_stock', 'في الأوراق المالية', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10538', 'eg', 'buy_now', 'اشتري الآن', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10539', 'eg', 'item_added_to_your_cart', 'إضافة السلعة الى سلة التسوق الخاصة بك!', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10540', 'eg', 'proceed_to_checkout', 'الشروع في الخروج', '2021-02-09 12:50:50', '2021-09-20 12:59:38'),
('10541', 'eg', 'cart_items', 'عناصر عربة التسوق', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10542', 'eg', '1_my_cart', '1. عربة التسوق الخاصة بي', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10543', 'eg', 'view_cart', 'عرض عربة التسوق', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10544', 'eg', '2_shipping_info', '2. معلومات الشحن', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10545', 'eg', 'checkout', 'الدفع', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10546', 'eg', '3_delivery_info', '3. معلومات التسليم', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10547', 'eg', '4_payment', '4. الدفع', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10548', 'eg', '5_confirmation', '5. التأكيد', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10549', 'eg', 'remove', 'إزالة', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10550', 'eg', 'return_to_shop', 'العودة الى المتجر', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10551', 'eg', 'continue_to_shipping', 'تابع إلى الشحن', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10552', 'eg', 'or', 'أو', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10553', 'eg', 'guest_checkout', 'ضيف المحاسبة', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10554', 'eg', 'continue_to_delivery_info', 'تابع إلى معلومات التسليم', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10555', 'eg', 'postal_code', 'الرمز البريدي', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10556', 'eg', 'choose_delivery_type', 'اختر نوع التسليم', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10557', 'eg', 'local_pickup', 'شاحنة محلية', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10558', 'eg', 'select_your_nearest_pickup_point', 'حدد أقرب نقطة التقاط لك', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10559', 'eg', 'continue_to_payment', 'تابع إلى الدفع', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10560', 'eg', 'select_a_payment_option', 'حدد خيار الدفع', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10561', 'eg', 'razorpay', 'رازورباي', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10562', 'eg', 'paystack', 'Paystack', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10563', 'eg', 'voguepay', 'VoguePay', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10564', 'eg', 'payhere', 'ادفع هنا', '2021-02-09 12:50:51', '2021-02-09 12:50:51'),
('10565', 'eg', 'ngenius', 'عبقري', '2021-02-09 12:50:51', '2021-02-09 12:50:51'),
('10566', 'eg', 'paytm', 'Paytm', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10567', 'eg', 'cash_on_delivery', 'الدفع عند الاستلام', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10568', 'eg', 'your_wallet_balance_', 'رصيد محفظتك:', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10569', 'eg', 'insufficient_balance', 'رصيد غير كاف', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10570', 'eg', 'i_agree_to_the', 'أنا أوافق على', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10571', 'eg', 'complete_order', 'اكمل الطلب', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10572', 'eg', 'summary', 'ملخص', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10573', 'eg', 'items', 'العناصر', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10574', 'eg', 'total_club_point', 'مجموع نقاط النادي', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10575', 'eg', 'total_shipping', 'إجمالي الشحن', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10576', 'eg', 'have_coupon_code_enter_here', 'هل لديك رمز قسيمة؟ أدخل هنا', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10577', 'eg', 'apply', 'تطبيق', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10578', 'eg', 'you_need_to_agree_with_our_policies', 'أنت بحاجة إلى الموافقة على سياساتنا', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10579', 'eg', 'forgot_password', 'هل نسيت كلمة المرور', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10580', 'eg', 'seo_setting', 'إعداد SEO', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10581', 'eg', 'system_update', 'تحديث النظام', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10582', 'eg', 'add_new_payment_method', 'أضف طريقة دفع جديدة', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10583', 'eg', 'manual_payment_method', 'طريقة الدفع اليدوي', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10584', 'eg', 'heading', 'عنوان', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10585', 'eg', 'logo', 'شعار', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10586', 'eg', 'manual_payment_information', 'معلومات الدفع اليدوي', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10587', 'eg', 'type', 'اكتب', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10588', 'eg', 'custom_payment', 'الدفع المخصص', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10589', 'eg', 'check_payment', 'التحقق من الدفع', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10590', 'eg', 'checkout_thumbnail', 'صورة مصغرة للخروج', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10591', 'eg', 'payment_instruction', 'تعليمات الدفع', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10592', 'eg', 'bank_information', 'المعلومات المصرفية', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10593', 'eg', 'select_file', 'حدد ملف', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10594', 'eg', 'upload_new', 'تحميل جديد', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10595', 'eg', 'sort_by_newest', 'الترتيب حسب الأحدث', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10596', 'eg', 'sort_by_oldest', 'فرز حسب الأقدم', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10597', 'eg', 'sort_by_smallest', 'فرز حسب الأصغر', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10598', 'eg', 'sort_by_largest', 'فرز حسب الأكبر', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10599', 'eg', 'selected_only', 'المحدد فقط', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10600', 'eg', 'no_files_found', 'لا توجد ملفات', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10601', 'eg', '0_file_selected', '0 ملف محدد', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10602', 'eg', 'clear', 'واضح', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10603', 'eg', 'prev', 'السابق', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10604', 'eg', 'next', 'التالى', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10605', 'eg', 'add_files', 'إضافة ملفات', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10606', 'eg', 'method_has_been_inserted_successfully', 'تم إدخال الطريقة بنجاح', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10607', 'eg', 'order_date', 'تاريخ الطلب', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10608', 'eg', 'bill_to', 'مشروع قانون ل', '2021-02-09 12:50:51', '2021-09-20 12:59:38'),
('10609', 'eg', 'sub_total', 'المجموع الفرعي', '2021-02-09 12:50:52', '2021-09-20 12:59:38'),
('10610', 'eg', 'total_tax', 'مجموع الضريبة', '2021-02-09 12:50:52', '2021-09-20 12:59:38'),
('10611', 'eg', 'grand_total', 'المبلغ الإجمالي', '2021-02-09 12:50:52', '2021-09-20 12:59:38'),
('10612', 'eg', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'تم وضع طلبك بنجاح. يرجى تقديم معلومات الدفع من سجل الشراء', '2021-02-09 12:50:52', '2021-09-20 12:59:38'),
('10613', 'eg', 'thank_you_for_your_order', 'شكرا لطلبك!', '2021-02-09 12:50:52', '2021-09-20 12:59:38'),
('10614', 'eg', 'order_code', 'رمز الطلب:', '2021-02-09 12:50:52', '2021-09-20 12:59:38'),
('10615', 'eg', 'a_copy_or_your_order_summary_has_been_sent_to', 'تم إرسال نسخة أو ملخص طلبك إلى', '2021-02-09 12:50:52', '2021-09-20 12:59:38'),
('10616', 'eg', 'make_payment', 'قم بالدفع', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10617', 'eg', 'payment_screenshot', 'لقطة شاشة الدفع', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10618', 'eg', 'paypal_credential', 'اعتماد Paypal', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10619', 'eg', 'paypal_client_id', 'معرف عميل Paypal', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10620', 'eg', 'paypal_client_secret', 'سر عميل Paypal', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10621', 'eg', 'paypal_sandbox_mode', 'وضع Paypal Sandbox', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10622', 'eg', 'sslcommerz_credential', 'اعتماد Sslcommerz', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10623', 'eg', 'sslcz_store_id', 'معرف متجر sslcz', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10624', 'eg', 'sslcz_store_password', 'كلمة مرور متجر sslcz', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10625', 'eg', 'sslcommerz_sandbox_mode', 'وضع الحماية Sslcommerz', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10626', 'eg', 'stripe_credential', 'اعتماد شريطي', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10627', 'eg', 'stripe_key', 'مفتاح الشريط', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10628', 'eg', 'stripe_secret', 'سر الشريط', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10629', 'eg', 'razorpay_credential', 'اعتماد RazorPay', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10630', 'eg', 'razor_key', 'مفتاح الحلاقة', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10631', 'eg', 'razor_secret', 'سر الحلاقة', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10632', 'eg', 'instamojo_credential', 'اعتماد Instamojo', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10633', 'eg', 'api_key', 'مفتاح API', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10634', 'eg', 'im_api_key', 'IM API KEY', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10635', 'eg', 'auth_token', 'AUTH TOKEN', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10636', 'eg', 'im_auth_token', 'رمز IM AUTH', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10637', 'eg', 'instamojo_sandbox_mode', 'وضع Instamojo Sandbox', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10638', 'eg', 'paystack_credential', 'اعتماد PayStack', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10639', 'eg', 'public_key', 'المفتاح العمومي', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10640', 'eg', 'secret_key', 'مفتاح سري', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10641', 'eg', 'merchant_email', 'البريد الإلكتروني للتاجر', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10642', 'eg', 'voguepay_credential', 'اعتماد VoguePay', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10643', 'eg', 'merchant_id', 'معرف التاجر', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10644', 'eg', 'sandbox_mode', 'وضع الحماية', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10645', 'eg', 'payhere_credential', 'اعتماد Payhere', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10646', 'eg', 'payhere_merchant_id', 'معرف تاجر بايهير', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10647', 'eg', 'payhere_secret', 'PAYHERE SECRET', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10648', 'eg', 'payhere_currency', 'عملة الدفع', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10649', 'eg', 'payhere_sandbox_mode', 'وضع Payhere Sandbox', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10650', 'eg', 'ngenius_credential', 'Ngenius Credential', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10651', 'eg', 'ngenius_outlet_id', 'معرف منفذ NGENIUS', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10652', 'eg', 'ngenius_api_key', 'NGENIUS API KEY', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10653', 'eg', 'ngenius_currency', 'العملة الأجنبية', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10654', 'eg', 'mpesa_credential', 'اعتماد Mpesa', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10655', 'eg', 'mpesa_consumer_key', 'مفتاح المستهلك MPESA', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10656', 'eg', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10657', 'eg', 'mpesa_consumer_secret', 'سر المستهلك MPESA', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10658', 'eg', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10659', 'eg', 'mpesa_short_code', 'كود MPESA المختصر', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10660', 'eg', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10661', 'eg', 'mpesa_sandbox_activation', 'تنشيط ساندبوكس MPESA', '2021-02-09 12:50:52', '2021-09-20 12:59:39'),
('10662', 'eg', 'flutterwave_credential', 'اعتماد Flutterwave', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10663', 'eg', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10664', 'eg', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10665', 'eg', 'rave_title', 'RAVE_TITLE', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10666', 'eg', 'stagin_activation', 'تنشيط STAGIN', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10667', 'eg', 'all_product', 'كل المنتجات', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10668', 'eg', 'sort_by', 'ترتيب حسب', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10669', 'eg', 'rating_high__low', 'التصنيف (مرتفع> منخفض)', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10670', 'eg', 'rating_low__high', 'التصنيف (منخفض> مرتفع)', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10671', 'eg', 'num_of_sale_high__low', 'عدد المبيعات (مرتفع> منخفض)', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10672', 'eg', 'num_of_sale_low__high', 'عدد المبيعات (منخفض> مرتفع)', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10673', 'eg', 'base_price_high__low', 'السعر الأساسي (مرتفع> منخفض)', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10674', 'eg', 'base_price_low__high', 'السعر الأساسي (منخفض> مرتفع)', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10675', 'eg', 'type__enter', 'اكتب & أدخل', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10676', 'eg', 'added_by', 'أضيفت من قبل', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10677', 'eg', 'num_of_sale', 'رقم البيع', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10678', 'eg', 'total_stock', 'إجمالي المخزون', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10679', 'eg', 'todays_deal', 'صفقة اليوم', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10680', 'eg', 'rating', 'تقييم', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10681', 'eg', 'times', 'مرات', '2021-02-09 12:50:53', '2021-02-09 12:50:53'),
('10682', 'eg', 'add_nerw_product', 'أضف منتج نيرو', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10683', 'eg', 'product_information', 'معلومات المنتج', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10684', 'eg', 'unit', 'وحدة', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10685', 'eg', 'unit_eg_kg_pc_etc', 'الوحدة (مثل KG ، Pc إلخ)', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10686', 'eg', 'minimum_qty', 'الحد الأدنى من الكمية', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10687', 'eg', 'tags', 'العلامات', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10688', 'eg', 'type_and_hit_enter_to_add_a_tag', 'اكتب واضغط على Enter لإضافة علامة', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10689', 'eg', 'barcode', 'الباركود', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10690', 'eg', 'refundable', 'مستردة', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10691', 'eg', 'product_images', 'صور المنتج', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10692', 'eg', 'gallery_images', 'معرض الصور', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10693', 'eg', 'todays_deal_updated_successfully', 'تم تحديث صفقة اليوم بنجاح', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10694', 'eg', 'published_products_updated_successfully', 'تم تحديث المنتجات المنشورة بنجاح', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10695', 'eg', 'thumbnail_image', 'صورة مصغرة', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10696', 'eg', 'featured_products_updated_successfully', 'تم تحديث المنتجات المميزة بنجاح', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10697', 'eg', 'product_videos', 'فيديو المنتج', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10698', 'eg', 'video_provider', 'مزود الفيديو', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10699', 'eg', 'youtube', 'موقع YouTube', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10700', 'eg', 'dailymotion', 'ديلي موشن', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10701', 'eg', 'vimeo', 'فيميو', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10702', 'eg', 'video_link', 'رابط الفيديو', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10703', 'eg', 'product_variation', 'تنوع المنتج', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10704', 'eg', 'colors', 'الألوان', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10705', 'eg', 'attributes', 'السمات', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10706', 'eg', 'choose_attributes', 'اختر السمات', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10707', 'eg', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'اختر سمات هذا المنتج ثم قيم الإدخال لكل سمة', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10708', 'eg', 'product_price__stock', 'سعر المنتج + الأسهم', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10709', 'eg', 'unit_price', 'سعر الوحدة', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10710', 'eg', 'purchase_price', 'سعر الشراء', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10711', 'eg', 'flat', 'مسطحة', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10712', 'eg', 'percent', 'نسبه مئويه', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10713', 'eg', 'discount', 'خصم', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10714', 'eg', 'product_description', 'وصف المنتج', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10715', 'eg', 'product_shipping_cost', 'تكلفة شحن المنتج', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10716', 'eg', 'free_shipping', 'الشحن مجانا', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10717', 'eg', 'flat_rate', 'سعر موحد', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10718', 'eg', 'shipping_cost', 'تكلفة الشحن', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10719', 'eg', 'pdf_specification', 'مواصفات PDF', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10720', 'eg', 'seo_meta_tags', 'العلامات الوصفية SEO', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10721', 'eg', 'meta_title', 'عنوان الفوقية', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10722', 'eg', 'meta_image', 'صورة ميتا', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10723', 'eg', 'choice_title', 'عنوان الاختيار', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10724', 'eg', 'enter_choice_values', 'أدخل قيم الاختيار', '2021-02-09 12:50:53', '2021-09-20 12:59:39'),
('10725', 'eg', 'all_categories', 'جميع الفئات', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10726', 'eg', 'add_new_category', 'إضافة فئة جديدة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10727', 'eg', 'type_name__enter', 'اكتب الاسم وأدخل', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10728', 'eg', 'banner', 'لافتة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10729', 'eg', 'commission', 'عمولة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10730', 'eg', 'icon', 'أيقونة', '2021-02-09 12:50:54', '2021-02-09 12:50:54'),
('10731', 'eg', 'featured_categories_updated_successfully', 'تم تحديث الفئات المميزة بنجاح', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10732', 'eg', 'hot', 'الحار', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10733', 'eg', 'filter_by_payment_status', 'تصفية حسب حالة الدفع', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10734', 'eg', 'unpaid', 'غير مدفوعة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10735', 'eg', 'filter_by_deliver_status', 'تصفية حسب تسليم الحالة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10736', 'eg', 'pending', 'قيد الانتظار', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10737', 'eg', 'type_order_code__hit_enter', 'اكتب رمز الطلب واضغط على Enter', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10738', 'eg', 'num_of_products', 'رقم. المنتجات', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10739', 'eg', 'walk_in_customer', 'دخول العميل', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10740', 'eg', 'qty', 'الكمية', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10741', 'eg', 'without_shipping_charge', 'بدون رسوم الشحن', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10742', 'eg', 'with_shipping_charge', 'مع رسوم الشحن', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10743', 'eg', 'pay_with_cash', 'الدفع نقدا', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10744', 'eg', 'shipping_address', 'عنوان الشحن', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10745', 'eg', 'close', 'قريب', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10746', 'eg', 'select_country', 'حدد الدولة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10747', 'eg', 'order_confirmation', 'تأكيد الطلب', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10748', 'eg', 'are_you_sure_to_confirm_this_order', 'هل أنت متأكد من تأكيد هذا الطلب؟', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10749', 'eg', 'comfirm_order', 'ترتيب Comfirm', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10750', 'eg', 'personal_info', 'معلومات شخصية', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10751', 'eg', 'repeat_password', 'اعد كلمة السر', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10752', 'eg', 'shop_name', 'اسم المحل', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10753', 'eg', 'register_your_shop', 'سجل متجرك', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10754', 'eg', 'affiliate_informations', 'المعلومات التابعة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10755', 'eg', 'affiliate', 'شركة تابعة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10756', 'eg', 'user_info', 'معلومات المستخدم', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10757', 'eg', 'installed_addon', 'الملحق المثبت', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10758', 'eg', 'available_addon', 'الملحق المتاح', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10759', 'eg', 'install_new_addon', 'قم بتثبيت ملحق جديد', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10760', 'eg', 'version', 'الإصدار', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10761', 'eg', 'activated', 'مفعل', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10762', 'eg', 'deactivated', 'معطل', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10763', 'eg', 'activate_otp', 'تفعيل OTP', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10764', 'eg', 'otp_will_be_used_for', 'سيتم استخدام OTP لـ', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10765', 'eg', 'settings_updated_successfully', 'تم تحديث الإعدادات بنجاح', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10766', 'eg', 'product_owner', 'مالك المنتج', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10767', 'eg', 'point', 'نقطة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10768', 'eg', 'set_point_for_product_within_a_range', 'تعيين نقطة للمنتج ضمن النطاق', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10769', 'eg', 'set_point_for_multiple_products', 'تعيين نقطة لمنتجات متعددة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10770', 'eg', 'min_price', 'سعر دقيقة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10771', 'eg', 'max_price', 'أقصى سعر', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10772', 'eg', 'set_point_for_all_products', 'تعيين نقطة لجميع المنتجات', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10773', 'eg', 'set_point_for_', 'تعيين نقطة ل', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10774', 'eg', 'convert_status', 'تحويل الحالة', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10775', 'eg', 'earned_at', 'حصل في', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10776', 'eg', 'seller_based_selling_report', 'تقرير البيع القائم على البائع', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10777', 'eg', 'sort_by_verificarion_status', 'فرز حسب حالة التحقق', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10778', 'eg', 'approved', 'وافق', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10779', 'eg', 'non_approved', 'ليس مصدق عليه', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10780', 'eg', 'filter', 'منقي', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10781', 'eg', 'seller_name', 'البائع اسم', '2021-02-09 12:50:54', '2021-09-20 12:59:39'),
('10782', 'eg', 'number_of_product_sale', 'عدد بيع المنتج', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10783', 'eg', 'order_amount', 'كمية الطلب', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10784', 'eg', 'facebook_chat_setting', 'إعداد دردشة Facebook', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10785', 'eg', 'facebook_page_id', 'معرف صفحة الفيسبوك', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10786', 'eg', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'يرجى توخي الحذر عند تكوين دردشة Facebook. للتكوين غير الصحيح ، لن تحصل على أيقونة messenger على موقع المستخدم الخاص بك.', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10787', 'eg', 'login_into_your_facebook_page', 'تسجيل الدخول إلى صفحة الفيسبوك الخاصة بك', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10788', 'eg', 'find_the_about_option_of_your_facebook_page', 'ابحث عن خيار حول صفحتك على Facebook', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10789', 'eg', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'في الجزء السفلي ، يمكنك العثور على \\ \"معرف صفحة Facebook \\\"', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10790', 'eg', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'انتقل إلى إعدادات صفحتك وابحث عن خيار \\ \"تقديم الرسائل \\\"', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10791', 'eg', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'مرر لأسفل تلك الصفحة وستحصل على \\ \"المجال المدرج في القائمة البيضاء \\\"', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10792', 'eg', 'set_your_website_domain_name', 'قم بتعيين اسم مجال موقع الويب الخاص بك', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10793', 'eg', 'google_recaptcha_setting', 'إعداد Google reCAPTCHA', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10794', 'eg', 'site_key', 'مفتاح الموقع', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10795', 'eg', 'select_shipping_method', 'إختر طريقة الشحن', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10796', 'eg', 'product_wise_shipping_cost', 'تكلفة شحن المنتج الحكيمة', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10797', 'eg', 'flat_rate_shipping_cost', 'تكلفة الشحن بسعر موحد', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10798', 'eg', 'seller_wise_flat_shipping_cost', 'البائع شقة الحكمة أجور الشحن', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10799', 'eg', 'note', 'ملحوظة', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10800', 'eg', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'حساب تكلفة الشحن الحكيمة للمنتج: يتم حساب تكلفة الشحن عن طريق إضافة تكلفة شحن كل منتج', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10801', 'eg', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'حساب تكلفة الشحن بالسعر الثابت: لا يهم كم عدد المنتجات التي يشتريها العميل. تكلفة الشحن ثابتة', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10802', 'eg', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'حساب البائع لتكلفة الشحن الثابتة: سعر ثابت لكل بائع. إذا قام العميل بشراء منتجين من اثنين من تكلفة الشحن للبائعين ، يتم حسابها بإضافة تكلفة الشحن الثابتة لكل بائع', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10803', 'eg', 'flat_rate_cost', 'تكلفة السعر الثابت', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10804', 'eg', 'shipping_cost_for_admin_products', 'تكلفة الشحن للمنتجات الإدارية', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10805', 'eg', 'countries', 'بلدان', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10806', 'eg', 'showhide', 'اظهر المخفي', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10807', 'eg', 'country_status_updated_successfully', 'تم تحديث حالة البلد بنجاح', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10808', 'eg', 'all_subcategories', 'جميع الفئات الفرعية', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10809', 'eg', 'add_new_subcategory', 'إضافة فئة فرعية جديدة', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10810', 'eg', 'subcategories', 'الفئات الفرعية', '2021-02-09 12:50:55', '2021-09-20 12:59:39'),
('10811', 'eg', 'sub_category_information', 'معلومات الفئة الفرعية', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10812', 'eg', 'slug', 'سبيكة', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10813', 'eg', 'all_sub_subcategories', 'جميع الفئات الفرعية', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10814', 'eg', 'add_new_sub_subcategory', 'إضافة تصنيف فرعي جديد', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10815', 'eg', 'subsubcategories', 'الفئات الفرعية الفرعية', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10816', 'eg', 'make_this_default', 'اجعل هذا الافتراضي', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10817', 'eg', 'shops', 'محلات', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10818', 'eg', 'women_clothing__fashion', 'ملابس وموضة نسائية', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10819', 'eg', 'cellphones__tabs', 'الهواتف المحمولة وعلامات التبويب', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10820', 'eg', 'welcome_to', 'مرحبا بك في', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10821', 'eg', 'create_a_new_account', 'انشاء حساب جديد', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10822', 'eg', 'full_name', 'الاسم الكامل', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10823', 'eg', 'password', 'كلمه السر', '2021-02-09 12:51:37', '2021-02-09 12:51:37'),
('10824', 'eg', 'confrim_password', 'تأكيد كلمة المرور', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10825', 'eg', 'i_agree_with_the', 'وأنا أتفق مع', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10826', 'eg', 'terms_and_conditions', 'الأحكام والشروط', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10827', 'eg', 'register', 'تسجيل', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10828', 'eg', 'already_have_an_account', 'هل لديك حساب', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10829', 'eg', 'sign_up_with', 'سجل مع', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10830', 'eg', 'i_agree_with_the_terms_and_conditions', 'اني اوافق على الشروط والظروف', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10831', 'eg', 'all_role', 'كل دور', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10832', 'eg', 'add_new_role', 'إضافة دور جديد', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10833', 'eg', 'roles', 'الأدوار', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10834', 'eg', 'add_new_staffs', 'إضافة طاقم عمل جديد', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10835', 'eg', 'role', 'وظيفة', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10836', 'eg', 'frontend_website_name', 'اسم موقع الواجهة الأمامية', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10837', 'eg', 'website_name', 'اسم الموقع', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10838', 'eg', 'site_motto', 'شعار الموقع', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10839', 'eg', 'best_ecommerce_website', 'أفضل موقع للتجارة الإلكترونية', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10840', 'eg', 'site_icon', 'أيقونة الموقع', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10841', 'eg', 'website_favicon_32x32_png', 'أيقونة موقع الويب. 32 × 32. png', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10842', 'eg', 'website_base_color', 'لون قاعدة الموقع', '2021-02-09 12:51:37', '2021-09-20 12:59:39'),
('10843', 'eg', 'hex_color_code', 'رمز اللون السداسي', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10844', 'eg', 'website_base_hover_color', 'لون قاعدة موقع الويب', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10845', 'eg', 'update', 'تحديث', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10846', 'eg', 'global_seo', 'العالمية سيو', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10847', 'eg', 'meta_description', 'ميتا الوصف', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10848', 'eg', 'keywords', 'الكلمات الدالة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10849', 'eg', 'separate_with_coma', 'فصل مع غيبوبة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10850', 'eg', 'website_pages', 'صفحات الموقع', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10851', 'eg', 'all_pages', 'كل الصفحات', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10852', 'eg', 'add_new_page', 'أضف صفحة جديدة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10853', 'eg', 'url', 'URL', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10854', 'eg', 'actions', 'أجراءات', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10855', 'eg', 'edit_page_information', 'تحرير معلومات الصفحة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10856', 'eg', 'page_content', 'محتوى الصفحة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10857', 'eg', 'title', 'عنوان', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10858', 'eg', 'link', 'حلقة الوصل', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10859', 'eg', 'use_character_number_hypen_only', 'استخدم الحرف ، الرقم ، الواصلة فقط', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10860', 'eg', 'add_content', 'إضافة محتوى', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10861', 'eg', 'seo_fields', 'سيو فيلدز', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10862', 'eg', 'update_page', 'تحديث الصفحة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10863', 'eg', 'default_language', 'اللغة الافتراضية', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10864', 'eg', 'add_new_language', 'أضف لغة جديدة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10865', 'eg', 'rtl', 'RTL', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10866', 'eg', 'translation', 'ترجمة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10867', 'eg', 'language_information', 'معلومات اللغة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10868', 'eg', 'save_page', 'احفظ الصفحة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10869', 'eg', 'home_page_settings', 'إعدادات الصفحة الرئيسية', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10870', 'eg', 'home_slider', 'المنزل المنزلق', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10871', 'eg', 'photos__links', 'الصور والروابط', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10872', 'eg', 'add_new', 'اضف جديد', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10873', 'eg', 'home_categories', 'فئات المنزل', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10874', 'eg', 'home_banner_1_max_3', 'لافتة المنزل 1 (الحد الأقصى 3)', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10875', 'eg', 'banner__links', 'لافتة وروابط', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10876', 'eg', 'home_banner_2_max_3', 'لافتة المنزل 2 (الحد الأقصى 3)', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10877', 'eg', 'top_10', 'أعلى 10', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10878', 'eg', 'top_categories_max_10', 'أهم الفئات (بحد أقصى 10)', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10879', 'eg', 'top_brands_max_10', 'أشهر الماركات (بحد أقصى 10)', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10880', 'eg', 'system_name', 'اسم النظام', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10881', 'eg', 'system_logo__white', 'شعار النظام - أبيض', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10882', 'eg', 'choose_files', 'اختر الملفات', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10883', 'eg', 'will_be_used_in_admin_panel_side_menu', 'سيتم استخدامها في القائمة الجانبية للوحة الإدارة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10884', 'eg', 'system_logo__black', 'شعار النظام - أسود', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10885', 'eg', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'سيتم استخدامها في الشريط العلوي للوحة الإدارة في الجوال + صفحة تسجيل دخول المسؤول', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10886', 'eg', 'system_timezone', 'المنطقة الزمنية للنظام', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10887', 'eg', 'admin_login_page_background', 'خلفية صفحة تسجيل دخول المسؤول', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10888', 'eg', 'website_header', 'رأس موقع الويب', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10889', 'eg', 'header_setting', 'إعداد الرأس', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10890', 'eg', 'header_logo', 'رأس الشعار', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10891', 'eg', 'show_language_switcher', 'إظهار محوّل اللغة؟', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10892', 'eg', 'show_currency_switcher', 'إظهار محوّل العملات؟', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10893', 'eg', 'enable_stikcy_header', 'تمكين رأس stikcy؟', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10894', 'eg', 'website_footer', 'تذييل موقع الويب', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10895', 'eg', 'footer_widget', 'القطعة التذييل', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10896', 'eg', 'about_widget', 'حول القطعة', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10897', 'eg', 'footer_logo', 'تذييل الشعار', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10898', 'eg', 'about_description', 'حول الوصف', '2021-02-09 12:51:38', '2021-09-20 12:59:39'),
('10899', 'eg', 'contact_info_widget', 'أداة معلومات الاتصال', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10900', 'eg', 'footer_contact_address', 'عنوان اتصال التذييل', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10901', 'eg', 'footer_contact_phone', 'هاتف جهة اتصال التذييل', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10902', 'eg', 'footer_contact_email', 'البريد الإلكتروني لجهة اتصال التذييل', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10903', 'eg', 'link_widget_one', 'رابط القطعة واحد', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10904', 'eg', 'links', 'الروابط', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10905', 'eg', 'footer_bottom', 'أسفل التذييل', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10906', 'eg', 'copyright_widget_', 'القطعة حقوق الطبع والنشر', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10907', 'eg', 'copyright_text', 'نص حقوق النشر', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10908', 'eg', 'social_link_widget_', 'أداة الارتباط الاجتماعي', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10909', 'eg', 'show_social_links', 'إظهار الروابط الاجتماعية؟', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10910', 'eg', 'social_links', 'روابط اجتماعية', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10911', 'eg', 'payment_methods_widget_', 'أداة طرق الدفع', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10912', 'eg', 'rtl_status_updated_successfully', 'تم تحديث حالة RTL بنجاح', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10913', 'eg', 'language_changed_to_', 'تغيرت اللغة إلى', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10914', 'eg', 'inhouse_product_sale_report', 'تقرير بيع المنتج الداخلي', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10915', 'eg', 'sort_by_category', 'فرز حسب الفئة', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10916', 'eg', 'product_wise_stock_report', 'تقرير مخزون المنتج الحكيم', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10917', 'eg', 'currency_changed_to_', 'تغيرت العملة إلى', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10918', 'eg', 'avatar', 'الصورة الرمزية', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10919', 'eg', 'copy', 'نسخ', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10920', 'eg', 'variant', 'متغير', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10921', 'eg', 'variant_price', 'سعر متغير', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10922', 'eg', 'sku', 'SKU', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10923', 'eg', 'key', 'مفتاح', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10924', 'eg', 'value', 'القيمة', '2021-02-09 12:51:39', '2021-09-20 12:59:39'),
('10925', 'eg', 'copy_translations', 'نسخ الترجمات', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10926', 'eg', 'all_pickup_points', 'جميع نقاط الاستلام', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10927', 'eg', 'add_new_pickup_point', 'أضف نقطة التقاط جديدة', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10928', 'eg', 'manager', 'مدير', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10929', 'eg', 'location', 'موقعك', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10930', 'eg', 'pickup_station_contact', 'الاتصال بمحطة الالتقاط', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10931', 'eg', 'open', 'افتح', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10932', 'eg', 'pos_activation_for_seller', 'تفعيل نقاط البيع للبائع', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10933', 'eg', 'order_completed_successfully', 'اكتمل الطلب بنجاح.', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10934', 'eg', 'text_input', 'إدخال النص', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10935', 'eg', 'select', 'تحديد', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10936', 'eg', 'multiple_select', 'تحديد متعدد', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10937', 'eg', 'radio', 'مذياع', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10938', 'eg', 'file', 'ملف', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10939', 'eg', 'email_address', 'عنوان بريد الكتروني', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10940', 'eg', 'verification_info', 'معلومات التحقق', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10941', 'eg', 'approval', 'موافقة', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10942', 'eg', 'due_amount', 'مبلغ مستحق', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10943', 'eg', 'show', 'تبين', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10944', 'eg', 'pay_now', 'ادفع الآن', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10945', 'eg', 'affiliate_user_verification', 'التحقق من المستخدم التابع', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10946', 'eg', 'reject', 'رفض', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10947', 'eg', 'accept', 'قبول', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10948', 'eg', 'beauty_health__hair', 'الجمال والصحة والشعر', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10949', 'eg', 'comparison', 'مقارنة', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10950', 'eg', 'reset_compare_list', 'إعادة تعيين قائمة المقارنة', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10951', 'eg', 'your_comparison_list_is_empty', 'قائمة المقارنة الخاصة بك فارغة', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10952', 'eg', 'convert_point_to_wallet', 'تحويل النقطة إلى المحفظة', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10953', 'eg', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'ملاحظة: أنت بحاجة إلى تنشيط خيار المحفظة أولاً قبل استخدام ملحق نقطة النادي.', '2021-02-09 12:51:39', '2021-09-20 12:59:40'),
('10954', 'eg', 'create_an_account', 'انشئ حساب.', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10955', 'eg', 'use_email_instead', 'استخدم البريد الإلكتروني بدلاً من ذلك', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10956', 'eg', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'بالتسجيل فإنك توافق على الشروط والأحكام الخاصة بنا.', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10957', 'eg', 'create_account', 'إنشاء حساب', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10958', 'eg', 'or_join_with', 'أو انضم إلى', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10959', 'eg', 'already_have_an_account', 'هل لديك حساب؟', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10960', 'eg', 'log_in', 'تسجيل الدخول', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10961', 'eg', 'computer__accessories', 'الكمبيوتر وملحقاته', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10962', 'eg', 'products', 'منتجات)', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10963', 'eg', 'in_your_cart', 'في عربة التسوق الخاصة بك', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10964', 'eg', 'in_your_wishlist', 'في قائمة الرغبات الخاصة بك', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10965', 'eg', 'you_ordered', 'لقد طلبت', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10966', 'eg', 'default_shipping_address', 'عنوان الشحن الافتراضي', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10967', 'eg', 'sports__outdoor', 'رياضة وخارجية', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10968', 'eg', 'copied', 'نسخ', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10969', 'eg', 'copy_the_promote_link', 'انسخ رابط الترويج', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10970', 'eg', 'write_a_review', 'أكتب مراجعة', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10971', 'eg', 'your_name', 'اسمك', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10972', 'eg', 'comment', 'تعليق', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10973', 'eg', 'your_review', 'مراجعتك', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10974', 'eg', 'submit_review', 'إرسال المراجعة', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10975', 'eg', 'claire_willis', 'كلير ويليس', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10976', 'eg', 'germaine_greene', 'جيرمين جرين', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10977', 'eg', 'product_file', 'ملف المنتج', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10978', 'eg', 'choose_file', 'اختر ملف', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10979', 'eg', 'type_to_add_a_tag', 'اكتب لإضافة علامة', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10980', 'eg', 'images', 'الصور', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10981', 'eg', 'main_images', 'الصور الرئيسية', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10982', 'eg', 'meta_tags', 'العلامات الفوقية', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10983', 'eg', 'digital_product_has_been_inserted_successfully', 'تم إدخال المنتج الرقمي بنجاح', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10984', 'eg', 'edit_digital_product', 'تحرير المنتج الرقمي', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10985', 'eg', 'select_an_option', 'حدد اختيارا', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10986', 'eg', 'tax', 'ضريبة', '2021-02-09 12:51:40', '2021-02-09 12:51:40'),
('10987', 'eg', 'any_question_about_this_product', 'أي سؤال حول هذا المنتج؟', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10988', 'eg', 'sign_in', 'تسجيل الدخول', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10989', 'eg', 'login_with_google', 'تسجيل الدخول عبر جوجل', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10990', 'eg', 'login_with_facebook', 'تسجيل الدخول باستخدام الفيسبوك', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10991', 'eg', 'login_with_twitter', 'تسجيل الدخول مع Twitter', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10992', 'eg', 'click_to_show_phone_number', 'انقر لإظهار رقم الهاتف', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10993', 'eg', 'other_ads_of', 'إعلانات أخرى من', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10994', 'eg', 'store_home', 'مخزن المنزل', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10995', 'eg', 'top_selling', 'الأكثر مبيعا', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10996', 'eg', 'shop_settings', 'إعدادات المتجر', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10997', 'eg', 'visit_shop', 'قم بزيارة المتجر', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10998', 'eg', 'pickup_points', 'نقاط الالتقاط', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('10999', 'eg', 'select_pickup_point', 'حدد نقطة الالتقاط', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('11000', 'eg', 'slider_settings', 'إعدادات المنزلق', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('11001', 'eg', 'social_media_link', 'رابط التواصل الاجتماعي', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('11002', 'eg', 'facebook', 'موقع التواصل الاجتماعي الفيسبوك', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('11003', 'eg', 'twitter', 'تويتر', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('11004', 'eg', 'google', 'جوجل', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('11005', 'eg', 'new_arrival_products', 'منتجات وصول جديدة', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('11006', 'eg', 'check_your_order_status', 'تحقق من حالة طلبك', '2021-02-09 12:51:40', '2021-09-20 12:59:40'),
('11007', 'eg', 'shipping_method', 'طريقة الشحن', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11008', 'eg', 'shipped_by', 'تم الشحن بواسطة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11009', 'eg', 'image', 'صورة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11010', 'eg', 'sub_sub_category', 'فئة فرعية فرعية', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11011', 'eg', 'inhouse_products', 'المنتجات الداخلية', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11012', 'eg', 'forgot_password', 'هل نسيت كلمة المرور؟', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11013', 'eg', 'enter_your_email_address_to_recover_your_password', 'أدخل عنوان بريدك الإلكتروني لاستعادة كلمة المرور الخاصة بك.', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11014', 'eg', 'email_or_phone', 'بريد الكتروني او هاتف', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11015', 'eg', 'send_password_reset_link', 'إرسال رابط إعادة تعيين كلمة السر', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11016', 'eg', 'back_to_login', 'العودة إلى تسجيل الدخول', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11017', 'eg', 'index', 'فهرس', '2021-02-09 12:51:41', '2021-02-09 12:51:41'),
('11018', 'eg', 'download_your_product', 'قم بتنزيل منتجك', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11019', 'eg', 'option', 'اختيار', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11020', 'eg', 'applied_refund_request', 'طلب استرداد مطبق', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11021', 'eg', 'item_has_been_renoved_from_wishlist', 'تمت إعادة العنصر من قائمة الرغبات', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11022', 'eg', 'bulk_products_upload', 'تحميل المنتجات بالجملة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11023', 'eg', 'upload_csv', 'تحميل CSV', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11024', 'eg', 'create_a_ticket', 'قم بإنشاء تذكرة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11025', 'eg', 'tickets', 'تذاكر', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11026', 'eg', 'ticket_id', 'معرف التذكرة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11027', 'eg', 'sending_date', 'تاريخ إرسال', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11028', 'eg', 'subject', 'موضوع', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11029', 'eg', 'view_details', 'عرض التفاصيل', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11030', 'eg', 'provide_a_detailed_description', 'قدم وصفاً مفصلاً', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11031', 'eg', 'type_your_reply', 'اكتب ردك', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11032', 'eg', 'send_ticket', 'إرسال التذكرة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11033', 'eg', 'load_more', 'تحميل المزيد', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11034', 'eg', 'jewelry__watches', 'المجوهرات والساعات', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11035', 'eg', 'filters', 'المرشحات', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11036', 'eg', 'contact_address', 'عنوان الإتصال', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11037', 'eg', 'contact_phone', 'هاتف الاتصال', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11038', 'eg', 'contact_email', 'تواصل بالبريد الاكتروني', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11039', 'eg', 'filter_by', 'مصنف بواسطة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11040', 'eg', 'condition', 'شرط', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11041', 'eg', 'all_type', 'كل الأنواع', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11042', 'eg', 'pay_with_wallet', 'ادفع بالمحفظة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11043', 'eg', 'select_variation', 'حدد الاختلاف', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11044', 'eg', 'no_product_added', 'لا يوجد منتج مضاف', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11045', 'eg', 'status_has_been_updated_successfully', 'تم تحديث الحالة بنجاح', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11046', 'eg', 'all_seller_packages', 'جميع حزم البائع', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11047', 'eg', 'add_new_package', 'إضافة حزمة جديدة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11048', 'eg', 'package_logo', 'حزمة الشعار', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11049', 'eg', 'days', 'أيام', '2021-02-09 12:51:41', '2021-02-09 12:51:41'),
('11050', 'eg', 'create_new_seller_package', 'إنشاء حزمة بائع جديدة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11051', 'eg', 'package_name', 'اسم الحزمة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11052', 'eg', 'duration', 'المدة الزمنية', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11053', 'eg', 'validity_in_number_of_days', 'الصلاحية في عدد الأيام', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11054', 'eg', 'update_package_information', 'تحديث معلومات الحزمة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11055', 'eg', 'package_has_been_inserted_successfully', 'تم إدخال الحزمة بنجاح', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11056', 'eg', 'refund_request', 'طلب ارجاع', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11057', 'eg', 'reason', 'السبب', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11058', 'eg', 'label', 'ضع الكلمة المناسبة', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11059', 'eg', 'select_label', 'حدد التسمية', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11060', 'eg', 'multiple_select_label', 'متعدد تحديد التسمية', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11061', 'eg', 'radio_label', 'تسمية الراديو', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11062', 'eg', 'pickup_point_orders', 'أوامر نقطة الاستلام', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11063', 'eg', 'view', 'رأي', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11064', 'eg', 'order_', 'طلب #', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11065', 'eg', 'order_status', 'حالة الطلب', '2021-02-09 12:51:41', '2021-09-20 12:59:40'),
('11066', 'eg', 'total_amount', 'المبلغ الإجمالي', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11067', 'eg', 'total', 'مجموع', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11068', 'eg', 'delivery_status_has_been_updated', 'تم تحديث حالة التسليم', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11069', 'eg', 'payment_status_has_been_updated', 'تم تحديث حالة الدفع', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11070', 'eg', 'invoice', 'فاتورة', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11071', 'eg', 'set_refund_time', 'ضبط وقت الاسترداد', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11072', 'eg', 'set_time_for_sending_refund_request', 'تعيين الوقت لإرسال طلب استرداد', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11073', 'eg', 'set_refund_sticker', 'تعيين ملصق استرداد', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11074', 'eg', 'sticker', 'ملصق', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11075', 'eg', 'refund_request_all', 'طلب استرداد الكل', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11076', 'eg', 'order_id', 'رقم التعريف الخاص بالطلب', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11077', 'eg', 'seller_approval', 'موافقة البائع', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11078', 'eg', 'admin_approval', 'موافقة المسؤول', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11079', 'eg', 'refund_status', 'حالة رد الأموال', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11080', 'eg', 'no_refund', 'لا رد', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11081', 'eg', 'status_updated_successfully', 'تم تحديث الحالة بنجاح', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11082', 'eg', 'user_search_report', 'تقرير بحث المستخدم', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11083', 'eg', 'search_by', 'البحث عن طريق', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11084', 'eg', 'number_searches', 'عدد عمليات البحث', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11085', 'eg', 'sender', 'مرسل', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11086', 'eg', 'receiver', 'المتلقي', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11087', 'eg', 'verification_form_updated_successfully', 'تم تحديث نموذج التحقق بنجاح', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11088', 'eg', 'invalid_email_or_password', 'البريد الإلكتروني أو كلمة السر خاطئة', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11089', 'eg', 'all_coupons', 'جميع القسائم', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11090', 'eg', 'add_new_coupon', 'أضف قسيمة جديدة', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11091', 'eg', 'coupon_information', 'معلومات القسيمة', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11092', 'eg', 'start_date', 'تاريخ البدء', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11093', 'eg', 'end_date', 'تاريخ الانتهاء', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11094', 'eg', 'product_base', 'قاعدة المنتج', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11095', 'eg', 'send_newsletter', 'إرسال النشرة الإخبارية', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11096', 'eg', 'mobile_users', 'مستخدمو المحمول', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11097', 'eg', 'sms_subject', 'موضوع الرسائل القصيرة', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11098', 'eg', 'sms_content', 'محتوى الرسائل القصيرة', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11099', 'eg', 'all_flash_delas', 'كل فلاش ديلاس', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11100', 'eg', 'create_new_flash_dela', 'إنشاء فلاش ديلا جديد', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11101', 'eg', 'page_link', 'رابط الصفحة', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11102', 'eg', 'flash_deal_information', 'معلومات صفقة فلاش', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11103', 'eg', 'background_color', 'لون الخلفية', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11104', 'eg', '0000ff', '# 0000ff', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11105', 'eg', 'text_color', 'لون الخط', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11106', 'eg', 'white', 'أبيض', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11107', 'eg', 'dark', 'داكن', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11108', 'eg', 'choose_products', 'اختر المنتجات', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11109', 'eg', 'discounts', 'الخصومات', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11110', 'eg', 'discount_type', 'نوع الخصم', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11111', 'eg', 'twillo_credential', 'اعتماد Twillo', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11112', 'eg', 'twilio_sid', 'TWILIO SID', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11113', 'eg', 'twilio_auth_token', 'رمز TWILIO AUTH', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11114', 'eg', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11115', 'eg', 'valid_twillo_number', 'رقم تويلو صالح', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11116', 'eg', 'nexmo_credential', 'اعتماد Nexmo', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11117', 'eg', 'nexmo_key', 'NEXMO KEY', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11118', 'eg', 'nexmo_secret', 'NEXMO SECRET', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11119', 'eg', 'ssl_wireless_credential', 'اعتماد لاسلكي SSL', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11120', 'eg', 'ssl_sms_api_token', 'SSL SMS API TOKEN', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11121', 'eg', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11122', 'eg', 'ssl_sms_url', 'عنوان URL لـ SSL SMS', '2021-02-09 12:51:42', '2021-09-20 12:59:40'),
('11123', 'eg', 'fast2sms_credential', 'اعتماد Fast2SMS', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11124', 'eg', 'auth_key', 'مفتاح المصادقة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11125', 'eg', 'route', 'طريق', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11126', 'eg', 'promotional_use', 'الاستخدام الترويجي', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11127', 'eg', 'transactional_use', 'استخدام المعاملات', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11128', 'eg', 'sender_id', 'هوية المرسل', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11129', 'eg', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11130', 'eg', 'twillo_otp', 'Twillo OTP', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11131', 'eg', 'ssl_wireless_otp', 'SSL Wireless OTP', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11132', 'eg', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11133', 'eg', 'order_placement', 'ترتيب التنسيب', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11134', 'eg', 'delivery_status_changing_time', 'وقت تغيير حالة التسليم', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11135', 'eg', 'paid_status_changing_time', 'وقت تغيير الحالة المدفوعة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11136', 'eg', 'send_bulk_sms', 'إرسال رسائل نصية مجمعة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11137', 'eg', 'all_subscribers', 'كل المشتركين', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11138', 'eg', 'coupon_information_adding', 'إضافة معلومات القسيمة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11139', 'eg', 'coupon_type', 'نوع القسيمة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11140', 'eg', 'for_products', 'للمنتجات', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11141', 'eg', 'for_total_orders', 'لإجمالي الطلبات', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11142', 'eg', 'add_your_product_base_coupon', 'أضف قسيمة قاعدة المنتج الخاصة بك', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11143', 'eg', 'coupon_code', 'رمز الكوبون', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11144', 'eg', 'sub_category', 'تصنيف فرعي', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11145', 'eg', 'add_more', 'أضف المزيد', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11146', 'eg', 'add_your_cart_base_coupon', 'أضف قسيمة سلة التسوق الخاصة بك', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11147', 'eg', 'minimum_shopping', 'الحد الأدنى من التسوق', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11148', 'eg', 'maximum_discount_amount', 'الحد الأقصى لمبلغ الخصم', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11149', 'eg', 'coupon_information_update', 'تحديث معلومات القسيمة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11150', 'eg', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'يرجى تكوين إعداد SMTP للعمل على جميع وظائف إرسال البريد الإلكتروني', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11151', 'eg', 'configure_now', 'تكوين الآن', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11152', 'eg', 'total_published_products', 'إجمالي المنتجات المنشورة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11153', 'eg', 'total_sellers_products', 'إجمالي منتجات البائعين', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11154', 'eg', 'total_admin_products', 'إجمالي منتجات الإدارة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11155', 'eg', 'manage_products', 'إدارة المنتجات', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11156', 'eg', 'total_product_category', 'فئة المنتج الإجمالية', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11157', 'eg', 'create_category', 'إنشاء فئة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11158', 'eg', 'total_product_sub_sub_category', 'إجمالي فئة فرعية المنتج', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11159', 'eg', 'create_sub_sub_category', 'تكوين فئة فرعية فرعية', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11160', 'eg', 'total_product_sub_category', 'إجمالي فئة المنتج الفرعية', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11161', 'eg', 'create_sub_category', 'إنشاء فئة فرعية', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11162', 'eg', 'total_product_brand', 'إجمالي العلامة التجارية للمنتج', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11163', 'eg', 'create_brand', 'إنشاء علامة تجارية', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11164', 'eg', 'total_sellers', 'مجموع البائعين', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11165', 'eg', 'total_approved_sellers', 'إجمالي البائعين المعتمدين', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11166', 'eg', 'total_pending_sellers', 'إجمالي البائعين المعلقين', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11167', 'eg', 'manage_sellers', 'إدارة البائعين', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11168', 'eg', 'category_wise_product_sale', 'بيع المنتج من فئة الحكمة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11169', 'eg', 'sale', 'تخفيض السعر', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11170', 'eg', 'category_wise_product_stock', 'فئة مخزون المنتج الحكيم', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11171', 'eg', 'category_name', 'اسم التصنيف', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11172', 'eg', 'stock', 'مخزون', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11173', 'eg', 'frontend', 'نهاية المقدمة', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11174', 'eg', 'home_page', 'الصفحة الرئيسية', '2021-02-09 12:51:43', '2021-09-20 12:59:40'),
('11175', 'eg', 'setting', 'ضبط', '2021-02-09 12:51:43', '2021-02-09 12:51:43'),
('11176', 'eg', 'policy_page', 'صفحة السياسة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11177', 'eg', 'general', 'جنرال لواء', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11178', 'eg', 'click_here', 'انقر هنا', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11179', 'eg', 'useful_link', 'رابط مفيد', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11180', 'eg', 'activation', 'التنشيط', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11181', 'eg', 'smtp', 'SMTP', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11182', 'eg', 'payment_method', 'طريقة الدفع او السداد', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11183', 'eg', 'social_media', 'وسائل التواصل الاجتماعي', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11184', 'eg', 'business', 'اعمال', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11185', 'eg', 'seller_verification', 'التحقق من البائع', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11186', 'eg', 'form_setting', 'وضع النموذج', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11187', 'eg', 'language', 'لغة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11188', 'eg', 'dashboard', 'لوحة القيادة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11189', 'eg', 'pos_system', 'نظام نقاط البيع', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11190', 'eg', 'pos_manager', 'مدير نقاط البيع', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11191', 'eg', 'pos_configuration', 'تكوين نقاط البيع', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11192', 'eg', 'products', 'منتجات', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11193', 'eg', 'add_new_product', 'اضافة منتج جديد', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11194', 'eg', 'all_products', 'جميع المنتجات', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11195', 'eg', 'in_house_products', 'منتجات المنزل', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11196', 'eg', 'seller_products', 'منتجات البائع', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11197', 'eg', 'digital_products', 'المنتجات الرقمية', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11198', 'eg', 'bulk_import', 'استيراد بالجملة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11199', 'eg', 'bulk_export', 'تصدير بالجملة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11200', 'eg', 'category', 'الفئة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11201', 'eg', 'subcategory', 'تصنيف فرعي', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11202', 'eg', 'sub_subcategory', 'فئة فرعية', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11203', 'eg', 'brand', 'الماركة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11204', 'eg', 'attribute', 'ينسب', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11205', 'eg', 'product_reviews', 'تعليقات المنتج', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11206', 'eg', 'sales', 'مبيعات', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11207', 'eg', 'all_orders', 'جميع الطلبات', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11208', 'eg', 'inhouse_orders', 'أوامر داخلية', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11209', 'eg', 'seller_orders', 'طلبات البائع', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11210', 'eg', 'pickup_point_order', 'طلب نقطة الاستلام', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11211', 'eg', 'refunds', 'المبالغ المستردة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11212', 'eg', 'refund_requests', 'طلبات الاسترداد', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11213', 'eg', 'approved_refund', 'إعادة الأموال المعتمدة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11214', 'eg', 'refund_configuration', 'تكوين استرداد', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11215', 'eg', 'customers', 'العملاء', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11216', 'eg', 'customer_list', 'قائمة العملاء', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11217', 'eg', 'classified_products', 'المنتجات المبوبة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11218', 'eg', 'classified_packages', 'الحزم المصنفة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11219', 'eg', 'sellers', 'الباعة', '2021-02-09 12:51:44', '2021-09-20 12:59:40'),
('11220', 'eg', 'all_seller', 'كل البائع', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11221', 'eg', 'payouts', 'المدفوعات', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11222', 'eg', 'payout_requests', 'طلبات الدفع', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11223', 'eg', 'seller_commission', 'عمولة البائع', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11224', 'eg', 'seller_packages', 'حزم البائع', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11225', 'eg', 'seller_verification_form', 'نموذج التحقق من البائع', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11226', 'eg', 'reports', 'التقارير', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11227', 'eg', 'in_house_product_sale', 'بيع المنتجات في المنزل', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11228', 'eg', 'seller_products_sale', 'بيع منتجات البائع', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11229', 'eg', 'products_stock', 'مخزون المنتجات', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11230', 'eg', 'products_wishlist', 'قائمة المنتجات المفضلة', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11231', 'eg', 'user_searches', 'عمليات بحث المستخدم', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11232', 'eg', 'marketing', 'تسويق', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11233', 'eg', 'flash_deals', 'صفقات فلاش', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11234', 'eg', 'newsletters', 'النشرات الإخبارية', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11235', 'eg', 'bulk_sms', 'الرسائل القصيرة بالجملة', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11236', 'eg', 'subscribers', 'مشتركين', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11237', 'eg', 'coupon', 'القسيمة', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11238', 'eg', 'support', 'الدعم', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11239', 'eg', 'ticket', 'تذكرة', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11240', 'eg', 'product_queries', 'استفسارات المنتج', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11241', 'eg', 'website_setup', 'إعداد الموقع', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11242', 'eg', 'header', 'رأس', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11243', 'eg', 'footer', 'تذييل', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11244', 'eg', 'pages', 'الصفحات', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11245', 'eg', 'appearance', 'مظهر خارجي', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11246', 'eg', 'setup__configurations', 'الإعداد والتكوينات', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11247', 'eg', 'general_settings', 'الاعدادات العامة', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11248', 'eg', 'features_activation', 'تفعيل الميزات', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11249', 'eg', 'languages', 'اللغات', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11250', 'eg', 'currency', 'عملة', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11251', 'eg', 'pickup_point', 'نقطة الالتقاط', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11252', 'eg', 'smtp_settings', 'إعدادات SMTP', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11253', 'eg', 'payment_methods', 'طرق الدفع', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11254', 'eg', 'file_system_configuration', 'تكوين نظام الملفات', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11255', 'eg', 'social_media_logins', 'عمليات تسجيل الدخول إلى وسائل التواصل الاجتماعي', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11256', 'eg', 'analytics_tools', 'أدوات التحليلات', '2021-02-09 12:51:45', '2021-09-20 12:59:40'),
('11257', 'eg', 'facebook_chat', 'دردشة الفيسبوك', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11258', 'eg', 'google_recaptcha', 'جوجل reCAPTCHA', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11259', 'eg', 'shipping_configuration', 'تكوين الشحن', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11260', 'eg', 'shipping_countries', 'دول الشحن', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11261', 'eg', 'affiliate_system', 'نظام الانتساب', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11262', 'eg', 'affiliate_registration_form', 'استمارة تسجيل المنتسبين', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11263', 'eg', 'affiliate_configurations', 'التكوينات التابعة', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11264', 'eg', 'affiliate_users', 'المستخدمون المنتسبون', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11265', 'eg', 'referral_users', 'المستخدمون المحالون', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11266', 'eg', 'affiliate_withdraw_requests', 'طلبات السحب التابعة', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11267', 'eg', 'offline_payment_system', 'نظام الدفع دون اتصال بالإنترنت', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11268', 'eg', 'manual_payment_methods', 'طرق الدفع اليدوية', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11269', 'eg', 'offline_wallet_recharge', 'إعادة شحن المحفظة دون اتصال بالإنترنت', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11270', 'eg', 'offline_customer_package_payments', 'مدفوعات حزمة العملاء غير المتصلين', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11271', 'eg', 'offline_seller_package_payments', 'مدفوعات حزمة البائع غير المتصل', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11272', 'eg', 'paytm_payment_gateway', 'بوابة الدفع Paytm', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11273', 'eg', 'set_paytm_credentials', 'قم بتعيين بيانات اعتماد Paytm', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11274', 'eg', 'club_point_system', 'نظام كلوب بوينت', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11275', 'eg', 'club_point_configurations', 'تكوينات كلوب بوينت', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11276', 'eg', 'set_product_point', 'تعيين نقطة المنتج', '2021-02-09 12:51:45', '2021-09-20 12:59:41'),
('11277', 'eg', 'user_points', 'نقاط المستخدم', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11278', 'eg', 'otp_system', 'نظام OTP', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11279', 'eg', 'otp_configurations', 'تكوينات OTP', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11280', 'eg', 'set_otp_credentials', 'قم بتعيين بيانات اعتماد OTP', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11281', 'eg', 'staffs', 'طاقم العمل', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11282', 'eg', 'all_staffs', 'كل فريق العمل', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11283', 'eg', 'staff_permissions', 'أذونات الموظفين', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11284', 'eg', 'addon_manager', 'مدير الملحق', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11285', 'eg', 'browse_website', 'تصفح الموقع', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11286', 'eg', 'pos', 'نقاط البيع', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11287', 'eg', 'notifications', 'إشعارات', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11288', 'eg', 'new_orders', 'طلبات جديدة', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11289', 'eg', 'userimage', 'صورة المستخدم', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11290', 'eg', 'profile', 'الملف الشخصي', '2021-02-09 12:51:46', '2021-09-20 12:59:41'),
('11291', 'eg', 'logout', 'تسجيل خروج', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11292', 'eg', 'page_not_found', 'الصفحة غير موجودة!', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11293', 'eg', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'لم يتم العثور على الصفحة التي تبحث عنها على خادمنا.', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11294', 'eg', 'registration', 'التسجيل', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11295', 'eg', 'i_am_shopping_for', 'انا اتسوق لأجل...', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11296', 'eg', 'compare', 'قارن', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11297', 'eg', 'wishlist', 'قائمة الرغبات', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11298', 'eg', 'cart', 'عربة التسوق', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11299', 'eg', 'your_cart_is_empty', 'عربة التسوق فارغة', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11300', 'eg', 'categories', 'التصنيفات', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11301', 'eg', 'see_all', 'اظهار الكل', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11302', 'eg', 'seller_policy', 'سياسة البائع', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11303', 'eg', 'return_policy', 'سياسة العائدات', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11304', 'eg', 'support_policy', 'سياسة الدعم', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11305', 'eg', 'privacy_policy', 'سياسة خاصة', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11306', 'eg', 'your_email_address', 'عنوان بريدك الإلكتروني', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11307', 'eg', 'subscribe', 'الإشتراك', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11308', 'eg', 'contact_info', 'معلومات الاتصال', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11309', 'eg', 'address', 'عنوان', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11310', 'eg', 'phone', 'هاتف', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11311', 'eg', 'email', 'البريد الإلكتروني', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11312', 'eg', 'login', 'تسجيل الدخول', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11313', 'eg', 'my_account', 'حسابي', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11314', 'eg', 'order_history', 'تاريخ الطلب', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11315', 'eg', 'my_wishlist', 'قائمة امنياتي', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11316', 'eg', 'track_order', 'ترتيب المسار', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11317', 'eg', 'be_an_affiliate_partner', 'كن شريكًا تابعًا', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11318', 'eg', 'be_a_seller', 'كن بائعا', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11319', 'eg', 'apply_now', 'قدم الآن', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11320', 'eg', 'confirmation', 'التأكيد', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11321', 'eg', 'delete_confirmation_message', 'حذف رسالة التأكيد', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11322', 'eg', 'cancel', 'إلغاء', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11323', 'eg', 'delete', 'حذف', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11324', 'eg', 'item_has_been_added_to_compare_list', 'تمت إضافة العنصر إلى قائمة المقارنة', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11325', 'eg', 'please_login_first', 'الرجاء تسجيل الدخول أولا', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11326', 'eg', 'total_earnings_from', 'إجمالي الأرباح من', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11327', 'eg', 'client_subscription', 'اشتراك العميل', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11328', 'eg', 'product_category', 'فئة المنتج', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11329', 'eg', 'product_sub_sub_category', 'الفئة الفرعية للمنتج', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11330', 'eg', 'product_sub_category', 'فئة المنتج الفرعية', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11331', 'eg', 'product_brand', 'العلامة التجارية المنتج', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11332', 'eg', 'top_client_packages', 'حزم العميل الأعلى', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11333', 'eg', 'top_freelancer_packages', 'أفضل الحزم لحسابهم الخاص', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11334', 'eg', 'number_of_sale', 'رقم البيع', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11335', 'eg', 'number_of_stock', 'عدد الأسهم', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11336', 'eg', 'top_10_products', 'أفضل 10 منتجات', '2021-02-09 12:52:24', '2021-09-20 12:59:41'),
('11337', 'eg', 'top_12_products', 'أفضل 12 منتجات', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11338', 'eg', 'admin_can_not_be_a_seller', 'لا يمكن للمسؤول أن يكون بائعًا', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11339', 'eg', 'filter_by_rating', 'تصفية حسب التصنيف', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11340', 'eg', 'published_reviews_updated_successfully', 'تم تحديث المراجعات المنشورة بنجاح', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11341', 'eg', 'refund_sticker_has_been_updated_successfully', 'تم تحديث ملصق رد الأموال بنجاح', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11342', 'eg', 'edit_product', 'تحرير المنتج', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11343', 'eg', 'meta_images', 'ميتا صور', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11344', 'eg', 'update_product', 'تحديث المنتج', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11345', 'eg', 'product_has_been_deleted_successfully', 'تم حذف المنتج بنجاح', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11346', 'eg', 'your_profile_has_been_updated_successfully', 'تم تحديث ملفك الشخصي بنجاح!', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11347', 'eg', 'upload_limit_has_been_reached_please_upgrade_your_package', 'تم الوصول إلى حد التحميل. الرجاء ترقية الحزمة الخاصة بك.', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11348', 'eg', 'add_your_product', 'أضف منتجك', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11349', 'eg', 'select_a_category', 'اختر تصنيف', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11350', 'eg', 'select_a_brand', 'اختر ماركة', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11351', 'eg', 'product_unit', 'وحدة المنتج', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11352', 'eg', 'minimum_qty', 'الحد الأدنى من الكمية.', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11353', 'eg', 'product_tag', 'علامة المنتج', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11354', 'eg', 'type__hit_enter', 'اكتب & اضغط دخول', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11355', 'eg', 'videos', 'أشرطة فيديو', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11356', 'eg', 'video_from', 'فيديو من', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11357', 'eg', 'video_url', 'رابط الفيديو', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11358', 'eg', 'customer_choice', 'اختيار العميل', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11359', 'eg', 'pdf', 'بي دي إف', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11360', 'eg', 'choose_pdf', 'اختر PDF', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11361', 'eg', 'select_category', 'اختر الفئة', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11362', 'eg', 'target_category', 'الفئة المستهدفة', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11363', 'eg', 'subsubcategory', 'فئة فرعية', '2021-02-09 12:52:25', '2021-02-09 12:52:25'),
('11364', 'eg', 'search_category', 'فئة البحث', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11365', 'eg', 'search_subcategory', 'بحث فرعي', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11366', 'eg', 'search_subsubcategory', 'بحث SubSubCategory', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11367', 'eg', 'update_your_product', 'قم بتحديث منتجك', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11368', 'eg', 'product_has_been_updated_successfully', 'تم تحديث المنتج بنجاح', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11369', 'eg', 'add_your_digital_product', 'أضف منتجك الرقمي', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11370', 'eg', 'active_ecommerce_cms_update_process', 'عملية تحديث CMS للتجارة الإلكترونية النشطة', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11371', 'eg', 'codecanyon_purchase_code', 'كود شراء Codecanyon', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11372', 'eg', 'database_name', 'اسم قاعدة البيانات', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11373', 'eg', 'database_username', 'اسم مستخدم قاعدة البيانات', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11374', 'eg', 'database_password', 'كلمة مرور قاعدة البيانات', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11375', 'eg', 'database_hostname', 'اسم مضيف قاعدة البيانات', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11376', 'eg', 'update_now', 'تحديث الان', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11377', 'eg', 'congratulations', 'تهانينا', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11378', 'eg', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'لقد أكملت بنجاح عملية التحديث. الرجاء تسجيل الدخول للمتابعة', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11379', 'eg', 'go_to_home', 'اذهب إلى الصفحة الرئيسية', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11380', 'eg', 'login_to_admin_panel', 'تسجيل الدخول إلى لوحة الإدارة', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11381', 'eg', 's3_file_system_credentials', 'بيانات اعتماد نظام ملف S3', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11382', 'eg', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11383', 'eg', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11384', 'eg', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11385', 'eg', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11386', 'eg', 'aws_url', 'AWS_URL', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11387', 'eg', 's3_file_system_activation', 'تفعيل نظام ملفات S3', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11388', 'eg', 'your_phone_number', 'رقم تليفونك', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11389', 'eg', 'zip_file', 'ملف مضغوط', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11390', 'eg', 'install', 'تثبيت', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11391', 'eg', 'this_version_is_not_capable_of_installing_addons_please_update', 'هذا الإصدار غير قادر على تثبيت الملحقات ، يرجى التحديث.', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11392', 'eg', 'search_in_menu', 'البحث في القائمة', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11393', 'eg', 'uploaded_files', 'الملفات التي يتم تحميلها', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11394', 'eg', 'shipping_cities', 'مدن الشحن', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11395', 'eg', 'system', 'النظام', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11396', 'eg', 'server_status', 'حالة الملقم', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11397', 'eg', 'nothing_found', 'لا شيء موجود', '2021-02-09 12:52:25', '2021-09-20 12:59:41'),
('11398', 'eg', 'parent_category', 'القسم الرئيسي', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11399', 'eg', 'level', 'مستوى', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11400', 'eg', 'category_information', 'معلومات الفئة', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11401', 'eg', 'translatable', 'قابل للترجمة', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11402', 'eg', 'no_parent', 'لا يوجد أصل', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11403', 'eg', 'physical', 'جسدي - بدني', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11404', 'eg', 'digital', 'رقمي', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11405', 'eg', '200x200', '200 × 200', '2021-02-09 12:52:26', '2021-02-09 12:52:26'),
('11406', 'eg', '32x32', '32x32', '2021-02-09 12:52:26', '2021-02-09 12:52:26'),
('11407', 'eg', 'search_your_files', 'ابحث في ملفاتك', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11408', 'eg', 'category_has_been_updated_successfully', 'تم تحديث الفئة بنجاح', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11409', 'eg', 'all_uploaded_files', 'جميع الملفات المرفوعة', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11410', 'eg', 'upload_new_file', 'تحميل ملف جديد', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11411', 'eg', 'all_files', 'كل الملفات', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11412', 'eg', 'search', 'بحث', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11413', 'eg', 'details_info', 'تفاصيل معلومات', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11414', 'eg', 'copy_link', 'انسخ الرابط', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11415', 'eg', 'are_you_sure_to_delete_this_file', 'هل أنت متأكد من حذف هذا الملف؟', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11416', 'eg', 'file_info', 'معلومات الملف', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11417', 'eg', 'link_copied_to_clipboard', 'تم نسخ الرابط إلى الحافظة', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11418', 'eg', 'oops_unable_to_copy', 'عفوًا ، غير قادر على النسخ', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11419', 'eg', 'file_deleted_successfully', 'تم حذف الملف بنجاح', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11420', 'eg', 'add_new_brand', 'أضف علامة تجارية جديدة', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11421', 'eg', '120x80', '120 × 80', '2021-02-09 12:52:26', '2021-02-09 12:52:26'),
('11422', 'eg', 'brand_information', 'معلومات العلامة التجارية', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11423', 'eg', 'brand_has_been_updated_successfully', 'تم تحديث العلامة التجارية بنجاح', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11424', 'eg', 'brand_has_been_deleted_successfully', 'تم حذف العلامة التجارية بنجاح', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11425', 'eg', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'هذا يستخدم للبحث. أدخل تلك الكلمات التي يمكن لـ cutomer العثور على هذا المنتج من خلالها.', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11426', 'eg', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'هذه الصور مرئية في معرض صفحة تفاصيل المنتج. استخدم صور بحجم 600 × 600.', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11427', 'eg', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'هذه الصورة مرئية في كل علبة المنتج. استخدم صورة بحجم 300 × 300. احتفظ ببعض المساحة الفارغة حول الكائن الرئيسي لصورتك حيث كان علينا قص بعض الحواف في أجهزة مختلفة لجعلها مستجيبة.', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11428', 'eg', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'استخدم الارتباط المناسب بدون معلمة إضافية. لا تستخدم رابط المشاركة القصير / كود iframe المضمن.', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11429', 'eg', 'save_product', 'حفظ المنتج', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11430', 'eg', 'product_has_been_inserted_successfully', 'تم إدخال المنتج بنجاح', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11431', 'eg', 'something_went_wrong', 'هناك خطأ ما!', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11432', 'eg', 'sorry_for_the_inconvenience_but_were_working_on_it', 'آسف على الإزعاج ، لكننا نعمل على ذلك.', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11433', 'eg', 'error_code', 'خطا بالكود', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11434', 'eg', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'يرجى تكوين إعداد SMTP للعمل على جميع وظائف إرسال البريد الإلكتروني', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11435', 'eg', 'order', 'طلب', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11436', 'eg', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'لدينا ارتفاع محدود للافتة للحفاظ على واجهة المستخدم. كان علينا الاقتصاص من كلا الجانبين الأيسر والأيمن في عرض الأجهزة المختلفة لجعلها مستجيبة. قبل تصميم لافتة ضع هذه النقاط في الاعتبار.', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11437', 'eg', 'home_banner_3_max_3', 'لافتة المنزل 3 (الحد الأقصى 3)', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11438', 'eg', 'add_new_seller', 'إضافة بائع جديد', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11439', 'eg', 'filter_by_approval', 'تصفية حسب الموافقة', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11440', 'eg', 'nonapproved', 'ليس مصدق عليه', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11441', 'eg', 'type_name_or_email__enter', 'اكتب الاسم أو البريد الإلكتروني وأدخل', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11442', 'eg', 'due_to_seller', 'مستحق للبائع', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11443', 'eg', 'log_in_as_this_seller', 'تسجيل الدخول باسم هذا البائع', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11444', 'eg', 'go_to_payment', 'انتقل إلى الدفع', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11445', 'eg', 'ban_this_seller', 'حظر هذا البائع', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11446', 'eg', 'do_you_really_want_to_ban_this_seller', 'هل تريد حقًا حظر هذا البائع؟', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11447', 'eg', 'proceed', 'تقدم!', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11448', 'eg', 'approved_sellers_updated_successfully', 'تم تحديث البائعين المعتمدين بنجاح', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11449', 'eg', 'seller_has_been_deleted_successfully', 'تم حذف البائع بنجاح', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11450', 'eg', 'seller_information', 'معلومات البائع', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11451', 'eg', 'seller_has_been_inserted_successfully', 'تم إدراج البائع بنجاح', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11452', 'eg', 'email_already_exists', 'البريد الالكتروني موجود بالفعل!', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11453', 'eg', 'verify_your_email_address', 'تحقق من عنوان بريدك الإلكتروني', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11454', 'eg', 'before_proceeding_please_check_your_email_for_a_verification_link', 'قبل المتابعة ، يرجى التحقق من بريدك الإلكتروني للحصول على رابط التحقق.', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11455', 'eg', 'if_you_did_not_receive_the_email', 'إذا لم تستلم البريد الإلكتروني.', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11456', 'eg', 'click_here_to_request_another', 'انقر هنا لطلب آخر', '2021-02-09 12:52:26', '2021-09-20 12:59:41'),
('11457', 'eg', 'email_verification', 'تأكيد بواسطة البريد الالكتروني', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11458', 'eg', 'email_verification__', 'تأكيد بواسطة البريد الالكتروني -', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11459', 'eg', 'https_activation', 'تفعيل HTTPS', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11460', 'eg', 'maintenance_mode', 'نمط الصيانة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11461', 'eg', 'maintenance_mode_activation', 'تفعيل وضع الصيانة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11462', 'eg', 'classified_product_activate', 'تنشيط المنتج المصنف', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11463', 'eg', 'classified_product', 'منتج مصنف', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11464', 'eg', 'business_related', 'الأعمال ذات الصلة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11465', 'eg', 'vendor_system_activation', 'تفعيل نظام البائع', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11466', 'eg', 'wallet_system_activation', 'تفعيل نظام المحفظة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11467', 'eg', 'coupon_system_activation', 'تفعيل نظام القسيمة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11468', 'eg', 'pickup_point_activation', 'تفعيل نقطة الالتقاط', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11469', 'eg', 'conversation_activation', 'تفعيل المحادثة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11470', 'eg', 'guest_checkout_activation', 'تفعيل تسجيل خروج الضيف', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11471', 'eg', 'categorybased_commission', 'عمولة على أساس الفئة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11472', 'eg', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'بعد تفعيل هذا الخيار ، سيتم تعطيل عمولة البائع وتحتاج إلى تعيين العمولة على كل فئة وإلا فلن يحصل المسؤول على أي عمولة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11473', 'eg', 'set_commisssion_now', 'تعيين كوميسيون الآن', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11474', 'eg', 'payment_related', 'الدفع ذات الصلة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11475', 'eg', 'paypal_payment_activation', 'تفعيل الدفع باي بال', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11476', 'eg', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Paypal بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11477', 'eg', 'stripe_payment_activation', 'تفعيل الدفع عبر الشريط', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11478', 'eg', 'sslcommerz_activation', 'تفعيل SSlCommerz', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11479', 'eg', 'instamojo_payment_activation', 'تفعيل الدفع Instamojo', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11480', 'eg', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Instamojo Payment بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11481', 'eg', 'razor_pay_activation', 'تفعيل دفع الحلاقة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11482', 'eg', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Razor بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11483', 'eg', 'paystack_activation', 'تفعيل PayStack', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11484', 'eg', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'تحتاج إلى تكوين PayStack بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11485', 'eg', 'voguepay_activation', 'تفعيل VoguePay', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11486', 'eg', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'تحتاج إلى تكوين VoguePay بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11487', 'eg', 'payhere_activation', 'تفعيل Payhere', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11488', 'eg', 'ngenius_activation', 'تفعيل Ngenius', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11489', 'eg', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Ngenius بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11490', 'eg', 'iyzico_activation', 'تفعيل Iyzico', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11491', 'eg', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'تحتاج إلى تكوين iyzico بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11492', 'eg', 'bkash_activation', 'تفعيل بكاش', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11493', 'eg', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'تحتاج إلى تكوين bkash بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11494', 'eg', 'nagad_activation', 'تفعيل نجاد', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11495', 'eg', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'تحتاج إلى تكوين nagad بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11496', 'eg', 'cash_payment_activation', 'تفعيل الدفع النقدي', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11497', 'eg', 'social_media_login', 'تسجيل الدخول إلى وسائل التواصل الاجتماعي', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11498', 'eg', 'facebook_login', 'تسجيل الدخول الى الفيسبوك', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11499', 'eg', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'تحتاج إلى تكوين Facebook Client بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11500', 'eg', 'google_login', 'تسجيل الدخول إلى Google', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11501', 'eg', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'تحتاج إلى تكوين عميل Google بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11502', 'eg', 'twitter_login', 'تسجيل الدخول إلى Twitter', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11503', 'eg', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'تحتاج إلى تكوين عميل تويتر بشكل صحيح لتمكين هذه الميزة', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11504', 'eg', 'shop_logo', 'متجر الشعار', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11505', 'eg', 'shop_address', 'عنوان المحل', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11506', 'eg', 'banner_settings', 'إعدادات البانر', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11507', 'eg', 'banners', 'لافتات', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11508', 'eg', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'كان علينا تحديد الارتفاع للحفاظ على الاتساق. في بعض الأجهزة ، قد يتم اقتصاص كلا جانبي الشعار للحد من الارتفاع.', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11509', 'eg', 'insert_link_with_https_', 'أدخل الارتباط مع https', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11510', 'eg', 'your_shop_has_been_updated_successfully', 'تم تحديث متجرك بنجاح!', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11511', 'eg', 'search_result_for_', 'نتيجة البحث عن', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11512', 'eg', 'brand_has_been_inserted_successfully', 'تم إدراج العلامة التجارية بنجاح', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11513', 'eg', 'about', 'حول', '2021-02-09 12:52:27', '2021-09-20 12:59:41'),
('11514', 'eg', 'payout_info', 'معلومات الدفع', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11515', 'eg', 'bank_acc_name', 'اسم حساب البنك', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11516', 'eg', 'bank_acc_number', 'رقم حساب البنك', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11517', 'eg', 'total_products', 'إجمالي المنتجات', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11518', 'eg', 'total_sold_amount', 'إجمالي المبلغ المباع', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11519', 'eg', 'wallet_balance', 'رصيد المحفظة', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11520', 'eg', 'cookies_agreement', 'اتفاقية ملفات تعريف الارتباط', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11521', 'eg', 'cookies_agreement_text', 'نص اتفاقية ملفات تعريف الارتباط', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11522', 'eg', 'show_cookies_agreement', 'إظهار اتفاقية ملفات تعريف الارتباط؟', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11523', 'eg', 'custom_script', 'برنامج نصي مخصص', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11524', 'eg', 'header_custom_script__before_head', 'البرنامج النصي المخصص للرأس - قبل </head>', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11525', 'eg', 'write_script_with_script_tag', 'اكتب البرنامج النصي بعلامة <script>', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11526', 'eg', 'footer_custom_script__before_body', 'البرنامج النصي المخصص للتذييل - قبل </ body>', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11527', 'eg', 'category_has_been_inserted_successfully', 'تم ادراج الفئة بنجاح', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11528', 'eg', 'all_flash_deals', 'جميع عروض فلاش', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11529', 'eg', 'create_new_flash_deal', 'إنشاء صفقة فلاش جديدة', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11530', 'eg', 'ffffff', '#FFFFFF', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11531', 'eg', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'تظهر هذه الصورة كبانر غلاف في صفحة تفاصيل صفقة فلاش.', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11532', 'eg', 'flash_deal_has_been_inserted_successfully', 'تم إدراج عرض الفلاش بنجاح', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11533', 'eg', 'flash_deal_status_updated_successfully', 'تم تحديث حالة صفقة الفلاش بنجاح', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11534', 'eg', 'flash_deal_has_been_updated_successfully', 'تم تحديث صفقة الفلاش بنجاح', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11535', 'eg', 'update_language_info', 'تحديث معلومات اللغة', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11536', 'eg', 'language_has_been_updated_successfully', 'تم تحديث اللغة بنجاح', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11537', 'eg', 'type_key__enter', 'اكتب مفتاح وأدخل', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11538', 'eg', 'translations_updated_for_', 'تم تحديث الترجمات لـ', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11539', 'eg', 'language_has_been_inserted_successfully', 'تم إدخال اللغة بنجاح', '2021-02-09 12:52:28', '2021-09-20 12:59:41'),
('11540', 'za', 'all_category', 'Dhammaan Qaybta', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11541', 'za', 'all', 'Dhammaan', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11542', 'za', 'flash_sale', 'Flash iibinta', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11543', 'za', 'view_more', 'Fiiri inbadan', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11544', 'za', 'add_to_wishlist', 'Ku dar liiska xulashooyinka', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11545', 'za', 'add_to_compare', 'Kudar isbarbar dhig', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11546', 'za', 'add_to_cart', 'Ku dar gaadhigii', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11547', 'za', 'club_point', 'Barta Naadiga', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11548', 'za', 'classified_ads', 'Xayeysiisyada Noocyada ah', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11549', 'za', 'used', 'Loo adeegsaday', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11550', 'za', 'top_10_categories', 'Top 10 Qaybaha', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11551', 'za', 'view_all_categories', 'Eeg Dhammaan Qeybaha', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11552', 'za', 'top_10_brands', '10ka Nooc ee ugu sareeya', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11553', 'za', 'view_all_brands', 'Eeg Dhammaan Noocyada', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11554', 'za', 'terms__conditions', 'Shuruudaha & shuruudaha', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11555', 'za', 'best_selling', 'Iibinta Ugu Fiican', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11556', 'za', 'top_20', 'Sare 20', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11557', 'za', 'featured_products', 'Alaabada Featured', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11558', 'za', 'best_sellers', 'Iibiyeyaasha Ugu Fiican', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11559', 'za', 'visit_store', 'Booqo Bakhaarka', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11560', 'za', 'popular_suggestions', 'Talooyin Caan ah', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11561', 'za', 'category_suggestions', 'Talooyinka Nooca', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11562', 'za', 'automobile__motorcycle', 'Baabuur & Baaskiil', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11563', 'za', 'price_range', 'Qiyaasta qiimaha', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11564', 'za', 'filter_by_color', 'Sifee midab ahaan', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11565', 'za', 'home', 'Guri', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11566', 'za', 'newest', 'Ugu cusub', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11567', 'za', 'oldest', 'Ugu da\'da weyn', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11568', 'za', 'price_low_to_high', 'Qiimo hoose ilaa sare', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11569', 'za', 'price_high_to_low', 'Qiimo sare ilaa hoose', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11570', 'za', 'brands', 'Noocyo', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11571', 'za', 'all_brands', 'Dhamaan Astaamaha', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11572', 'za', 'all_sellers', 'Dhamaan Iibiyeyaasha', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11573', 'za', 'inhouse_product', 'Wax soo saarka guryaha', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11574', 'za', 'message_seller', 'Farriinta Iibiyaha', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11575', 'za', 'price', 'Qiimo', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11576', 'za', 'discount_price', 'Qiimaha dhimista', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11577', 'za', 'color', 'Midab', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11578', 'za', 'quantity', 'Tirada', '2021-02-09 12:58:05', '2021-09-20 12:59:41'),
('11579', 'za', 'available', 'la heli karo', '2021-02-09 12:58:05', '2021-02-09 12:58:05'),
('11580', 'za', 'total_price', 'Wadarta Qiimaha', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11581', 'za', 'out_of_stock', 'Ka Haray', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11582', 'za', 'refund', 'Soo celinta', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11583', 'za', 'share', 'La wadaag', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11584', 'za', 'sold_by', 'Iibiyay', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11585', 'za', 'customer_reviews', 'dib u eegista macaamiisha', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11586', 'za', 'top_selling_products', 'Alaabada Iibinta Sare', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11587', 'za', 'description', 'Sharaxaad', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11588', 'za', 'video', 'Video', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11589', 'za', 'reviews', 'Faallooyinka', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11590', 'za', 'download', 'Soo Degso', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11591', 'za', 'there_have_been_no_reviews_for_this_product_yet', 'Ma jiraan wax dib u eegis ah oo ku saabsan sheygan weli.', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11592', 'za', 'related_products', 'Alaabooyinka la xiriira', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11593', 'za', 'any_query_about_this_product', 'Su\'aal kasta oo ku saabsan badeecadan', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11594', 'za', 'product_name', 'Magaca Badeecada', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11595', 'za', 'your_question', 'Su\'aashaada', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11596', 'za', 'send', 'Dir', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11597', 'za', 'use_country_code_before_number', 'Adeegso lambarka waddanka lambarkiisa ka hor', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11598', 'za', 'remember_me', 'Xusuusnow', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11599', 'za', 'dont_have_an_account', 'Ma lihid xisaab?', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11600', 'za', 'register_now', 'Isdiiwaangeli Hada', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11601', 'za', 'or_login_with', 'Ama Soo Gal Iyadoo', '2021-02-09 12:58:05', '2021-09-20 12:59:42'),
('11602', 'za', 'oops', 'ooh ..', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11603', 'za', 'this_item_is_out_of_stock', 'Shaygaani wuu dhammaaday', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11604', 'za', 'back_to_shopping', 'Ku noqo dukaameysiga', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11605', 'za', 'login_to_your_account', 'Soo gal koontadaada.', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11606', 'za', 'purchase_history', 'Taariikhda Iibsiga', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11607', 'za', 'new', 'Cusub', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11608', 'za', 'downloads', 'Soo dejisan', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11609', 'za', 'sent_refund_request', 'Codsi Soo Celin La Diray', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11610', 'za', 'product_bulk_upload', 'Wax Soosaarka Jumlada', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11611', 'za', 'orders', 'Amarada', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11612', 'za', 'recieved_refund_request', 'Codsiga Lacag Celinta La Helay', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11613', 'za', 'shop_setting', 'Goob Dukaan', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11614', 'za', 'payment_history', 'Taariikhda Lacag Bixinta', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11615', 'za', 'money_withdraw', 'Lacag Bixid', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11616', 'za', 'conversations', 'Wadahadal', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11617', 'za', 'my_wallet', 'Warqaddayda', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11618', 'za', 'earning_points', 'Qodobbada Kasbashada', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11619', 'za', 'support_ticket', 'Tigidhada Taageerada', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11620', 'za', 'manage_profile', 'Maamul Macluumaadka', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11621', 'za', 'sold_amount', 'Qaddarka La Iibiyay', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11622', 'za', 'your_sold_amount_current_month', 'Lacagta aad iibisay (bisha hadda socota)', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11623', 'za', 'total_sold', 'Wadarta La Iibiyay', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11624', 'za', 'last_month_sold', 'Bishii Hore ee La Iibiyay', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11625', 'za', 'total_sale', 'Wadarta iibka', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11626', 'za', 'total_earnings', 'Wadarta dakhliga', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11627', 'za', 'successful_orders', 'Amarada guuleysta', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11628', 'za', 'total_orders', 'Wadarta amarrada', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11629', 'za', 'pending_orders', 'Amarada sugaya', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11630', 'za', 'cancelled_orders', 'Amarada la joojiyay', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11631', 'za', 'product', 'Alaabta', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11632', 'za', 'purchased_package', 'Xirmo la Iibsaday', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11633', 'za', 'package_not_found', 'Xirmo lama helin', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11634', 'za', 'upgrade_package', 'Xirmada Xidhmada', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11635', 'za', 'shop', 'Dukaan', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11636', 'za', 'manage__organize_your_shop', 'Maaree oo habee dukaankaaga', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11637', 'za', 'go_to_setting', 'Tag dejinta', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11638', 'za', 'payment', 'Lacag bixinta', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11639', 'za', 'configure_your_payment_method', 'Isku habee habka lacag bixintaada', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11640', 'za', 'my_panel', 'Gudigeyga', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11641', 'za', 'item_has_been_added_to_wishlist', 'Shayga ayaa lagu daray liiska xulashooyinka', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11642', 'za', 'my_points', 'Qodobadayda', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11643', 'za', '_points', 'Dhibco', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11644', 'za', 'wallet_money', 'Lacagta Lacagta', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11645', 'za', 'exchange_rate', 'Heerka Sarrifka', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11646', 'za', 'point_earning_history', 'Taariikh dhibic kasbasho', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11647', 'za', 'date', 'Taariikhda', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11648', 'za', 'points', 'Dhibco', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11649', 'za', 'converted', 'La beddelay', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11650', 'za', 'action', 'Ficil', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11651', 'za', 'no_history_found', 'Taariikh lama helin.', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11652', 'za', 'convert_has_been_done_successfully_check_your_wallets', 'Beddelashada si guul leh ayaa loo qabtay Hubso boorsooyinkaaga', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11653', 'za', 'something_went_wrong', 'Waxbaa qaldamay', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11654', 'za', 'remaining_uploads', 'Reloads haray', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11655', 'za', 'no_package_found', 'Xirmo lama helin', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11656', 'za', 'search_product', 'Raadinta sheyga', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11657', 'za', 'name', 'Magaca', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11658', 'za', 'current_qty', 'Qty hadda', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11659', 'za', 'base_price', 'Qiimaha Saldhigga', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11660', 'za', 'published', 'La daabacay', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11661', 'za', 'featured', 'Featured', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11662', 'za', 'options', 'Fursadaha', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11663', 'za', 'edit', 'Tafatir', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11664', 'za', 'duplicate', 'Nuqul', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11665', 'za', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Soo dejiso feylka qalfoofka oo ka buuxi xog.', '2021-02-09 12:58:06', '2021-09-20 12:59:42'),
('11666', 'za', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Waad soo dejisan kartaa faylka tusaalaha ah si aad u fahamto sida ay tahay in loo buuxiyo xogta.', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11667', 'za', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Markaad soo dejiso oo aad buuxiso feylka qalfoofka, ku soo buuxi foomka hoose oo soo gudbi.', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11668', 'za', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Ka dib markaad soo rarto alaabada waxaad u baahan tahay inaad wax ka bedesho oo aad dejiso alaabada sawirada iyo xulashooyinka.', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11669', 'za', 'download_csv', 'Soo dejiso CSV', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11670', 'za', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Qeyb, Qeyb hoosaad, Qeyb hoosaad iyo Summad waa inay ku jirtaa tiro ids ah.', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11671', 'za', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Waad soo dejisan kartaa pdf si aad u hesho Qeybta, Qeybta Sub, Sub Sub category iyo Brand id.', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11672', 'za', 'download_category', 'Degso Qeybta', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11673', 'za', 'download_sub_category', 'Download Qeybta Sub', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11674', 'za', 'download_sub_sub_category', 'Download Qeybta Sub Sub', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11675', 'za', 'download_brand', 'Soodejiso Sumadda', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11676', 'za', 'upload_csv_file', 'Geli Faylka CSV', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11677', 'za', 'csv', 'CSV', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11678', 'za', 'choose_csv_file', 'Xulo Faylka CSV', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11679', 'za', 'upload', 'Geli', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11680', 'za', 'add_new_digital_product', 'Kudar Waxsoosaar Cusub oo Dijital ah', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11681', 'za', 'available_status', 'Xaaladda La Heli Karo', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11682', 'za', 'admin_status', 'Xaaladda Maamulka', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11683', 'za', 'pending_balance', 'Isu-dheellitirka sugaya', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11684', 'za', 'send_withdraw_request', 'U dir Codsiga Ka-noqoshada', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11685', 'za', 'withdraw_request_history', 'Ka noqo taariikhda Codsiga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11686', 'za', 'amount', 'Qaddarka', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11687', 'za', 'status', 'Xaaladda', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11688', 'za', 'message', 'Fariin', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11689', 'za', 'send_a_withdraw_request', 'U dir Codsi Soo Jiidasho', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11690', 'za', 'basic_info', 'Macluumaadka aasaasiga ah', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11691', 'za', 'your_phone', 'Telefoonkaaga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11692', 'za', 'photo', 'Sawir', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11693', 'za', 'browse', 'Baadh', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11694', 'za', 'your_password', 'Furahaaga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11695', 'za', 'new_password', 'Password Cusub', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11696', 'za', 'confirm_password', 'Xaqiiji Furaha', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11697', 'za', 'add_new_address', 'Kudar Cinwaan Cusub', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11698', 'za', 'payment_setting', 'Dejinta Bixinta', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11699', 'za', 'cash_payment', 'Lacag bixinta', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11700', 'za', 'bank_payment', 'Bixinta Bangiga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11701', 'za', 'bank_name', 'Magaca Bangiga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11702', 'za', 'bank_account_name', 'Magaca Koontada Bangiga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11703', 'za', 'bank_account_number', 'Lambarka Xisaabta Bangiga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11704', 'za', 'bank_routing_number', 'Lambarka Wadada Bangiga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11705', 'za', 'update_profile', 'Cusbooneysii Profile', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11706', 'za', 'change_your_email', 'Beddel emaylkaaga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11707', 'za', 'your_email', 'Emailkaaga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11708', 'za', 'sending_email', 'Diraya Email ...', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11709', 'za', 'verify', 'Xaqiiji', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11710', 'za', 'update_email', 'Cusboonaysii Email', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11711', 'za', 'new_address', 'Cinwaan Cusub', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11712', 'za', 'your_address', 'Ciwaan kaaga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11713', 'za', 'country', 'Dalka', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11714', 'za', 'select_your_country', 'Xulo dalkaaga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11715', 'za', 'city', 'Magaalada', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11716', 'za', 'your_city', 'Magaaladaada', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11717', 'za', 'your_postal_code', 'Lambarkaaga Boosta', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11718', 'za', '880', '+880', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11719', 'za', 'save', 'Keydso', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11720', 'za', 'received_refund_request', 'La Helay Codsi Soo Celin', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11721', 'za', 'delete_confirmation', 'Tirtir Xaqiijinta', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11722', 'za', 'are_you_sure_to_delete_this', 'Ma hubtaa inaad tan tirtirto?', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11723', 'za', 'premium_packages_for_sellers', 'Xirmooyinka Premium ee Iibiyeyaasha', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11724', 'za', 'product_upload', 'Soo dejinta alaabta', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11725', 'za', 'digital_product_upload', 'Soosaarida Waxyaabaha Dijital ah', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11726', 'za', 'purchase_package', 'Xirmada Iibsiga', '2021-02-09 12:58:07', '2021-09-20 12:59:42'),
('11727', 'za', 'select_payment_type', 'Xulo Nooca Bixinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11728', 'za', 'payment_type', 'Nooca Bixinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11729', 'za', 'select_one', 'Dooro mid', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11730', 'za', 'online_payment', 'Lacag bixinta khadka tooska ah', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11731', 'za', 'offline_payment', 'Lacag-bixin la\'aanta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11732', 'za', 'purchase_your_package', 'Iibso Xirmadaada', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11733', 'za', 'paypal', 'Paypal', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11734', 'za', 'stripe', 'Karbaash', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11735', 'za', 'sslcommerz', 'sslcommerz', '2021-02-09 12:58:08', '2021-02-09 12:58:08'),
('11736', 'za', 'confirm', 'Xaqiiji', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11737', 'za', 'offline_package_payment', 'Bixinta Xirmooyinka Khadka Tooska ah', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11738', 'za', 'transaction_id', 'Aqoonsiga Macaamil ganacsi', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11739', 'za', 'choose_image', 'Xulo sawirka', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11740', 'za', 'code', 'Xeer', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11741', 'za', 'delivery_status', 'Xaaladda Gaarsiinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11742', 'za', 'payment_status', 'Xaaladda Bixinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11743', 'za', 'paid', 'Bixiyay', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11744', 'za', 'order_details', 'Faahfaahin Dalbo', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11745', 'za', 'download_invoice', 'Download Qaansheeg', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11746', 'za', 'unpaid', 'Mushahar la\'aan', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11747', 'za', 'order_placed', 'Dalbasho ayaa la dhigay', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11748', 'za', 'confirmed', 'La xaqiijiyay', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11749', 'za', 'on_delivery', 'Gaarsiinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11750', 'za', 'delivered', 'Gaarsiiyay', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11751', 'za', 'order_summary', 'Soo Koobid Dalab', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11752', 'za', 'order_code', 'Nidaamka Nidaamka', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11753', 'za', 'customer', 'Macaamiil', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11754', 'za', 'total_order_amount', 'Wadarta qadarka dalabka', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11755', 'za', 'shipping_metdod', 'Metdod rarka', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11756', 'za', 'flat_shipping_rate', 'Heerka maraakiibta oo fidsan', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11757', 'za', 'payment_metdod', 'Nidaamka lacag bixinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11758', 'za', 'variation', 'Kala duwanaansho', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11759', 'za', 'delivery_type', 'Nooca Gaarsiinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11760', 'za', 'home_delivery', 'Gaarsiinta Guriga', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11761', 'za', 'order_ammount', 'Dalbo Ammount', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11762', 'za', 'subtotal', 'Subtotal', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11763', 'za', 'shipping', 'Maraakiibta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11764', 'za', 'coupon_discount', 'Qiimo dhimis', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11765', 'za', 'na', 'N / A', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11766', 'za', 'in_stock', 'Kujira', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11767', 'za', 'buy_now', 'Iibso Hada', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11768', 'za', 'item_added_to_your_cart', 'Shayga ayaa lagu daray gaadhigiiaga!', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11769', 'za', 'proceed_to_checkout', 'U gudub Iibsiga', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11770', 'za', 'cart_items', 'Waxyaabaha Gaariga', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11771', 'za', '1_my_cart', '1. Gaadhigayga', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11772', 'za', 'view_cart', 'Gaadhi eeg', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11773', 'za', '2_shipping_info', '2. Faahfaahinta rarka', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11774', 'za', 'checkout', 'Baadhid', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11775', 'za', '3_delivery_info', '3. Macluumaadka gaarsiinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11776', 'za', '4_payment', '4. Bixinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11777', 'za', '5_confirmation', '5. Xaqiijin', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11778', 'za', 'remove', 'Ka saar', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11779', 'za', 'return_to_shop', 'Ku noqo dukaankii', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11780', 'za', 'continue_to_shipping', 'Sii wad Diritaanka', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11781', 'za', 'or', 'Ama', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11782', 'za', 'guest_checkout', 'Martida Iibinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11783', 'za', 'continue_to_delivery_info', 'Ku Sii wad Macluumaadka Gaarsiinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11784', 'za', 'postal_code', 'Koodhka boostada', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11785', 'za', 'choose_delivery_type', 'Xulo Nooca Gaarsiinta', '2021-02-09 12:58:08', '2021-09-20 12:59:42'),
('11786', 'za', 'local_pickup', 'Qaadista Deegaanka', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11787', 'za', 'select_your_nearest_pickup_point', 'Xulo meesha ugu wanaagsan ee laga soo qaado', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11788', 'za', 'continue_to_payment', 'Sii wad Bixinta', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11789', 'za', 'select_a_payment_option', 'Xullo ikhtiyaar lacag bixin ah', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11790', 'za', 'razorpay', 'Razorpay', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11791', 'za', 'paystack', 'Boostada', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11792', 'za', 'voguepay', 'VoguePay', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11793', 'za', 'payhere', 'meel lacag ah', '2021-02-09 12:58:09', '2021-02-09 12:58:09'),
('11794', 'za', 'ngenius', 'ngenius', '2021-02-09 12:58:09', '2021-02-09 12:58:09'),
('11795', 'za', 'paytm', 'Paytm', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11796', 'za', 'cash_on_delivery', 'Lacag gaarsiinta', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11797', 'za', 'your_wallet_balance_', 'Hadhaaga jeebkaaga:', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11798', 'za', 'insufficient_balance', 'Isku dheelitir la’aan', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11799', 'za', 'i_agree_to_the', 'Waan ku raacsanahay', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11800', 'za', 'complete_order', 'Amarka Dhameystiran', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11801', 'za', 'summary', 'Soo Koobid', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11802', 'za', 'items', 'Waxyaabaha', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11803', 'za', 'total_club_point', 'Wadarta naadiga', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11804', 'za', 'total_shipping', 'Wadarta Maraakiibta', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11805', 'za', 'have_coupon_code_enter_here', 'Hayso lambar kuuboon ah? Halkan gal', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11806', 'za', 'apply', 'Codso', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11807', 'za', 'you_need_to_agree_with_our_policies', 'Waxaad u baahan tahay inaad raacdo siyaasadahayaga', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11808', 'za', 'forgot_password', 'Ilowday lambarka sirta ah', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11809', 'za', 'seo_setting', 'Dejinta SEO', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11810', 'za', 'system_update', 'Cusboonaysiinta Nidaamka', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11811', 'za', 'add_new_payment_method', 'Kudar Habka Lacag Bixinta Cusub', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11812', 'za', 'manual_payment_method', 'Habka Bixinta Buugga', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11813', 'za', 'heading', 'Madaxa', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11814', 'za', 'logo', 'Astaanta', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11815', 'za', 'manual_payment_information', 'Macluumaadka Bixinta Buugga', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11816', 'za', 'type', 'Nooca', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11817', 'za', 'custom_payment', 'Bixinta Lacagta', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11818', 'za', 'check_payment', 'Hubi Bixinta', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11819', 'za', 'checkout_thumbnail', 'Thumbnail Iibinta', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11820', 'za', 'payment_instruction', 'Tilmaamaha Bixinta', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11821', 'za', 'bank_information', 'Macluumaadka Bangiga', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11822', 'za', 'select_file', 'Xulo Faylka', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11823', 'za', 'upload_new', 'Cusub Soo Geli', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11824', 'za', 'sort_by_newest', 'Kala sooc mid cusub', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11825', 'za', 'sort_by_oldest', 'Lagu kala soocay kan ugu da\'da weyn', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11826', 'za', 'sort_by_smallest', 'Ku kala sooc ugu yar', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11827', 'za', 'sort_by_largest', 'Ku kala sooc ugu weyn', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11828', 'za', 'selected_only', 'Xullay Kaliya', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11829', 'za', 'no_files_found', 'Wax faylal ah lama helin', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11830', 'za', '0_file_selected', '0 Faylka waa la xushay', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11831', 'za', 'clear', 'Cad', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11832', 'za', 'prev', 'Hore', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11833', 'za', 'next', 'Xiga', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11834', 'za', 'add_files', 'Kudar Faylal', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11835', 'za', 'method_has_been_inserted_successfully', 'Habka si guul leh ayaa loo geliyay', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11836', 'za', 'order_date', 'Taariikhda Dalbashada', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11837', 'za', 'bill_to', 'Biilka ilaa', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11838', 'za', 'sub_total', 'Sub Total', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11839', 'za', 'total_tax', 'Wadarta Canshuurta', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11840', 'za', 'grand_total', 'Wadarta Guud', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11841', 'za', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Amarkaaga si guul leh ayaa loo dhigay. Fadlan soo gudbi macluumaadka lacag bixinta ee taariikhda iibsiga', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11842', 'za', 'thank_you_for_your_order', 'Waad ku mahadsan tahay Amarkaaga!', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11843', 'za', 'order_code', 'Nidaamka Dalbashada:', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11844', 'za', 'a_copy_or_your_order_summary_has_been_sent_to', 'Nuqul ama amarkaaga oo kooban ayaa loo diray', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11845', 'za', 'make_payment', 'Bixi Lacag', '2021-02-09 12:58:09', '2021-09-20 12:59:42'),
('11846', 'za', 'payment_screenshot', 'Shaashadda lacag bixinta', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11847', 'za', 'paypal_credential', 'Aqoonsiga Paypal', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11848', 'za', 'paypal_client_id', 'Aqoonsiga Macaamiisha Paypal', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11849', 'za', 'paypal_client_secret', 'Sirta Macaamiisha Paypal', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11850', 'za', 'paypal_sandbox_mode', 'Qaabka Paypal Sandbox', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11851', 'za', 'sslcommerz_credential', 'Aqoonsiga Sslcommerz', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11852', 'za', 'sslcz_store_id', 'Sslcz Store Id', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11853', 'za', 'sslcz_store_password', 'Sslcz lambarka sirta ah', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11854', 'za', 'sslcommerz_sandbox_mode', 'Xaaladda Sslcommerz Sandbox', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11855', 'za', 'stripe_credential', 'Aqoonsiga Karbaashka', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11856', 'za', 'stripe_key', 'FURAHA FURAHA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11857', 'za', 'stripe_secret', 'SIRTA SARIIR', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11858', 'za', 'razorpay_credential', 'Aqoonsiga RazorPay', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11859', 'za', 'razor_key', 'FURAHA KHATAR', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11860', 'za', 'razor_secret', 'SIR SIXIR LEH', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11861', 'za', 'instamojo_credential', 'Aqoonsiga Instamojo', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11862', 'za', 'api_key', 'Furaha API', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11863', 'za', 'im_api_key', 'IM API FURAHA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11864', 'za', 'auth_token', 'AWOODA AQOONSIGA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11865', 'za', 'im_auth_token', 'IM AUTH TOKEN', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11866', 'za', 'instamojo_sandbox_mode', 'Xaaladda Sanduuqa Sanduuqa', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11867', 'za', 'paystack_credential', 'Aqoonsiga PayStack', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11868', 'za', 'public_key', 'FURAHA GUUD', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11869', 'za', 'secret_key', 'FURAHA SIRTA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11870', 'za', 'merchant_email', 'EMAIL GANACSADE', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11871', 'za', 'voguepay_credential', 'Aqoonsiga VoguePay', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11872', 'za', 'merchant_id', 'Aqoonsi Ganacsi', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11873', 'za', 'sandbox_mode', 'Habka Sandbox', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11874', 'za', 'payhere_credential', 'Aqoonsiga Bixinta', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11875', 'za', 'payhere_merchant_id', 'PAYHERE ID AQOONSIGA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11876', 'za', 'payhere_secret', 'SIRTA SOO SAAR', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11877', 'za', 'payhere_currency', 'LACAG-BIXINTA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11878', 'za', 'payhere_sandbox_mode', 'Habka Sanduuqa Sanduuqa', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11879', 'za', 'ngenius_credential', 'Aqoonsiga Ngenius', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11880', 'za', 'ngenius_outlet_id', 'NGENIUS OutTET ID', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11881', 'za', 'ngenius_api_key', 'NGENIUS API FURAHA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11882', 'za', 'ngenius_currency', 'NUQULKA NGENIUS', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11883', 'za', 'mpesa_credential', 'Aqoonsiga Mpesa', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11884', 'za', 'mpesa_consumer_key', 'Furaha Macaamiisha MPESA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11885', 'za', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11886', 'za', 'mpesa_consumer_secret', 'SIRTA QAADASHADA MPESA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11887', 'za', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11888', 'za', 'mpesa_short_code', 'XEERKA GAABAN EE MPESA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11889', 'za', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11890', 'za', 'mpesa_sandbox_activation', 'WAXQABADKA SANDBOX ee MPESA', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11891', 'za', 'flutterwave_credential', 'Aqoonsiga Flutterwave', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11892', 'za', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11893', 'za', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11894', 'za', 'rave_title', 'RAVE_TITLE', '2021-02-09 12:58:10', '2021-09-20 12:59:42'),
('11895', 'za', 'stagin_activation', 'WAXQABADKA JOOJINTA', '2021-02-09 12:58:10', '2021-09-20 12:59:43'),
('11896', 'za', 'all_product', 'Dhammaan alaabta', '2021-02-09 12:58:10', '2021-09-20 12:59:43'),
('11897', 'za', 'sort_by', 'Kala saar', '2021-02-09 12:58:10', '2021-09-20 12:59:43'),
('11898', 'za', 'rating_high__low', 'Qiimeynta (Sare> Hoose)', '2021-02-09 12:58:10', '2021-09-20 12:59:43'),
('11899', 'za', 'rating_low__high', 'Qiimeynta (Hoose> Sare)', '2021-02-09 12:58:10', '2021-09-20 12:59:43'),
('11900', 'za', 'num_of_sale_high__low', 'Tirada iibka (Sare> Hoose)', '2021-02-09 12:58:10', '2021-09-20 12:59:43'),
('11901', 'za', 'num_of_sale_low__high', 'Tirada iibka (Hoose> Sare)', '2021-02-09 12:58:10', '2021-09-20 12:59:43'),
('11902', 'za', 'base_price_high__low', 'Qiimaha Saldhiga (Sare> Hoose)', '2021-02-09 12:58:10', '2021-09-20 12:59:43'),
('11903', 'za', 'base_price_low__high', 'Qiimaha Saldhiga (Hoose> Sare)', '2021-02-09 12:58:10', '2021-09-20 12:59:43'),
('11904', 'za', 'type__enter', 'Nooca & Gali', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11905', 'za', 'added_by', 'Added By', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11906', 'za', 'num_of_sale', 'Tirada iibka', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11907', 'za', 'total_stock', 'Wadarta Kaydka', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11908', 'za', 'todays_deal', 'Heshiiska Maanta', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11909', 'za', 'rating', 'Qiimeynta', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11910', 'za', 'times', 'jeer', '2021-02-09 12:58:11', '2021-02-09 12:58:11'),
('11911', 'za', 'add_nerw_product', 'Ku dar Nerw Product', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11912', 'za', 'product_information', 'Macluumaadka Badeecada', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11913', 'za', 'unit', 'Cutub', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11914', 'za', 'unit_eg_kg_pc_etc', 'Cutub (tusaale, KG, Pc iwm)', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11915', 'za', 'minimum_qty', 'Ugu Yar Qty', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11916', 'za', 'tags', 'Calaamadaha', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11917', 'za', 'type_and_hit_enter_to_add_a_tag', 'Qor oo garaac gala si aad ugu darto sumad', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11918', 'za', 'barcode', 'Barcode', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11919', 'za', 'refundable', 'La celin karo', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11920', 'za', 'product_images', 'Sawirada Sawirka', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11921', 'za', 'gallery_images', 'Sawirada Gallery', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11922', 'za', 'todays_deal_updated_successfully', 'Todays Deal ayaa si guul leh loo cusbooneysiiyay', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11923', 'za', 'published_products_updated_successfully', 'Alaabada la daabacay si guul leh ayaa loo cusbooneysiiyay', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11924', 'za', 'thumbnail_image', 'Sawir Sawir ah', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11925', 'za', 'featured_products_updated_successfully', 'Waxyaabaha muuqaalka leh si guul leh ayaa loo casriyeeyay', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11926', 'za', 'product_videos', 'Fiidiyowyada Alaabada', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11927', 'za', 'video_provider', 'Bixiyaha Fiidiyowga', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11928', 'za', 'youtube', 'Youtube', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11929', 'za', 'dailymotion', 'Dailymotion', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11930', 'za', 'vimeo', 'Vimeo', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11931', 'za', 'video_link', 'Xiriiriyaha Fiidiyowga', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11932', 'za', 'product_variation', 'Kala duwanaanta alaabta', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11933', 'za', 'colors', 'Midabada', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11934', 'za', 'attributes', 'Sifooyinka', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11935', 'za', 'choose_attributes', 'Xulo Sifooyinka', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11936', 'za', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Xullo astaamaha badeecadan ka dibna ku dar qiyamka aqbal sifo kasta', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11937', 'za', 'product_price__stock', 'Qiimaha badeecada + keydka', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11938', 'za', 'unit_price', 'Qiimaha cutubka', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11939', 'za', 'purchase_price', 'Qiimaha wax iibsiga', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11940', 'za', 'flat', 'Fidsan', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11941', 'za', 'percent', 'Boqolkiiba', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11942', 'za', 'discount', 'Qiimo-dhimis', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11943', 'za', 'product_description', 'Sharaxaadda alaabta', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11944', 'za', 'product_shipping_cost', 'Qiimaha Dhoofinta Alaabada', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11945', 'za', 'free_shipping', 'Maraakiibta free', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11946', 'za', 'flat_rate', 'Heerka Flat', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11947', 'za', 'shipping_cost', 'Qiimaha rarka', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11948', 'za', 'pdf_specification', 'Qeexitaanka PDF', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11949', 'za', 'seo_meta_tags', 'Tags SEO Meta', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11950', 'za', 'meta_title', 'Cinwaanka Meta', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11951', 'za', 'meta_image', 'Sawirka Meta', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11952', 'za', 'choice_title', 'Cinwaanka Xulashada', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11953', 'za', 'enter_choice_values', 'Gali qiimaha doorashada', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11954', 'za', 'all_categories', 'Dhammaan qaybaha', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11955', 'za', 'add_new_category', 'Ku dar qayb cusub', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11956', 'za', 'type_name__enter', 'Nooca magaca & Gali', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11957', 'za', 'banner', 'Banner', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11958', 'za', 'commission', 'Komishanka', '2021-02-09 12:58:11', '2021-09-20 12:59:43'),
('11959', 'za', 'icon', 'astaan', '2021-02-09 12:58:12', '2021-02-09 12:58:12'),
('11960', 'za', 'featured_categories_updated_successfully', 'Qeybaha muuqaalka leh si guul leh ayaa loo casriyeeyay', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11961', 'za', 'hot', 'Kulul', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11962', 'za', 'filter_by_payment_status', 'Sifee Xaaladda Bixinta', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11963', 'za', 'unpaid', 'Aan Bixin', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11964', 'za', 'filter_by_deliver_status', 'Sifee Xaaladda Bixi', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11965', 'za', 'pending', 'Sugaya', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11966', 'za', 'type_order_code__hit_enter', 'Ku qor nambarka dalabka & garaac Gali', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11967', 'za', 'num_of_products', 'Tirintii ee alaabta', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11968', 'za', 'walk_in_customer', 'Ku Soco Macaamiil', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11969', 'za', 'qty', 'QTY', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11970', 'za', 'without_shipping_charge', 'Adigoon Lacag Gelin', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11971', 'za', 'with_shipping_charge', 'Iyadoo Lacagta Shixnad', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11972', 'za', 'pay_with_cash', 'Ku Bixi Lacag Cadaan ah', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11973', 'za', 'shipping_address', 'Cinwaanka Diritaanka', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11974', 'za', 'close', 'Xidh', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11975', 'za', 'select_country', 'Xullo waddan', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11976', 'za', 'order_confirmation', 'Amarka Xaqiijinta', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11977', 'za', 'are_you_sure_to_confirm_this_order', 'Ma hubtaa inaad xaqiijineyso amarkan?', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11978', 'za', 'comfirm_order', 'Amarka Xaqiijinta', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11979', 'za', 'personal_info', 'Macluumaadka Shakhsiyeed', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11980', 'za', 'repeat_password', 'Ku celi ereyga sirta ah', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11981', 'za', 'shop_name', 'Magaca Dukaanka', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11982', 'za', 'register_your_shop', 'Diiwaangeli Dukaankaaga', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11983', 'za', 'affiliate_informations', 'Xog-is-dhaafsi', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11984', 'za', 'affiliate', 'Gacansaar', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11985', 'za', 'user_info', 'Macluumaadka Isticmaalaha', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11986', 'za', 'installed_addon', 'Rakibay Addon', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11987', 'za', 'available_addon', 'Addon la heli karo', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11988', 'za', 'install_new_addon', 'Ku rakib Addon Cusub', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11989', 'za', 'version', 'Nooc', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11990', 'za', 'activated', 'Daaran', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11991', 'za', 'deactivated', 'Waa ladilay', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11992', 'za', 'activate_otp', 'Dhaqaaq OTP', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11993', 'za', 'otp_will_be_used_for', 'OTP waa loo isticmaali doonaa', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11994', 'za', 'settings_updated_successfully', 'Dejinta si guul leh ayaa loo cusboonaysiiyay', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11995', 'za', 'product_owner', 'Mulkiilaha Alaabta', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11996', 'za', 'point', 'Bar', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11997', 'za', 'set_point_for_product_within_a_range', 'Calan u dhig sheyga inta u dhexeysa', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11998', 'za', 'set_point_for_multiple_products', 'Calaamadee barta alaabooyin badan', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('11999', 'za', 'min_price', 'Min Qiimaha', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12000', 'za', 'max_price', 'Max Qiimaha', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12001', 'za', 'set_point_for_all_products', 'Calaamadee Badeecadaha oo dhan', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12002', 'za', 'set_point_for_', 'Meel Dhig', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12003', 'za', 'convert_status', 'Beddel Xaaladda', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12004', 'za', 'earned_at', 'Kasbaday At', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12005', 'za', 'seller_based_selling_report', 'Warbixinta Iibinta Ku Salaysan Iibiyaha', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12006', 'za', 'sort_by_verificarion_status', 'Ku kala sooc xaalada xaqiijinta', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12007', 'za', 'approved', 'La ogolaaday', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12008', 'za', 'non_approved', 'Aan La Ansixin', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12009', 'za', 'filter', 'Sifee', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12010', 'za', 'seller_name', 'Magaca Iibiyaha', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12011', 'za', 'number_of_product_sale', 'Tirada iibka alaabta', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12012', 'za', 'order_amount', 'Amarka Lacagta', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12013', 'za', 'facebook_chat_setting', 'Dejinta Wadahadalka Facebook', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12014', 'za', 'facebook_page_id', 'Aqoonsiga Bogga Facebook', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12015', 'za', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Fadlan taxaddar marka aad isku hagaajinaysid sheekaysiga Facebook. Qaabeynta khaldan kamahelaysid astaanta farriinta bartaada isticmaale-dhamaadka.', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12016', 'za', 'login_into_your_facebook_page', 'Soo gal boggaaga facebook', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12017', 'za', 'find_the_about_option_of_your_facebook_page', 'Raadi xulashada ku saabsan boggaaga facebook', '2021-02-09 12:58:12', '2021-09-20 12:59:43'),
('12018', 'za', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'Qeybta hoose, waxaad ka heli kartaa \\ \"Aqoonsiga Bogga Facebook \\\"', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12019', 'za', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Tag setinka boggaaga oo raadi ikhtiyaarka ah \"\" Farriinta Horukaca \"', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12020', 'za', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Hoos u rog bogaas waxaadnaheli doontaa \\ \"domain white \\\"', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12021', 'za', 'set_your_website_domain_name', 'Deji magacaaga boggaaga', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12022', 'za', 'google_recaptcha_setting', 'Dejinta Google reCAPTCHA', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12023', 'za', 'site_key', 'Site Fure', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12024', 'za', 'select_shipping_method', 'Xullo Habka Dhoofinta', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12025', 'za', 'product_wise_shipping_cost', 'Qiimaha Dhoofinta Xikmada Badeecada', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12026', 'za', 'flat_rate_shipping_cost', 'Qiimaha Dulsaarka Rate Flat', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12027', 'za', 'seller_wise_flat_shipping_cost', 'Qiimaha Dhoofinta Faa\'iidada ah ee Iibiyaha', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12028', 'za', 'note', 'Fiiro gaar ah', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12029', 'za', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Qiimaynta Qiimaha Soo Diritaanka Xikmadda Badeecada: Qiimaha dhoofinta waxaa lagu xisaabinayaa iyadoo lagu darayo qiimaha badeecad kasta', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12030', 'za', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Qiimeynta Rate Rate Flat Qiimaha: Imisa shey oo macaamiil iibsadaan, macno malahan. Qiimaha rarka waa go\'an yahay', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12031', 'za', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Qiimaynta Qiimaha Diraha Faa\'iidada Iibiyaha Iibiyaha: Qiime go\'an oo iibiya kasta. Haddii macaamilku ka iibsado 2 badeecad laba kharash oo dhoofinta iibiyaha ah waxaa lagu xisaabinayaa iyadoo lagu darayo qiime kasta oo iibiyaha iibiyaha ah', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12032', 'za', 'flat_rate_cost', 'Qiimaha Sicirka Flat', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12033', 'za', 'shipping_cost_for_admin_products', 'Qiimaha rarka ee alaabada maamulka', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12034', 'za', 'countries', 'Wadamada', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12035', 'za', 'showhide', 'Muuji / Qari', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12036', 'za', 'country_status_updated_successfully', 'Xaaladda waddanka si guul leh ayaa loo cusbooneysiiyey', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12037', 'za', 'all_subcategories', 'Dhammaan qaybaha hoose', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12038', 'za', 'add_new_subcategory', 'Kudar Qeyb Cusub', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12039', 'za', 'subcategories', 'Qeybo-hoosaadyo', '2021-02-09 12:58:13', '2021-09-20 12:59:43'),
('12040', 'za', 'sub_category_information', 'Macluumaadka Qeybta', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12041', 'za', 'slug', 'Tuuji', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12042', 'za', 'all_sub_subcategories', 'Dhammaan qaybaha hoose', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12043', 'za', 'add_new_sub_subcategory', 'Kudar Subcategory Sub Cusub', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12044', 'za', 'subsubcategories', 'Qeybaha-Hoosaadyada', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12045', 'za', 'make_this_default', 'Samee Tan Default', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12046', 'za', 'shops', 'Dukaamada', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12047', 'za', 'women_clothing__fashion', 'Dharka Haweenka & Dharka', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12048', 'za', 'cellphones__tabs', 'Taleefoonnada gacanta & Taabaha', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12049', 'za', 'welcome_to', 'Ku soo DHAWOOW', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12050', 'za', 'create_a_new_account', 'Abuur Akoon Cusub', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12051', 'za', 'full_name', 'Magaca oo buuxa', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12052', 'za', 'password', 'lambarka sirta ah', '2021-02-09 12:58:51', '2021-02-09 12:58:51'),
('12053', 'za', 'confrim_password', 'Isku qas sirta', '2021-02-09 12:58:51', '2021-09-20 12:59:43'),
('12054', 'za', 'i_agree_with_the', 'Waan ku raacsanahay', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12055', 'za', 'terms_and_conditions', 'Shuruudaha iyo Shuruudaha', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12056', 'za', 'register', 'Diiwaangeli', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12057', 'za', 'already_have_an_account', 'Horey u leedahay koonto', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12058', 'za', 'sign_up_with', 'Saxiix la soco', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12059', 'za', 'i_agree_with_the_terms_and_conditions', 'Waan ku raacsanahay Shuruudaha iyo Shuruudaha', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12060', 'za', 'all_role', 'Dhamaan Doorka', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12061', 'za', 'add_new_role', 'Kudar Door Cusub', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12062', 'za', 'roles', 'Doorarka', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12063', 'za', 'add_new_staffs', 'Kudar Shaqaale Cusub', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12064', 'za', 'role', 'Doorka', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12065', 'za', 'frontend_website_name', 'Magaca Websaydhka Frontend', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12066', 'za', 'website_name', 'Magaca Website', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12067', 'za', 'site_motto', 'Hal ku dhigga Goobta', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12068', 'za', 'best_ecommerce_website', 'Websaydhka ugu fiican eCommerce', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12069', 'za', 'site_icon', 'Goobta Icon', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12070', 'za', 'website_favicon_32x32_png', 'Websayt favicon. 32x32 .png', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12071', 'za', 'website_base_color', 'Midabka Base Website', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12072', 'za', 'hex_color_code', 'Hex Color Code', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12073', 'za', 'website_base_hover_color', 'Midabka Saldhig Websaydh', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12074', 'za', 'update', 'Cusboonaysiinta', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12075', 'za', 'global_seo', 'Global Seo', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12076', 'za', 'meta_description', 'Sifeynta Meta', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12077', 'za', 'keywords', 'Erayo fure ah', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12078', 'za', 'separate_with_coma', 'Kala saar kooma', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12079', 'za', 'website_pages', 'Bogagga Bogagga', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12080', 'za', 'all_pages', 'Dhamaan Bogagga', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12081', 'za', 'add_new_page', 'Kudar Bog Cusub', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12082', 'za', 'url', 'URL', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12083', 'za', 'actions', 'Waxqabadyada', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12084', 'za', 'edit_page_information', 'Tafatir Macluumaadka Bogga', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12085', 'za', 'page_content', 'Mawduuca Bogga', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12086', 'za', 'title', 'Cinwaanka', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12087', 'za', 'link', 'Xiriir', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12088', 'za', 'use_character_number_hypen_only', 'Adeegso xarfaan, nambarka, iskudhufnaan kaliya', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12089', 'za', 'add_content', 'Kudar Mawduuc', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12090', 'za', 'seo_fields', 'Goobaha Seo', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12091', 'za', 'update_page', 'Cusboonaysii Bogga', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12092', 'za', 'default_language', 'Luqad Asal ah', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12093', 'za', 'add_new_language', 'Kudar Luqad Cusub', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12094', 'za', 'rtl', 'RTL', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12095', 'za', 'translation', 'Tarjumaad', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12096', 'za', 'language_information', 'Macluumaadka Luqadda', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12097', 'za', 'save_page', 'Keydso Bogga', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12098', 'za', 'home_page_settings', 'Dejinta Bogga Hoyga', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12099', 'za', 'home_slider', 'Home slider', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12100', 'za', 'photos__links', 'Sawirro & Xiriiro', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12101', 'za', 'add_new', 'Ku dar Cusub', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12102', 'za', 'home_categories', 'Qeybaha Guryaha', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12103', 'za', 'home_banner_1_max_3', 'Banner Home 1 (Max 3)', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12104', 'za', 'banner__links', 'Banner & Links', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12105', 'za', 'home_banner_2_max_3', 'Banner Home 2 (Max 3)', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12106', 'za', 'top_10', '10-ka sare', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12107', 'za', 'top_categories_max_10', 'Qaybaha ugu sareeya (Max 10)', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12108', 'za', 'top_brands_max_10', 'Noocyada Sare (Max 10)', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12109', 'za', 'system_name', 'Magaca Nidaamka', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12110', 'za', 'system_logo__white', 'Astaanta Nidaamka - Caddaan', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12111', 'za', 'choose_files', 'Xulo Faylasha', '2021-02-09 12:58:52', '2021-09-20 12:59:43'),
('12112', 'za', 'will_be_used_in_admin_panel_side_menu', 'Waxaa loo isticmaali doonaa qeybta gudiga maamulka', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12113', 'za', 'system_logo__black', 'Astaanta Nidaamka - Madoow', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12114', 'za', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Waxaa loo isticmaali doonaa guddi hoosaadka maamulka ee moobiilka + Bogga gelitaanka Maamulka', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12115', 'za', 'system_timezone', 'Nidaamka Waqtiga', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12116', 'za', 'admin_login_page_background', 'Maamulka soo gal bogga asalka', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12117', 'za', 'website_header', 'Madaxa bogga', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12118', 'za', 'header_setting', 'Dejinta Madaxa', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12119', 'za', 'header_logo', 'Summada cinwaanka', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12120', 'za', 'show_language_switcher', 'Muuji Beddelaha Luqadda?', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12121', 'za', 'show_currency_switcher', 'Muuji Beddelaha Lacagta?', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12122', 'za', 'enable_stikcy_header', 'Daarma cinwaanka madax adayg?', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12123', 'za', 'website_footer', 'Bogga Website', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12124', 'za', 'footer_widget', 'Widget Footer', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12125', 'za', 'about_widget', 'Ku saabsan Widget', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12126', 'za', 'footer_logo', 'Astaanta Lugta', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12127', 'za', 'about_description', 'Ku saabsan sharaxaadda', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12128', 'za', 'contact_info_widget', 'La xiriir Widget Information', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12129', 'za', 'footer_contact_address', 'Cinwaanka xiriirka cagaha', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12130', 'za', 'footer_contact_phone', 'Telefoonka xiriiriyaha hoose', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12131', 'za', 'footer_contact_email', 'E-maylka xiriiriyaha hoose', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12132', 'za', 'link_widget_one', 'Link Widget One', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12133', 'za', 'links', 'Iskuxirayaasha', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12134', 'za', 'footer_bottom', 'Lugta Hoose', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12135', 'za', 'copyright_widget_', 'Xuquuqda daabacaadda', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12136', 'za', 'copyright_text', 'Qoraalka Xuquuqda Qoraalka', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12137', 'za', 'social_link_widget_', 'Fariinta Xiriirka Bulshada', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12138', 'za', 'show_social_links', 'Tus Xiriirrada Bulshada?', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12139', 'za', 'social_links', 'Xiriirinta Bulshada', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12140', 'za', 'payment_methods_widget_', 'Hababka Bixinta Qalabka', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12141', 'za', 'rtl_status_updated_successfully', 'Xaaladda RTL si guul leh ayaa loo cusbooneysiiyay', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12142', 'za', 'language_changed_to_', 'Luqadda ayaa loo beddelay', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12143', 'za', 'inhouse_product_sale_report', 'Warbixinta iibka alaabta guryaha', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12144', 'za', 'sort_by_category', 'Ku kala sooc Qayb ahaan', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12145', 'za', 'product_wise_stock_report', 'Warbixinta sheyga ee caqliga badan', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12146', 'za', 'currency_changed_to_', 'Lacagta ayaa loo beddelay', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12147', 'za', 'avatar', 'Avatar', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12148', 'za', 'copy', 'Nuqul', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12149', 'za', 'variant', 'Kala duwanaansho', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12150', 'za', 'variant_price', 'Qiimaha Kala Duwan', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12151', 'za', 'sku', 'SKU', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12152', 'za', 'key', 'Fure', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12153', 'za', 'value', 'Qiimaha', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12154', 'za', 'copy_translations', 'Nuqul Tarjumaadaha', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12155', 'za', 'all_pickup_points', 'Dhammaan Qodobbada Soo-qaadista', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12156', 'za', 'add_new_pickup_point', 'Kudar Bar-qaadis Cusub', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12157', 'za', 'manager', 'Maareeye', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12158', 'za', 'location', 'Goobta', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12159', 'za', 'pickup_station_contact', 'Xiriirka Xarunta Qaadista', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12160', 'za', 'open', 'Furan', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12161', 'za', 'pos_activation_for_seller', 'Hawlgelinta POS ee Iibiyaha', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12162', 'za', 'order_completed_successfully', 'Amarkii Si Guul Ah Ayaa Loo Dhameeyay', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12163', 'za', 'text_input', 'Galinta qoraalka', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12164', 'za', 'select', 'Xullo', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12165', 'za', 'multiple_select', 'Xullo badan', '2021-02-09 12:58:53', '2021-09-20 12:59:43'),
('12166', 'za', 'radio', 'Raadiyo', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12167', 'za', 'file', 'Fayl', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12168', 'za', 'email_address', 'Cinwaanka emailka', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12169', 'za', 'verification_info', 'Macluumaadka Xaqiijinta', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12170', 'za', 'approval', 'Ansixin', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12171', 'za', 'due_amount', 'Qaddarka', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12172', 'za', 'show', 'Muuji', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12173', 'za', 'pay_now', 'Bixi Hada', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12174', 'za', 'affiliate_user_verification', 'Xaqiijinta Isticmaalka Isticmaalaha', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12175', 'za', 'reject', 'Diid', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12176', 'za', 'accept', 'Aqbal', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12177', 'za', 'beauty_health__hair', 'Quruxda, Caafimaadka & Timaha', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12178', 'za', 'comparison', 'Isbarbar dhig', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12179', 'za', 'reset_compare_list', 'Dib u celi Liiska Isbarbardhiga', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12180', 'za', 'your_comparison_list_is_empty', 'Liiskaaga isbarbardhiga waa faaruq', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12181', 'za', 'convert_point_to_wallet', 'U Beddelo Bar Jeebka', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12182', 'za', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Xusuusin: Waxaad ubaahantahay inaad kicinayso ikhtiyaarka jeebka marka hore kahor intaadan isticmaalin addon addon.', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12183', 'za', 'create_an_account', 'Samee xisaab.', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12184', 'za', 'use_email_instead', 'Isticmaal Email Halkii', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12185', 'za', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Marka aad isdiiwaangeliso waxaad ogolaatay shuruudaha iyo shuruudahayaga.', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12186', 'za', 'create_account', 'Samee Koonto', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12187', 'za', 'or_join_with', 'Ama Ku Biir', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12188', 'za', 'already_have_an_account', 'Horey ma u leedahay koonto?', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12189', 'za', 'log_in', 'Soo gal', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12190', 'za', 'computer__accessories', 'Kombiyuutarka & Qalabka', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12191', 'za', 'products', 'Alaabta (yada)', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12192', 'za', 'in_your_cart', 'gaadhigaaga', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12193', 'za', 'in_your_wishlist', 'liiskaaga rabitaanka', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12194', 'za', 'you_ordered', 'waad amartay', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12195', 'za', 'default_shipping_address', 'Cinwaanka Diritaanka Default', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12196', 'za', 'sports__outdoor', 'Ciyaaraha & banaanka', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12197', 'za', 'copied', 'La guuriyey', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12198', 'za', 'copy_the_promote_link', 'Nuqul Xiriirka Kordhi', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12199', 'za', 'write_a_review', 'Qor dib u eegis', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12200', 'za', 'your_name', 'Magacaaga', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12201', 'za', 'comment', 'Faallo', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12202', 'za', 'your_review', 'Dib u eegidaada', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12203', 'za', 'submit_review', 'Gudbi dib u eegis', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12204', 'za', 'claire_willis', 'Claire Willis', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12205', 'za', 'germaine_greene', 'Germaine Greene', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12206', 'za', 'product_file', 'Faylka Alaabta', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12207', 'za', 'choose_file', 'Xulo feyl', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12208', 'za', 'type_to_add_a_tag', 'Ku qor si aad ugu darto sumad', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12209', 'za', 'images', 'Sawirro', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12210', 'za', 'main_images', 'Sawiro Muhiim ah', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12211', 'za', 'meta_tags', 'Meta Tags', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12212', 'za', 'digital_product_has_been_inserted_successfully', 'Wax soosaarka Dijital ah ayaa si guul leh loo geliyay', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12213', 'za', 'edit_digital_product', 'Tafatir alaabada dhijitaalka ah', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12214', 'za', 'select_an_option', 'Xulo ikhtiyaar', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12215', 'za', 'tax', 'cashuurta', '2021-02-09 12:58:54', '2021-02-09 12:58:54'),
('12216', 'za', 'any_question_about_this_product', 'Su\'aal kasta oo ku saabsan sheygan?', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12217', 'za', 'sign_in', 'Soo gal', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12218', 'za', 'login_with_google', 'Soo gal Google', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12219', 'za', 'login_with_facebook', 'Soo gal Facebook', '2021-02-09 12:58:54', '2021-09-20 12:59:43'),
('12220', 'za', 'login_with_twitter', 'Ku soo gal Twitter', '2021-02-09 12:58:54', '2021-09-20 12:59:44'),
('12221', 'za', 'click_to_show_phone_number', 'Guji si aad u muujiso lambarka taleefanka', '2021-02-09 12:58:54', '2021-09-20 12:59:44'),
('12222', 'za', 'other_ads_of', 'Xayeysiisyada kale ee', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12223', 'za', 'store_home', 'Guri Bakhaar', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12224', 'za', 'top_selling', 'Iibinta Sare', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12225', 'za', 'shop_settings', 'Goobaha Dukaanka', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12226', 'za', 'visit_shop', 'Booqo Dukaan', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12227', 'za', 'pickup_points', 'Qodobbada Qaadista', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12228', 'za', 'select_pickup_point', 'Xulo Barta Qaadista', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12229', 'za', 'slider_settings', 'Dejinta Slider', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12230', 'za', 'social_media_link', 'Xiriirinta Warbaahinta Bulshada', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12231', 'za', 'facebook', 'Facebook', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12232', 'za', 'twitter', 'Twitter', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12233', 'za', 'google', 'Google', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12234', 'za', 'new_arrival_products', 'Alaabada Imaanshaha Cusub', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12235', 'za', 'check_your_order_status', 'Hubi Xaaladda Dalabkaaga', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12236', 'za', 'shipping_method', 'Habka rarka', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12237', 'za', 'shipped_by', 'Geeyey By', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12238', 'za', 'image', 'Sawir', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12239', 'za', 'sub_sub_category', 'Qayb Sub Sub', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12240', 'za', 'inhouse_products', 'Alaabta Guryaha', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12241', 'za', 'forgot_password', 'Ilowday Furaha', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12242', 'za', 'enter_your_email_address_to_recover_your_password', 'Gali cinwaanka emailkaaga si aad uga soo ceshato lambarkaaga sirta ah.', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12243', 'za', 'email_or_phone', 'Email ama Telefoon', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12244', 'za', 'send_password_reset_link', 'Soo dir Xiriiriyaha Dib-u-habeynta ereyga', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12245', 'za', 'back_to_login', 'Ku noqo Soo gal', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12246', 'za', 'index', 'tusmo', '2021-02-09 12:58:55', '2021-02-09 12:58:55'),
('12247', 'za', 'download_your_product', 'Soo Degso Alaabtaada', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12248', 'za', 'option', 'Ikhtiyaar', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12249', 'za', 'applied_refund_request', 'Codsiga Lacag Celinta', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12250', 'za', 'item_has_been_renoved_from_wishlist', 'Shayga waa laga cusboonaysiiyay liiska xulashada', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12251', 'za', 'bulk_products_upload', 'Alaabada Jumlada', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12252', 'za', 'upload_csv', 'Soo rar CSV', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12253', 'za', 'create_a_ticket', 'Samee Tigidh', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12254', 'za', 'tickets', 'Tigidhada', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12255', 'za', 'ticket_id', 'Aqoonsiga Tigidhada', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12256', 'za', 'sending_date', 'Taariikhda Diritaanka', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12257', 'za', 'subject', 'Mawduuca', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12258', 'za', 'view_details', 'Faahfaahin Faahfaahin', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12259', 'za', 'provide_a_detailed_description', 'Bixi sharaxaad faahfaahsan', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12260', 'za', 'type_your_reply', 'Qor jawaabtaada', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12261', 'za', 'send_ticket', 'Soo dir Tigidhka', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12262', 'za', 'load_more', 'Xamuul Dheeraad ah', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12263', 'za', 'jewelry__watches', 'Dahabka & Saacadaha', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12264', 'za', 'filters', 'Shaandheeyeyaasha', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12265', 'za', 'contact_address', 'Cinwaanka lagala xiriirayo', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12266', 'za', 'contact_phone', 'Telefoonka lala xiriiro', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12267', 'za', 'contact_email', 'E-mayl la xiriir', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12268', 'za', 'filter_by', 'Sifee', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12269', 'za', 'condition', 'Xaaladda', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12270', 'za', 'all_type', 'Dhammaan Noocyada', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12271', 'za', 'pay_with_wallet', 'Ku bixi jeebka', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12272', 'za', 'select_variation', 'Xullo kala duwanaansho', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12273', 'za', 'no_product_added', 'Wax alaab ah laguma darin', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12274', 'za', 'status_has_been_updated_successfully', 'Xaaladda si guul leh ayaa loo cusbooneysiiyay', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12275', 'za', 'all_seller_packages', 'Dhammaan Baakadaha Iibiyaha', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12276', 'za', 'add_new_package', 'Kudar Xidhmo Cusub', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12277', 'za', 'package_logo', 'Astaanta Xirmada', '2021-02-09 12:58:55', '2021-09-20 12:59:44'),
('12278', 'za', 'days', 'maalmood', '2021-02-09 12:58:56', '2021-02-09 12:58:56'),
('12279', 'za', 'create_new_seller_package', 'Abuur Xidhmada Iibiyaha Cusub', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12280', 'za', 'package_name', 'Magaca Xidhmada', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12281', 'za', 'duration', 'Muddada', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12282', 'za', 'validity_in_number_of_days', 'Ansaxnimada tirada maalmaha', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12283', 'za', 'update_package_information', 'Cusboonaysii Macluumaadka Xidhmada', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12284', 'za', 'package_has_been_inserted_successfully', 'Xirmo ayaa si guul leh loo geliyay', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12285', 'za', 'refund_request', 'Codsiga Soo Celinta', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12286', 'za', 'reason', 'Sababta', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12287', 'za', 'label', 'Calaamadda', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12288', 'za', 'select_label', 'Xulo Calaamadda', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12289', 'za', 'multiple_select_label', 'Label Xullo Badan', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12290', 'za', 'radio_label', 'Sumadda Raadiyaha', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12291', 'za', 'pickup_point_orders', 'Amarada Goobta Qaadista', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12292', 'za', 'view', 'Muuqaal', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12293', 'za', 'order_', 'Dalbo #', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12294', 'za', 'order_status', 'Amarka Xaaladda', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12295', 'za', 'total_amount', 'Wadarta qadarka', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12296', 'za', 'total', 'WADAR', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12297', 'za', 'delivery_status_has_been_updated', 'Xaaladda gaarsiinta waa la casriyeeyay', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12298', 'za', 'payment_status_has_been_updated', 'Xaaladda lacag-bixinta ayaa la cusbooneysiiyay', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12299', 'za', 'invoice', 'KHAYRKA', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12300', 'za', 'set_refund_time', 'Deji Waqtiga Soo Celinta', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12301', 'za', 'set_time_for_sending_refund_request', 'Waqti u dejiso dirista Codsiga celinta', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12302', 'za', 'set_refund_sticker', 'Calan Lacag celinta Lacagta', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12303', 'za', 'sticker', 'Istiikar', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12304', 'za', 'refund_request_all', 'Codsiga Soo Celinta Dhammaan', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12305', 'za', 'order_id', 'Dalbo Id', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12306', 'za', 'seller_approval', 'Oggolaanshaha Iibiyaha', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12307', 'za', 'admin_approval', 'Ansixinta Maamulka', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12308', 'za', 'refund_status', 'Xaaladda Soo Celinta', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12309', 'za', 'no_refund', 'Lacag celin', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12310', 'za', 'status_updated_successfully', 'Xaaladda si guul leh ayaa loo cusbooneysiiyay', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12311', 'za', 'user_search_report', 'Warbixinta Raadinta Isticmaalaha', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12312', 'za', 'search_by', 'Raadi By', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12313', 'za', 'number_searches', 'Raadinta nambarka', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12314', 'za', 'sender', 'Soo diraha', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12315', 'za', 'receiver', 'Qaataha', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12316', 'za', 'verification_form_updated_successfully', 'Foomka xaqiijinta ayaa si guul leh loo cusboonaysiiyay', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12317', 'za', 'invalid_email_or_password', 'Emayl ama fure aan sax ahayn', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12318', 'za', 'all_coupons', 'Dhamaan Kuuboonada', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12319', 'za', 'add_new_coupon', 'Ku dar Kuuboon Cusub', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12320', 'za', 'coupon_information', 'Macluumaadka Kuuboon', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12321', 'za', 'start_date', 'Taariikhda billowga', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12322', 'za', 'end_date', 'Taariikhda Dhamaadka', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12323', 'za', 'product_base', 'Saldhigga alaabta', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12324', 'za', 'send_newsletter', 'U dir Wargeys', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12325', 'za', 'mobile_users', 'Isticmaalayaasha Mobilada', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12326', 'za', 'sms_subject', 'Mawduuca SMS', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12327', 'za', 'sms_content', 'Qoraalka SMS', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12328', 'za', 'all_flash_delas', 'Dhamaan Flash Delas', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12329', 'za', 'create_new_flash_dela', 'Abuur Flash Dela Cusub', '2021-02-09 12:58:56', '2021-09-20 12:59:44'),
('12330', 'za', 'page_link', 'Xiriirinta Bogga', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12331', 'za', 'flash_deal_information', 'Macluumaadka Flash Deal', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12332', 'za', 'background_color', 'Midabka Taariikhda', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12333', 'za', '0000ff', '# 0000ff', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12334', 'za', 'text_color', 'Midabka qoraalka', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12335', 'za', 'white', 'Caddaan', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12336', 'za', 'dark', 'Madoobaa', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12337', 'za', 'choose_products', 'Xullo Waxyaabaha', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12338', 'za', 'discounts', 'Qiimo dhimis', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12339', 'za', 'discount_type', 'Nooca Qiima dhimista', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12340', 'za', 'twillo_credential', 'Aqoonsiga Twillo', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12341', 'za', 'twilio_sid', 'TWILIO SID', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12342', 'za', 'twilio_auth_token', 'TWILIO AUTH TOKEN', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12343', 'za', 'twilio_verify_sid', 'TWILIO SOO CADEE', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12344', 'za', 'valid_twillo_number', 'LAMBAR TWILLO LAMBAR', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12345', 'za', 'nexmo_credential', 'Aqoonsiga Nexmo', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12346', 'za', 'nexmo_key', 'NEXMO KEY', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12347', 'za', 'nexmo_secret', 'SIRTA NEXMO', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12348', 'za', 'ssl_wireless_credential', 'Aqoonsiga Wireless SSL', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12349', 'za', 'ssl_sms_api_token', 'SSL SMS API TOKEN', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12350', 'za', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12351', 'za', 'ssl_sms_url', 'SSL SMS URL', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12352', 'za', 'fast2sms_credential', 'Aqoonsiga Fast2SMS', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12353', 'za', 'auth_key', 'FURAHA FUDUD', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12354', 'za', 'route', 'JIDKA', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12355', 'za', 'promotional_use', 'Isticmaalka Xayeysiinta', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12356', 'za', 'transactional_use', 'Adeegsiga Macaamil', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12357', 'za', 'sender_id', 'Aqoonsiga SENDER', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12358', 'za', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12359', 'za', 'twillo_otp', 'Twillo OTP', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12360', 'za', 'ssl_wireless_otp', 'SSL Wireless OTP', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12361', 'za', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12362', 'za', 'order_placement', 'Dalbo Meeleyn', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12363', 'za', 'delivery_status_changing_time', 'Waqtiga Gaarsiinta Isbadelka Waqtiga', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12364', 'za', 'paid_status_changing_time', 'Waqtiga Beddelka Xaaladda Mushaharka leh', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12365', 'za', 'send_bulk_sms', 'U dir SMS badan', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12366', 'za', 'all_subscribers', 'Dhamaan Macaamiisha', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12367', 'za', 'coupon_information_adding', 'Ku darista Macluumaadka Kuuboon', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12368', 'za', 'coupon_type', 'Nooca Kuuban', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12369', 'za', 'for_products', 'Wixii alaab ah', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12370', 'za', 'for_total_orders', 'Amarada Guud', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12371', 'za', 'add_your_product_base_coupon', 'Kudar Kuuboonkaga Saldhigga Badeecadaada', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12372', 'za', 'coupon_code', 'Koodh kuuboon ah', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12373', 'za', 'sub_category', 'Qeybta Sub', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12374', 'za', 'add_more', 'Ku dar intaa', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12375', 'za', 'add_your_cart_base_coupon', 'Ku dar Kaadhkaaga Saldhigga Baska', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12376', 'za', 'minimum_shopping', 'Dukaameysiga Ugu Yar', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12377', 'za', 'maximum_discount_amount', 'Tirada Qiima dhimista ugu badan', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12378', 'za', 'coupon_information_update', 'Cusboonaysiinta Macluumaadka Kuuboon', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12379', 'za', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Fadlan Iskudub Dejinta SMTP si ay u shaqeyso dhammaan emaylka diraya caqliga', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12380', 'za', 'configure_now', 'Habee Hada', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12381', 'za', 'total_published_products', 'Wadarta alaabada la daabacay', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12382', 'za', 'total_sellers_products', 'Wadarta alaabada iibiyaasha', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12383', 'za', 'total_admin_products', 'Wadarta alaabada maamulka', '2021-02-09 12:58:57', '2021-09-20 12:59:44'),
('12384', 'za', 'manage_products', 'Maamul Alaabta', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12385', 'za', 'total_product_category', 'Wadarta qaybta wax soo saarka', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12386', 'za', 'create_category', 'Abuur Qeyb', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12387', 'za', 'total_product_sub_sub_category', 'Wadarta shey sub sub sub', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12388', 'za', 'create_sub_sub_category', 'Abuur Qeyb Sub Sub', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12389', 'za', 'total_product_sub_category', 'Wadarta shey badeecad ahaan', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12390', 'za', 'create_sub_category', 'Abuur Qeyb Sub', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12391', 'za', 'total_product_brand', 'Wadarta sumadda wax soo saarka', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12392', 'za', 'create_brand', 'Abuur Brand', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12393', 'za', 'total_sellers', 'Wadarta iibiyaasha', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12394', 'za', 'total_approved_sellers', 'Wadarta iibiyeyaasha la oggolaaday', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12395', 'za', 'total_pending_sellers', 'Wadarta iibiyeyaasha sugaya', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12396', 'za', 'manage_sellers', 'Maamul iibiyeyaasha', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12397', 'za', 'category_wise_product_sale', 'Iibinta alaabta caqliga badan', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12398', 'za', 'sale', 'Iib', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12399', 'za', 'category_wise_product_stock', 'Kaydka alaabta caqliga badan', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12400', 'za', 'category_name', 'Magaca Qeybta', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12401', 'za', 'stock', 'Keyd', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12402', 'za', 'frontend', 'Dhamaadka hore', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12403', 'za', 'home_page', 'Bogga hore', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12404', 'za', 'setting', 'dejinta', '2021-02-09 12:58:58', '2021-02-09 12:58:58'),
('12405', 'za', 'policy_page', 'Bogga siyaasadda', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12406', 'za', 'general', 'Guud', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12407', 'za', 'click_here', 'Halkan Guji', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12408', 'za', 'useful_link', 'Xiriir wax ku ool ah', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12409', 'za', 'activation', 'Firfircoonida', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12410', 'za', 'smtp', 'SMTP', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12411', 'za', 'payment_method', 'Qaabka mushaar-bixinta', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12412', 'za', 'social_media', 'Warbaahinta bulshada', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12413', 'za', 'business', 'Ganacsi', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12414', 'za', 'seller_verification', 'Xaqiijinta iibiyaha', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12415', 'za', 'form_setting', 'qaab dejinta', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12416', 'za', 'language', 'Luqadda', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12417', 'za', 'dashboard', 'Dashboard', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12418', 'za', 'pos_system', 'Nidaamka POS', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12419', 'za', 'pos_manager', 'Maamulaha POS', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12420', 'za', 'pos_configuration', 'Isku xidhka POS', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12421', 'za', 'products', 'Alaabta', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12422', 'za', 'add_new_product', 'Kudar shey cusub', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12423', 'za', 'all_products', 'Dhammaan Alaabooyinka', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12424', 'za', 'in_house_products', 'Agabka Guryaha', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12425', 'za', 'seller_products', 'Alaabada Iibiyaha', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12426', 'za', 'digital_products', 'Waxyaabaha Dijital ah', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12427', 'za', 'bulk_import', 'Soo Dejinta Jumlada', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12428', 'za', 'bulk_export', 'Dhoofinta Jumlada', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12429', 'za', 'category', 'Qeybta', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12430', 'za', 'subcategory', 'Qeybta hoose', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12431', 'za', 'sub_subcategory', 'Subcategory sub', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12432', 'za', 'brand', 'Summad', '2021-02-09 12:58:58', '2021-09-20 12:59:44'),
('12433', 'za', 'attribute', 'Sifo', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12434', 'za', 'product_reviews', 'Faallooyinka alaabada', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12435', 'za', 'sales', 'Iibinta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12436', 'za', 'all_orders', 'Dhamaan Amarada', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12437', 'za', 'inhouse_orders', 'Amarada guryaha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12438', 'za', 'seller_orders', 'Amarada Iibiyaha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12439', 'za', 'pickup_point_order', 'Dalbashada Qodobka Qaadista', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12440', 'za', 'refunds', 'Lacag celin', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12441', 'za', 'refund_requests', 'Codsiyada celinta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12442', 'za', 'approved_refund', 'Lacag celinta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12443', 'za', 'refund_configuration', 'Habeynta soo celinta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12444', 'za', 'customers', 'Macaamiisha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12445', 'za', 'customer_list', 'Liiska macaamiisha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12446', 'za', 'classified_products', 'Alaabada Kala Duwan', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12447', 'za', 'classified_packages', 'Xirmooyinka Kala Duwan', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12448', 'za', 'sellers', 'Iibiyeyaasha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12449', 'za', 'all_seller', 'Dhamaan Iibiyaha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12450', 'za', 'payouts', 'Lacag bixinta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12451', 'za', 'payout_requests', 'Codsiyada Bixinta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12452', 'za', 'seller_commission', 'Komishanka Iibiyaha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12453', 'za', 'seller_packages', 'Xirmooyinka Iibiyaha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12454', 'za', 'seller_verification_form', 'Foomka Xaqiijinta Iibiyaha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12455', 'za', 'reports', 'Warbixinno', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12456', 'za', 'in_house_product_sale', 'Iibinta Alaabta Guriga', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12457', 'za', 'seller_products_sale', 'Iibinta Alaabada Iibiyaha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12458', 'za', 'products_stock', 'Alaabada Alaabta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12459', 'za', 'products_wishlist', 'Liisaska waxyaabaha la doonayo', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12460', 'za', 'user_searches', 'Raadinta Isticmaalaha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12461', 'za', 'marketing', 'Suuqgeynta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12462', 'za', 'flash_deals', 'Heshiisyada Flash', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12463', 'za', 'newsletters', 'Wargeysyada', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12464', 'za', 'bulk_sms', 'SMS badan', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12465', 'za', 'subscribers', 'Macaamiisha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12466', 'za', 'coupon', 'Kuuboon', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12467', 'za', 'support', 'Taageero', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12468', 'za', 'ticket', 'Tigidhada', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12469', 'za', 'product_queries', 'Weydiimaha alaabta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12470', 'za', 'website_setup', 'Dejinta Websaydhka', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12471', 'za', 'header', 'Madaxa', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12472', 'za', 'footer', 'Lugood', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12473', 'za', 'pages', 'Bogagga', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12474', 'za', 'appearance', 'Muuqaal', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12475', 'za', 'setup__configurations', 'Dejinta & Qaabdhismeedka', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12476', 'za', 'general_settings', 'Goobaha Guud', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12477', 'za', 'features_activation', 'Astaamaha firfircoonaanta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12478', 'za', 'languages', 'Luqadaha', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12479', 'za', 'currency', 'Lacagta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12480', 'za', 'pickup_point', 'Bar qaadista', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12481', 'za', 'smtp_settings', 'Dejinta SMTP', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12482', 'za', 'payment_methods', 'Hababka Bixinta', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12483', 'za', 'file_system_configuration', 'Isku xidhka Nidaamka Faylka', '2021-02-09 12:58:59', '2021-09-20 12:59:44'),
('12484', 'za', 'social_media_logins', 'Warbaahinta bulshada', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12485', 'za', 'analytics_tools', 'Qalabka Falanqaynta', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12486', 'za', 'facebook_chat', 'Wadahadalka Facebook', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12487', 'za', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12488', 'za', 'shipping_configuration', 'Dejinta Qalabka', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12489', 'za', 'shipping_countries', 'Wadamada Maraakiibta', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12490', 'za', 'affiliate_system', 'Nidaamka Isku-xidhka', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12491', 'za', 'affiliate_registration_form', 'Foomka Diiwaangelinta Iskuxirka', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12492', 'za', 'affiliate_configurations', 'Iskuduwaha isku xidhka ah', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12493', 'za', 'affiliate_users', 'Isticmaalayaasha Kuxiran', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12494', 'za', 'referral_users', 'Isticmaalayaasha Gudbinta', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12495', 'za', 'affiliate_withdraw_requests', 'Codsiyada Ka Bixida Shirkad wadaag ah', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12496', 'za', 'offline_payment_system', 'Nidaamka Lacag-bixin la\'aanta', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12497', 'za', 'manual_payment_methods', 'Hababka Bixinta Buugga', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12498', 'za', 'offline_wallet_recharge', 'Dib-u-buuxinta Boorsada Lacag-la\'aanta ah', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12499', 'za', 'offline_customer_package_payments', 'Lacag Bixinta Xidhmada Macaamiisha', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12500', 'za', 'offline_seller_package_payments', 'Lacag Bixinta Xirmooyinka Iibiyaha Aan Tooska Ahayn', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12501', 'za', 'paytm_payment_gateway', 'Albaabka Bixinta Paytm', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12502', 'za', 'set_paytm_credentials', 'Calan Aqoonsiga Paytm', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12503', 'za', 'club_point_system', 'Nidaamka Barta Naadiga', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12504', 'za', 'club_point_configurations', 'Iskuduwaha Barta Naadiga', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12505', 'za', 'set_product_point', 'Calan Bar Bar', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12506', 'za', 'user_points', 'Qodobbada Isticmaalaha', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12507', 'za', 'otp_system', 'Nidaamka OTP', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12508', 'za', 'otp_configurations', 'Qalabaynta OTP', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12509', 'za', 'set_otp_credentials', 'Calan Aqoonsiga OTP', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12510', 'za', 'staffs', 'Shaqaalaha', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12511', 'za', 'all_staffs', 'Dhamaan shaqaalaha', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12512', 'za', 'staff_permissions', 'Ogolaanshaha shaqaalaha', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12513', 'za', 'addon_manager', 'Maamulaha Addon', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12514', 'za', 'browse_website', 'Booqo Websaydhka', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12515', 'za', 'pos', 'POS', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12516', 'za', 'notifications', 'Ogeysiisyada', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12517', 'za', 'new_orders', 'amarro cusub', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12518', 'za', 'userimage', 'sawir-isticmaale', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12519', 'za', 'profile', 'Astaan', '2021-02-09 12:59:00', '2021-09-20 12:59:44'),
('12520', 'za', 'logout', 'Ka bax', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12521', 'za', 'page_not_found', 'Bog lama helin!', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12522', 'za', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'Bogga aad raadineyso lagama helin server-keena.', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12523', 'za', 'registration', 'Diiwaangelinta', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12524', 'za', 'i_am_shopping_for', 'Waxaan u adeeganayaa ...', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12525', 'za', 'compare', 'Isbarbar dhig', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12526', 'za', 'wishlist', 'Liiska Rabitaanka', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12527', 'za', 'cart', 'Gawaarida', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12528', 'za', 'your_cart_is_empty', 'Gaarigaaga ayaa madhan', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12529', 'za', 'categories', 'Qaybaha', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12530', 'za', 'see_all', 'Fiiri Dhamaan', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12531', 'za', 'seller_policy', 'Siyaasadda Iibiyaha', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12532', 'za', 'return_policy', 'Siyaasadda Soo Celinta', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12533', 'za', 'support_policy', 'Siyaasadda Taageerada', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12534', 'za', 'privacy_policy', 'Qaanuunka Arrimaha Khaaska ah', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12535', 'za', 'your_email_address', 'Cinwaanka Ii-maylkaaga', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12536', 'za', 'subscribe', 'Subscribe', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12537', 'za', 'contact_info', 'La xiriir Macluumaadka', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12538', 'za', 'address', 'Cinwaanka', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12539', 'za', 'phone', 'Telefoon', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12540', 'za', 'email', 'Email', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12541', 'za', 'login', 'Login', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12542', 'za', 'my_account', 'My Account', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12543', 'za', 'order_history', 'Order History', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12544', 'za', 'my_wishlist', 'My Wishlist', '2021-02-09 12:59:31', '2021-09-20 12:59:44'),
('12545', 'za', 'track_order', 'Track Order', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12546', 'za', 'be_an_affiliate_partner', 'Be an affiliate partner', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12547', 'za', 'be_a_seller', 'Be a Seller', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12548', 'za', 'apply_now', 'Apply Now', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12549', 'za', 'confirmation', 'Confirmation', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12550', 'za', 'delete_confirmation_message', 'Delete confirmation message', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12551', 'za', 'cancel', 'Cancel', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12552', 'za', 'delete', 'Tirtir', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12553', 'za', 'item_has_been_added_to_compare_list', 'Item has been added to compare list', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12554', 'za', 'please_login_first', 'Please login first', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12555', 'za', 'total_earnings_from', 'Total Earnings From', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12556', 'za', 'client_subscription', 'Client Subscription', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12557', 'za', 'product_category', 'Product category', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12558', 'za', 'product_sub_sub_category', 'Product sub sub category', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12559', 'za', 'product_sub_category', 'Product sub category', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12560', 'za', 'product_brand', 'Product brand', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12561', 'za', 'top_client_packages', 'Top Client Packages', '2021-02-09 12:59:31', '2021-09-20 12:59:45'),
('12562', 'za', 'top_freelancer_packages', 'Top Freelancer Packages', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12563', 'za', 'number_of_sale', 'Number of sale', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12564', 'za', 'number_of_stock', 'Number of Stock', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12565', 'za', 'top_10_products', 'Top 10 Products', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12566', 'za', 'top_12_products', 'Top 12 Products', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12567', 'za', 'admin_can_not_be_a_seller', 'Admin cannot be a seller', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12568', 'za', 'filter_by_rating', 'Filter by Rating', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12569', 'za', 'published_reviews_updated_successfully', 'Published reviews updated successfully', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12570', 'za', 'refund_sticker_has_been_updated_successfully', 'Refund Sticker has been updated successfully', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12571', 'za', 'edit_product', 'Edit Product', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12572', 'za', 'meta_images', 'Meta Images', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12573', 'za', 'update_product', 'Update Product', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12574', 'za', 'product_has_been_deleted_successfully', 'Product has been deleted successfully', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12575', 'za', 'your_profile_has_been_updated_successfully', 'Your Profile has been updated successfully!', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12576', 'za', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Upload limit has been reached. Please upgrade your package.', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12577', 'za', 'add_your_product', 'Add Your Product', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12578', 'za', 'select_a_category', 'Select a category', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12579', 'za', 'select_a_brand', 'Select a brand', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12580', 'za', 'product_unit', 'Product Unit', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12581', 'za', 'minimum_qty', 'Minimum Qty.', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12582', 'za', 'product_tag', 'Product Tag', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12583', 'za', 'type__hit_enter', 'Type & hit enter', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12584', 'za', 'videos', 'Videos', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12585', 'za', 'video_from', 'Video From', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12586', 'za', 'video_url', 'Video URL', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12587', 'za', 'customer_choice', 'Customer Choice', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12588', 'za', 'pdf', 'PDF', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12589', 'za', 'choose_pdf', 'Choose PDF', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12590', 'za', 'select_category', 'Select Category', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12591', 'za', 'target_category', 'Target Category', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12592', 'za', 'subsubcategory', 'subsubcategory', '2021-02-09 12:59:32', '2021-02-09 12:59:32'),
('12593', 'za', 'search_category', 'Search Category', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12594', 'za', 'search_subcategory', 'Search SubCategory', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12595', 'za', 'search_subsubcategory', 'Search SubSubCategory', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12596', 'za', 'update_your_product', 'Update your product', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12597', 'za', 'product_has_been_updated_successfully', 'Product has been updated successfully', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12598', 'za', 'add_your_digital_product', 'Add Your Digital Product', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12599', 'za', 'active_ecommerce_cms_update_process', 'Active eCommerce CMS Update Process', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12600', 'za', 'codecanyon_purchase_code', 'Codecanyon purchase code', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12601', 'za', 'database_name', 'Database Name', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12602', 'za', 'database_username', 'Database Username', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12603', 'za', 'database_password', 'Database Password', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12604', 'za', 'database_hostname', 'Database Hostname', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12605', 'za', 'update_now', 'Update Now', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12606', 'za', 'congratulations', 'Congratulations', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12607', 'za', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'You have successfully completed the updating process. Please Login to continue', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12608', 'za', 'go_to_home', 'Go to Home', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12609', 'za', 'login_to_admin_panel', 'Login to Admin panel', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12610', 'za', 's3_file_system_credentials', 'S3 File System Credentials', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12611', 'za', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12612', 'za', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12613', 'za', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12614', 'za', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12615', 'za', 'aws_url', 'AWS_URL', '2021-02-09 12:59:32', '2021-09-20 12:59:45'),
('12616', 'za', 's3_file_system_activation', 'S3 File System Activation', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12617', 'za', 'your_phone_number', 'Your phone number', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12618', 'za', 'zip_file', 'Zip File', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12619', 'za', 'install', 'Install', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12620', 'za', 'this_version_is_not_capable_of_installing_addons_please_update', 'This version is not capable of installing Addons, Please update.', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12621', 'za', 'search_in_menu', 'Search in menu', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12622', 'za', 'uploaded_files', 'Uploaded Files', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12623', 'za', 'shipping_cities', 'Shipping Cities', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12624', 'za', 'system', 'System', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12625', 'za', 'server_status', 'Server status', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12626', 'za', 'nothing_found', 'Nothing Found', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12627', 'za', 'parent_category', 'Parent Category', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12628', 'za', 'level', 'Level', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12629', 'za', 'category_information', 'Category Information', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12630', 'za', 'translatable', 'Translatable', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12631', 'za', 'no_parent', 'No Parent', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12632', 'za', 'physical', 'Physical', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12633', 'za', 'digital', 'Digital', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12634', 'za', '200x200', '200x200', '2021-02-09 12:59:33', '2021-02-09 12:59:33'),
('12635', 'za', '32x32', '32x32', '2021-02-09 12:59:33', '2021-02-09 12:59:33'),
('12636', 'za', 'search_your_files', 'Search your files', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12637', 'za', 'category_has_been_updated_successfully', 'Category has been updated successfully', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12638', 'za', 'all_uploaded_files', 'All uploaded files', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12639', 'za', 'upload_new_file', 'Upload New File', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12640', 'za', 'all_files', 'All files', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12641', 'za', 'search', 'Search', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12642', 'za', 'details_info', 'Details Info', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12643', 'za', 'copy_link', 'Copy Link', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12644', 'za', 'are_you_sure_to_delete_this_file', 'Are you sure to delete this file?', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12645', 'za', 'file_info', 'File Info', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12646', 'za', 'link_copied_to_clipboard', 'Link copied to clipboard', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12647', 'za', 'oops_unable_to_copy', 'Oops, unable to copy', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12648', 'za', 'file_deleted_successfully', 'File deleted successfully', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12649', 'za', 'add_new_brand', 'Add New Brand', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12650', 'za', '120x80', '120x80', '2021-02-09 12:59:33', '2021-02-09 12:59:33'),
('12651', 'za', 'brand_information', 'Brand Information', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12652', 'za', 'brand_has_been_updated_successfully', 'Brand has been updated successfully', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12653', 'za', 'brand_has_been_deleted_successfully', 'Brand has been deleted successfully', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12654', 'za', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'This is used for search. Input those words by which cutomer can find this product.', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12655', 'za', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'These images are visible in product details page gallery. Use 600x600 sizes images.', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12656', 'za', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12657', 'za', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Use proper link without extra parameter. Don\'t use short share link/embeded iframe code.', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12658', 'za', 'save_product', 'Save Product', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12659', 'za', 'product_has_been_inserted_successfully', 'Product has been inserted successfully', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12660', 'za', 'something_went_wrong', 'Something went wrong!', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12661', 'za', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Sorry for the inconvenience, but we\'re working on it.', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12662', 'za', 'error_code', 'Error code', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12663', 'za', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Please Configure SMTP Setting to work all email sending functionality', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12664', 'za', 'order', 'Order', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12665', 'za', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'We have limited banner height to maintain UI. We had to crop from both left & right side in view for different devices to make it responsive. Before designing banner keep these points in mind.', '2021-02-09 12:59:33', '2021-09-20 12:59:45'),
('12666', 'za', 'home_banner_3_max_3', 'Home Banner 3 (Max 3)', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12667', 'za', 'add_new_seller', 'Add New Seller', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12668', 'za', 'filter_by_approval', 'Filter by Approval', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12669', 'za', 'nonapproved', 'Non-Approved', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12670', 'za', 'type_name_or_email__enter', 'Type name or email & Enter', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12671', 'za', 'due_to_seller', 'Due to seller', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12672', 'za', 'log_in_as_this_seller', 'Log in as this Seller', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12673', 'za', 'go_to_payment', 'Go to Payment', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12674', 'za', 'ban_this_seller', 'Ban this seller', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12675', 'za', 'do_you_really_want_to_ban_this_seller', 'Do you really want to ban this seller?', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12676', 'za', 'proceed', 'Proceed!', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12677', 'za', 'approved_sellers_updated_successfully', 'Approved sellers updated successfully', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12678', 'za', 'seller_has_been_deleted_successfully', 'Seller has been deleted successfully', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12679', 'za', 'seller_information', 'Seller Information', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12680', 'za', 'seller_has_been_inserted_successfully', 'Seller has been inserted successfully', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12681', 'za', 'email_already_exists', 'Email already exists!', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12682', 'za', 'verify_your_email_address', 'Verify Your Email Address', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12683', 'za', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Before proceeding, please check your email for a verification link.', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12684', 'za', 'if_you_did_not_receive_the_email', 'If you did not receive the email.', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12685', 'za', 'click_here_to_request_another', 'Click here to request another', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12686', 'za', 'email_verification', 'Email Verification', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12687', 'za', 'email_verification__', 'Email Verification -', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12688', 'za', 'https_activation', 'HTTPS Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12689', 'za', 'maintenance_mode', 'Maintenance Mode', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12690', 'za', 'maintenance_mode_activation', 'Maintenance Mode Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12691', 'za', 'classified_product_activate', 'Classified Product Activate', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12692', 'za', 'classified_product', 'Classified Product', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12693', 'za', 'business_related', 'Business Related', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12694', 'za', 'vendor_system_activation', 'Vendor System Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12695', 'za', 'wallet_system_activation', 'Wallet System Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12696', 'za', 'coupon_system_activation', 'Coupon System Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12697', 'za', 'pickup_point_activation', 'Pickup Point Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12698', 'za', 'conversation_activation', 'Conversation Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12699', 'za', 'guest_checkout_activation', 'Guest Checkout Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12700', 'za', 'categorybased_commission', 'Category-based Commission', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12701', 'za', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'After activate this option Seller commision will be disabled and You need to set commission on each category otherwise Admin will not get any commision', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12702', 'za', 'set_commisssion_now', 'Set Commisssion Now', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12703', 'za', 'payment_related', 'Payment Related', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12704', 'za', 'paypal_payment_activation', 'Paypal Payment Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12705', 'za', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'You need to configure Paypal correctly to enable this feature', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12706', 'za', 'stripe_payment_activation', 'Stripe Payment Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12707', 'za', 'sslcommerz_activation', 'SSlCommerz Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12708', 'za', 'instamojo_payment_activation', 'Instamojo Payment Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12709', 'za', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'You need to configure Instamojo Payment correctly to enable this feature', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12710', 'za', 'razor_pay_activation', 'Razor Pay Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12711', 'za', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'You need to configure Razor correctly to enable this feature', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12712', 'za', 'paystack_activation', 'PayStack Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12713', 'za', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'You need to configure PayStack correctly to enable this feature', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12714', 'za', 'voguepay_activation', 'VoguePay Activation', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12715', 'za', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'You need to configure VoguePay correctly to enable this feature', '2021-02-09 12:59:34', '2021-09-20 12:59:45'),
('12716', 'za', 'payhere_activation', 'Payhere Activation', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12717', 'za', 'ngenius_activation', 'Ngenius Activation', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12718', 'za', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'You need to configure Ngenius correctly to enable this feature', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12719', 'za', 'iyzico_activation', 'Iyzico Activation', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12720', 'za', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'You need to configure iyzico correctly to enable this feature', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12721', 'za', 'bkash_activation', 'Bkash Activation', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12722', 'za', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'You need to configure bkash correctly to enable this feature', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12723', 'za', 'nagad_activation', 'Nagad Activation', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12724', 'za', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'You need to configure nagad correctly to enable this feature', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12725', 'za', 'cash_payment_activation', 'Cash Payment Activation', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12726', 'za', 'social_media_login', 'Social Media Login', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12727', 'za', 'facebook_login', 'Facebook login', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12728', 'za', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'You need to configure Facebook Client correctly to enable this feature', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12729', 'za', 'google_login', 'Google login', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12730', 'za', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'You need to configure Google Client correctly to enable this feature', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12731', 'za', 'twitter_login', 'Twitter login', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12732', 'za', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'You need to configure Twitter Client correctly to enable this feature', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12733', 'za', 'shop_logo', 'Shop Logo', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12734', 'za', 'shop_address', 'Shop Address', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12735', 'za', 'banner_settings', 'Banner Settings', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12736', 'za', 'banners', 'Banners', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12737', 'za', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'We had to limit height to maintian consistancy. In some device both side of the banner might be cropped for height limitation.', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12738', 'za', 'insert_link_with_https_', 'Insert link with https', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12739', 'za', 'your_shop_has_been_updated_successfully', 'Dukaankaaga si guul leh ayaa loo casriyeeyay!', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12740', 'za', 'search_result_for_', 'Search natiijada for', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12741', 'za', 'brand_has_been_inserted_successfully', 'Nooca ayaa si guul leh loo geliyay', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12742', 'za', 'about', 'Ku saabsan', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12743', 'za', 'payout_info', 'Macluumaadka Bixinta', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12744', 'za', 'bank_acc_name', 'Magaca Bank Acc', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12745', 'za', 'bank_acc_number', 'Lambarka Bank Acc', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12746', 'za', 'total_products', 'Wadarta Alaabta', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12747', 'za', 'total_sold_amount', 'Wadarta La Iibiyay', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12748', 'za', 'wallet_balance', 'Isu-dheellitirka jeebka', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12749', 'za', 'cookies_agreement', 'Heshiiska Kukiyada', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12750', 'za', 'cookies_agreement_text', 'Qoraalka Heshiiska Kukiyada', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12751', 'za', 'show_cookies_agreement', 'Muuji Heshiiska Kukiyada?', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12752', 'za', 'custom_script', 'Qoraalka Gaarka ah', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12753', 'za', 'header_custom_script__before_head', 'Qoraalka gaarka ah qoraalka - ka hor </ madaxa>', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12754', 'za', 'write_script_with_script_tag', 'Ku qor qoraal qoraal leh <script> tag', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12755', 'za', 'footer_custom_script__before_body', 'Qoraalka qoraalka caadada - kahor </body>', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12756', 'za', 'category_has_been_inserted_successfully', 'Qeybta si guul leh ayaa loo geliyay', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12757', 'za', 'all_flash_deals', 'Dhamaan heshiisyada Flash', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12758', 'za', 'create_new_flash_deal', 'Abuur Flash Deal Cusub', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12759', 'za', 'ffffff', '#FFFFFF', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12760', 'za', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Sawirkan waxaa lagu muujiyey inuu yahay banner astaan ​​ah oo ku saabsan bogga faahfaahinta heshiiska flash.', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12761', 'za', 'flash_deal_has_been_inserted_successfully', 'Flash Deal ayaa si guul leh loo geliyay', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12762', 'za', 'flash_deal_status_updated_successfully', 'Xaaladda heshiiska Flash si guul leh ayaa loo cusbooneysiiyey', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12763', 'za', 'flash_deal_has_been_updated_successfully', 'Flash Deal si guul leh ayaa loo cusbooneysiiyay', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12764', 'za', 'update_language_info', 'cusboonaysii Macluumaadka Luqadda', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12765', 'za', 'language_has_been_updated_successfully', 'Luqadda si casri ah ayaa loo casriyeeyay', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12766', 'za', 'type_key__enter', 'Nooca furaha & Gali', '2021-02-09 12:59:35', '2021-09-20 12:59:45'),
('12767', 'za', 'translations_updated_for_', 'Tarjumaadaha ayaa loo cusbooneysiiyay', '2021-02-09 12:59:36', '2021-09-20 12:59:45'),
('12768', 'za', 'language_has_been_inserted_successfully', 'Luuqada si guul leh ayaa loo galiyay', '2021-02-09 12:59:36', '2021-09-20 12:59:45'),
('12769', 'ie', 'all_category', 'Gach Catagóir', '2021-02-09 13:04:00', '2021-09-20 12:59:45'),
('12770', 'ie', 'all', 'Gach', '2021-02-09 13:04:00', '2021-09-20 12:59:45'),
('12771', 'ie', 'flash_sale', 'Díol Flash', '2021-02-09 13:04:00', '2021-09-20 12:59:45'),
('12772', 'ie', 'view_more', 'Féach Tuilleadh', '2021-02-09 13:04:00', '2021-09-20 12:59:45'),
('12773', 'ie', 'add_to_wishlist', 'Cuir an liosta a ghuí', '2021-02-09 13:04:00', '2021-09-20 12:59:45'),
('12774', 'ie', 'add_to_compare', 'Cuir le comparáid a dhéanamh', '2021-02-09 13:04:00', '2021-09-20 12:59:45'),
('12775', 'ie', 'add_to_cart', 'Cuir le cart', '2021-02-09 13:04:00', '2021-09-20 12:59:45'),
('12776', 'ie', 'club_point', 'Pointe an Chlub', '2021-02-09 13:04:00', '2021-09-20 12:59:45'),
('12777', 'ie', 'classified_ads', 'Fógraí Rangaithe', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12778', 'ie', 'used', 'Úsáidtear', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12779', 'ie', 'top_10_categories', 'Na 10 gCatagóir is Fearr', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12780', 'ie', 'view_all_categories', 'Féach ar na Catagóirí Uile', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12781', 'ie', 'top_10_brands', 'Na 10 mBranda is Fearr', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12782', 'ie', 'view_all_brands', 'Féach ar na Brandaí Uile', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12783', 'ie', 'terms__conditions', 'Téarmaí ⁊ Coinníollacha', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12784', 'ie', 'best_selling', 'Díol is Fearr', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12785', 'ie', 'top_20', '20 barr', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12786', 'ie', 'featured_products', 'Táirgí Réadmhaoin', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12787', 'ie', 'best_sellers', 'Díoltóirí is fearr', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12788', 'ie', 'visit_store', 'Tabhair cuairt ar Store', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12789', 'ie', 'popular_suggestions', 'Moltaí Coitianta', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12790', 'ie', 'category_suggestions', 'Moltaí Catagóir', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12791', 'ie', 'automobile__motorcycle', 'Gluaisteán & Gluaisrothar', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12792', 'ie', 'price_range', 'Raon praghsanna', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12793', 'ie', 'filter_by_color', 'Scagaire de réir datha', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12794', 'ie', 'home', 'Baile', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12795', 'ie', 'newest', 'Is nua', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12796', 'ie', 'oldest', 'Is sine', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12797', 'ie', 'price_low_to_high', 'Praghas íseal go hard', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12798', 'ie', 'price_high_to_low', 'Praghas ard go híseal', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12799', 'ie', 'brands', 'Brandaí', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12800', 'ie', 'all_brands', 'Gach Brand', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12801', 'ie', 'all_sellers', 'Gach Díoltóir', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12802', 'ie', 'inhouse_product', 'Táirge intí', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12803', 'ie', 'message_seller', 'Díoltóir Teachtaireachta', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12804', 'ie', 'price', 'Praghas', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12805', 'ie', 'discount_price', 'Praghas Lascaine', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12806', 'ie', 'color', 'Dath', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12807', 'ie', 'quantity', 'Cainníocht', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12808', 'ie', 'available', 'ar fáil', '2021-02-09 13:04:01', '2021-02-09 13:04:01'),
('12809', 'ie', 'total_price', 'Praghas iomlán', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12810', 'ie', 'out_of_stock', 'As stoc', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12811', 'ie', 'refund', 'Aisíocaíocht', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12812', 'ie', 'share', 'Comhroinn', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12813', 'ie', 'sold_by', 'Díolta ag', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12814', 'ie', 'customer_reviews', 'athbhreithnithe ar chustaiméirí', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12815', 'ie', 'top_selling_products', 'Táirgí Díol Barr', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12816', 'ie', 'description', 'Cur síos', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12817', 'ie', 'video', 'Físeán', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12818', 'ie', 'reviews', 'Léirmheasanna', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12819', 'ie', 'download', 'Íoslódáil', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12820', 'ie', 'there_have_been_no_reviews_for_this_product_yet', 'Ní dhearnadh aon athbhreithnithe ar an táirge seo go fóill.', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12821', 'ie', 'related_products', 'Táirgí gaolmhara', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12822', 'ie', 'any_query_about_this_product', 'Aon cheist faoin táirge seo', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12823', 'ie', 'product_name', 'Ainm Táirge', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12824', 'ie', 'your_question', 'Do cheist', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12825', 'ie', 'send', 'Seol', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12826', 'ie', 'use_country_code_before_number', 'Úsáid cód tíre roimh an uimhir', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12827', 'ie', 'remember_me', 'Cuimhnigh Mise', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12828', 'ie', 'dont_have_an_account', 'Nach bhfuil cuntas agat?', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12829', 'ie', 'register_now', 'Cláraigh anois', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12830', 'ie', 'or_login_with', 'Nó Logáil Isteach Le', '2021-02-09 13:04:01', '2021-09-20 12:59:45'),
('12831', 'ie', 'oops', 'oops ..', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12832', 'ie', 'this_item_is_out_of_stock', 'Tá an t-earra seo as stoc!', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12833', 'ie', 'back_to_shopping', 'Ar ais ag siopadóireacht', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12834', 'ie', 'login_to_your_account', 'Logáil isteach i do chuntas.', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12835', 'ie', 'purchase_history', 'Stair Ceannaigh', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12836', 'ie', 'new', 'Nua', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12837', 'ie', 'downloads', 'Íoslódálacha', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12838', 'ie', 'sent_refund_request', 'Iarratas ar Aisíocaíocht Seolta', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12839', 'ie', 'product_bulk_upload', 'Uaslódáil Bulc Táirgí', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12840', 'ie', 'orders', 'Orduithe', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12841', 'ie', 'recieved_refund_request', 'Iarratas ar Aisíocaíocht Faighte', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12842', 'ie', 'shop_setting', 'Suíomh Siopa', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12843', 'ie', 'payment_history', 'Stair Íocaíochta', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12844', 'ie', 'money_withdraw', 'Aistarraingt Airgid', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12845', 'ie', 'conversations', 'Comhráite', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12846', 'ie', 'my_wallet', 'Mo Sparán', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12847', 'ie', 'earning_points', 'Pointí Tuilleamh', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12848', 'ie', 'support_ticket', 'Ticéad Tacaíochta', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12849', 'ie', 'manage_profile', 'Bainistigh Próifíl', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12850', 'ie', 'sold_amount', 'Méid Díolta', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12851', 'ie', 'your_sold_amount_current_month', 'Do mhéid díolta (an mhí reatha)', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12852', 'ie', 'total_sold', 'Iomlán Díolta', '2021-02-09 13:04:02', '2021-09-20 12:59:45'),
('12853', 'ie', 'last_month_sold', 'An mhí seo caite a díoladh', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12854', 'ie', 'total_sale', 'Díol iomlán', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12855', 'ie', 'total_earnings', 'Tuilleamh iomlán', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12856', 'ie', 'successful_orders', 'Orduithe rathúla', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12857', 'ie', 'total_orders', 'Orduithe iomlána', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12858', 'ie', 'pending_orders', 'Orduithe ar feitheamh', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12859', 'ie', 'cancelled_orders', 'Orduithe curtha ar ceal', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12860', 'ie', 'product', 'Táirge', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12861', 'ie', 'purchased_package', 'Pacáiste Ceannaithe', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12862', 'ie', 'package_not_found', 'Pacáiste Gan Aimsiú', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12863', 'ie', 'upgrade_package', 'Pacáiste Uasghrádaithe', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12864', 'ie', 'shop', 'Siopa', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12865', 'ie', 'manage__organize_your_shop', 'Bainistigh agus eagraigh do shiopa', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12866', 'ie', 'go_to_setting', 'Téigh go suíomh', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12867', 'ie', 'payment', 'Íocaíocht', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12868', 'ie', 'configure_your_payment_method', 'Cumraigh do mhodh íocaíochta', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12869', 'ie', 'my_panel', 'Mo Phainéal', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12870', 'ie', 'item_has_been_added_to_wishlist', 'Tá mír curtha leis an liosta mian', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12871', 'ie', 'my_points', 'Mo Phointí', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12872', 'ie', '_points', 'Pointí', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12873', 'ie', 'wallet_money', 'Airgead Sparán', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12874', 'ie', 'exchange_rate', 'Ráta malairte', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12875', 'ie', 'point_earning_history', 'Stair Tuilleamh Pointe', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12876', 'ie', 'date', 'Dáta', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12877', 'ie', 'points', 'Pointí', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12878', 'ie', 'converted', 'Tiontaithe', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12879', 'ie', 'action', 'Gníomh', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12880', 'ie', 'no_history_found', 'Níor aimsíodh aon stair.', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12881', 'ie', 'convert_has_been_done_successfully_check_your_wallets', 'Tá tiontú déanta go rathúil Seiceáil do Sparán', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12882', 'ie', 'something_went_wrong', 'Chuaigh rud eigin mícheart', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12883', 'ie', 'remaining_uploads', 'Uaslódáil atá fágtha', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12884', 'ie', 'no_package_found', 'Níor aimsíodh aon phacáiste', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12885', 'ie', 'search_product', 'Cuardaigh táirge', '2021-02-09 13:04:02', '2021-09-20 12:59:46'),
('12886', 'ie', 'name', 'Ainm', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12887', 'ie', 'current_qty', 'Qty Reatha', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12888', 'ie', 'base_price', 'Bunphraghas', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12889', 'ie', 'published', 'Foilsithe', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12890', 'ie', 'featured', 'Réadmhaoin', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12891', 'ie', 'options', 'Roghanna', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12892', 'ie', 'edit', 'Cuir in Eagar', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12893', 'ie', 'duplicate', 'Dúblach', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12894', 'ie', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Íoslódáil an comhad cnámharlaigh agus líon isteach é le sonraí.', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12895', 'ie', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Is féidir leat an comhad samplach a íoslódáil chun tuiscint a fháil ar an gcaoi a gcaithfear na sonraí a líonadh.', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12896', 'ie', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Nuair a bheidh an comhad cnámharlaigh íoslódáilte agus líonta agat, uaslódáil é san fhoirm thíos agus cuir isteach é.', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12897', 'ie', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Tar éis duit táirgí a uaslódáil ní mór duit iad a chur in eagar agus íomhánna agus roghanna táirgí a shocrú.', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12898', 'ie', 'download_csv', 'Íoslódáil CSV', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12899', 'ie', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Ba chóir go mbeadh Catagóir, Fo-chatagóir, Fo-chatagóir agus Branda in áiseanna uimhriúla.', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12900', 'ie', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Is féidir leat an pdf a íoslódáil chun Catagóir, Fo-chatagóir, Fo-chatagóir agus id Branda a fháil.', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12901', 'ie', 'download_category', 'Íoslódáil Catagóir', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12902', 'ie', 'download_sub_category', 'Íoslódáil Fo-chatagóir', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12903', 'ie', 'download_sub_sub_category', 'Íoslódáil Fo-chatagóir', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12904', 'ie', 'download_brand', 'Íoslódáil Branda', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12905', 'ie', 'upload_csv_file', 'Uaslódáil Comhad CSV', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12906', 'ie', 'csv', 'CSV', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12907', 'ie', 'choose_csv_file', 'Roghnaigh Comhad CSV', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12908', 'ie', 'upload', 'Uaslódáil', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12909', 'ie', 'add_new_digital_product', 'Cuir Táirge Digiteach Nua leis', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12910', 'ie', 'available_status', 'Stádas ar Fáil', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12911', 'ie', 'admin_status', 'Stádas Riaracháin', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12912', 'ie', 'pending_balance', 'Iarmhéid ar feitheamh', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12913', 'ie', 'send_withdraw_request', 'Seol Iarratas Aistarraingthe', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12914', 'ie', 'withdraw_request_history', 'Stair Iarraidh a Tharraingt Siar', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12915', 'ie', 'amount', 'Méid', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12916', 'ie', 'status', 'Stádas', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12917', 'ie', 'message', 'Teachtaireacht', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12918', 'ie', 'send_a_withdraw_request', 'Seol Iarratas Aistarraingthe', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12919', 'ie', 'basic_info', 'Eolas Bunúsach', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12920', 'ie', 'your_phone', 'Do ghuthán', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12921', 'ie', 'photo', 'grianghraf', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12922', 'ie', 'browse', 'Brabhsáil', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12923', 'ie', 'your_password', 'Do Pasfhocal', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12924', 'ie', 'new_password', 'Focal Faire Nua', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12925', 'ie', 'confirm_password', 'Deimhnigh Pasfhocal', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12926', 'ie', 'add_new_address', 'Cuir Seoladh Nua leis', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12927', 'ie', 'payment_setting', 'Socrú Íocaíochta', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12928', 'ie', 'cash_payment', 'Íocaíocht Airgid Thirim', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12929', 'ie', 'bank_payment', 'Íocaíocht Bainc', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12930', 'ie', 'bank_name', 'Ainm Bainc', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12931', 'ie', 'bank_account_name', 'Ainm an Chuntais Bhainc', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12932', 'ie', 'bank_account_number', 'Uimhir Chuntais Bhainc', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12933', 'ie', 'bank_routing_number', 'Uimhir Ródúcháin Bainc', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12934', 'ie', 'update_profile', 'Próifíl Nuashonraithe', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12935', 'ie', 'change_your_email', 'Athraigh do r-phost', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12936', 'ie', 'your_email', 'Do r-phost', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12937', 'ie', 'sending_email', 'Ríomhphost a sheoladh ...', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12938', 'ie', 'verify', 'Fíoraigh', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12939', 'ie', 'update_email', 'Ríomhphost a Nuashonrú', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12940', 'ie', 'new_address', 'Seoladh Nua', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12941', 'ie', 'your_address', 'Do sheoladh', '2021-02-09 13:04:03', '2021-09-20 12:59:46'),
('12942', 'ie', 'country', 'Tír', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12943', 'ie', 'select_your_country', 'Roghnaigh do thír féin', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12944', 'ie', 'city', 'Cathair', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12945', 'ie', 'your_city', 'Do Chathair', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12946', 'ie', 'your_postal_code', 'Do Chód Poist', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12947', 'ie', '880', '+880', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12948', 'ie', 'save', 'Sábháil', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12949', 'ie', 'received_refund_request', 'Iarratas ar Aisíocaíocht Faighte', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12950', 'ie', 'delete_confirmation', 'Scrios Deimhniú', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12951', 'ie', 'are_you_sure_to_delete_this', 'An bhfuil tú cinnte é seo a scriosadh?', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12952', 'ie', 'premium_packages_for_sellers', 'Pacáistí Préimhe do Dhíoltóirí', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12953', 'ie', 'product_upload', 'Uaslódáil Táirgí', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12954', 'ie', 'digital_product_upload', 'Uaslódáil Táirgí Digiteacha', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12955', 'ie', 'purchase_package', 'Pacáiste Ceannaigh', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12956', 'ie', 'select_payment_type', 'Roghnaigh Cineál Íocaíochta', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12957', 'ie', 'payment_type', 'Cineál Íocaíochta', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12958', 'ie', 'select_one', 'Pioc ceann', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12959', 'ie', 'online_payment', 'Íocaíocht ar líne', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12960', 'ie', 'offline_payment', 'Íocaíocht as líne', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12961', 'ie', 'purchase_your_package', 'Ceannaigh Do Phacáiste', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12962', 'ie', 'paypal', 'Paypal', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12963', 'ie', 'stripe', 'Stripe', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12964', 'ie', 'sslcommerz', 'sslcommerz', '2021-02-09 13:04:04', '2021-02-09 13:04:04'),
('12965', 'ie', 'confirm', 'Deimhnigh', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12966', 'ie', 'offline_package_payment', 'Íocaíocht Pacáiste As Líne', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12967', 'ie', 'transaction_id', 'Aitheantas Idirbheart', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12968', 'ie', 'choose_image', 'Roghnaigh íomhá', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12969', 'ie', 'code', 'Cód', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12970', 'ie', 'delivery_status', 'Stádas Seachadta', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12971', 'ie', 'payment_status', 'Stádas Íocaíochta', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12972', 'ie', 'paid', 'Íoctha', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12973', 'ie', 'order_details', 'Sonraí Ordaithe', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12974', 'ie', 'download_invoice', 'Íoslódáil Sonrasc', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12975', 'ie', 'unpaid', 'Gan phá', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12976', 'ie', 'order_placed', 'Ordú curtha', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12977', 'ie', 'confirmed', 'Deimhnithe', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12978', 'ie', 'on_delivery', 'Ar sheachadadh', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12979', 'ie', 'delivered', 'Seachadadh', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12980', 'ie', 'order_summary', 'Achoimre ar an Ordú', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12981', 'ie', 'order_code', 'Cód Ordaithe', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12982', 'ie', 'customer', 'Custaiméir', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12983', 'ie', 'total_order_amount', 'Méid iomlán an ordaithe', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12984', 'ie', 'shipping_metdod', 'Metdod loingseoireachta', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12985', 'ie', 'flat_shipping_rate', 'Ráta loingseoireachta comhréidh', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12986', 'ie', 'payment_metdod', 'Metdod íocaíochta', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12987', 'ie', 'variation', 'Athrú', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12988', 'ie', 'delivery_type', 'Cineál Seachadta', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12989', 'ie', 'home_delivery', 'Seachadadh Baile', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12990', 'ie', 'order_ammount', 'Ordú Méid', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12991', 'ie', 'subtotal', 'Fo-iomlán', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12992', 'ie', 'shipping', 'Á sheoladh', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12993', 'ie', 'coupon_discount', 'Lascaine Cúpón', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12994', 'ie', 'na', 'N / A', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12995', 'ie', 'in_stock', 'I stoc', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12996', 'ie', 'buy_now', 'Ceannaigh Anois', '2021-02-09 13:04:04', '2021-09-20 12:59:46'),
('12997', 'ie', 'item_added_to_your_cart', 'Mír curtha le do cart!', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('12998', 'ie', 'proceed_to_checkout', 'Dul ar aghaidh chun Seiceáil', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('12999', 'ie', 'cart_items', 'Míreanna Cart', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13000', 'ie', '1_my_cart', '1. Mo Chairt', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13001', 'ie', 'view_cart', 'Féach ar chairt', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13002', 'ie', '2_shipping_info', '2. Eolas loingseoireachta', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13003', 'ie', 'checkout', 'Seiceáil', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13004', 'ie', '3_delivery_info', '3. Eolas seachadta', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13005', 'ie', '4_payment', '4. Íocaíocht', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13006', 'ie', '5_confirmation', '5. Daingniú', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13007', 'ie', 'remove', 'Bain', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13008', 'ie', 'return_to_shop', 'Fill ar ais ar an siopa', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13009', 'ie', 'continue_to_shipping', 'Lean ar aghaidh le Loingseoireacht', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13010', 'ie', 'or', 'Nó', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13011', 'ie', 'guest_checkout', 'Seiceáil Aoi', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13012', 'ie', 'continue_to_delivery_info', 'Lean ar aghaidh le Faisnéis Seachadta', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13013', 'ie', 'postal_code', 'Cód Poist', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13014', 'ie', 'choose_delivery_type', 'Roghnaigh Cineál Seachadta', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13015', 'ie', 'local_pickup', 'Piocadh Áitiúil', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13016', 'ie', 'select_your_nearest_pickup_point', 'Roghnaigh an pointe pioctha is gaire duit', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13017', 'ie', 'continue_to_payment', 'Lean ar aghaidh leis an Íocaíocht', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13018', 'ie', 'select_a_payment_option', 'Roghnaigh rogha íocaíochta', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13019', 'ie', 'razorpay', 'Razorpay', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13020', 'ie', 'paystack', 'Stác Pá', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13021', 'ie', 'voguepay', 'VoguePay', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13022', 'ie', 'payhere', 'payhere', '2021-02-09 13:04:05', '2021-02-09 13:04:05'),
('13023', 'ie', 'ngenius', 'ngenius', '2021-02-09 13:04:05', '2021-02-09 13:04:05'),
('13024', 'ie', 'paytm', 'Paytm', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13025', 'ie', 'cash_on_delivery', 'Íoc ar sheachadadh', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13026', 'ie', 'your_wallet_balance_', 'Iarmhéid do sparán:', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13027', 'ie', 'insufficient_balance', 'Cothromaíocht neamhleor', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13028', 'ie', 'i_agree_to_the', 'Aontaím leis an', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13029', 'ie', 'complete_order', 'Ordú Comhlánaithe', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13030', 'ie', 'summary', 'Achoimre', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13031', 'ie', 'items', 'Míreanna', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13032', 'ie', 'total_club_point', 'Pointe Iomlán an Chlub', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13033', 'ie', 'total_shipping', 'Loingseoireacht Iomlán', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13034', 'ie', 'have_coupon_code_enter_here', 'An bhfuil cód cúpón agat? Iontráil anseo', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13035', 'ie', 'apply', 'Cuir iarratas isteach', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13036', 'ie', 'you_need_to_agree_with_our_policies', 'Caithfidh tú aontú lenár bpolasaithe', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13037', 'ie', 'forgot_password', 'Dearmad ar pasfhocal', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13038', 'ie', 'seo_setting', 'Suíomh SEO', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13039', 'ie', 'system_update', 'Nuashonrú Córais', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13040', 'ie', 'add_new_payment_method', 'Cuir Modh Íocaíochta Nua leis', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13041', 'ie', 'manual_payment_method', 'Modh Íocaíochta Láimhe', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13042', 'ie', 'heading', 'Ceannteideal', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13043', 'ie', 'logo', 'Lógó', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13044', 'ie', 'manual_payment_information', 'Faisnéis Íocaíochta Láimhe', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13045', 'ie', 'type', 'Cineál', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13046', 'ie', 'custom_payment', 'Íocaíocht Chustaim', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13047', 'ie', 'check_payment', 'Seiceáil Íocaíocht', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13048', 'ie', 'checkout_thumbnail', 'Mionsamhail Seiceáil', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13049', 'ie', 'payment_instruction', 'Treoir Íocaíochta', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13050', 'ie', 'bank_information', 'Faisnéis Bainc', '2021-02-09 13:04:05', '2021-09-20 12:59:46'),
('13051', 'ie', 'select_file', 'Roghnaigh Comhad', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13052', 'ie', 'upload_new', 'Uaslódáil Nua', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13053', 'ie', 'sort_by_newest', 'Sórtáil de réir is nua', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13054', 'ie', 'sort_by_oldest', 'Sórtáil de réir an duine is sine', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13055', 'ie', 'sort_by_smallest', 'Sórtáil de réir an méid is lú', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13056', 'ie', 'sort_by_largest', 'Sórtáil de réir is mó', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13057', 'ie', 'selected_only', 'Roghnaithe Amháin', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13058', 'ie', 'no_files_found', 'Níor aimsíodh aon chomhaid', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13059', 'ie', '0_file_selected', '0 Comhad roghnaithe', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13060', 'ie', 'clear', 'Glan', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13061', 'ie', 'prev', 'Roimhe seo', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13062', 'ie', 'next', 'Ar Aghaidh', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13063', 'ie', 'add_files', 'Cuir Comhaid leis', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13064', 'ie', 'method_has_been_inserted_successfully', 'Cuireadh an modh isteach go rathúil', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13065', 'ie', 'order_date', 'Dáta Ordaithe', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13066', 'ie', 'bill_to', 'Bille', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13067', 'ie', 'sub_total', 'Fo-Iomlán', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13068', 'ie', 'total_tax', 'Cáin Iomlán', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13069', 'ie', 'grand_total', 'Iomlán mhór', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13070', 'ie', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Cuireadh d’ordú go rathúil. Cuir isteach faisnéis íocaíochta ó stair an cheannaigh le do thoil', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13071', 'ie', 'thank_you_for_your_order', 'Go raibh maith agat as d\'Ordú!', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13072', 'ie', 'order_code', 'Cód Ordaithe:', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13073', 'ie', 'a_copy_or_your_order_summary_has_been_sent_to', 'Tá cóip nó achoimre d’ordú seolta chuig', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13074', 'ie', 'make_payment', 'Déan Íocaíocht', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13075', 'ie', 'payment_screenshot', 'Scáileán íocaíochta', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13076', 'ie', 'paypal_credential', 'Dintiúr Paypal', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13077', 'ie', 'paypal_client_id', 'Aitheantas Cliant Paypal', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13078', 'ie', 'paypal_client_secret', 'Rúnda Cliant Paypal', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13079', 'ie', 'paypal_sandbox_mode', 'Mód Bosca Gaineamh Paypal', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13080', 'ie', 'sslcommerz_credential', 'Dintiúr Sslcommerz', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13081', 'ie', 'sslcz_store_id', 'Sslcz Store Id', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13082', 'ie', 'sslcz_store_password', 'Pasfhocal stór Sslcz', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13083', 'ie', 'sslcommerz_sandbox_mode', 'Mód Bosca Gaineamh Sslcommerz', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13084', 'ie', 'stripe_credential', 'Dintiúr Stripe', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13085', 'ie', 'stripe_key', 'EOCHAIR STRIPE', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13086', 'ie', 'stripe_secret', 'RÚNAÍ STRIPE', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13087', 'ie', 'razorpay_credential', 'Dintiúr RazorPay', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13088', 'ie', 'razor_key', 'EOCHAIR RAZOR', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13089', 'ie', 'razor_secret', 'RÚNAÍ RAZOR', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13090', 'ie', 'instamojo_credential', 'Dintiúr Instamojo', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13091', 'ie', 'api_key', 'EOCHAIR API', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13092', 'ie', 'im_api_key', 'EOCHAIR IM API', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13093', 'ie', 'auth_token', 'BREITHIÚNAS TOKEN', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13094', 'ie', 'im_auth_token', 'IM AUTH TOKEN', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13095', 'ie', 'instamojo_sandbox_mode', 'Mód Bosca Gaineamh Instamojo', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13096', 'ie', 'paystack_credential', 'Dintiúr PayStack', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13097', 'ie', 'public_key', 'EOCHAIR PHOIBLÍ', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13098', 'ie', 'secret_key', 'EOCHAIR-RÚNAÍ', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13099', 'ie', 'merchant_email', 'EMAIL MERCHANT', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13100', 'ie', 'voguepay_credential', 'Dintiúr VoguePay', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13101', 'ie', 'merchant_id', 'ID MERCHANT', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13102', 'ie', 'sandbox_mode', 'Mód Bosca Gaineamh', '2021-02-09 13:04:06', '2021-09-20 12:59:46'),
('13103', 'ie', 'payhere_credential', 'Dintiúr Payhere', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13104', 'ie', 'payhere_merchant_id', 'PAYHERE MERCHANT ID', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13105', 'ie', 'payhere_secret', 'RÚNAÍ ÍMAT', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13106', 'ie', 'payhere_currency', 'CURRENCY PAYHERE', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13107', 'ie', 'payhere_sandbox_mode', 'Mód Bosca Gaineamh Payhere', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13108', 'ie', 'ngenius_credential', 'Dintiúr Ngenius', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13109', 'ie', 'ngenius_outlet_id', 'ID NGENIUS OUTLET', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13110', 'ie', 'ngenius_api_key', 'EOCHAIR API NGENIUS', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13111', 'ie', 'ngenius_currency', 'CURRENCY NGENIUS', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13112', 'ie', 'mpesa_credential', 'Dintiúr Mpesa', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13113', 'ie', 'mpesa_consumer_key', 'EOCHAIR TOMHALTÓIR MPESA', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13114', 'ie', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13115', 'ie', 'mpesa_consumer_secret', 'RÚNAÍ TOMHALTÓIR MPESA', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13116', 'ie', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13117', 'ie', 'mpesa_short_code', 'CÓD GORM MPESA', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13118', 'ie', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13119', 'ie', 'mpesa_sandbox_activation', 'GNÍOMHAÍOCHT MPESA SANDBOX', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13120', 'ie', 'flutterwave_credential', 'Dintiúr Flutterwave', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13121', 'ie', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13122', 'ie', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13123', 'ie', 'rave_title', 'RAVE_TITLE', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13124', 'ie', 'stagin_activation', 'GNÍOMHAÍOCHT STAGIN', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13125', 'ie', 'all_product', 'Gach Táirge', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13126', 'ie', 'sort_by', 'Sórtáil de réir', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13127', 'ie', 'rating_high__low', 'Rátáil (Ard> Íseal)', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13128', 'ie', 'rating_low__high', 'Rátáil (Íseal> Ard)', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13129', 'ie', 'num_of_sale_high__low', 'Líon an Díolacháin (Ard> Íseal)', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13130', 'ie', 'num_of_sale_low__high', 'Líon an Díolacháin (Íseal> Ard)', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13131', 'ie', 'base_price_high__low', 'Bunphraghas (Ard> Íseal)', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13132', 'ie', 'base_price_low__high', 'Bunphraghas (Íseal> Ard)', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13133', 'ie', 'type__enter', 'Cineál & Iontráil', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13134', 'ie', 'added_by', 'Arna chur leis', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13135', 'ie', 'num_of_sale', 'Líon Díola', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13136', 'ie', 'total_stock', 'Stoc Iomlán', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13137', 'ie', 'todays_deal', 'Déileáil an Lae Inniu', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13138', 'ie', 'rating', 'Rátáil', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13139', 'ie', 'times', 'uaireanta', '2021-02-09 13:04:07', '2021-02-09 13:04:07'),
('13140', 'ie', 'add_nerw_product', 'Cuir Táirge Nerw leis', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13141', 'ie', 'product_information', 'Faisnéis faoi Tháirgí', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13142', 'ie', 'unit', 'Aonad', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13143', 'ie', 'unit_eg_kg_pc_etc', 'Aonad (m.sh. KG, ríomhaire srl)', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13144', 'ie', 'minimum_qty', 'Qty Íosta', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13145', 'ie', 'tags', 'Clibeanna', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13146', 'ie', 'type_and_hit_enter_to_add_a_tag', 'Clóscríobh agus bhuail Iontráil chun clib a chur leis', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13147', 'ie', 'barcode', 'Barrachód', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13148', 'ie', 'refundable', 'In-aisíoctha', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13149', 'ie', 'product_images', 'Íomhánna Táirgí', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13150', 'ie', 'gallery_images', 'Íomhánna Gailearaí', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13151', 'ie', 'todays_deal_updated_successfully', 'Nuashonraíodh Déileáil an lae inniu go rathúil', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13152', 'ie', 'published_products_updated_successfully', 'Nuashonraíodh táirgí foilsithe go rathúil', '2021-02-09 13:04:07', '2021-09-20 12:59:46'),
('13153', 'ie', 'thumbnail_image', 'Íomhá Mionsamhail', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13154', 'ie', 'featured_products_updated_successfully', 'Nuashonraíodh táirgí mór le rá go rathúil', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13155', 'ie', 'product_videos', 'Físeáin Táirgí', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13156', 'ie', 'video_provider', 'Soláthraí Físe', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13157', 'ie', 'youtube', 'Youtube', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13158', 'ie', 'dailymotion', 'Dailymotion', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13159', 'ie', 'vimeo', 'Vimeo', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13160', 'ie', 'video_link', 'Nasc Físe', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13161', 'ie', 'product_variation', 'Athrú Táirgí', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13162', 'ie', 'colors', 'Dathanna', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13163', 'ie', 'attributes', 'Tréithe', '2021-02-09 13:04:08', '2021-09-20 12:59:46'),
('13164', 'ie', 'choose_attributes', 'Roghnaigh Tréithe', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13165', 'ie', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Roghnaigh tréithe an táirge seo agus ansin luachanna ionchuir gach tréithe', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13166', 'ie', 'product_price__stock', 'Praghas táirge + stoc', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13167', 'ie', 'unit_price', 'Praghas aonaid', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13168', 'ie', 'purchase_price', 'Praghas ceannaigh', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13169', 'ie', 'flat', 'Maol', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13170', 'ie', 'percent', 'Céatadán', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13171', 'ie', 'discount', 'Lascaine', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13172', 'ie', 'product_description', 'Cur síos ar an Táirge', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13173', 'ie', 'product_shipping_cost', 'Costas Loingseoireachta Táirgí', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13174', 'ie', 'free_shipping', 'Loingeas SAOR IN AISCE', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13175', 'ie', 'flat_rate', 'Ráta comhréidh', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13176', 'ie', 'shipping_cost', 'Costas loingseoireachta', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13177', 'ie', 'pdf_specification', 'Sonraíocht PDF', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13178', 'ie', 'seo_meta_tags', 'Clibeanna Meta Sinsearach', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13179', 'ie', 'meta_title', 'Teideal Meiteashonraí', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13180', 'ie', 'meta_image', 'Íomhá meta', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13181', 'ie', 'choice_title', 'Teideal Rogha', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13182', 'ie', 'enter_choice_values', 'Iontráil luachanna rogha', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13183', 'ie', 'all_categories', 'Gach catagóir', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13184', 'ie', 'add_new_category', 'Cuir catagóir Nua leis', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13185', 'ie', 'type_name__enter', 'Cineál ainm & Iontráil', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13186', 'ie', 'banner', 'Meirge', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13187', 'ie', 'commission', 'Coimisiún', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13188', 'ie', 'icon', 'deilbhín', '2021-02-09 13:04:08', '2021-02-09 13:04:08'),
('13189', 'ie', 'featured_categories_updated_successfully', 'Nuashonraíodh na catagóirí mór le rá go rathúil', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13190', 'ie', 'hot', 'Te', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13191', 'ie', 'filter_by_payment_status', 'Scagaire de réir Stádas Íocaíochta', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13192', 'ie', 'unpaid', 'Neamhíoctha', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13193', 'ie', 'filter_by_deliver_status', 'Scagaire de réir Stádas Seachadta', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13194', 'ie', 'pending', 'Ar feitheamh', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13195', 'ie', 'type_order_code__hit_enter', 'Cineál Ordú cód & bhuail Iontráil', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13196', 'ie', 'num_of_products', 'Num. Táirgí', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13197', 'ie', 'walk_in_customer', 'Custaiméir Siúil Isteach', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13198', 'ie', 'qty', 'QTY', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13199', 'ie', 'without_shipping_charge', 'Gan Muirear Loingis', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13200', 'ie', 'with_shipping_charge', 'Le Muirear Loingis', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13201', 'ie', 'pay_with_cash', 'Íoc le hAirgead Tirim', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13202', 'ie', 'shipping_address', 'Seoladh Loingseoireacht', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13203', 'ie', 'close', 'Dún', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13204', 'ie', 'select_country', 'Roghnaigh tír', '2021-02-09 13:04:08', '2021-09-20 12:59:47'),
('13205', 'ie', 'order_confirmation', 'Daingniú Ordaithe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13206', 'ie', 'are_you_sure_to_confirm_this_order', 'An bhfuil tú cinnte an t-ordú seo a dhearbhú?', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13207', 'ie', 'comfirm_order', 'Ordú Daingnithe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13208', 'ie', 'personal_info', 'Eolas Pearsanta', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13209', 'ie', 'repeat_password', 'Athscríobh an Pasfhocal', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13210', 'ie', 'shop_name', 'Ainm Siopa', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13211', 'ie', 'register_your_shop', 'Cláraigh Do Siopa', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13212', 'ie', 'affiliate_informations', 'Faisnéis Affiliate', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13213', 'ie', 'affiliate', 'Cleamhnaithe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13214', 'ie', 'user_info', 'Faisnéis Úsáideora', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13215', 'ie', 'installed_addon', 'Suiteáilte Addon', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13216', 'ie', 'available_addon', 'Addon ar fáil', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13217', 'ie', 'install_new_addon', 'Suiteáil Addon Nua', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13218', 'ie', 'version', 'Leagan', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13219', 'ie', 'activated', 'Gníomhachtaithe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13220', 'ie', 'deactivated', 'Díghníomhachtaithe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13221', 'ie', 'activate_otp', 'Gníomhachtú OTP', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13222', 'ie', 'otp_will_be_used_for', 'Úsáidfear OTP', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13223', 'ie', 'settings_updated_successfully', 'Nuashonraíodh na socruithe go rathúil', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13224', 'ie', 'product_owner', 'Úinéir Táirgí', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13225', 'ie', 'point', 'Pointe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13226', 'ie', 'set_point_for_product_within_a_range', 'Pointe Socraithe don Táirge Laistigh de Raon', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13227', 'ie', 'set_point_for_multiple_products', 'Pointe Socraithe do tháirgí iolracha', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13228', 'ie', 'min_price', 'Praghas Min', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13229', 'ie', 'max_price', 'Max Price', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13230', 'ie', 'set_point_for_all_products', 'Pointe Socraithe do na Táirgí go léir', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13231', 'ie', 'set_point_for_', 'Pointe Socraithe Do.', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13232', 'ie', 'convert_status', 'Stádas Tiontaigh', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13233', 'ie', 'earned_at', 'Thuilltear At', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13234', 'ie', 'seller_based_selling_report', 'Tuarascáil Díol Bunaithe ar Dhíoltóirí', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13235', 'ie', 'sort_by_verificarion_status', 'Sórtáil de réir stádas fíoraithe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13236', 'ie', 'approved', 'Ceadaithe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13237', 'ie', 'non_approved', 'Neamhcheadaithe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13238', 'ie', 'filter', 'Scagaire', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13239', 'ie', 'seller_name', 'Ainm an Díoltóra', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13240', 'ie', 'number_of_product_sale', 'Líon na nDíolachán Táirgí', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13241', 'ie', 'order_amount', 'Méid Ordaithe', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13242', 'ie', 'facebook_chat_setting', 'Socrú Comhrá Facebook', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13243', 'ie', 'facebook_page_id', 'Aitheantas Leathanach Facebook', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13244', 'ie', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Bí cúramach le do thoil agus tú ag cumrú comhrá Facebook. Maidir le cumraíocht mhícheart ní bhfaighidh tú deilbhín teachtaire ar do shuíomh deireadh úsáideora.', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13245', 'ie', 'login_into_your_facebook_page', 'Logáil isteach i do leathanach facebook', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13246', 'ie', 'find_the_about_option_of_your_facebook_page', 'Faigh an rogha About de do leathanach facebook', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13247', 'ie', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'Ag bun an leathanaigh, is féidir leat an \\ “ID Leathanach Facebook \\” a fháil', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13248', 'ie', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Téigh go Socruithe do leathanaigh agus faigh an rogha \\ \"Réamhtheachtaireachtaí \\\"', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13249', 'ie', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Scrollaigh síos an leathanach sin agus gheobhaidh tú \\ \"fearann ​​liostaithe bán \\\"', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13250', 'ie', 'set_your_website_domain_name', 'Socraigh ainm fearainn do shuíomh Gréasáin', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13251', 'ie', 'google_recaptcha_setting', 'Socrú reCAPTCHA Google', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13252', 'ie', 'site_key', 'Suíomh EOCHAIR', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13253', 'ie', 'select_shipping_method', 'Roghnaigh Modh Loingseoireachta', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13254', 'ie', 'product_wise_shipping_cost', 'Costas Loingseoireachta Wise Táirgí', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13255', 'ie', 'flat_rate_shipping_cost', 'Costas Loingseoireachta Ráta Comhréidh', '2021-02-09 13:04:09', '2021-09-20 12:59:47'),
('13256', 'ie', 'seller_wise_flat_shipping_cost', 'Costas Loingseoireachta Cliste Maith', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13257', 'ie', 'note', 'Nóta', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13258', 'ie', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Loingseoireacht Shoiléir Táirgí Calaíocht costais: Ríomhtar costas loingseoireachta trí gach costas seolta táirge a chur leis', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13259', 'ie', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Loingseoireacht Ráta Comhréidh Calaíocht costais: Cé mhéad táirge a cheannaíonn custaiméir, is cuma. Tá costas loingseoireachta socraithe', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13260', 'ie', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Loingseoireacht Shoiléir Wise Maolú Costas: Ráta seasta do gach díoltóir. Má cheannaíonn custaiméir 2 tháirge ó dhá chostas seolta díoltóra, ríomhtar é trí chostas seolta cothrom gach díoltóra a chur leis', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13261', 'ie', 'flat_rate_cost', 'Costas Ráta Comhréidh', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13262', 'ie', 'shipping_cost_for_admin_products', 'Costas Loingseoireachta do Tháirgí Riaracháin', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13263', 'ie', 'countries', 'Tíortha', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13264', 'ie', 'showhide', 'Taispeáin / Folaigh', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13265', 'ie', 'country_status_updated_successfully', 'Nuashonraíodh stádas tíre go rathúil', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13266', 'ie', 'all_subcategories', 'Gach Fochatagóir', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13267', 'ie', 'add_new_subcategory', 'Cuir Fochatagóir Nua leis', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13268', 'ie', 'subcategories', 'Fo-chatagóirí', '2021-02-09 13:04:10', '2021-09-20 12:59:47'),
('13269', 'ie', 'sub_category_information', 'Faisnéis faoin bhFochatagóir', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13270', 'ie', 'slug', 'Seilide', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13271', 'ie', 'all_sub_subcategories', 'Gach Fo-chatagóir', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13272', 'ie', 'add_new_sub_subcategory', 'Cuir Fochatagóir Nua leis', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13273', 'ie', 'subsubcategories', 'Fo-fho-chatagóirí', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13274', 'ie', 'make_this_default', 'Déan an Réamhshocrú seo', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13275', 'ie', 'shops', 'Siopaí', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13276', 'ie', 'women_clothing__fashion', 'Éadaí & Faisean na mBan', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13277', 'ie', 'cellphones__tabs', 'Fóin phóca & Cluaisíní', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13278', 'ie', 'welcome_to', 'Fáilte go', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13279', 'ie', 'create_a_new_account', 'Cruthaigh Cuntas Nua', '2021-02-09 13:05:00', '2021-09-20 12:59:47'),
('13280', 'ie', 'full_name', 'Ainm iomlán', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13281', 'ie', 'password', 'pasfhocal', '2021-02-09 13:05:01', '2021-02-09 13:05:01'),
('13282', 'ie', 'confrim_password', 'Pasfhocal Confrim', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13283', 'ie', 'i_agree_with_the', 'Aontaím leis an', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13284', 'ie', 'terms_and_conditions', 'Téarmaí agus Coinníollacha', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13285', 'ie', 'register', 'Cláraigh', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13286', 'ie', 'already_have_an_account', 'Cheana féin tá cuntas agat', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13287', 'ie', 'sign_up_with', 'Cláraigh le', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13288', 'ie', 'i_agree_with_the_terms_and_conditions', 'Aontaím leis na Téarmaí agus Coinníollacha', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13289', 'ie', 'all_role', 'Ról Uile', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13290', 'ie', 'add_new_role', 'Cuir Ról Nua leis', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13291', 'ie', 'roles', 'Róil', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13292', 'ie', 'add_new_staffs', 'Cuir Foirne Nua leis', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13293', 'ie', 'role', 'Ról', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13294', 'ie', 'frontend_website_name', 'Ainm Suíomh Gréasáin Frontend', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13295', 'ie', 'website_name', 'Ainm Suíomh Gréasáin', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13296', 'ie', 'site_motto', 'Mana an tSuímh', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13297', 'ie', 'best_ecommerce_website', 'Suíomh Gréasáin Ríomhthráchtála is Fearr', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13298', 'ie', 'site_icon', 'Deilbhín Láithreáin', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13299', 'ie', 'website_favicon_32x32_png', 'Fabhar an láithreáin ghréasáin. 32x32 .png', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13300', 'ie', 'website_base_color', 'Dath Bonn an Láithreáin Gréasáin', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13301', 'ie', 'hex_color_code', 'Cód Dath Heics', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13302', 'ie', 'website_base_hover_color', 'Suíomh Gréasáin Base Hover Colour', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13303', 'ie', 'update', 'Nuashonrú', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13304', 'ie', 'global_seo', 'Domhanda Seo', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13305', 'ie', 'meta_description', 'Tuairisc meta', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13306', 'ie', 'keywords', 'Keywords', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13307', 'ie', 'separate_with_coma', 'Ar leithligh le Bheirnicé', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13308', 'ie', 'website_pages', 'Leathanaigh Suíomh Gréasáin', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13309', 'ie', 'all_pages', 'Gach Leathanach', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13310', 'ie', 'add_new_page', 'Cuir Leathanach Nua leis', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13311', 'ie', 'url', 'URL', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13312', 'ie', 'actions', 'Caingne', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13313', 'ie', 'edit_page_information', 'Cuir Eolas Leathanach in Eagar', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13314', 'ie', 'page_content', 'Ábhar Leathanach', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13315', 'ie', 'title', 'Teideal', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13316', 'ie', 'link', 'Nasc', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13317', 'ie', 'use_character_number_hypen_only', 'Bain úsáid as carachtar, uimhir, hypen amháin', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13318', 'ie', 'add_content', 'Cuir Ábhar leis', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13319', 'ie', 'seo_fields', 'Seo Réimsí', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13320', 'ie', 'update_page', 'Leathanach Nuashonraithe', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13321', 'ie', 'default_language', 'Teanga Réamhshocraithe', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13322', 'ie', 'add_new_language', 'Cuir Teanga Nua leis', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13323', 'ie', 'rtl', 'RTL', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13324', 'ie', 'translation', 'Aistriúchán', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13325', 'ie', 'language_information', 'Eolas Teanga', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13326', 'ie', 'save_page', 'Sábháil Leathanach', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13327', 'ie', 'home_page_settings', 'Socruithe Leathanach Baile', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13328', 'ie', 'home_slider', 'Sleamhnán Baile', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13329', 'ie', 'photos__links', 'Grianghraif & Naisc', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13330', 'ie', 'add_new', 'Cuir Nua leis', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13331', 'ie', 'home_categories', 'Catagóirí Baile', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13332', 'ie', 'home_banner_1_max_3', 'Meirge Baile 1 (Uasmhéid 3)', '2021-02-09 13:05:01', '2021-09-20 12:59:47'),
('13333', 'ie', 'banner__links', 'Meirge & Naisc', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13334', 'ie', 'home_banner_2_max_3', 'Meirge Baile 2 (Uasmhéid 3)', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13335', 'ie', 'top_10', 'Na 10 barr', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13336', 'ie', 'top_categories_max_10', 'Na Catagóirí is Fearr (Uasmhéid 10)', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13337', 'ie', 'top_brands_max_10', 'Brandaí Barr (Uasmhéid 10)', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13338', 'ie', 'system_name', 'Ainm an Chórais', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13339', 'ie', 'system_logo__white', 'Lógó an Chórais - Bán', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13340', 'ie', 'choose_files', 'Roghnaigh Comhaid', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13341', 'ie', 'will_be_used_in_admin_panel_side_menu', 'Úsáidfear é i roghchlár taobh an phainéil riaracháin', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13342', 'ie', 'system_logo__black', 'Lógó an Chórais - Dubh', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13343', 'ie', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Úsáidfear é i mbarra barr an phainéil riaracháin ar leathanach logála isteach soghluaiste + Riaracháin', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13344', 'ie', 'system_timezone', 'Crios Ama an Chórais', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13345', 'ie', 'admin_login_page_background', 'Cúlra leathanach logála isteach riaracháin', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13346', 'ie', 'website_header', 'Ceanntásc Suíomh Gréasáin', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13347', 'ie', 'header_setting', 'Socrú Ceanntásca', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13348', 'ie', 'header_logo', 'Lógó Ceanntásc', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13349', 'ie', 'show_language_switcher', 'Taispeáin Switcher Teanga?', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13350', 'ie', 'show_currency_switcher', 'Taispeáin Switcher Airgeadra?', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13351', 'ie', 'enable_stikcy_header', 'Cumasaigh ceanntásc stikcy?', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13352', 'ie', 'website_footer', 'Buntásc Suíomh Gréasáin', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13353', 'ie', 'footer_widget', 'Giuirléid Buntásc', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13354', 'ie', 'about_widget', 'Maidir le Giuirléid', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13355', 'ie', 'footer_logo', 'Lógó Buntásc', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13356', 'ie', 'about_description', 'Maidir leis an gcur síos', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13357', 'ie', 'contact_info_widget', 'Déan teagmháil le Giuirléid Faisnéise', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13358', 'ie', 'footer_contact_address', 'Seoladh teagmhála buntásc', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13359', 'ie', 'footer_contact_phone', 'Fón teagmhála buntásc', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13360', 'ie', 'footer_contact_email', 'R-phost teagmhála buntásc', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13361', 'ie', 'link_widget_one', 'Nasc Giuirléid a hAon', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13362', 'ie', 'links', 'Naisc', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13363', 'ie', 'footer_bottom', 'Bun Buntásc', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13364', 'ie', 'copyright_widget_', 'Giuirléid Cóipchirt', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13365', 'ie', 'copyright_text', 'Téacs Cóipchirt', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13366', 'ie', 'social_link_widget_', 'Giuirléid Nasc Sóisialta', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13367', 'ie', 'show_social_links', 'Taispeáin Naisc Shóisialta?', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13368', 'ie', 'social_links', 'Naisc Shóisialta', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13369', 'ie', 'payment_methods_widget_', 'Giuirléid Modhanna Íocaíochta', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13370', 'ie', 'rtl_status_updated_successfully', 'Nuashonraíodh stádas RTL go rathúil', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13371', 'ie', 'language_changed_to_', 'Athraíodh an teanga go', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13372', 'ie', 'inhouse_product_sale_report', 'Tuarascáil ar dhíol Táirgí Intí', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13373', 'ie', 'sort_by_category', 'Sórtáil de réir Catagóire', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13374', 'ie', 'product_wise_stock_report', 'Tuarascáil stoic ciallmhar táirge', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13375', 'ie', 'currency_changed_to_', 'Athraíodh airgeadra go', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13376', 'ie', 'avatar', 'Avatar', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13377', 'ie', 'copy', 'Cóip', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13378', 'ie', 'variant', 'Leagan', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13379', 'ie', 'variant_price', 'Praghas Athraitheach', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13380', 'ie', 'sku', 'SKU', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13381', 'ie', 'key', 'Eochair', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13382', 'ie', 'value', 'Luach', '2021-02-09 13:05:02', '2021-09-20 12:59:47'),
('13383', 'ie', 'copy_translations', 'Cóipeáil Aistriúcháin', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13384', 'ie', 'all_pickup_points', 'Gach Pointe Pioc suas', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13385', 'ie', 'add_new_pickup_point', 'Cuir Pointe Pioc Nua leis', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13386', 'ie', 'manager', 'Bainisteoir', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13387', 'ie', 'location', 'Suíomh', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13388', 'ie', 'pickup_station_contact', 'Teagmhálaí Stáisiúin Pickup', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13389', 'ie', 'open', 'Oscail', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13390', 'ie', 'pos_activation_for_seller', 'Gníomhachtú POS don Díoltóir', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13391', 'ie', 'order_completed_successfully', 'Ordú Críochnaithe go rathúil.', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13392', 'ie', 'text_input', 'Ionchur Téacs', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13393', 'ie', 'select', 'Roghnaigh', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13394', 'ie', 'multiple_select', 'Roghnaigh Il', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13395', 'ie', 'radio', 'Raidió', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13396', 'ie', 'file', 'Comhad', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13397', 'ie', 'email_address', 'Seoladh ríomhphoist', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13398', 'ie', 'verification_info', 'Eolas Fíoraithe', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13399', 'ie', 'approval', 'Ceadú', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13400', 'ie', 'due_amount', 'Méid Dlite', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13401', 'ie', 'show', 'Taispeáin', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13402', 'ie', 'pay_now', 'Íoc anois', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13403', 'ie', 'affiliate_user_verification', 'Fíorú Úsáideora Affiliate', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13404', 'ie', 'reject', 'Diúltaigh', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13405', 'ie', 'accept', 'Glac', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13406', 'ie', 'beauty_health__hair', 'Áilleacht, Sláinte & Gruaige', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13407', 'ie', 'comparison', 'Comparáid', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13408', 'ie', 'reset_compare_list', 'Athshocraigh Liosta Déan comparáid idir', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13409', 'ie', 'your_comparison_list_is_empty', 'Tá do liosta comparáide folamh', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13410', 'ie', 'convert_point_to_wallet', 'Tiontaigh Pointe go Sparán', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13411', 'ie', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Nóta: Ní mór duit an rogha sparán a ghníomhachtú ar dtús sula n-úsáideann tú addon pointe club.', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13412', 'ie', 'create_an_account', 'Cruthaigh cuntas.', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13413', 'ie', 'use_email_instead', 'Úsáid Ríomhphost ina áit', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13414', 'ie', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Nuair a chláraíonn tú aontaíonn tú lenár dtéarmaí agus coinníollacha.', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13415', 'ie', 'create_account', 'Cruthaigh Cuntas', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13416', 'ie', 'or_join_with', 'Nó Bí páirteach', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13417', 'ie', 'already_have_an_account', 'An bhfuil cuntas agat cheana?', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13418', 'ie', 'log_in', 'Logáil isteach', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13419', 'ie', 'computer__accessories', 'Ríomhaire & Gabhálais', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13420', 'ie', 'products', 'Táirge (í)', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13421', 'ie', 'in_your_cart', 'i do cart', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13422', 'ie', 'in_your_wishlist', 'i do liosta mian', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13423', 'ie', 'you_ordered', 'd\'ordaigh tú', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13424', 'ie', 'default_shipping_address', 'Seoladh Réamhshocraithe Loingseoireachta', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13425', 'ie', 'sports__outdoor', 'Spóirt & lasmuigh', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13426', 'ie', 'copied', 'Cóipeáladh', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13427', 'ie', 'copy_the_promote_link', 'Cóipeáil an Nasc Chun Cinn', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13428', 'ie', 'write_a_review', 'Scríobh léirmheas', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13429', 'ie', 'your_name', 'Do ainm', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13430', 'ie', 'comment', 'Tráchtaireacht', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13431', 'ie', 'your_review', 'Do léirmheas', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13432', 'ie', 'submit_review', 'Cuir isteach athbhreithniú', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13433', 'ie', 'claire_willis', 'Claire Willis', '2021-02-09 13:05:03', '2021-09-20 12:59:47'),
('13434', 'ie', 'germaine_greene', 'Germaine Greene', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13435', 'ie', 'product_file', 'Comhad Táirgí', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13436', 'ie', 'choose_file', 'Roghnaigh comhad', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13437', 'ie', 'type_to_add_a_tag', 'Clóscríobh chun clib a chur leis', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13438', 'ie', 'images', 'Íomhánna', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13439', 'ie', 'main_images', 'Príomhíomhánna', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13440', 'ie', 'meta_tags', 'Clibeanna meta', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13441', 'ie', 'digital_product_has_been_inserted_successfully', 'Cuireadh Táirge Digiteach isteach go rathúil', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13442', 'ie', 'edit_digital_product', 'Cuir Táirge Digiteach in Eagar', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13443', 'ie', 'select_an_option', 'Roghnaigh rogha', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13444', 'ie', 'tax', 'cáin', '2021-02-09 13:05:04', '2021-02-09 13:05:04'),
('13445', 'ie', 'any_question_about_this_product', 'Aon cheist faoin táirge seo?', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13446', 'ie', 'sign_in', 'Sínigh isteach', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13447', 'ie', 'login_with_google', 'Logáil isteach le Google', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13448', 'ie', 'login_with_facebook', 'Logáil isteach le Facebook', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13449', 'ie', 'login_with_twitter', 'Logáil isteach le Twitter', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13450', 'ie', 'click_to_show_phone_number', 'Cliceáil chun uimhir theileafóin a thaispeáint', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13451', 'ie', 'other_ads_of', 'Fógraí Eile de', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13452', 'ie', 'store_home', 'Baile Stór', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13453', 'ie', 'top_selling', 'Díol Barr', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13454', 'ie', 'shop_settings', 'Socruithe Siopa', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13455', 'ie', 'visit_shop', 'Tabhair cuairt ar Siopa', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13456', 'ie', 'pickup_points', 'Pointí Piocála', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13457', 'ie', 'select_pickup_point', 'Roghnaigh Pickup Point', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13458', 'ie', 'slider_settings', 'Socruithe Sleamhnáin', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13459', 'ie', 'social_media_link', 'Nasc na Meán Sóisialta', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13460', 'ie', 'facebook', 'Facebook', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13461', 'ie', 'twitter', 'Twitter', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13462', 'ie', 'google', 'Google', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13463', 'ie', 'new_arrival_products', 'Táirgí Teacht Nua', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13464', 'ie', 'check_your_order_status', 'Seiceáil Stádas Do Ordaithe', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13465', 'ie', 'shipping_method', 'Modh Seachadta', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13466', 'ie', 'shipped_by', 'Seolta Faoi', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13467', 'ie', 'image', 'Íomha', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13468', 'ie', 'sub_sub_category', 'Fo-Chatagóir', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13469', 'ie', 'inhouse_products', 'Táirgí Intí', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13470', 'ie', 'forgot_password', 'Dearmad ar pasfhocal?', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13471', 'ie', 'enter_your_email_address_to_recover_your_password', 'Cuir isteach do sheoladh ríomhphoist chun do phasfhocal a aisghabháil.', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13472', 'ie', 'email_or_phone', 'Ríomhphost nó Fón', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13473', 'ie', 'send_password_reset_link', 'Seol Nasc Athshocraigh Pasfhocal', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13474', 'ie', 'back_to_login', 'Ar ais ar Logáil Isteach', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13475', 'ie', 'index', 'innéacs', '2021-02-09 13:05:04', '2021-02-09 13:05:04'),
('13476', 'ie', 'download_your_product', 'Íoslódáil Do Tháirge', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13477', 'ie', 'option', 'Rogha', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13478', 'ie', 'applied_refund_request', 'Iarratas ar Aisíocaíocht Fheidhmeach', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13479', 'ie', 'item_has_been_renoved_from_wishlist', 'Tá an mhír curtha ar ais ón liosta mian', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13480', 'ie', 'bulk_products_upload', 'Uaslódáil Táirgí Bulc', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13481', 'ie', 'upload_csv', 'Uaslódáil CSV', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13482', 'ie', 'create_a_ticket', 'Cruthaigh Ticéad', '2021-02-09 13:05:04', '2021-09-20 12:59:47'),
('13483', 'ie', 'tickets', 'Ticéid', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13484', 'ie', 'ticket_id', 'Aitheantas an ticéid', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13485', 'ie', 'sending_date', 'Dáta Seolta', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13486', 'ie', 'subject', 'Ábhar', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13487', 'ie', 'view_details', 'Féach Sonraí', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13488', 'ie', 'provide_a_detailed_description', 'Cuir síos mionsonraithe ar fáil', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13489', 'ie', 'type_your_reply', 'Clóscríobh do fhreagra', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13490', 'ie', 'send_ticket', 'Seol Ticéad', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13491', 'ie', 'load_more', 'Luchtaigh Tuilleadh', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13492', 'ie', 'jewelry__watches', 'Seodra & Uaireadóirí', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13493', 'ie', 'filters', 'Scagairí', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13494', 'ie', 'contact_address', 'Seoladh teagmhála', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13495', 'ie', 'contact_phone', 'Fón teagmhála', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13496', 'ie', 'contact_email', 'Déan teagmháil le ríomhphost', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13497', 'ie', 'filter_by', 'Scagaire le', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13498', 'ie', 'condition', 'Coinníoll', '2021-02-09 13:05:05', '2021-09-20 12:59:47'),
('13499', 'ie', 'all_type', 'Gach Cineál', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13500', 'ie', 'pay_with_wallet', 'Íoc le sparán', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13501', 'ie', 'select_variation', 'Roghnaigh éagsúlacht', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13502', 'ie', 'no_product_added', 'Gan Táirge curtha leis', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13503', 'ie', 'status_has_been_updated_successfully', 'Nuashonraíodh an stádas go rathúil', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13504', 'ie', 'all_seller_packages', 'Gach Pacáiste Díoltóra', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13505', 'ie', 'add_new_package', 'Cuir Pacáiste Nua leis', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13506', 'ie', 'package_logo', 'Lógó Pacáiste', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13507', 'ie', 'days', 'laethanta', '2021-02-09 13:05:05', '2021-02-09 13:05:05'),
('13508', 'ie', 'create_new_seller_package', 'Cruthaigh Pacáiste Díoltóra Nua', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13509', 'ie', 'package_name', 'Ainm an Phacáiste', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13510', 'ie', 'duration', 'Fad', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13511', 'ie', 'validity_in_number_of_days', 'Bailíocht i líon na laethanta', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13512', 'ie', 'update_package_information', 'Faisnéis faoin bPacáiste a Nuashonrú', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13513', 'ie', 'package_has_been_inserted_successfully', 'Cuireadh an pacáiste isteach go rathúil', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13514', 'ie', 'refund_request', 'Iarratas ar Aisíocaíocht', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13515', 'ie', 'reason', 'Cúis', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13516', 'ie', 'label', 'Lipéad', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13517', 'ie', 'select_label', 'Roghnaigh Lipéad', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13518', 'ie', 'multiple_select_label', 'Lipéad Il-Roghnaigh', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13519', 'ie', 'radio_label', 'Lipéad Raidió', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13520', 'ie', 'pickup_point_orders', 'Orduithe Pointe Piocála', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13521', 'ie', 'view', 'Amharc', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13522', 'ie', 'order_', 'Ordú #', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13523', 'ie', 'order_status', 'Stádas Ordaithe', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13524', 'ie', 'total_amount', 'Iomlán', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13525', 'ie', 'total', 'IOMLÁN', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13526', 'ie', 'delivery_status_has_been_updated', 'Nuashonraíodh an stádas seachadta', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13527', 'ie', 'payment_status_has_been_updated', 'Nuashonraíodh stádas íocaíochta', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13528', 'ie', 'invoice', 'INFHEISTÍOCHTA', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13529', 'ie', 'set_refund_time', 'Am Aisíocaíochta Socraithe', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13530', 'ie', 'set_time_for_sending_refund_request', 'Am Socraithe chun Iarratas ar Aisíocaíocht a sheoladh', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13531', 'ie', 'set_refund_sticker', 'Greamán Aisíocaíochta Socraithe', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13532', 'ie', 'sticker', 'Greamán', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13533', 'ie', 'refund_request_all', 'Iarraidh ar Aisíocaíocht Uile', '2021-02-09 13:05:05', '2021-09-20 12:59:48'),
('13534', 'ie', 'order_id', 'Ordú Id', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13535', 'ie', 'seller_approval', 'Faomhadh an Díoltóra', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13536', 'ie', 'admin_approval', 'Faomhadh Riaracháin', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13537', 'ie', 'refund_status', 'Stádas Aisíocaíochta', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13538', 'ie', 'no_refund', 'Gan Aisíocaíocht ar bith', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13539', 'ie', 'status_updated_successfully', 'Stádas nuashonraithe go rathúil', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13540', 'ie', 'user_search_report', 'Tuarascáil Cuardaigh Úsáideora', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13541', 'ie', 'search_by', 'Cuardaigh Faoi', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13542', 'ie', 'number_searches', 'Cuardach uimhreacha', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13543', 'ie', 'sender', 'Seoltóir', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13544', 'ie', 'receiver', 'Glacadóir', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13545', 'ie', 'verification_form_updated_successfully', 'Nuashonraíodh an fhoirm fíoraithe go rathúil', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13546', 'ie', 'invalid_email_or_password', 'R-phost nó pasfhocal neamhbhailí', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13547', 'ie', 'all_coupons', 'Gach Cúpón', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13548', 'ie', 'add_new_coupon', 'Cuir Cúpón Nua leis', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13549', 'ie', 'coupon_information', 'Eolas Cúpón', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13550', 'ie', 'start_date', 'Dáta tosaigh', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13551', 'ie', 'end_date', 'Dáta deiridh', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13552', 'ie', 'product_base', 'Bonn Táirgí', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13553', 'ie', 'send_newsletter', 'Seol Nuachtlitir', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13554', 'ie', 'mobile_users', 'Úsáideoirí Soghluaiste', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13555', 'ie', 'sms_subject', 'Ábhar SMS', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13556', 'ie', 'sms_content', 'Ábhar SMS', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13557', 'ie', 'all_flash_delas', 'Gach Flash Delas', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13558', 'ie', 'create_new_flash_dela', 'Cruthaigh Dela Flash Nua', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13559', 'ie', 'page_link', 'Nasc Leathanach', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13560', 'ie', 'flash_deal_information', 'Eolas faoi Bheart Flash', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13561', 'ie', 'background_color', 'Dath Cúlra', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13562', 'ie', '0000ff', '# 0000ff', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13563', 'ie', 'text_color', 'Dath an Téacs', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13564', 'ie', 'white', 'Bán', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13565', 'ie', 'dark', 'Dorcha', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13566', 'ie', 'choose_products', 'Roghnaigh Táirgí', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13567', 'ie', 'discounts', 'Lascainí', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13568', 'ie', 'discount_type', 'Cineál Lascaine', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13569', 'ie', 'twillo_credential', 'Dintiúr Twillo', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13570', 'ie', 'twilio_sid', 'TWILIO SID', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13571', 'ie', 'twilio_auth_token', 'TWILIO AUTH TOKEN', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13572', 'ie', 'twilio_verify_sid', 'SID FÍOR TWILIO', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13573', 'ie', 'valid_twillo_number', 'UIMHIR DÍOL DÍOL', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13574', 'ie', 'nexmo_credential', 'Dintiúr Nexmo', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13575', 'ie', 'nexmo_key', 'EOCHAIR NEXMO', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13576', 'ie', 'nexmo_secret', 'RÚNAÍ NEXMO', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13577', 'ie', 'ssl_wireless_credential', 'Dintiúr Gan Sreang SSL', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13578', 'ie', 'ssl_sms_api_token', 'SSL SMS API TOKEN', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13579', 'ie', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13580', 'ie', 'ssl_sms_url', 'URL SMS SSL', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13581', 'ie', 'fast2sms_credential', 'Dintiúr Fast2SMS', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13582', 'ie', 'auth_key', 'Dearbh-EOCHAIR', '2021-02-09 13:05:06', '2021-09-20 12:59:48'),
('13583', 'ie', 'route', 'BÓTHAR', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13584', 'ie', 'promotional_use', 'Úsáid Chur Chun Cinn', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13585', 'ie', 'transactional_use', 'Úsáid Idirbheartach', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13586', 'ie', 'sender_id', 'ID SENDER', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13587', 'ie', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13588', 'ie', 'twillo_otp', 'Twillo OTP', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13589', 'ie', 'ssl_wireless_otp', 'OTP Gan Sreang SSL', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13590', 'ie', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13591', 'ie', 'order_placement', 'Socrúchán Ordaithe', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13592', 'ie', 'delivery_status_changing_time', 'Stádas Seachadta Am Athraithe', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13593', 'ie', 'paid_status_changing_time', 'Stádas Íoctha Am Athraithe', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13594', 'ie', 'send_bulk_sms', 'Seol Bulc SMS', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13595', 'ie', 'all_subscribers', 'Gach Suibscríobhaí', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13596', 'ie', 'coupon_information_adding', 'Faisnéis Cúpón a Chur Leis', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13597', 'ie', 'coupon_type', 'Cineál Cúpón', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13598', 'ie', 'for_products', 'Le haghaidh Táirgí', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13599', 'ie', 'for_total_orders', 'Le haghaidh Orduithe Iomlán', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13600', 'ie', 'add_your_product_base_coupon', 'Cuir Do Cúpón Bonn Táirgí leis', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13601', 'ie', 'coupon_code', 'Cód cúpón', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13602', 'ie', 'sub_category', 'Fo-Chatagóir', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13603', 'ie', 'add_more', 'Cuir Tuilleadh leis', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13604', 'ie', 'add_your_cart_base_coupon', 'Cuir Do Cúpón Bonn Cart', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13605', 'ie', 'minimum_shopping', 'Siopadóireacht Íosta', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13606', 'ie', 'maximum_discount_amount', 'Uasmhéid Lascaine', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13607', 'ie', 'coupon_information_update', 'Nuashonrú Faisnéise Cúpón', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13608', 'ie', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Cumraigh Socrú SMTP le do thoil chun gach spraoi seolta ríomhphoist a oibriú', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13609', 'ie', 'configure_now', 'Cumraigh Anois', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13610', 'ie', 'total_published_products', 'Iomlán na dtáirgí foilsithe', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13611', 'ie', 'total_sellers_products', 'Táirgí díoltóirí iomlána', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13612', 'ie', 'total_admin_products', 'Iomlán na dtáirgí riaracháin', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13613', 'ie', 'manage_products', 'Bainistigh Táirgí', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13614', 'ie', 'total_product_category', 'Catagóir iomlán an táirge', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13615', 'ie', 'create_category', 'Cruthaigh Catagóir', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13616', 'ie', 'total_product_sub_sub_category', 'Fo-chatagóir iomlán an táirge', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13617', 'ie', 'create_sub_sub_category', 'Cruthaigh Fo-Chatagóir', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13618', 'ie', 'total_product_sub_category', 'Fo-chatagóir iomlán an táirge', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13619', 'ie', 'create_sub_category', 'Cruthaigh Fo-Chatagóir', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13620', 'ie', 'total_product_brand', 'Branda iomlán an táirge', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13621', 'ie', 'create_brand', 'Cruthaigh Branda', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13622', 'ie', 'total_sellers', 'Díoltóirí iomlána', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13623', 'ie', 'total_approved_sellers', 'Iomlán na ndíoltóirí ceadaithe', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13624', 'ie', 'total_pending_sellers', 'Iomlán na ndíoltóirí atá ar feitheamh', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13625', 'ie', 'manage_sellers', 'Bainistigh Díoltóirí', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13626', 'ie', 'category_wise_product_sale', 'Catagóir díolachán táirge ciallmhar', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13627', 'ie', 'sale', 'Díol', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13628', 'ie', 'category_wise_product_stock', 'Stoc táirge de réir catagóir', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13629', 'ie', 'category_name', 'Ainm Catagóir', '2021-02-09 13:05:07', '2021-09-20 12:59:48'),
('13630', 'ie', 'stock', 'Stoc', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13631', 'ie', 'frontend', 'Ceann tosaigh', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13632', 'ie', 'home_page', 'Leathanach baile', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13633', 'ie', 'setting', 'suíomh', '2021-02-09 13:05:08', '2021-02-09 13:05:08'),
('13634', 'ie', 'policy_page', 'Leathanach beartais', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13635', 'ie', 'general', 'Ginearálta', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13636', 'ie', 'click_here', 'Cliceáil anseo', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13637', 'ie', 'useful_link', 'Nasc úsáideach', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13638', 'ie', 'activation', 'Gníomhachtú', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13639', 'ie', 'smtp', 'SMTP', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13640', 'ie', 'payment_method', 'Modh íocaíochta', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13641', 'ie', 'social_media', 'Na meáin shóisialta', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13642', 'ie', 'business', 'Gnó', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13643', 'ie', 'seller_verification', 'Fíorú díoltóra', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13644', 'ie', 'form_setting', 'socrú foirme', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13645', 'ie', 'language', 'Teanga', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13646', 'ie', 'dashboard', 'Painéal na nIonstraimí', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13647', 'ie', 'pos_system', 'Córas POS', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13648', 'ie', 'pos_manager', 'Bainisteoir POS', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13649', 'ie', 'pos_configuration', 'Cumraíocht POS', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13650', 'ie', 'products', 'Táirgí', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13651', 'ie', 'add_new_product', 'Cuir táirge nua leis', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13652', 'ie', 'all_products', 'Gach Táirgí', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13653', 'ie', 'in_house_products', 'Táirgí Intí', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13654', 'ie', 'seller_products', 'Táirgí Díoltóra', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13655', 'ie', 'digital_products', 'Táirgí Digiteacha', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13656', 'ie', 'bulk_import', 'Bulc-Iompórtáil', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13657', 'ie', 'bulk_export', 'Bulc Easpórtáil', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13658', 'ie', 'category', 'Catagóir', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13659', 'ie', 'subcategory', 'Fochatagóir', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13660', 'ie', 'sub_subcategory', 'Fochatagóir', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13661', 'ie', 'brand', 'Branda', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13662', 'ie', 'attribute', 'Tréith', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13663', 'ie', 'product_reviews', 'Léirmheasanna ar Tháirgí', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13664', 'ie', 'sales', 'Díolacháin', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13665', 'ie', 'all_orders', 'Gach Ordú', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13666', 'ie', 'inhouse_orders', 'Orduithe intí', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13667', 'ie', 'seller_orders', 'Orduithe Díoltóra', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13668', 'ie', 'pickup_point_order', 'Ordú Pointe Pioc suas', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13669', 'ie', 'refunds', 'Aisíocaíochtaí', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13670', 'ie', 'refund_requests', 'Iarrataí ar Aisíocaíocht', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13671', 'ie', 'approved_refund', 'Aisíocaíocht Cheadaithe', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13672', 'ie', 'refund_configuration', 'Cumraíocht Aisíocaíochta', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13673', 'ie', 'customers', 'Custaiméirí', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13674', 'ie', 'customer_list', 'Liosta custaiméirí', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13675', 'ie', 'classified_products', 'Táirgí Rangaithe', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13676', 'ie', 'classified_packages', 'Pacáistí Rangaithe', '2021-02-09 13:05:08', '2021-09-20 12:59:48'),
('13677', 'ie', 'sellers', 'Díoltóirí', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13678', 'ie', 'all_seller', 'Gach Díoltóir', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13679', 'ie', 'payouts', 'Íocaíochtaí', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13680', 'ie', 'payout_requests', 'Iarrataí Íocaíochta', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13681', 'ie', 'seller_commission', 'An Coimisiún Díoltóra', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13682', 'ie', 'seller_packages', 'Pacáistí Díoltóra', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13683', 'ie', 'seller_verification_form', 'Foirm Fíoraithe Díoltóra', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13684', 'ie', 'reports', 'Tuarascálacha', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13685', 'ie', 'in_house_product_sale', 'Díol Táirgí Intí', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13686', 'ie', 'seller_products_sale', 'Díol Táirgí Díoltóra', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13687', 'ie', 'products_stock', 'Stoc Táirgí', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13688', 'ie', 'products_wishlist', 'Liosta mian táirgí', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13689', 'ie', 'user_searches', 'Cuardaigh Úsáideoirí', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13690', 'ie', 'marketing', 'Margaíocht', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13691', 'ie', 'flash_deals', 'Déileálann Flash', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13692', 'ie', 'newsletters', 'Nuachtlitreacha', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13693', 'ie', 'bulk_sms', 'Bulc SMS', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13694', 'ie', 'subscribers', 'Síntiúsóirí', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13695', 'ie', 'coupon', 'Cúpón', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13696', 'ie', 'support', 'Tacaíocht', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13697', 'ie', 'ticket', 'Ticéad', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13698', 'ie', 'product_queries', 'Fiosrúcháin Táirgí', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13699', 'ie', 'website_setup', 'Socrú Suíomh Gréasáin', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13700', 'ie', 'header', 'Ceanntásc', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13701', 'ie', 'footer', 'Buntásc', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13702', 'ie', 'pages', 'Leathanaigh', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13703', 'ie', 'appearance', 'Dealramh', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13704', 'ie', 'setup__configurations', 'Socrú & Cumraíochtaí', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13705', 'ie', 'general_settings', 'Socruithe Ginearálta', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13706', 'ie', 'features_activation', 'Gnéithe gníomhachtú', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13707', 'ie', 'languages', 'Teangacha', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13708', 'ie', 'currency', 'Airgeadra', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13709', 'ie', 'pickup_point', 'Pointe pioctha', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13710', 'ie', 'smtp_settings', 'Socruithe SMTP', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13711', 'ie', 'payment_methods', 'Modhanna Íocaíochta', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13712', 'ie', 'file_system_configuration', 'Cumraíocht an Chórais Comhad', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13713', 'ie', 'social_media_logins', 'Logins na meán sóisialta', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13714', 'ie', 'analytics_tools', 'Uirlisí Analytics', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13715', 'ie', 'facebook_chat', 'Comhrá Facebook', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13716', 'ie', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13717', 'ie', 'shipping_configuration', 'Cumraíocht Loingseoireachta', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13718', 'ie', 'shipping_countries', 'Tíortha Loingseoireachta', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13719', 'ie', 'affiliate_system', 'Córas Affiliate', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13720', 'ie', 'affiliate_registration_form', 'Foirm Chláraithe Affiliate', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13721', 'ie', 'affiliate_configurations', 'Cumraíochtaí Cleamhnaithe', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13722', 'ie', 'affiliate_users', 'Úsáideoirí Cleamhnaithe', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13723', 'ie', 'referral_users', 'Úsáideoirí Atreoraithe', '2021-02-09 13:05:09', '2021-09-20 12:59:48'),
('13724', 'ie', 'affiliate_withdraw_requests', 'Iarratais ar aistarraingt chleamhnaithe', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13725', 'ie', 'offline_payment_system', 'Córas Íocaíochta As Líne', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13726', 'ie', 'manual_payment_methods', 'Modhanna Íocaíochta Láimhe', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13727', 'ie', 'offline_wallet_recharge', 'Athshlánú Sparán As Líne', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13728', 'ie', 'offline_customer_package_payments', 'Íocaíochtaí Pacáiste Custaiméirí As Líne', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13729', 'ie', 'offline_seller_package_payments', 'Íocaíochtaí Pacáiste Díoltóra As Líne', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13730', 'ie', 'paytm_payment_gateway', 'Geata Íocaíochta Paytm', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13731', 'ie', 'set_paytm_credentials', 'Socraigh Dintiúir Paytm', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13732', 'ie', 'club_point_system', 'Córas Pointe Club', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13733', 'ie', 'club_point_configurations', 'Cumraíochtaí Pointe Club', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13734', 'ie', 'set_product_point', 'Pointe Táirgí Socraithe', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13735', 'ie', 'user_points', 'Pointí Úsáideora', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13736', 'ie', 'otp_system', 'Córas OTP', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13737', 'ie', 'otp_configurations', 'Cumraíochtaí OTP', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13738', 'ie', 'set_otp_credentials', 'Socraigh Dintiúir OTP', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13739', 'ie', 'staffs', 'Foirne', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13740', 'ie', 'all_staffs', 'Gach foireann', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13741', 'ie', 'staff_permissions', 'Ceadanna foirne', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13742', 'ie', 'addon_manager', 'Bainisteoir Addon', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13743', 'ie', 'browse_website', 'Brabhsáil Suíomh Gréasáin', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13744', 'ie', 'pos', 'POS', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13745', 'ie', 'notifications', 'Fógraí', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13746', 'ie', 'new_orders', 'orduithe nua', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13747', 'ie', 'userimage', 'íomhá úsáideora', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13748', 'ie', 'profile', 'Próifíl', '2021-02-09 13:05:10', '2021-09-20 12:59:48'),
('13749', 'ie', 'logout', 'Logáil Amach', '2021-02-09 13:05:40', '2021-09-20 12:59:48'),
('13750', 'ie', 'page_not_found', 'Ní bhfuarthas an leathanach!', '2021-02-09 13:05:40', '2021-09-20 12:59:48'),
('13751', 'ie', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'Ní bhfuarthas an leathanach atá á lorg agat ar ár bhfreastalaí.', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13752', 'ie', 'registration', 'Clárú', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13753', 'ie', 'i_am_shopping_for', 'Táim ag siopadóireacht le haghaidh ...', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13754', 'ie', 'compare', 'Déan comparáid idir', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13755', 'ie', 'wishlist', 'Liosta Mianta', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13756', 'ie', 'cart', 'Cart', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13757', 'ie', 'your_cart_is_empty', 'Tá do Chairt folamh', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13758', 'ie', 'categories', 'Catagóirí', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13759', 'ie', 'see_all', 'Gach rud a fheicáil', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13760', 'ie', 'seller_policy', 'Beartas Díoltóra', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13761', 'ie', 'return_policy', 'Beartas um Fhilleadh', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13762', 'ie', 'support_policy', 'Beartas Tacaíochta', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13763', 'ie', 'privacy_policy', 'Beartas Príobháideachais', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13764', 'ie', 'your_email_address', 'Do sheoladh ríomhphoist', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13765', 'ie', 'subscribe', 'Liostáil', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13766', 'ie', 'contact_info', 'Eolas teagmhála', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13767', 'ie', 'address', 'Seoladh', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13768', 'ie', 'phone', 'Fón', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13769', 'ie', 'email', 'Ríomhphost', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13770', 'ie', 'login', 'Login', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13771', 'ie', 'my_account', 'My Account', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13772', 'ie', 'order_history', 'Order History', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13773', 'ie', 'my_wishlist', 'My Wishlist', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13774', 'ie', 'track_order', 'Track Order', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13775', 'ie', 'be_an_affiliate_partner', 'Be an affiliate partner', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13776', 'ie', 'be_a_seller', 'Be a Seller', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13777', 'ie', 'apply_now', 'Apply Now', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13778', 'ie', 'confirmation', 'Confirmation', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13779', 'ie', 'delete_confirmation_message', 'Delete confirmation message', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13780', 'ie', 'cancel', 'Cancel', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13781', 'ie', 'delete', 'Scrios', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13782', 'ie', 'item_has_been_added_to_compare_list', 'Item has been added to compare list', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13783', 'ie', 'please_login_first', 'Please login first', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13784', 'ie', 'total_earnings_from', 'Total Earnings From', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13785', 'ie', 'client_subscription', 'Client Subscription', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13786', 'ie', 'product_category', 'Product category', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13787', 'ie', 'product_sub_sub_category', 'Product sub sub category', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13788', 'ie', 'product_sub_category', 'Product sub category', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13789', 'ie', 'product_brand', 'Product brand', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13790', 'ie', 'top_client_packages', 'Top Client Packages', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13791', 'ie', 'top_freelancer_packages', 'Top Freelancer Packages', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13792', 'ie', 'number_of_sale', 'Number of sale', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13793', 'ie', 'number_of_stock', 'Number of Stock', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13794', 'ie', 'top_10_products', 'Top 10 Products', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13795', 'ie', 'top_12_products', 'Top 12 Products', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13796', 'ie', 'admin_can_not_be_a_seller', 'Admin cannot be a seller', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13797', 'ie', 'filter_by_rating', 'Filter by Rating', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13798', 'ie', 'published_reviews_updated_successfully', 'Published reviews updated successfully', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13799', 'ie', 'refund_sticker_has_been_updated_successfully', 'Refund Sticker has been updated successfully', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13800', 'ie', 'edit_product', 'Edit Product', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13801', 'ie', 'meta_images', 'Meta Images', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13802', 'ie', 'update_product', 'Update Product', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13803', 'ie', 'product_has_been_deleted_successfully', 'Product has been deleted successfully', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13804', 'ie', 'your_profile_has_been_updated_successfully', 'Your Profile has been updated successfully!', '2021-02-09 13:05:41', '2021-09-20 12:59:48'),
('13805', 'ie', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Upload limit has been reached. Please upgrade your package.', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13806', 'ie', 'add_your_product', 'Add Your Product', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13807', 'ie', 'select_a_category', 'Select a category', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13808', 'ie', 'select_a_brand', 'Select a brand', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13809', 'ie', 'product_unit', 'Product Unit', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13810', 'ie', 'minimum_qty', 'Minimum Qty.', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13811', 'ie', 'product_tag', 'Product Tag', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13812', 'ie', 'type__hit_enter', 'Type & hit enter', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13813', 'ie', 'videos', 'Videos', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13814', 'ie', 'video_from', 'Video From', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13815', 'ie', 'video_url', 'Video URL', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13816', 'ie', 'customer_choice', 'Customer Choice', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13817', 'ie', 'pdf', 'PDF', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13818', 'ie', 'choose_pdf', 'Choose PDF', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13819', 'ie', 'select_category', 'Select Category', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13820', 'ie', 'target_category', 'Target Category', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13821', 'ie', 'subsubcategory', 'subsubcategory', '2021-02-09 13:05:42', '2021-02-09 13:05:42'),
('13822', 'ie', 'search_category', 'Search Category', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13823', 'ie', 'search_subcategory', 'Search SubCategory', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13824', 'ie', 'search_subsubcategory', 'Search SubSubCategory', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13825', 'ie', 'update_your_product', 'Update your product', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13826', 'ie', 'product_has_been_updated_successfully', 'Product has been updated successfully', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13827', 'ie', 'add_your_digital_product', 'Add Your Digital Product', '2021-02-09 13:05:42', '2021-09-20 12:59:48'),
('13828', 'ie', 'active_ecommerce_cms_update_process', 'Active eCommerce CMS Update Process', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13829', 'ie', 'codecanyon_purchase_code', 'Codecanyon purchase code', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13830', 'ie', 'database_name', 'Database Name', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13831', 'ie', 'database_username', 'Database Username', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13832', 'ie', 'database_password', 'Database Password', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13833', 'ie', 'database_hostname', 'Database Hostname', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13834', 'ie', 'update_now', 'Update Now', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13835', 'ie', 'congratulations', 'Congratulations', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13836', 'ie', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'You have successfully completed the updating process. Please Login to continue', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13837', 'ie', 'go_to_home', 'Go to Home', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13838', 'ie', 'login_to_admin_panel', 'Login to Admin panel', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13839', 'ie', 's3_file_system_credentials', 'S3 File System Credentials', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13840', 'ie', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13841', 'ie', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13842', 'ie', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13843', 'ie', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13844', 'ie', 'aws_url', 'AWS_URL', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13845', 'ie', 's3_file_system_activation', 'S3 File System Activation', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13846', 'ie', 'your_phone_number', 'Your phone number', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13847', 'ie', 'zip_file', 'Zip File', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13848', 'ie', 'install', 'Install', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13849', 'ie', 'this_version_is_not_capable_of_installing_addons_please_update', 'This version is not capable of installing Addons, Please update.', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13850', 'ie', 'search_in_menu', 'Search in menu', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13851', 'ie', 'uploaded_files', 'Uploaded Files', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13852', 'ie', 'shipping_cities', 'Shipping Cities', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13853', 'ie', 'system', 'System', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13854', 'ie', 'server_status', 'Server status', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13855', 'ie', 'nothing_found', 'Nothing Found', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13856', 'ie', 'parent_category', 'Parent Category', '2021-02-09 13:05:42', '2021-09-20 12:59:49'),
('13857', 'ie', 'level', 'Level', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13858', 'ie', 'category_information', 'Category Information', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13859', 'ie', 'translatable', 'Translatable', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13860', 'ie', 'no_parent', 'No Parent', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13861', 'ie', 'physical', 'Physical', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13862', 'ie', 'digital', 'Digital', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13863', 'ie', '200x200', '200x200', '2021-02-09 13:05:43', '2021-02-09 13:05:43'),
('13864', 'ie', '32x32', '32x32', '2021-02-09 13:05:43', '2021-02-09 13:05:43'),
('13865', 'ie', 'search_your_files', 'Search your files', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13866', 'ie', 'category_has_been_updated_successfully', 'Category has been updated successfully', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13867', 'ie', 'all_uploaded_files', 'All uploaded files', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13868', 'ie', 'upload_new_file', 'Upload New File', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13869', 'ie', 'all_files', 'All files', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13870', 'ie', 'search', 'Search', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13871', 'ie', 'details_info', 'Details Info', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13872', 'ie', 'copy_link', 'Copy Link', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13873', 'ie', 'are_you_sure_to_delete_this_file', 'Are you sure to delete this file?', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13874', 'ie', 'file_info', 'File Info', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13875', 'ie', 'link_copied_to_clipboard', 'Link copied to clipboard', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13876', 'ie', 'oops_unable_to_copy', 'Oops, unable to copy', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13877', 'ie', 'file_deleted_successfully', 'File deleted successfully', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13878', 'ie', 'add_new_brand', 'Add New Brand', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13879', 'ie', '120x80', '120x80', '2021-02-09 13:05:43', '2021-02-09 13:05:43'),
('13880', 'ie', 'brand_information', 'Brand Information', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13881', 'ie', 'brand_has_been_updated_successfully', 'Brand has been updated successfully', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13882', 'ie', 'brand_has_been_deleted_successfully', 'Brand has been deleted successfully', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13883', 'ie', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'This is used for search. Input those words by which cutomer can find this product.', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13884', 'ie', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'These images are visible in product details page gallery. Use 600x600 sizes images.', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13885', 'ie', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13886', 'ie', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Use proper link without extra parameter. Don\'t use short share link/embeded iframe code.', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13887', 'ie', 'save_product', 'Save Product', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13888', 'ie', 'product_has_been_inserted_successfully', 'Product has been inserted successfully', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13889', 'ie', 'something_went_wrong', 'Something went wrong!', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13890', 'ie', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Sorry for the inconvenience, but we\'re working on it.', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13891', 'ie', 'error_code', 'Error code', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13892', 'ie', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Please Configure SMTP Setting to work all email sending functionality', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13893', 'ie', 'order', 'Order', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13894', 'ie', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'We have limited banner height to maintain UI. We had to crop from both left & right side in view for different devices to make it responsive. Before designing banner keep these points in mind.', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13895', 'ie', 'home_banner_3_max_3', 'Home Banner 3 (Max 3)', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13896', 'ie', 'add_new_seller', 'Add New Seller', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13897', 'ie', 'filter_by_approval', 'Filter by Approval', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13898', 'ie', 'nonapproved', 'Non-Approved', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13899', 'ie', 'type_name_or_email__enter', 'Type name or email & Enter', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13900', 'ie', 'due_to_seller', 'Due to seller', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13901', 'ie', 'log_in_as_this_seller', 'Log in as this Seller', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13902', 'ie', 'go_to_payment', 'Go to Payment', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13903', 'ie', 'ban_this_seller', 'Ban this seller', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13904', 'ie', 'do_you_really_want_to_ban_this_seller', 'Do you really want to ban this seller?', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13905', 'ie', 'proceed', 'Proceed!', '2021-02-09 13:05:43', '2021-09-20 12:59:49'),
('13906', 'ie', 'approved_sellers_updated_successfully', 'Approved sellers updated successfully', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13907', 'ie', 'seller_has_been_deleted_successfully', 'Seller has been deleted successfully', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13908', 'ie', 'seller_information', 'Seller Information', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13909', 'ie', 'seller_has_been_inserted_successfully', 'Seller has been inserted successfully', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13910', 'ie', 'email_already_exists', 'Email already exists!', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13911', 'ie', 'verify_your_email_address', 'Verify Your Email Address', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13912', 'ie', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Before proceeding, please check your email for a verification link.', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13913', 'ie', 'if_you_did_not_receive_the_email', 'If you did not receive the email.', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13914', 'ie', 'click_here_to_request_another', 'Click here to request another', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13915', 'ie', 'email_verification', 'Email Verification', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13916', 'ie', 'email_verification__', 'Email Verification -', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13917', 'ie', 'https_activation', 'HTTPS Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13918', 'ie', 'maintenance_mode', 'Maintenance Mode', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13919', 'ie', 'maintenance_mode_activation', 'Maintenance Mode Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13920', 'ie', 'classified_product_activate', 'Classified Product Activate', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13921', 'ie', 'classified_product', 'Classified Product', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13922', 'ie', 'business_related', 'Business Related', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13923', 'ie', 'vendor_system_activation', 'Vendor System Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13924', 'ie', 'wallet_system_activation', 'Wallet System Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13925', 'ie', 'coupon_system_activation', 'Coupon System Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13926', 'ie', 'pickup_point_activation', 'Pickup Point Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13927', 'ie', 'conversation_activation', 'Conversation Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13928', 'ie', 'guest_checkout_activation', 'Guest Checkout Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13929', 'ie', 'categorybased_commission', 'Category-based Commission', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13930', 'ie', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'After activate this option Seller commision will be disabled and You need to set commission on each category otherwise Admin will not get any commision', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13931', 'ie', 'set_commisssion_now', 'Set Commisssion Now', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13932', 'ie', 'payment_related', 'Payment Related', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13933', 'ie', 'paypal_payment_activation', 'Paypal Payment Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13934', 'ie', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'You need to configure Paypal correctly to enable this feature', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13935', 'ie', 'stripe_payment_activation', 'Stripe Payment Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13936', 'ie', 'sslcommerz_activation', 'SSlCommerz Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13937', 'ie', 'instamojo_payment_activation', 'Instamojo Payment Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13938', 'ie', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'You need to configure Instamojo Payment correctly to enable this feature', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13939', 'ie', 'razor_pay_activation', 'Razor Pay Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13940', 'ie', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'You need to configure Razor correctly to enable this feature', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13941', 'ie', 'paystack_activation', 'PayStack Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13942', 'ie', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'You need to configure PayStack correctly to enable this feature', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13943', 'ie', 'voguepay_activation', 'VoguePay Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13944', 'ie', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'You need to configure VoguePay correctly to enable this feature', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13945', 'ie', 'payhere_activation', 'Payhere Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13946', 'ie', 'ngenius_activation', 'Ngenius Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13947', 'ie', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'You need to configure Ngenius correctly to enable this feature', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13948', 'ie', 'iyzico_activation', 'Iyzico Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13949', 'ie', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'You need to configure iyzico correctly to enable this feature', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13950', 'ie', 'bkash_activation', 'Bkash Activation', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13951', 'ie', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'You need to configure bkash correctly to enable this feature', '2021-02-09 13:05:44', '2021-09-20 12:59:49'),
('13952', 'ie', 'nagad_activation', 'Nagad Activation', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13953', 'ie', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'You need to configure nagad correctly to enable this feature', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13954', 'ie', 'cash_payment_activation', 'Cash Payment Activation', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13955', 'ie', 'social_media_login', 'Social Media Login', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13956', 'ie', 'facebook_login', 'Facebook login', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13957', 'ie', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'You need to configure Facebook Client correctly to enable this feature', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13958', 'ie', 'google_login', 'Google login', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13959', 'ie', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'You need to configure Google Client correctly to enable this feature', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13960', 'ie', 'twitter_login', 'Twitter login', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13961', 'ie', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'You need to configure Twitter Client correctly to enable this feature', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13962', 'ie', 'shop_logo', 'Shop Logo', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13963', 'ie', 'shop_address', 'Shop Address', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13964', 'ie', 'banner_settings', 'Banner Settings', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13965', 'ie', 'banners', 'Banners', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13966', 'ie', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'We had to limit height to maintian consistancy. In some device both side of the banner might be cropped for height limitation.', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13967', 'ie', 'insert_link_with_https_', 'Insert link with https', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13968', 'ie', 'your_shop_has_been_updated_successfully', 'Nuashonraíodh Do Siopa go rathúil!', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13969', 'ie', 'search_result_for_', 'Toradh cuardaigh do', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13970', 'ie', 'brand_has_been_inserted_successfully', 'Cuireadh branda isteach go rathúil', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13971', 'ie', 'about', 'Faoi', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13972', 'ie', 'payout_info', 'Eolas Íocaíochta', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13973', 'ie', 'bank_acc_name', 'Ainm Acc Bainc', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13974', 'ie', 'bank_acc_number', 'Uimhir Acc Bainc', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13975', 'ie', 'total_products', 'Táirgí Iomlán', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13976', 'ie', 'total_sold_amount', 'Méid Iomlán Díolta', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13977', 'ie', 'wallet_balance', 'Cothromaíocht Sparán', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13978', 'ie', 'cookies_agreement', 'Comhaontú Fianán', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13979', 'ie', 'cookies_agreement_text', 'Téacs an Chomhaontaithe Fianán', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13980', 'ie', 'show_cookies_agreement', 'Taispeáin Comhaontú Fianán?', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13981', 'ie', 'custom_script', 'Script Saincheaptha', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13982', 'ie', 'header_custom_script__before_head', 'Script saincheaptha ceanntásc - roimh </head>', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13983', 'ie', 'write_script_with_script_tag', 'Scríobh script le <tag tag', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13984', 'ie', 'footer_custom_script__before_body', 'Script saincheaptha buntásc - roimh </body>', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13985', 'ie', 'category_has_been_inserted_successfully', 'Cuireadh catagóir isteach go rathúil', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13986', 'ie', 'all_flash_deals', 'Gach Margadh Flash', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13987', 'ie', 'create_new_flash_deal', 'Cruthaigh Flash Deal Nua', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13988', 'ie', 'ffffff', '#FFFFFF', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13989', 'ie', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Taispeántar an íomhá seo mar bhratach clúdaigh ar leathanach mionsonraí déileála splanc.', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13990', 'ie', 'flash_deal_has_been_inserted_successfully', 'Cuireadh Flash Deal isteach go rathúil', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13991', 'ie', 'flash_deal_status_updated_successfully', 'Nuashonraíodh stádas déileála Flash go rathúil', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13992', 'ie', 'flash_deal_has_been_updated_successfully', 'Nuashonraíodh Flash Deal go rathúil', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13993', 'ie', 'update_language_info', 'Faisnéis Teanga a nuashonrú', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13994', 'ie', 'language_has_been_updated_successfully', 'Nuashonraíodh an teanga go rathúil', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13995', 'ie', 'type_key__enter', 'Eochair cineál & Iontráil', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13996', 'ie', 'translations_updated_for_', 'Aistriúcháin nuashonraithe do', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13997', 'ie', 'language_has_been_inserted_successfully', 'Cuireadh teanga isteach go rathúil', '2021-02-09 13:05:45', '2021-09-20 12:59:49'),
('13998', 'sg', 'all_category', 'Semua Kategori', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('13999', 'sg', 'all', 'Semua', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14000', 'sg', 'flash_sale', 'Jualan Kilat', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14001', 'sg', 'view_more', 'Lihat Lagi', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14002', 'sg', 'add_to_wishlist', 'Tambahkan ke senarai keinginan', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14003', 'sg', 'add_to_compare', 'Tambah untuk membandingkan', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14004', 'sg', 'add_to_cart', 'Tambah ke troli', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14005', 'sg', 'club_point', 'Titik Kelab', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14006', 'sg', 'classified_ads', 'Iklan', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14007', 'sg', 'used', 'Terpakai', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14008', 'sg', 'top_10_categories', '10 Kategori Teratas', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14009', 'sg', 'view_all_categories', 'Lihat Semua Kategori', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14010', 'sg', 'top_10_brands', '10 Jenama Teratas', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14011', 'sg', 'view_all_brands', 'Lihat Semua Jenama', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14012', 'sg', 'terms__conditions', 'Terma & Syarat', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14013', 'sg', 'best_selling', 'Terlaris', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14014', 'sg', 'top_20', '20 teratas', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14015', 'sg', 'featured_products', 'Produk Pilihan', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14016', 'sg', 'best_sellers', 'Jualan paling laris', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14017', 'sg', 'visit_store', 'Lawati Kedai', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14018', 'sg', 'popular_suggestions', 'Cadangan Popular', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14019', 'sg', 'category_suggestions', 'Cadangan Kategori', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14020', 'sg', 'automobile__motorcycle', 'Automobil & Motosikal', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14021', 'sg', 'price_range', 'Julat harga', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14022', 'sg', 'filter_by_color', 'Tapis mengikut warna', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14023', 'sg', 'home', 'Rumah', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14024', 'sg', 'newest', 'Terkini', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14025', 'sg', 'oldest', 'Tertua', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14026', 'sg', 'price_low_to_high', 'Harga rendah hingga tinggi', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14027', 'sg', 'price_high_to_low', 'Harga tinggi hingga rendah', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14028', 'sg', 'brands', 'Jenama', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14029', 'sg', 'all_brands', 'Semua Jenama', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14030', 'sg', 'all_sellers', 'Semua Penjual', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14031', 'sg', 'inhouse_product', 'Produk dalaman', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14032', 'sg', 'message_seller', 'Penjual Mesej', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14033', 'sg', 'price', 'Harga', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14034', 'sg', 'discount_price', 'Harga diskaun', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14035', 'sg', 'color', 'Warna', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14036', 'sg', 'quantity', 'Kuantiti', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14037', 'sg', 'available', 'ada', '2021-02-09 13:12:29', '2021-02-09 13:12:29'),
('14038', 'sg', 'total_price', 'Harga keseluruhan', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14039', 'sg', 'out_of_stock', 'Kehabisan Stok', '2021-02-09 13:12:29', '2021-09-20 12:59:49'),
('14040', 'sg', 'refund', 'Bayaran balik', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14041', 'sg', 'share', 'Berkongsi', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14042', 'sg', 'sold_by', 'Dijual oleh', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14043', 'sg', 'customer_reviews', 'Maklumbalas Pelanggan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14044', 'sg', 'top_selling_products', 'Produk Terlaris', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14045', 'sg', 'description', 'Penerangan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14046', 'sg', 'video', 'Video', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14047', 'sg', 'reviews', 'Ulasan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14048', 'sg', 'download', 'Muat turun', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14049', 'sg', 'there_have_been_no_reviews_for_this_product_yet', 'Belum ada ulasan untuk produk ini.', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14050', 'sg', 'related_products', 'Produk Berkaitan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14051', 'sg', 'any_query_about_this_product', 'Sebarang pertanyaan mengenai produk ini', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14052', 'sg', 'product_name', 'Nama Produk', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14053', 'sg', 'your_question', 'Soalan anda', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14054', 'sg', 'send', 'Hantar', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14055', 'sg', 'use_country_code_before_number', 'Gunakan kod negara sebelum nombor', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14056', 'sg', 'remember_me', 'Ingatlah Aku', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14057', 'sg', 'dont_have_an_account', 'Tidak mempunyai akaun?', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14058', 'sg', 'register_now', 'Daftar sekarang', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14059', 'sg', 'or_login_with', 'Atau Log Masuk Dengan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14060', 'sg', 'oops', 'Alamak ..', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14061', 'sg', 'this_item_is_out_of_stock', 'Item ini kehabisan stok!', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14062', 'sg', 'back_to_shopping', 'Kembali ke membeli-belah', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14063', 'sg', 'login_to_your_account', 'Log masuk ke akaun anda.', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14064', 'sg', 'purchase_history', 'Sejarah pembelian', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14065', 'sg', 'new', 'Baru', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14066', 'sg', 'downloads', 'Muat turun', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14067', 'sg', 'sent_refund_request', 'Permintaan Bayaran Balik Dihantar', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14068', 'sg', 'product_bulk_upload', 'Muat Naik Pukal Produk', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14069', 'sg', 'orders', 'Pesanan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14070', 'sg', 'recieved_refund_request', 'Permintaan Bayaran Balik yang Diterima', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14071', 'sg', 'shop_setting', 'Kedai Kedai', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14072', 'sg', 'payment_history', 'sejarah pembayaran', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14073', 'sg', 'money_withdraw', 'Pengeluaran Wang', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14074', 'sg', 'conversations', 'Perbualan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14075', 'sg', 'my_wallet', 'Dompet saya', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14076', 'sg', 'earning_points', 'Memperoleh Mata', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14077', 'sg', 'support_ticket', 'Tiket Sokongan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14078', 'sg', 'manage_profile', 'Urus Profil', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14079', 'sg', 'sold_amount', 'Jumlah Dijual', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14080', 'sg', 'your_sold_amount_current_month', 'Jumlah jualan anda (bulan semasa)', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14081', 'sg', 'total_sold', 'Jumlah Dijual', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14082', 'sg', 'last_month_sold', 'Bulan Terakhir Dijual', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14083', 'sg', 'total_sale', 'Jumlah jualan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14084', 'sg', 'total_earnings', 'Jumlah pendapatan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14085', 'sg', 'successful_orders', 'Pesanan berjaya', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14086', 'sg', 'total_orders', 'Jumlah pesanan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14087', 'sg', 'pending_orders', 'Pesanan belum selesai', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14088', 'sg', 'cancelled_orders', 'Pesanan dibatalkan', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14089', 'sg', 'product', 'Produk', '2021-02-09 13:12:30', '2021-09-20 12:59:49'),
('14090', 'sg', 'purchased_package', 'Pakej yang Dibeli', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14091', 'sg', 'package_not_found', 'Pakej Tidak Dijumpai', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14092', 'sg', 'upgrade_package', 'Pakej Naik Taraf', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14093', 'sg', 'shop', 'Kedai', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14094', 'sg', 'manage__organize_your_shop', 'Urus & atur kedai anda', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14095', 'sg', 'go_to_setting', 'Pergi ke tetapan', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14096', 'sg', 'payment', 'Pembayaran', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14097', 'sg', 'configure_your_payment_method', 'Konfigurasikan kaedah pembayaran anda', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14098', 'sg', 'my_panel', 'Panel Saya', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14099', 'sg', 'item_has_been_added_to_wishlist', 'Item telah ditambahkan ke senarai keinginan', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14100', 'sg', 'my_points', 'Mata Saya', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14101', 'sg', '_points', 'Mata', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14102', 'sg', 'wallet_money', 'Wang Dompet', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14103', 'sg', 'exchange_rate', 'Kadar pertukaran', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14104', 'sg', 'point_earning_history', 'Sejarah Perolehan Mata', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14105', 'sg', 'date', 'Tarikh', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14106', 'sg', 'points', 'Mata', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14107', 'sg', 'converted', 'Ditukar', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14108', 'sg', 'action', 'Tindakan', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14109', 'sg', 'no_history_found', 'Tiada sejarah dijumpai.', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14110', 'sg', 'convert_has_been_done_successfully_check_your_wallets', 'Penukaran telah berjaya dilakukan Periksa Dompet anda', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14111', 'sg', 'something_went_wrong', 'Ada yang tidak kena', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14112', 'sg', 'remaining_uploads', 'Sisa Muat Naik', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14113', 'sg', 'no_package_found', 'Tiada Pakej Dijumpai', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14114', 'sg', 'search_product', 'Cari produk', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14115', 'sg', 'name', 'Nama', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14116', 'sg', 'current_qty', 'Kuantiti Semasa', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14117', 'sg', 'base_price', 'Harga Asas', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14118', 'sg', 'published', 'Diterbitkan', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14119', 'sg', 'featured', 'Yang diketengahkan', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14120', 'sg', 'options', 'Pilihan', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14121', 'sg', 'edit', 'Edit', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14122', 'sg', 'duplicate', 'Gandakan', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14123', 'sg', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Muat turun fail kerangka dan isi dengan data.', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14124', 'sg', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Anda boleh memuat turun fail contoh untuk memahami bagaimana data mesti diisi.', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14125', 'sg', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Setelah memuat turun dan mengisi fail kerangka, muat naik dalam bentuk di bawah dan hantar.', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14126', 'sg', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Selepas memuat naik produk, anda perlu mengeditnya dan menetapkan gambar dan pilihan produk.', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14127', 'sg', 'download_csv', 'Muat turun CSV', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14128', 'sg', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Kategori, Sub kategori, Sub Sub kategori dan Jenama hendaklah dalam angka berangka.', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14129', 'sg', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Anda boleh memuat turun pdf untuk mendapatkan Kategori, Sub kategori, Sub Sub kategori dan id Jenama.', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14130', 'sg', 'download_category', 'Kategori Muat turun', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14131', 'sg', 'download_sub_category', 'Muat turun Sub kategori', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14132', 'sg', 'download_sub_sub_category', 'Muat turun Sub Sub kategori', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14133', 'sg', 'download_brand', 'Muat turun Jenama', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14134', 'sg', 'upload_csv_file', 'Muat naik Fail CSV', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14135', 'sg', 'csv', 'CSV', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14136', 'sg', 'choose_csv_file', 'Pilih Fail CSV', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14137', 'sg', 'upload', 'Muat naik', '2021-02-09 13:12:31', '2021-09-20 12:59:49'),
('14138', 'sg', 'add_new_digital_product', 'Tambah Produk Digital Baru', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14139', 'sg', 'available_status', 'Status yang ada', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14140', 'sg', 'admin_status', 'Status Pentadbir', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14141', 'sg', 'pending_balance', 'Baki Belum Selesai', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14142', 'sg', 'send_withdraw_request', 'Hantar Permintaan Pengeluaran', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14143', 'sg', 'withdraw_request_history', 'Tarik balik sejarah Permintaan', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14144', 'sg', 'amount', 'Jumlah', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14145', 'sg', 'status', 'Status', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14146', 'sg', 'message', 'Mesej', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14147', 'sg', 'send_a_withdraw_request', 'Hantar Permintaan Pengeluaran', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14148', 'sg', 'basic_info', 'Info asas', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14149', 'sg', 'your_phone', 'Telefon awak', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14150', 'sg', 'photo', 'Foto', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14151', 'sg', 'browse', 'Semak imbas', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14152', 'sg', 'your_password', 'Kata laluan Awak', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14153', 'sg', 'new_password', 'Kata laluan baharu', '2021-02-09 13:12:32', '2021-09-20 12:59:49'),
('14154', 'sg', 'confirm_password', 'Sahkan Kata Laluan', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14155', 'sg', 'add_new_address', 'Tambah Alamat Baru', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14156', 'sg', 'payment_setting', 'Tetapan Pembayaran', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14157', 'sg', 'cash_payment', 'Pembayaran tunai', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14158', 'sg', 'bank_payment', 'Bayaran Bank', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14159', 'sg', 'bank_name', 'Nama bank', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14160', 'sg', 'bank_account_name', 'Nama Akaun Bank', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14161', 'sg', 'bank_account_number', 'Nombor akaun bank', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14162', 'sg', 'bank_routing_number', 'Nombor Laluan Bank', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14163', 'sg', 'update_profile', 'Kemas kini Profil', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14164', 'sg', 'change_your_email', 'Tukar e-mel anda', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14165', 'sg', 'your_email', 'Emel anda', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14166', 'sg', 'sending_email', 'Menghantar E-mel ...', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14167', 'sg', 'verify', 'Sahkan', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14168', 'sg', 'update_email', 'Kemas kini E-mel', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14169', 'sg', 'new_address', 'Alamat Baru', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14170', 'sg', 'your_address', 'Alamat anda', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14171', 'sg', 'country', 'Negara', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14172', 'sg', 'select_your_country', 'Pilih negara anda', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14173', 'sg', 'city', 'Bandar', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14174', 'sg', 'your_city', 'Bandar anda', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14175', 'sg', 'your_postal_code', 'Poskod Anda', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14176', 'sg', '880', '+880', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14177', 'sg', 'save', 'Jimat', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14178', 'sg', 'received_refund_request', 'Permintaan Bayaran Balik yang Diterima', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14179', 'sg', 'delete_confirmation', 'Padamkan Pengesahan', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14180', 'sg', 'are_you_sure_to_delete_this', 'Adakah anda pasti memadamkannya?', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14181', 'sg', 'premium_packages_for_sellers', 'Pakej Premium untuk Penjual', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14182', 'sg', 'product_upload', 'Muat Naik Produk', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14183', 'sg', 'digital_product_upload', 'Muat Naik Produk Digital', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14184', 'sg', 'purchase_package', 'Pakej Pembelian', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14185', 'sg', 'select_payment_type', 'Pilih Jenis Pembayaran', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14186', 'sg', 'payment_type', 'Jenis pembayaran', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14187', 'sg', 'select_one', 'Pilih satu', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14188', 'sg', 'online_payment', 'Pembayaran dalam talian', '2021-02-09 13:12:32', '2021-09-20 12:59:50'),
('14189', 'sg', 'offline_payment', 'Pembayaran luar talian', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14190', 'sg', 'purchase_your_package', 'Beli Pakej Anda', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14191', 'sg', 'paypal', 'Paypal', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14192', 'sg', 'stripe', 'Jalur', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14193', 'sg', 'sslcommerz', 'sslcommerz', '2021-02-09 13:12:33', '2021-02-09 13:12:33'),
('14194', 'sg', 'confirm', 'Sahkan', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14195', 'sg', 'offline_package_payment', 'Pembayaran Pakej Luar Talian', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14196', 'sg', 'transaction_id', 'ID Transaksi', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14197', 'sg', 'choose_image', 'Pilih gambar', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14198', 'sg', 'code', 'Kod', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14199', 'sg', 'delivery_status', 'Status penghantaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14200', 'sg', 'payment_status', 'Status bayaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14201', 'sg', 'paid', 'Dibayar', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14202', 'sg', 'order_details', 'Maklumat-maklumat Pesanan', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14203', 'sg', 'download_invoice', 'Muat turun Invois', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14204', 'sg', 'unpaid', 'Tanpa Bayaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14205', 'sg', 'order_placed', 'Pesanan dibuat', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14206', 'sg', 'confirmed', 'Disahkan', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14207', 'sg', 'on_delivery', 'Dalam penghantaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14208', 'sg', 'delivered', 'Dihantar', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14209', 'sg', 'order_summary', 'Ringkasan Pesanan', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14210', 'sg', 'order_code', 'Kod Pesanan', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14211', 'sg', 'customer', 'Pelanggan', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14212', 'sg', 'total_order_amount', 'Jumlah jumlah pesanan', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14213', 'sg', 'shipping_metdod', 'Metdod penghantaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14214', 'sg', 'flat_shipping_rate', 'Kadar penghantaran rata', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14215', 'sg', 'payment_metdod', 'Metod pembayaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14216', 'sg', 'variation', 'Variasi', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14217', 'sg', 'delivery_type', 'Jenis Penghantaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14218', 'sg', 'home_delivery', 'Penghantaran ke rumah', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14219', 'sg', 'order_ammount', 'Jumlah Pesanan', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14220', 'sg', 'subtotal', 'jumlah kecil', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14221', 'sg', 'shipping', 'penghantaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14222', 'sg', 'coupon_discount', 'Potongan Kupon', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14223', 'sg', 'na', 'N / A', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14224', 'sg', 'in_stock', 'Dalam stok', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14225', 'sg', 'buy_now', 'Beli sekarang', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14226', 'sg', 'item_added_to_your_cart', 'Item ditambahkan ke troli anda!', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14227', 'sg', 'proceed_to_checkout', 'Teruskan ke Checkout', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14228', 'sg', 'cart_items', 'Item Troli', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14229', 'sg', '1_my_cart', '1. Troli Saya', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14230', 'sg', 'view_cart', 'Lihat troli', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14231', 'sg', '2_shipping_info', '2. Maklumat penghantaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14232', 'sg', 'checkout', 'Daftar keluar', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14233', 'sg', '3_delivery_info', '3. Maklumat penghantaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14234', 'sg', '4_payment', '4. Pembayaran', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14235', 'sg', '5_confirmation', '5. Pengesahan', '2021-02-09 13:12:33', '2021-09-20 12:59:50'),
('14236', 'sg', 'remove', 'Keluarkan', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14237', 'sg', 'return_to_shop', 'Kembali ke kedai', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14238', 'sg', 'continue_to_shipping', 'Terus Penghantaran', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14239', 'sg', 'or', 'Atau', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14240', 'sg', 'guest_checkout', 'Daftar Keluar Tetamu', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14241', 'sg', 'continue_to_delivery_info', 'Terus ke Maklumat Penghantaran', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14242', 'sg', 'postal_code', 'Poskod', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14243', 'sg', 'choose_delivery_type', 'Pilih Jenis Penghantaran', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14244', 'sg', 'local_pickup', 'Pengambilan Tempatan', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14245', 'sg', 'select_your_nearest_pickup_point', 'Pilih tempat pengambilan terdekat anda', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14246', 'sg', 'continue_to_payment', 'Terus ke Pembayaran', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14247', 'sg', 'select_a_payment_option', 'Pilih pilihan pembayaran', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14248', 'sg', 'razorpay', 'Razorpay', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14249', 'sg', 'paystack', 'Paystack', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14250', 'sg', 'voguepay', 'VoguePay', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14251', 'sg', 'payhere', 'gaji', '2021-02-09 13:12:34', '2021-02-09 13:12:34'),
('14252', 'sg', 'ngenius', 'ngenius', '2021-02-09 13:12:34', '2021-02-09 13:12:34'),
('14253', 'sg', 'paytm', 'Bayaran', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14254', 'sg', 'cash_on_delivery', 'Tunai semasa Penghantaran', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14255', 'sg', 'your_wallet_balance_', 'Baki dompet anda:', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14256', 'sg', 'insufficient_balance', 'Baki tidak mencukupi', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14257', 'sg', 'i_agree_to_the', 'saya setuju dengan', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14258', 'sg', 'complete_order', 'Pesanan Lengkap', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14259', 'sg', 'summary', 'Ringkasan', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14260', 'sg', 'items', 'Barang', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14261', 'sg', 'total_club_point', 'Jumlah mata Kelab', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14262', 'sg', 'total_shipping', 'Jumlah Penghantaran', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14263', 'sg', 'have_coupon_code_enter_here', 'Ada kod kupon? Masuk ke sini', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14264', 'sg', 'apply', 'Memohon', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14265', 'sg', 'you_need_to_agree_with_our_policies', 'Anda perlu bersetuju dengan dasar kami', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14266', 'sg', 'forgot_password', 'Lupa kata laluan', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14267', 'sg', 'seo_setting', 'Tetapan SEO', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14268', 'sg', 'system_update', 'Kemas kini sistem', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14269', 'sg', 'add_new_payment_method', 'Tambahkan Kaedah Pembayaran Baru', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14270', 'sg', 'manual_payment_method', 'Kaedah Pembayaran Manual', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14271', 'sg', 'heading', 'Tajuk', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14272', 'sg', 'logo', 'Logo', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14273', 'sg', 'manual_payment_information', 'Maklumat Pembayaran Manual', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14274', 'sg', 'type', 'Jenis', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14275', 'sg', 'custom_payment', 'Pembayaran Tersuai', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14276', 'sg', 'check_payment', 'Cek Bayaran', '2021-02-09 13:12:34', '2021-09-20 12:59:50'),
('14277', 'sg', 'checkout_thumbnail', 'Gambar Kecil Checkout', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14278', 'sg', 'payment_instruction', 'Arahan Pembayaran', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14279', 'sg', 'bank_information', 'Maklumat bank', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14280', 'sg', 'select_file', 'Pilih fail', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14281', 'sg', 'upload_new', 'Muat Naik Baru', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14282', 'sg', 'sort_by_newest', 'Susun mengikut yang terbaru', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14283', 'sg', 'sort_by_oldest', 'Susun mengikut yang tertua', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14284', 'sg', 'sort_by_smallest', 'Isih mengikut terkecil', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14285', 'sg', 'sort_by_largest', 'Susun mengikut yang terbesar', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14286', 'sg', 'selected_only', 'Dipilih Sahaja', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14287', 'sg', 'no_files_found', 'Fail tidak dijumpai', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14288', 'sg', '0_file_selected', '0 Fail dipilih', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14289', 'sg', 'clear', 'Jelas', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14290', 'sg', 'prev', 'Sebelumnya', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14291', 'sg', 'next', 'Seterusnya', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14292', 'sg', 'add_files', 'Menambah fail', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14293', 'sg', 'method_has_been_inserted_successfully', 'Kaedah telah berjaya dimasukkan', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14294', 'sg', 'order_date', 'Tarikh pesanan', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14295', 'sg', 'bill_to', 'Bil ke', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14296', 'sg', 'sub_total', 'Jumlah kecil', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14297', 'sg', 'total_tax', 'Jumlah Cukai', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14298', 'sg', 'grand_total', 'Jumlah keseluruhan', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14299', 'sg', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Pesanan anda berjaya dihantar. Sila hantarkan maklumat pembayaran dari sejarah pembelian', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14300', 'sg', 'thank_you_for_your_order', 'Terima kasih atas pesanan anda!', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14301', 'sg', 'order_code', 'Kod Pesanan:', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14302', 'sg', 'a_copy_or_your_order_summary_has_been_sent_to', 'Salinan atau ringkasan pesanan anda telah dihantar ke', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14303', 'sg', 'make_payment', 'Buat bayaran', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14304', 'sg', 'payment_screenshot', 'Tangkapan skrin pembayaran', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14305', 'sg', 'paypal_credential', 'Kelayakan Paypal', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14306', 'sg', 'paypal_client_id', 'ID Pelanggan Paypal', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14307', 'sg', 'paypal_client_secret', 'Rahsia Pelanggan Paypal', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14308', 'sg', 'paypal_sandbox_mode', 'Mod Kotak Pasir Paypal', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14309', 'sg', 'sslcommerz_credential', 'Kelayakan Sslcommerz', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14310', 'sg', 'sslcz_store_id', 'Id Kedai Sslcz', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14311', 'sg', 'sslcz_store_password', 'Kata laluan kedai Sslcz', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14312', 'sg', 'sslcommerz_sandbox_mode', 'Mod Kotak Pasir Sslcommerz', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14313', 'sg', 'stripe_credential', 'Kredensial Stripe', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14314', 'sg', 'stripe_key', 'KUNCI STRIPE', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14315', 'sg', 'stripe_secret', 'RAHSIA STRIPE', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14316', 'sg', 'razorpay_credential', 'Kelayakan RazorPay', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14317', 'sg', 'razor_key', 'KUNCI RAZOR', '2021-02-09 13:12:35', '2021-09-20 12:59:50'),
('14318', 'sg', 'razor_secret', 'RAHSIA RAZOR', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14319', 'sg', 'instamojo_credential', 'Kelayakan Instamojo', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14320', 'sg', 'api_key', 'KUNCI API', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14321', 'sg', 'im_api_key', 'KUNCI API IM', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14322', 'sg', 'auth_token', 'TOKEN AUTH', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14323', 'sg', 'im_auth_token', 'TOKEN KEBENARAN IM', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14324', 'sg', 'instamojo_sandbox_mode', 'Mod Kotak Pasir Instamojo', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14325', 'sg', 'paystack_credential', 'Kelayakan PayStack', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14326', 'sg', 'public_key', 'KUNCI AWAM', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14327', 'sg', 'secret_key', 'KUNCI RAHSIA', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14328', 'sg', 'merchant_email', 'E-mel PEKERJA', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14329', 'sg', 'voguepay_credential', 'Kelayakan VoguePay', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14330', 'sg', 'merchant_id', 'ID PENGEDAR', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14331', 'sg', 'sandbox_mode', 'Mod Kotak Pasir', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14332', 'sg', 'payhere_credential', 'Kelayakan Payhere', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14333', 'sg', 'payhere_merchant_id', 'ID PEMBELI PAYHERE', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14334', 'sg', 'payhere_secret', 'RAHSIA PAYHERE', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14335', 'sg', 'payhere_currency', 'MATA WANG BAYARAN', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14336', 'sg', 'payhere_sandbox_mode', 'Mod Kotak Pasir Payhere', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14337', 'sg', 'ngenius_credential', 'Kepujian Ngenius', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14338', 'sg', 'ngenius_outlet_id', 'ID NGENIUS OUTLET', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14339', 'sg', 'ngenius_api_key', 'KUNCI API NGENIUS', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14340', 'sg', 'ngenius_currency', 'MATA WANG NGENIUS', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14341', 'sg', 'mpesa_credential', 'Kepujian Mpesa', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14342', 'sg', 'mpesa_consumer_key', 'KUNCI PENGGUNA MPESA', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14343', 'sg', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14344', 'sg', 'mpesa_consumer_secret', 'RAHSIA PENGGUNA MPESA', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14345', 'sg', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14346', 'sg', 'mpesa_short_code', 'KOD PENDEK MPESA', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14347', 'sg', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14348', 'sg', 'mpesa_sandbox_activation', 'AKTIVITI SANDBOX MPESA', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14349', 'sg', 'flutterwave_credential', 'Kelayakan Flutterwave', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14350', 'sg', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14351', 'sg', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14352', 'sg', 'rave_title', 'RAVE_TITLE', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14353', 'sg', 'stagin_activation', 'PENGAKTIFAN STAGIN', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14354', 'sg', 'all_product', 'Semua Produk', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14355', 'sg', 'sort_by', 'Disusun mengikut', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14356', 'sg', 'rating_high__low', 'Penilaian (Tinggi> Rendah)', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14357', 'sg', 'rating_low__high', 'Penilaian (Rendah> Tinggi)', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14358', 'sg', 'num_of_sale_high__low', 'Jumlah Jualan (Tinggi> Rendah)', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14359', 'sg', 'num_of_sale_low__high', 'Jumlah Jualan (Rendah> Tinggi)', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14360', 'sg', 'base_price_high__low', 'Harga Asas (Tinggi> Rendah)', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14361', 'sg', 'base_price_low__high', 'Harga Asas (Rendah> Tinggi)', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14362', 'sg', 'type__enter', 'Taip & Masukkan', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14363', 'sg', 'added_by', 'Ditambah Oleh', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14364', 'sg', 'num_of_sale', 'Jumlah Jualan', '2021-02-09 13:12:36', '2021-09-20 12:59:50'),
('14365', 'sg', 'total_stock', 'Jumlah Stok', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14366', 'sg', 'todays_deal', 'Tawaran Hari Ini', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14367', 'sg', 'rating', 'Penarafan', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14368', 'sg', 'times', 'kali', '2021-02-09 13:12:37', '2021-02-09 13:12:37'),
('14369', 'sg', 'add_nerw_product', 'Tambah Produk Nerw', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14370', 'sg', 'product_information', 'informasi produk', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14371', 'sg', 'unit', 'Unit', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14372', 'sg', 'unit_eg_kg_pc_etc', 'Unit (contohnya KG, Pc dll)', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14373', 'sg', 'minimum_qty', 'Kuantiti minimum', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14374', 'sg', 'tags', 'Teg', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14375', 'sg', 'type_and_hit_enter_to_add_a_tag', 'Taip dan tekan enter untuk menambah teg', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14376', 'sg', 'barcode', 'Kod bar', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14377', 'sg', 'refundable', 'Dikembalikan', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14378', 'sg', 'product_images', 'Imej Produk', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14379', 'sg', 'gallery_images', 'Gambar Galeri', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14380', 'sg', 'todays_deal_updated_successfully', 'Tawaran Hari Ini berjaya dikemas kini', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14381', 'sg', 'published_products_updated_successfully', 'Produk yang diterbitkan berjaya dikemas kini', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14382', 'sg', 'thumbnail_image', 'Gambar Lakaran Kecil', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14383', 'sg', 'featured_products_updated_successfully', 'Produk unggulan berjaya dikemas kini', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14384', 'sg', 'product_videos', 'Video Produk', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14385', 'sg', 'video_provider', 'Penyedia Video', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14386', 'sg', 'youtube', 'Youtube', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14387', 'sg', 'dailymotion', 'Dailymotion', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14388', 'sg', 'vimeo', 'Vimeo', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14389', 'sg', 'video_link', 'Pautan Video', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14390', 'sg', 'product_variation', 'Variasi Produk', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14391', 'sg', 'colors', 'Warna', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14392', 'sg', 'attributes', 'Atribut', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14393', 'sg', 'choose_attributes', 'Pilih Atribut', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14394', 'sg', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Pilih atribut produk ini dan kemudian masukkan nilai setiap atribut', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14395', 'sg', 'product_price__stock', 'Harga produk + stok', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14396', 'sg', 'unit_price', 'Harga seunit', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14397', 'sg', 'purchase_price', 'Harga pembelian', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14398', 'sg', 'flat', 'Rata', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14399', 'sg', 'percent', 'Peratus', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14400', 'sg', 'discount', 'Diskaun', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14401', 'sg', 'product_description', 'Penerangan Produk', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14402', 'sg', 'product_shipping_cost', 'Kos Penghantaran Produk', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14403', 'sg', 'free_shipping', 'Penghantaran percuma', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14404', 'sg', 'flat_rate', 'Kadar rata', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14405', 'sg', 'shipping_cost', 'Kos penghantaran', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14406', 'sg', 'pdf_specification', 'Spesifikasi PDF', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14407', 'sg', 'seo_meta_tags', 'Teg Meta SEO', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14408', 'sg', 'meta_title', 'Tajuk Meta', '2021-02-09 13:12:37', '2021-09-20 12:59:50'),
('14409', 'sg', 'meta_image', 'Imej Meta', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14410', 'sg', 'choice_title', 'Tajuk Pilihan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14411', 'sg', 'enter_choice_values', 'Masukkan nilai pilihan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14412', 'sg', 'all_categories', 'Semua Kategori', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14413', 'sg', 'add_new_category', 'Tambah kategori Baru', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14414', 'sg', 'type_name__enter', 'Taipkan nama & Masukkan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14415', 'sg', 'banner', 'Sepanduk', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14416', 'sg', 'commission', 'Suruhanjaya', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14417', 'sg', 'icon', 'ikon', '2021-02-09 13:12:38', '2021-02-09 13:12:38'),
('14418', 'sg', 'featured_categories_updated_successfully', 'Kategori pilihan berjaya dikemas kini', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14419', 'sg', 'hot', 'Panas', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14420', 'sg', 'filter_by_payment_status', 'Tapis mengikut Status Pembayaran', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14421', 'sg', 'unpaid', 'Tanpa Bayaran', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14422', 'sg', 'filter_by_deliver_status', 'Tapis mengikut Status Penghantaran', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14423', 'sg', 'pending', 'Yang belum selesai', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14424', 'sg', 'type_order_code__hit_enter', 'Taipkan kod pesanan & tekan Enter', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14425', 'sg', 'num_of_products', 'Bil. Produk', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14426', 'sg', 'walk_in_customer', 'Berjalan di Pelanggan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14427', 'sg', 'qty', 'QTY', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14428', 'sg', 'without_shipping_charge', 'Tanpa Caj Penghantaran', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14429', 'sg', 'with_shipping_charge', 'Dengan Caj Penghantaran', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14430', 'sg', 'pay_with_cash', 'Bayar Dengan Wang Tunai', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14431', 'sg', 'shipping_address', 'Alamat Penghantaran', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14432', 'sg', 'close', 'Tutup', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14433', 'sg', 'select_country', 'Pilih negara', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14434', 'sg', 'order_confirmation', 'Pengesahan pesanan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14435', 'sg', 'are_you_sure_to_confirm_this_order', 'Adakah anda pasti mengesahkan pesanan ini?', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14436', 'sg', 'comfirm_order', 'Perintah Mematuhi', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14437', 'sg', 'personal_info', 'Maklumat peribadi', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14438', 'sg', 'repeat_password', 'Ulang kata laluan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14439', 'sg', 'shop_name', 'Nama Kedai', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14440', 'sg', 'register_your_shop', 'Daftarkan Kedai Anda', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14441', 'sg', 'affiliate_informations', 'Maklumat Gabungan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14442', 'sg', 'affiliate', 'Ahli gabungan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14443', 'sg', 'user_info', 'Maklumat Pengguna', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14444', 'sg', 'installed_addon', 'Addon dipasang', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14445', 'sg', 'available_addon', 'Addon yang ada', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14446', 'sg', 'install_new_addon', 'Pasang Addon Baru', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14447', 'sg', 'version', 'Versi', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14448', 'sg', 'activated', 'Diaktifkan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14449', 'sg', 'deactivated', 'Nyahaktifkan', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14450', 'sg', 'activate_otp', 'Aktifkan OTP', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14451', 'sg', 'otp_will_be_used_for', 'OTP akan digunakan untuk', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14452', 'sg', 'settings_updated_successfully', 'Tetapan berjaya dikemas kini', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14453', 'sg', 'product_owner', 'Pemilik Produk', '2021-02-09 13:12:38', '2021-09-20 12:59:50'),
('14454', 'sg', 'point', 'Titik', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14455', 'sg', 'set_point_for_product_within_a_range', 'Tetapkan Titik untuk Produk Dalam Julat', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14456', 'sg', 'set_point_for_multiple_products', 'Tetapkan Titik untuk pelbagai produk', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14457', 'sg', 'min_price', 'Harga Min', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14458', 'sg', 'max_price', 'Harga Maksimum', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14459', 'sg', 'set_point_for_all_products', 'Tetapkan Titik untuk semua Produk', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14460', 'sg', 'set_point_for_', 'Tetapkan Titik Untuk', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14461', 'sg', 'convert_status', 'Tukar Status', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14462', 'sg', 'earned_at', 'Diperolehi Pada', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14463', 'sg', 'seller_based_selling_report', 'Laporan Jual Berdasarkan Penjual', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14464', 'sg', 'sort_by_verificarion_status', 'Isih mengikut status verifikasi', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14465', 'sg', 'approved', 'Diluluskan', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14466', 'sg', 'non_approved', 'Tidak Diluluskan', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14467', 'sg', 'filter', 'Tapis', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14468', 'sg', 'seller_name', 'Nama Penjual', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14469', 'sg', 'number_of_product_sale', 'Bilangan Jualan Produk', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14470', 'sg', 'order_amount', 'Jumlah Pesanan', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14471', 'sg', 'facebook_chat_setting', 'Tetapan Sembang Facebook', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14472', 'sg', 'facebook_page_id', 'ID Halaman Facebook', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14473', 'sg', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Berhati-hatilah semasa anda mengkonfigurasi sembang Facebook. Untuk konfigurasi yang salah, anda tidak akan mendapat ikon messenger di laman web pengguna anda.', '2021-02-09 13:12:39', '2021-09-20 12:59:50'),
('14474', 'sg', 'login_into_your_facebook_page', 'Log masuk ke laman facebook anda', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14475', 'sg', 'find_the_about_option_of_your_facebook_page', 'Cari pilihan Tentang halaman facebook anda', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14476', 'sg', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'Di bahagian paling bawah, anda boleh menemui \\ \"ID Halaman Facebook \\\"', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14477', 'sg', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Pergi ke Tetapan halaman anda dan cari pilihan \\ \"Advance Messaging \\\"', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14478', 'sg', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Tatal ke bawah halaman itu dan anda akan mendapat \\ \"domain yang disenaraikan putih \\\"', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14479', 'sg', 'set_your_website_domain_name', 'Tetapkan nama domain laman web anda', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14480', 'sg', 'google_recaptcha_setting', 'Tetapan Google reCAPTCHA', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14481', 'sg', 'site_key', 'KUNCI laman web', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14482', 'sg', 'select_shipping_method', 'Pilih Kaedah Penghantaran', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14483', 'sg', 'product_wise_shipping_cost', 'Kos Penghantaran Produk', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14484', 'sg', 'flat_rate_shipping_cost', 'Kos Penghantaran Kadar Rata', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14485', 'sg', 'seller_wise_flat_shipping_cost', 'Kos Penghantaran Rata-rata Penjual', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14486', 'sg', 'note', 'Catatan', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14487', 'sg', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Penghitungan Kos Penghantaran Produk Bijak: Kos penghantaran dikira dengan penambahan setiap kos penghantaran produk', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14488', 'sg', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Penghitungan Kos Penghantaran Rata-rata: Berapa banyak produk yang dibeli oleh pelanggan, tidak menjadi masalah. Kos penghantaran tetap', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14489', 'sg', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Pengiraan Kos Penghantaran Rata-rata Penjual: Kadar tetap untuk setiap penjual. Sekiranya pelanggan membeli 2 produk dari dua kos penghantaran penjual dikira dengan penambahan setiap kos penghantaran flat setiap penjual', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14490', 'sg', 'flat_rate_cost', 'Kos Kadar Rata', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14491', 'sg', 'shipping_cost_for_admin_products', 'Kos Penghantaran untuk Produk Pentadbir', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14492', 'sg', 'countries', 'Negara', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14493', 'sg', 'showhide', 'Tunjukkan / Sembunyikan', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14494', 'sg', 'country_status_updated_successfully', 'Status negara berjaya dikemas kini', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14495', 'sg', 'all_subcategories', 'Semua Subkategori', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14496', 'sg', 'add_new_subcategory', 'Tambah Subkategori Baru', '2021-02-09 13:12:39', '2021-09-20 12:59:51'),
('14497', 'sg', 'subcategories', 'Sub-Kategori', '2021-02-09 13:12:40', '2021-09-20 12:59:51'),
('14498', 'sg', 'sub_category_information', 'Maklumat Sub Kategori', '2021-02-09 13:13:25', '2021-09-20 12:59:51'),
('14499', 'sg', 'slug', 'Slug', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14500', 'sg', 'all_sub_subcategories', 'Semua Subkategori', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14501', 'sg', 'add_new_sub_subcategory', 'Tambah Subkategori Baru', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14502', 'sg', 'subsubcategories', 'Sub-sub-kategori', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14503', 'sg', 'make_this_default', 'Jadikan Lalai Ini', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14504', 'sg', 'shops', 'Kedai', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14505', 'sg', 'women_clothing__fashion', 'Pakaian & Fesyen Wanita', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14506', 'sg', 'cellphones__tabs', 'Telefon bimbit & Tab', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14507', 'sg', 'welcome_to', 'Selamat datang ke', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14508', 'sg', 'create_a_new_account', 'Buat Akaun Baru', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14509', 'sg', 'full_name', 'Nama penuh', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14510', 'sg', 'password', 'kata laluan', '2021-02-09 13:13:26', '2021-02-09 13:13:26'),
('14511', 'sg', 'confrim_password', 'Konfirmasi Kata Laluan', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14512', 'sg', 'i_agree_with_the', 'Saya bersetuju dengan', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14513', 'sg', 'terms_and_conditions', 'Terma dan syarat', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14514', 'sg', 'register', 'Daftar', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14515', 'sg', 'already_have_an_account', 'Sudah mempunyai akaun', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14516', 'sg', 'sign_up_with', 'Daftar dengan', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14517', 'sg', 'i_agree_with_the_terms_and_conditions', 'Saya bersetuju dengan Terma dan Syarat', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14518', 'sg', 'all_role', 'Semua Peranan', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14519', 'sg', 'add_new_role', 'Tambah Peranan Baru', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14520', 'sg', 'roles', 'Peranan', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14521', 'sg', 'add_new_staffs', 'Tambah Kakitangan Baru', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14522', 'sg', 'role', 'Peranan', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14523', 'sg', 'frontend_website_name', 'Nama Laman Web Frontend', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14524', 'sg', 'website_name', 'Nama Laman Web', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14525', 'sg', 'site_motto', 'Moto Laman Web', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14526', 'sg', 'best_ecommerce_website', 'Laman Web eCommerce Terbaik', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14527', 'sg', 'site_icon', 'Ikon Tapak', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14528', 'sg', 'website_favicon_32x32_png', 'Favicon laman web. 32x32 .png', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14529', 'sg', 'website_base_color', 'Warna Pangkalan Laman Web', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14530', 'sg', 'hex_color_code', 'Kod Warna Hex', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14531', 'sg', 'website_base_hover_color', 'Warna Hover Pangkalan Laman Web', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14532', 'sg', 'update', 'Kemas kini', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14533', 'sg', 'global_seo', 'Seo Global', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14534', 'sg', 'meta_description', 'Penerangan meta', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14535', 'sg', 'keywords', 'Kata kunci', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14536', 'sg', 'separate_with_coma', 'Pisahkan dengan koma', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14537', 'sg', 'website_pages', 'Halaman Laman Web', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14538', 'sg', 'all_pages', 'Semua Halaman', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14539', 'sg', 'add_new_page', 'Tambah Halaman Baru', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14540', 'sg', 'url', 'URL', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14541', 'sg', 'actions', 'Tindakan', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14542', 'sg', 'edit_page_information', 'Edit Maklumat Halaman', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14543', 'sg', 'page_content', 'Kandungan Halaman', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14544', 'sg', 'title', 'Tajuk', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14545', 'sg', 'link', 'Pautan', '2021-02-09 13:13:26', '2021-09-20 12:59:51'),
('14546', 'sg', 'use_character_number_hypen_only', 'Gunakan watak, nombor, tanda hubung sahaja', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14547', 'sg', 'add_content', 'Tambah Kandungan', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14548', 'sg', 'seo_fields', 'Seo Fields', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14549', 'sg', 'update_page', 'Kemas kini Halaman', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14550', 'sg', 'default_language', 'Bahasa Lalai', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14551', 'sg', 'add_new_language', 'Tambah Bahasa Baru', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14552', 'sg', 'rtl', 'RTL', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14553', 'sg', 'translation', 'Terjemahan', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14554', 'sg', 'language_information', 'Maklumat Bahasa', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14555', 'sg', 'save_page', 'Simpan Halaman', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14556', 'sg', 'home_page_settings', 'Tetapan Halaman Utama', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14557', 'sg', 'home_slider', 'Gelangsar Rumah', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14558', 'sg', 'photos__links', 'Foto & Pautan', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14559', 'sg', 'add_new', 'Tambah baru', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14560', 'sg', 'home_categories', 'Kategori Rumah', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14561', 'sg', 'home_banner_1_max_3', 'Sepanduk Rumah 1 (Maksimum 3)', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14562', 'sg', 'banner__links', 'Sepanduk & Pautan', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14563', 'sg', 'home_banner_2_max_3', 'Sepanduk Rumah 2 (Maksimum 3)', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14564', 'sg', 'top_10', '10 teratas', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14565', 'sg', 'top_categories_max_10', 'Kategori Teratas (Maksimum 10)', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14566', 'sg', 'top_brands_max_10', 'Jenama Teratas (Maksimum 10)', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14567', 'sg', 'system_name', 'Nama Sistem', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14568', 'sg', 'system_logo__white', 'Logo Sistem - Putih', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14569', 'sg', 'choose_files', 'Pilih Fail', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14570', 'sg', 'will_be_used_in_admin_panel_side_menu', 'Akan digunakan dalam menu sisi panel pentadbir', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14571', 'sg', 'system_logo__black', 'Logo Sistem - Hitam', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14572', 'sg', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Akan digunakan dalam barisan panel pentadbir di halaman masuk mudah alih + Pentadbir', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14573', 'sg', 'system_timezone', 'Zon Waktu Sistem', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14574', 'sg', 'admin_login_page_background', 'Latar belakang halaman log masuk pentadbir', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14575', 'sg', 'website_header', 'Pengepala Laman Web', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14576', 'sg', 'header_setting', 'Penetapan Header', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14577', 'sg', 'header_logo', 'Logo Pengepala', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14578', 'sg', 'show_language_switcher', 'Tunjukkan Pengalih Bahasa?', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14579', 'sg', 'show_currency_switcher', 'Tunjukkan Penukar Mata Wang?', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14580', 'sg', 'enable_stikcy_header', 'Dayakan pengepala tegas?', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14581', 'sg', 'website_footer', 'Footer Laman Web', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14582', 'sg', 'footer_widget', 'Widget Kaki', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14583', 'sg', 'about_widget', 'Mengenai Widget', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14584', 'sg', 'footer_logo', 'Logo Footer', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14585', 'sg', 'about_description', 'Mengenai keterangan', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14586', 'sg', 'contact_info_widget', 'Widget Maklumat Perhubungan', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14587', 'sg', 'footer_contact_address', 'Alamat hubungan footer', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14588', 'sg', 'footer_contact_phone', 'Telefon kenalan footer', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14589', 'sg', 'footer_contact_email', 'E-mel hubungan footer', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14590', 'sg', 'link_widget_one', 'Pautan Widget Satu', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14591', 'sg', 'links', 'Pautan', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14592', 'sg', 'footer_bottom', 'Bahagian Bawah Kaki', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14593', 'sg', 'copyright_widget_', 'Widget Hak Cipta', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14594', 'sg', 'copyright_text', 'Teks Hak Cipta', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14595', 'sg', 'social_link_widget_', 'Widget Pautan Sosial', '2021-02-09 13:13:27', '2021-09-20 12:59:51'),
('14596', 'sg', 'show_social_links', 'Tunjukkan Pautan Sosial?', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14597', 'sg', 'social_links', 'Pautan Sosial', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14598', 'sg', 'payment_methods_widget_', 'Widget Kaedah Pembayaran', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14599', 'sg', 'rtl_status_updated_successfully', 'Status RTL berjaya dikemas kini', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14600', 'sg', 'language_changed_to_', 'Bahasa ditukar menjadi', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14601', 'sg', 'inhouse_product_sale_report', 'Laporan penjualan Produk Inhouse', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14602', 'sg', 'sort_by_category', 'Susun mengikut Kategori', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14603', 'sg', 'product_wise_stock_report', 'Laporan stok produk', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14604', 'sg', 'currency_changed_to_', 'Mata wang ditukar menjadi', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14605', 'sg', 'avatar', 'Avatar', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14606', 'sg', 'copy', 'Salinan', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14607', 'sg', 'variant', 'Pelbagai', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14608', 'sg', 'variant_price', 'Harga Bervariasi', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14609', 'sg', 'sku', 'SKU', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14610', 'sg', 'key', 'Kunci', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14611', 'sg', 'value', 'Nilai', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14612', 'sg', 'copy_translations', 'Salin Terjemahan', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14613', 'sg', 'all_pickup_points', 'Semua Mata Pengambilan', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14614', 'sg', 'add_new_pickup_point', 'Tambah Titik Pengambilan Baru', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14615', 'sg', 'manager', 'Pengurus', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14616', 'sg', 'location', 'Lokasi', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14617', 'sg', 'pickup_station_contact', 'Hubungi Stesen Pickup', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14618', 'sg', 'open', 'Buka', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14619', 'sg', 'pos_activation_for_seller', 'Pengaktifan POS untuk Penjual', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14620', 'sg', 'order_completed_successfully', 'Pesanan Selesai Berjaya.', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14621', 'sg', 'text_input', 'Input Teks', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14622', 'sg', 'select', 'Pilih', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14623', 'sg', 'multiple_select', 'Pelbagai Pilihan', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14624', 'sg', 'radio', 'Radio', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14625', 'sg', 'file', 'Fail', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14626', 'sg', 'email_address', 'Alamat emel', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14627', 'sg', 'verification_info', 'Maklumat Pengesahan', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14628', 'sg', 'approval', 'Kelulusan', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14629', 'sg', 'due_amount', 'Jumlah Hutang', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14630', 'sg', 'show', 'Tunjuk', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14631', 'sg', 'pay_now', 'Bayar sekarang', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14632', 'sg', 'affiliate_user_verification', 'Pengesahan Pengguna Gabungan', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14633', 'sg', 'reject', 'Tolak', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14634', 'sg', 'accept', 'Terima', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14635', 'sg', 'beauty_health__hair', 'Kecantikan, Kesihatan & Rambut', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14636', 'sg', 'comparison', 'Perbandingan', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14637', 'sg', 'reset_compare_list', 'Tetapkan semula Senarai Bandingkan', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14638', 'sg', 'your_comparison_list_is_empty', 'Senarai perbandingan anda kosong', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14639', 'sg', 'convert_point_to_wallet', 'Tukar Titik Ke Dompet', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14640', 'sg', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Catatan: Anda perlu mengaktifkan pilihan dompet terlebih dahulu sebelum menggunakan add point kelab.', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14641', 'sg', 'create_an_account', 'Buat akaun.', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14642', 'sg', 'use_email_instead', 'Gunakan E-mel Sebaliknya', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14643', 'sg', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Dengan mendaftar anda bersetuju dengan terma dan syarat kami.', '2021-02-09 13:13:28', '2021-09-20 12:59:51'),
('14644', 'sg', 'create_account', 'Buat akaun', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14645', 'sg', 'or_join_with', 'Atau Sertai Dengan', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14646', 'sg', 'already_have_an_account', 'Sudah mempunyai akaun?', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14647', 'sg', 'log_in', 'Log masuk', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14648', 'sg', 'computer__accessories', 'Aksesori komputer', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14649', 'sg', 'products', 'Produk', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14650', 'sg', 'in_your_cart', 'di dalam troli anda', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14651', 'sg', 'in_your_wishlist', 'dalam senarai keinginan anda', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14652', 'sg', 'you_ordered', 'awak pesan', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14653', 'sg', 'default_shipping_address', 'Alamat Penghantaran Lalai', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14654', 'sg', 'sports__outdoor', 'Sukan & luaran', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14655', 'sg', 'copied', 'Disalin', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14656', 'sg', 'copy_the_promote_link', 'Salin Pautan Promosi', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14657', 'sg', 'write_a_review', 'Menulis ulasan', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14658', 'sg', 'your_name', 'Nama awak', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14659', 'sg', 'comment', 'Komen', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14660', 'sg', 'your_review', 'Ulasan anda', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14661', 'sg', 'submit_review', 'Hantar semakan', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14662', 'sg', 'claire_willis', 'Claire Willis', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14663', 'sg', 'germaine_greene', 'Germaine Greene', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14664', 'sg', 'product_file', 'Fail Produk', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14665', 'sg', 'choose_file', 'Pilih fail', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14666', 'sg', 'type_to_add_a_tag', 'Taip untuk menambah teg', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14667', 'sg', 'images', 'Gambar', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14668', 'sg', 'main_images', 'Imej Utama', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14669', 'sg', 'meta_tags', 'Teg Meta', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14670', 'sg', 'digital_product_has_been_inserted_successfully', 'Produk Digital berjaya dimasukkan', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14671', 'sg', 'edit_digital_product', 'Edit Produk Digital', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14672', 'sg', 'select_an_option', 'Buat pilihan', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14673', 'sg', 'tax', 'cukai', '2021-02-09 13:13:29', '2021-02-09 13:13:29'),
('14674', 'sg', 'any_question_about_this_product', 'Ada sebarang pertanyaan mengenai produk ini?', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14675', 'sg', 'sign_in', 'Log masuk', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14676', 'sg', 'login_with_google', 'Log masuk dengan Google', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14677', 'sg', 'login_with_facebook', 'Log masuk melalui Facebook', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14678', 'sg', 'login_with_twitter', 'Log masuk dengan Twitter', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14679', 'sg', 'click_to_show_phone_number', 'Klik untuk menunjukkan nombor telefon', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14680', 'sg', 'other_ads_of', 'Iklan lain dari', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14681', 'sg', 'store_home', 'Stor Rumah', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14682', 'sg', 'top_selling', 'Terlaris', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14683', 'sg', 'shop_settings', 'Tetapan Kedai', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14684', 'sg', 'visit_shop', 'Lawati Kedai', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14685', 'sg', 'pickup_points', 'Mata Pengambilan', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14686', 'sg', 'select_pickup_point', 'Pilih Pickup Point', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14687', 'sg', 'slider_settings', 'Tetapan Gelangsar', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14688', 'sg', 'social_media_link', 'Pautan Media Sosial', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14689', 'sg', 'facebook', 'Facebook', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14690', 'sg', 'twitter', 'Twitter', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14691', 'sg', 'google', 'Google', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14692', 'sg', 'new_arrival_products', 'Produk Ketibaan Baru', '2021-02-09 13:13:29', '2021-09-20 12:59:51'),
('14693', 'sg', 'check_your_order_status', 'Periksa Status Pesanan Anda', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14694', 'sg', 'shipping_method', 'Cara penghantaran', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14695', 'sg', 'shipped_by', 'Dihantar oleh', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14696', 'sg', 'image', 'Imej', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14697', 'sg', 'sub_sub_category', 'Sub Sub Kategori', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14698', 'sg', 'inhouse_products', 'Produk Dalaman', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14699', 'sg', 'forgot_password', 'Lupa kata laluan?', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14700', 'sg', 'enter_your_email_address_to_recover_your_password', 'Masukkan alamat e-mel anda untuk mendapatkan semula kata laluan anda.', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14701', 'sg', 'email_or_phone', 'Emel atau telefon', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14702', 'sg', 'send_password_reset_link', 'Hantar Pautan Tetapkan Semula Kata Laluan', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14703', 'sg', 'back_to_login', 'Kembali ke Log Masuk', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14704', 'sg', 'index', 'indeks', '2021-02-09 13:13:30', '2021-02-09 13:13:30'),
('14705', 'sg', 'download_your_product', 'Muat turun Produk Anda', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14706', 'sg', 'option', 'Pilihan', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14707', 'sg', 'applied_refund_request', 'Permintaan Bayaran Balik Terpakai', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14708', 'sg', 'item_has_been_renoved_from_wishlist', 'Item telah ditukar dari senarai keinginan', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14709', 'sg', 'bulk_products_upload', 'Muat Naik Produk Pukal', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14710', 'sg', 'upload_csv', 'Muat naik CSV', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14711', 'sg', 'create_a_ticket', 'Buat Tiket', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14712', 'sg', 'tickets', 'Tiket', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14713', 'sg', 'ticket_id', 'ID tiket', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14714', 'sg', 'sending_date', 'Tarikh Penghantaran', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14715', 'sg', 'subject', 'Subjek', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14716', 'sg', 'view_details', 'Lihat butiran', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14717', 'sg', 'provide_a_detailed_description', 'Berikan penerangan terperinci', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14718', 'sg', 'type_your_reply', 'Taipkan jawapan anda', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14719', 'sg', 'send_ticket', 'Hantar Tiket', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14720', 'sg', 'load_more', 'Tambah lagi', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14721', 'sg', 'jewelry__watches', 'Perhiasan & Jam Tangan', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14722', 'sg', 'filters', 'Penapis', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14723', 'sg', 'contact_address', 'Alamat', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14724', 'sg', 'contact_phone', 'Telefon kenalan', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14725', 'sg', 'contact_email', 'E-mel hubungan', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14726', 'sg', 'filter_by', 'Tapis mengikut', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14727', 'sg', 'condition', 'Keadaan', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14728', 'sg', 'all_type', 'Semua Jenis', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14729', 'sg', 'pay_with_wallet', 'Bayar dengan dompet', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14730', 'sg', 'select_variation', 'Pilih variasi', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14731', 'sg', 'no_product_added', 'Tiada Produk Ditambah', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14732', 'sg', 'status_has_been_updated_successfully', 'Status telah berjaya dikemas kini', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14733', 'sg', 'all_seller_packages', 'Semua Pakej Penjual', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14734', 'sg', 'add_new_package', 'Tambah Pakej Baru', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14735', 'sg', 'package_logo', 'Logo Pakej', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14736', 'sg', 'days', 'hari-hari', '2021-02-09 13:13:30', '2021-02-09 13:13:30'),
('14737', 'sg', 'create_new_seller_package', 'Buat Pakej Penjual Baru', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14738', 'sg', 'package_name', 'Nama Pakej', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14739', 'sg', 'duration', 'Jangka masa', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14740', 'sg', 'validity_in_number_of_days', 'Kesahan dalam bilangan hari', '2021-02-09 13:13:30', '2021-09-20 12:59:51'),
('14741', 'sg', 'update_package_information', 'Kemas kini Maklumat Pakej', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14742', 'sg', 'package_has_been_inserted_successfully', 'Pakej telah berjaya dimasukkan', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14743', 'sg', 'refund_request', 'Permintaan Bayaran Balik', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14744', 'sg', 'reason', 'Sebab', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14745', 'sg', 'label', 'Label', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14746', 'sg', 'select_label', 'Pilih Label', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14747', 'sg', 'multiple_select_label', 'Pelbagai Pilih Label', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14748', 'sg', 'radio_label', 'Label Radio', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14749', 'sg', 'pickup_point_orders', 'Pesanan Pickup Point', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14750', 'sg', 'view', 'Pandangan', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14751', 'sg', 'order_', 'Pesanan #', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14752', 'sg', 'order_status', 'Status pesanan', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14753', 'sg', 'total_amount', 'Jumlah keseluruhan', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14754', 'sg', 'total', 'JUMLAH', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14755', 'sg', 'delivery_status_has_been_updated', 'Status penghantaran telah dikemas kini', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14756', 'sg', 'payment_status_has_been_updated', 'Status pembayaran telah dikemas kini', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14757', 'sg', 'invoice', 'INVOIS', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14758', 'sg', 'set_refund_time', 'Tetapkan Masa Bayaran Balik', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14759', 'sg', 'set_time_for_sending_refund_request', 'Tetapkan Masa untuk menghantar Permintaan Bayaran Balik', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14760', 'sg', 'set_refund_sticker', 'Tetapkan Pelekat Bayaran Balik', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14761', 'sg', 'sticker', 'Pelekat', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14762', 'sg', 'refund_request_all', 'Permintaan Bayaran Balik Semua', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14763', 'sg', 'order_id', 'Id Pesanan', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14764', 'sg', 'seller_approval', 'Kelulusan Penjual', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14765', 'sg', 'admin_approval', 'Kelulusan Pentadbir', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14766', 'sg', 'refund_status', 'Status Bayaran Balik', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14767', 'sg', 'no_refund', 'Tanpa Bayaran Balik', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14768', 'sg', 'status_updated_successfully', 'Status berjaya dikemas kini', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14769', 'sg', 'user_search_report', 'Laporan Carian Pengguna', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14770', 'sg', 'search_by', 'Dicari oleh', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14771', 'sg', 'number_searches', 'Pencarian nombor', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14772', 'sg', 'sender', 'Penghantar', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14773', 'sg', 'receiver', 'Penerima', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14774', 'sg', 'verification_form_updated_successfully', 'Borang pengesahan berjaya dikemas kini', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14775', 'sg', 'invalid_email_or_password', 'emel dan kata laluan tidak sah', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14776', 'sg', 'all_coupons', 'Semua Kupon', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14777', 'sg', 'add_new_coupon', 'Tambah Kupon Baru', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14778', 'sg', 'coupon_information', 'Maklumat Kupon', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14779', 'sg', 'start_date', 'Tarikh mula', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14780', 'sg', 'end_date', 'Tarikh tamat', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14781', 'sg', 'product_base', 'Pangkalan Produk', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14782', 'sg', 'send_newsletter', 'Hantar Buletin', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14783', 'sg', 'mobile_users', 'Pengguna Mudah Alih', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14784', 'sg', 'sms_subject', 'Subjek SMS', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14785', 'sg', 'sms_content', 'Kandungan SMS', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14786', 'sg', 'all_flash_delas', 'Semua Flash Delas', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14787', 'sg', 'create_new_flash_dela', 'Buat Dela Flash Baru', '2021-02-09 13:13:31', '2021-09-20 12:59:51'),
('14788', 'sg', 'page_link', 'Pautan Halaman', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14789', 'sg', 'flash_deal_information', 'Maklumat Perjanjian Kilat', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14790', 'sg', 'background_color', 'Warna latar belakang', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14791', 'sg', '0000ff', '# 0000ff', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14792', 'sg', 'text_color', 'Warna Teks', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14793', 'sg', 'white', 'Putih', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14794', 'sg', 'dark', 'Gelap', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14795', 'sg', 'choose_products', 'Pilih Produk', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14796', 'sg', 'discounts', 'Potongan harga', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14797', 'sg', 'discount_type', 'Jenis Diskaun', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14798', 'sg', 'twillo_credential', 'Kepujian Twillo', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14799', 'sg', 'twilio_sid', 'TWILIO SID', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14800', 'sg', 'twilio_auth_token', 'TOKEN AUTH TWILIO', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14801', 'sg', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14802', 'sg', 'valid_twillo_number', 'NOMBOR DUA BIL', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14803', 'sg', 'nexmo_credential', 'Kelayakan Nexmo', '2021-02-09 13:13:32', '2021-09-20 12:59:51'),
('14804', 'sg', 'nexmo_key', 'KUNCI NEXMO', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14805', 'sg', 'nexmo_secret', 'RAHSIA NEXMO', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14806', 'sg', 'ssl_wireless_credential', 'Kelayakan Tanpa Wayar SSL', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14807', 'sg', 'ssl_sms_api_token', 'TOKEN API SMS SSL', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14808', 'sg', 'ssl_sms_sid', 'SSL SMS SSL', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14809', 'sg', 'ssl_sms_url', 'URL SMS SSL', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14810', 'sg', 'fast2sms_credential', 'Kelayakan Fast2SMS', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14811', 'sg', 'auth_key', 'KUNCI AUTH', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14812', 'sg', 'route', 'JALAN', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14813', 'sg', 'promotional_use', 'Penggunaan Promosi', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14814', 'sg', 'transactional_use', 'Penggunaan Transaksional', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14815', 'sg', 'sender_id', 'ID PENGHANTAR', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14816', 'sg', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14817', 'sg', 'twillo_otp', 'Twillo OTP', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14818', 'sg', 'ssl_wireless_otp', 'OTP Tanpa Wayar SSL', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14819', 'sg', 'fast2sms_otp', 'OTP Cepat2SMS', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14820', 'sg', 'order_placement', 'Penempatan Pesanan', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14821', 'sg', 'delivery_status_changing_time', 'Status Perubahan Waktu Penghantaran', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14822', 'sg', 'paid_status_changing_time', 'Masa Berubah Status Berbayar', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14823', 'sg', 'send_bulk_sms', 'Hantar SMS Pukal', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14824', 'sg', 'all_subscribers', 'Semua Pelanggan', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14825', 'sg', 'coupon_information_adding', 'Menambah Maklumat Kupon', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14826', 'sg', 'coupon_type', 'Jenis Kupon', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14827', 'sg', 'for_products', 'Untuk Produk', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14828', 'sg', 'for_total_orders', 'Untuk Jumlah Pesanan', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14829', 'sg', 'add_your_product_base_coupon', 'Tambahkan Kupon Pangkalan Produk Anda', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14830', 'sg', 'coupon_code', 'Kod Kupon', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14831', 'sg', 'sub_category', 'Sub Kategori', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14832', 'sg', 'add_more', 'Tambah Lagi', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14833', 'sg', 'add_your_cart_base_coupon', 'Tambahkan Kupon Pangkalan Troli Anda', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14834', 'sg', 'minimum_shopping', 'Belanja Minimum', '2021-02-09 13:13:32', '2021-09-20 12:59:52'),
('14835', 'sg', 'maximum_discount_amount', 'Amaun Diskaun Maksimum', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14836', 'sg', 'coupon_information_update', 'Kemas kini Maklumat Kupon', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14837', 'sg', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Sila Konfigurasikan Tetapan SMTP untuk berfungsi semua e-mel menghantar fungsi', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14838', 'sg', 'configure_now', 'Konfigurasikan Sekarang', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14839', 'sg', 'total_published_products', 'Jumlah produk yang diterbitkan', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14840', 'sg', 'total_sellers_products', 'Jumlah produk penjual', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14841', 'sg', 'total_admin_products', 'Jumlah produk pentadbir', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14842', 'sg', 'manage_products', 'Urus Produk', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14843', 'sg', 'total_product_category', 'Jumlah kategori produk', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14844', 'sg', 'create_category', 'Buat Kategori', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14845', 'sg', 'total_product_sub_sub_category', 'Jumlah subkategori produk', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14846', 'sg', 'create_sub_sub_category', 'Buat Sub Sub Kategori', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14847', 'sg', 'total_product_sub_category', 'Jumlah subkategori produk', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14848', 'sg', 'create_sub_category', 'Buat Sub Kategori', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14849', 'sg', 'total_product_brand', 'Jumlah jenama produk', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14850', 'sg', 'create_brand', 'Buat Jenama', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14851', 'sg', 'total_sellers', 'Jumlah penjual', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14852', 'sg', 'total_approved_sellers', 'Jumlah penjual yang diluluskan', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14853', 'sg', 'total_pending_sellers', 'Jumlah penjual belum selesai', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14854', 'sg', 'manage_sellers', 'Urus Penjual', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14855', 'sg', 'category_wise_product_sale', 'Penjualan produk berdasarkan kategori', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14856', 'sg', 'sale', 'Jualan', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14857', 'sg', 'category_wise_product_stock', 'Stok produk bijak kategori', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14858', 'sg', 'category_name', 'Nama kategori', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14859', 'sg', 'stock', 'Stok', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14860', 'sg', 'frontend', 'Bahagian depan', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14861', 'sg', 'home_page', 'Laman utama', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14862', 'sg', 'setting', 'tetapan', '2021-02-09 13:13:33', '2021-02-09 13:13:33'),
('14863', 'sg', 'policy_page', 'Halaman dasar', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14864', 'sg', 'general', 'Am', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14865', 'sg', 'click_here', 'Tekan di sini', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14866', 'sg', 'useful_link', 'Pautan berguna', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14867', 'sg', 'activation', 'Pengaktifan', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14868', 'sg', 'smtp', 'SMTP', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14869', 'sg', 'payment_method', 'Kaedah pembayaran', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14870', 'sg', 'social_media', 'Media sosial', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14871', 'sg', 'business', 'Perniagaan', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14872', 'sg', 'seller_verification', 'Pengesahan penjual', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14873', 'sg', 'form_setting', 'penetapan borang', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14874', 'sg', 'language', 'Bahasa', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14875', 'sg', 'dashboard', 'Papan Pemuka', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14876', 'sg', 'pos_system', 'Sistem POS', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14877', 'sg', 'pos_manager', 'Pengurus POS', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14878', 'sg', 'pos_configuration', 'Konfigurasi POS', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14879', 'sg', 'products', 'Produk', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14880', 'sg', 'add_new_product', 'Tambah produk Baru', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14881', 'sg', 'all_products', 'Semua produk', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14882', 'sg', 'in_house_products', 'Produk Rumah', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14883', 'sg', 'seller_products', 'Produk Penjual', '2021-02-09 13:13:33', '2021-09-20 12:59:52'),
('14884', 'sg', 'digital_products', 'Produk Digital', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14885', 'sg', 'bulk_import', 'Import Pukal', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14886', 'sg', 'bulk_export', 'Eksport Pukal', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14887', 'sg', 'category', 'Kategori', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14888', 'sg', 'subcategory', 'Subkategori', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14889', 'sg', 'sub_subcategory', 'Subkategori', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14890', 'sg', 'brand', 'Jenama', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14891', 'sg', 'attribute', 'Atribut', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14892', 'sg', 'product_reviews', 'Ulasan Produk', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14893', 'sg', 'sales', 'Jualan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14894', 'sg', 'all_orders', 'Semua Pesanan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14895', 'sg', 'inhouse_orders', 'Pesanan dalam rumah', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14896', 'sg', 'seller_orders', 'Pesanan Penjual', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14897', 'sg', 'pickup_point_order', 'Pesanan Titik Pick-up', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14898', 'sg', 'refunds', 'Bayaran Balik', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14899', 'sg', 'refund_requests', 'Permintaan Bayaran Balik', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14900', 'sg', 'approved_refund', 'Bayaran Balik yang Diluluskan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14901', 'sg', 'refund_configuration', 'Konfigurasi Bayaran Balik', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14902', 'sg', 'customers', 'Pelanggan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14903', 'sg', 'customer_list', 'Senarai pelanggan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14904', 'sg', 'classified_products', 'Produk Terkelaskan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14905', 'sg', 'classified_packages', 'Pakej Terkelaskan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14906', 'sg', 'sellers', 'Penjual', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14907', 'sg', 'all_seller', 'Semua Penjual', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14908', 'sg', 'payouts', 'Bayaran', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14909', 'sg', 'payout_requests', 'Permintaan Pembayaran', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14910', 'sg', 'seller_commission', 'Suruhanjaya Penjual', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14911', 'sg', 'seller_packages', 'Pakej Penjual', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14912', 'sg', 'seller_verification_form', 'Borang Pengesahan Penjual', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14913', 'sg', 'reports', 'Laporan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14914', 'sg', 'in_house_product_sale', 'Jualan Produk Dalam Rumah', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14915', 'sg', 'seller_products_sale', 'Penjualan Produk Penjual', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14916', 'sg', 'products_stock', 'Stok Produk', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14917', 'sg', 'products_wishlist', 'Senarai harapan produk', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14918', 'sg', 'user_searches', 'Carian Pengguna', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14919', 'sg', 'marketing', 'Pemasaran', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14920', 'sg', 'flash_deals', 'Tawaran kilat', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14921', 'sg', 'newsletters', 'Surat berita', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14922', 'sg', 'bulk_sms', 'SMS pukal', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14923', 'sg', 'subscribers', 'Pelanggan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14924', 'sg', 'coupon', 'Kupon', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14925', 'sg', 'support', 'Sokongan', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14926', 'sg', 'ticket', 'Tiket', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14927', 'sg', 'product_queries', 'Pertanyaan Produk', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14928', 'sg', 'website_setup', 'Persediaan Laman Web', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14929', 'sg', 'header', 'Kepala', '2021-02-09 13:13:34', '2021-09-20 12:59:52'),
('14930', 'sg', 'footer', 'Kaki', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14931', 'sg', 'pages', 'Halaman', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14932', 'sg', 'appearance', 'Penampilan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14933', 'sg', 'setup__configurations', 'Persediaan & Konfigurasi', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14934', 'sg', 'general_settings', 'Tetapan umum', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14935', 'sg', 'features_activation', 'Ciri pengaktifan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14936', 'sg', 'languages', 'Bahasa', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14937', 'sg', 'currency', 'Mata Wang', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14938', 'sg', 'pickup_point', 'Titik pengambilan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14939', 'sg', 'smtp_settings', 'Tetapan SMTP', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14940', 'sg', 'payment_methods', 'cara bayaran', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14941', 'sg', 'file_system_configuration', 'Konfigurasi Sistem Fail', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14942', 'sg', 'social_media_logins', 'Log masuk media sosial', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14943', 'sg', 'analytics_tools', 'Alat Analisis', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14944', 'sg', 'facebook_chat', 'Sembang Facebook', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14945', 'sg', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14946', 'sg', 'shipping_configuration', 'Konfigurasi Penghantaran', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14947', 'sg', 'shipping_countries', 'Negara Penghantaran', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14948', 'sg', 'affiliate_system', 'Sistem Gabungan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14949', 'sg', 'affiliate_registration_form', 'Borang Pendaftaran Gabungan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14950', 'sg', 'affiliate_configurations', 'Konfigurasi Gabungan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14951', 'sg', 'affiliate_users', 'Pengguna Gabungan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14952', 'sg', 'referral_users', 'Pengguna Rujukan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14953', 'sg', 'affiliate_withdraw_requests', 'Permintaan Pengeluaran Gabungan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14954', 'sg', 'offline_payment_system', 'Sistem Pembayaran Luar Talian', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14955', 'sg', 'manual_payment_methods', 'Kaedah Pembayaran Manual', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14956', 'sg', 'offline_wallet_recharge', 'Isi Ulang Dompet Luar Talian', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14957', 'sg', 'offline_customer_package_payments', 'Pembayaran Pakej Pelanggan Luar Talian', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14958', 'sg', 'offline_seller_package_payments', 'Pembayaran Pakej Penjual Luar Talian', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14959', 'sg', 'paytm_payment_gateway', 'Gerbang Pembayaran Paytm', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14960', 'sg', 'set_paytm_credentials', 'Tetapkan Kelayakan Paytm', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14961', 'sg', 'club_point_system', 'Sistem Titik Kelab', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14962', 'sg', 'club_point_configurations', 'Konfigurasi Titik Kelab', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14963', 'sg', 'set_product_point', 'Tetapkan Titik Produk', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14964', 'sg', 'user_points', 'Mata Pengguna', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14965', 'sg', 'otp_system', 'Sistem OTP', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14966', 'sg', 'otp_configurations', 'Konfigurasi OTP', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14967', 'sg', 'set_otp_credentials', 'Tetapkan Kelayakan OTP', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14968', 'sg', 'staffs', 'Kakitangan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14969', 'sg', 'all_staffs', 'Semua kakitangan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14970', 'sg', 'staff_permissions', 'Kebenaran kakitangan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14971', 'sg', 'addon_manager', 'Pengurus Addon', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14972', 'sg', 'browse_website', 'Layari Laman Web', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14973', 'sg', 'pos', 'POS', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14974', 'sg', 'notifications', 'Pemberitahuan', '2021-02-09 13:13:35', '2021-09-20 12:59:52'),
('14975', 'sg', 'new_orders', 'pesanan baru', '2021-02-09 13:13:36', '2021-09-20 12:59:52'),
('14976', 'sg', 'userimage', 'gambar pengguna', '2021-02-09 13:13:36', '2021-09-20 12:59:52'),
('14977', 'sg', 'profile', 'Profil', '2021-02-09 13:13:36', '2021-09-20 12:59:52'),
('14978', 'sg', 'logout', 'Log keluar', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14979', 'sg', 'page_not_found', 'Laman tidak dijumpai!', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14980', 'sg', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'Halaman yang anda cari belum dijumpai di pelayan kami.', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14981', 'sg', 'registration', 'Pendaftaran', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14982', 'sg', 'i_am_shopping_for', 'Saya membeli-belah untuk ...', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14983', 'sg', 'compare', 'Bandingkan', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14984', 'sg', 'wishlist', 'Daftar Keinginan', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14985', 'sg', 'cart', 'Troli', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14986', 'sg', 'your_cart_is_empty', 'Troli anda kosong', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14987', 'sg', 'categories', 'Kategori', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14988', 'sg', 'see_all', 'Lihat semua', '2021-02-09 13:14:19', '2021-09-20 12:59:52'),
('14989', 'sg', 'seller_policy', 'Dasar Penjual', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14990', 'sg', 'return_policy', 'Syarat pengembalian', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14991', 'sg', 'support_policy', 'Dasar Sokongan', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14992', 'sg', 'privacy_policy', 'Dasar Privasi', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14993', 'sg', 'your_email_address', 'Alamat E-mel Anda', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14994', 'sg', 'subscribe', 'Langgan', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14995', 'sg', 'contact_info', 'Maklumat Perhubungan', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14996', 'sg', 'address', 'Alamat', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14997', 'sg', 'phone', 'Telefon', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14998', 'sg', 'email', 'E-mel', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('14999', 'sg', 'login', 'Log masuk', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15000', 'sg', 'my_account', 'Akaun saya', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15001', 'sg', 'order_history', 'Sejarah Pesanan', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15002', 'sg', 'my_wishlist', 'Permintaan Saya', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15003', 'sg', 'track_order', 'Susunan Jejak', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15004', 'sg', 'be_an_affiliate_partner', 'Jadilah rakan sekutu', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15005', 'sg', 'be_a_seller', 'Jadilah Penjual', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15006', 'sg', 'apply_now', 'Mohon sekarang', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15007', 'sg', 'confirmation', 'Pengesahan', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15008', 'sg', 'delete_confirmation_message', 'Padamkan mesej pengesahan', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15009', 'sg', 'cancel', 'Batal', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15010', 'sg', 'delete', 'Padam', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15011', 'sg', 'item_has_been_added_to_compare_list', 'Item telah ditambahkan untuk membandingkan senarai', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15012', 'sg', 'please_login_first', 'Sila log masuk dahulu', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15013', 'sg', 'total_earnings_from', 'Jumlah Pendapatan Dari', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15014', 'sg', 'client_subscription', 'Langganan Pelanggan', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15015', 'sg', 'product_category', 'Kategori Produk', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15016', 'sg', 'product_sub_sub_category', 'Subkategori produk', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15017', 'sg', 'product_sub_category', 'Subkategori produk', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15018', 'sg', 'product_brand', 'Jenama produk', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15019', 'sg', 'top_client_packages', 'Pakej Pelanggan Teratas', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15020', 'sg', 'top_freelancer_packages', 'Pakej Freelancer Teratas', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15021', 'sg', 'number_of_sale', 'Jumlah penjualan', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15022', 'sg', 'number_of_stock', 'Bilangan Stok', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15023', 'sg', 'top_10_products', '10 Produk Teratas', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15024', 'sg', 'top_12_products', '12 Produk Teratas', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15025', 'sg', 'admin_can_not_be_a_seller', 'Admin tidak boleh menjadi penjual', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15026', 'sg', 'filter_by_rating', 'Tapis mengikut Penarafan', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15027', 'sg', 'published_reviews_updated_successfully', 'Ulasan yang diterbitkan berjaya dikemas kini', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15028', 'sg', 'refund_sticker_has_been_updated_successfully', 'Refund Sticker berjaya dikemas kini', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15029', 'sg', 'edit_product', 'Edit Produk', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15030', 'sg', 'meta_images', 'Imej Meta', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15031', 'sg', 'update_product', 'Kemas kini Produk', '2021-02-09 13:14:20', '2021-09-20 12:59:52'),
('15032', 'sg', 'product_has_been_deleted_successfully', 'Produk berjaya dipadamkan', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15033', 'sg', 'your_profile_has_been_updated_successfully', 'Profil anda berjaya dikemas kini!', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15034', 'sg', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Had muat naik telah dicapai. Sila tingkatkan pakej anda.', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15035', 'sg', 'add_your_product', 'Tambah Produk Anda', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15036', 'sg', 'select_a_category', 'Pilih kategori', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15037', 'sg', 'select_a_brand', 'Pilih jenama', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15038', 'sg', 'product_unit', 'Unit Produk', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15039', 'sg', 'minimum_qty', 'Kuantiti minimum.', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15040', 'sg', 'product_tag', 'Tag Produk', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15041', 'sg', 'type__hit_enter', 'Taip & tekan enter', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15042', 'sg', 'videos', 'Video', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15043', 'sg', 'video_from', 'Video Dari', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15044', 'sg', 'video_url', 'URL video', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15045', 'sg', 'customer_choice', 'Pilihan Pelanggan', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15046', 'sg', 'pdf', 'PDF', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15047', 'sg', 'choose_pdf', 'Pilih PDF', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15048', 'sg', 'select_category', 'Pilih Kategori', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15049', 'sg', 'target_category', 'Kategori Sasaran', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15050', 'sg', 'subsubcategory', 'subkategori', '2021-02-09 13:14:21', '2021-02-09 13:14:21'),
('15051', 'sg', 'search_category', 'Kategori Carian', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15052', 'sg', 'search_subcategory', 'Cari Subkategori', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15053', 'sg', 'search_subsubcategory', 'Cari SubSubKategori', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15054', 'sg', 'update_your_product', 'Kemas kini produk anda', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15055', 'sg', 'product_has_been_updated_successfully', 'Produk berjaya dikemas kini', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15056', 'sg', 'add_your_digital_product', 'Tambahkan Produk Digital Anda', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15057', 'sg', 'active_ecommerce_cms_update_process', 'Proses Kemas kini CMS eCommerce aktif', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15058', 'sg', 'codecanyon_purchase_code', 'Kod pembelian Codecanyon', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15059', 'sg', 'database_name', 'Nama Pangkalan Data', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15060', 'sg', 'database_username', 'Nama Pengguna Pangkalan Data', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15061', 'sg', 'database_password', 'Kata Laluan Pangkalan Data', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15062', 'sg', 'database_hostname', 'Nama Hos Pangkalan Data', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15063', 'sg', 'update_now', 'Mengemas kini sekarang', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15064', 'sg', 'congratulations', 'Selamat bertunang', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15065', 'sg', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'Anda telah berjaya menyelesaikan proses pengemaskinian. Sila Masuk untuk meneruskan', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15066', 'sg', 'go_to_home', 'Pulang ke rumah', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15067', 'sg', 'login_to_admin_panel', 'Log masuk ke panel Pentadbir', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15068', 'sg', 's3_file_system_credentials', 'Kelayakan Sistem Fail S3', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15069', 'sg', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15070', 'sg', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15071', 'sg', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15072', 'sg', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15073', 'sg', 'aws_url', 'AWS_URL', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15074', 'sg', 's3_file_system_activation', 'Pengaktifan Sistem Fail S3', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15075', 'sg', 'your_phone_number', 'Nombor telefon anda', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15076', 'sg', 'zip_file', 'Fail Zip', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15077', 'sg', 'install', 'Pasang', '2021-02-09 13:14:21', '2021-09-20 12:59:52'),
('15078', 'sg', 'this_version_is_not_capable_of_installing_addons_please_update', 'Versi ini tidak dapat memasang Addons, Sila kemas kini.', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15079', 'sg', 'search_in_menu', 'Cari dalam menu', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15080', 'sg', 'uploaded_files', 'Fail yang dimuat naik', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15081', 'sg', 'shipping_cities', 'Bandar Penghantaran', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15082', 'sg', 'system', 'Sistem', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15083', 'sg', 'server_status', 'Status pelayan', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15084', 'sg', 'nothing_found', 'Tiada apa-apa Dijumpai', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15085', 'sg', 'parent_category', 'Kategori Ibu Bapa', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15086', 'sg', 'level', 'Tahap', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15087', 'sg', 'category_information', 'Maklumat Kategori', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15088', 'sg', 'translatable', 'Boleh dilayari', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15089', 'sg', 'no_parent', 'Tiada Ibu Bapa', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15090', 'sg', 'physical', 'Fizikal', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15091', 'sg', 'digital', 'Digital', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15092', 'sg', '200x200', '200x200', '2021-02-09 13:14:22', '2021-02-09 13:14:22'),
('15093', 'sg', '32x32', '32x32', '2021-02-09 13:14:22', '2021-02-09 13:14:22'),
('15094', 'sg', 'search_your_files', 'Cari fail anda', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15095', 'sg', 'category_has_been_updated_successfully', 'Kategori telah berjaya dikemas kini', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15096', 'sg', 'all_uploaded_files', 'Semua fail yang dimuat naik', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15097', 'sg', 'upload_new_file', 'Muat Naik Fail Baru', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15098', 'sg', 'all_files', 'Semua fail', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15099', 'sg', 'search', 'Cari', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15100', 'sg', 'details_info', 'Maklumat Perincian', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15101', 'sg', 'copy_link', 'Salin pautan', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15102', 'sg', 'are_you_sure_to_delete_this_file', 'Adakah anda pasti memadamkan fail ini?', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15103', 'sg', 'file_info', 'Maklumat Fail', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15104', 'sg', 'link_copied_to_clipboard', 'Pautan disalin ke papan keratan', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15105', 'sg', 'oops_unable_to_copy', 'Op, tidak dapat menyalin', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15106', 'sg', 'file_deleted_successfully', 'Fail berjaya dipadamkan', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15107', 'sg', 'add_new_brand', 'Tambah Jenama Baru', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15108', 'sg', '120x80', '120x80', '2021-02-09 13:14:22', '2021-02-09 13:14:22'),
('15109', 'sg', 'brand_information', 'Maklumat Jenama', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15110', 'sg', 'brand_has_been_updated_successfully', 'Jenama telah berjaya dikemas kini', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15111', 'sg', 'brand_has_been_deleted_successfully', 'Jenama berjaya dipadamkan', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15112', 'sg', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'Ini digunakan untuk carian. Masukkan kata-kata yang digunakan oleh cutomer untuk mendapatkan produk ini.', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15113', 'sg', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'Gambar-gambar ini dapat dilihat di galeri halaman butiran produk. Gunakan gambar bersaiz 600x600.', '2021-02-09 13:14:22', '2021-09-20 12:59:52'),
('15114', 'sg', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'Gambar ini dapat dilihat di semua kotak produk. Gunakan gambar bersaiz 300x300. Jauhkan ruang kosong di sekitar objek utama gambar anda kerana kami harus memotong beberapa tepi pada peranti yang berlainan untuk menjadikannya responsif.', '2021-02-09 13:14:22', '2021-09-20 12:59:53'),
('15115', 'sg', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Gunakan pautan yang betul tanpa parameter tambahan. Jangan gunakan pautan kongsi pendek / kod iframe terbenam.', '2021-02-09 13:14:22', '2021-09-20 12:59:53'),
('15116', 'sg', 'save_product', 'Jimat Produk', '2021-02-09 13:14:22', '2021-09-20 12:59:53'),
('15117', 'sg', 'product_has_been_inserted_successfully', 'Produk berjaya dimasukkan', '2021-02-09 13:14:22', '2021-09-20 12:59:53'),
('15118', 'sg', 'something_went_wrong', 'Ada yang tidak kena!', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15119', 'sg', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Maaf atas kesulitan ini, tetapi kami sedang mengusahakannya.', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15120', 'sg', 'error_code', 'Kod salah', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15121', 'sg', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Sila Konfigurasikan Tetapan SMTP untuk berfungsi semua fungsi penghantaran e-mel', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15122', 'sg', 'order', 'Pesanan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15123', 'sg', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'Kami mempunyai ketinggian sepanduk yang terhad untuk mengekalkan UI. Kami harus memotong dari kedua kiri dan kanan untuk melihat peranti yang berlainan untuk menjadikannya responsif. Sebelum merancang sepanduk, ingat perkara ini.', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15124', 'sg', 'home_banner_3_max_3', 'Sepanduk Rumah 3 (Maksimum 3)', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15125', 'sg', 'add_new_seller', 'Tambah Penjual Baru', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15126', 'sg', 'filter_by_approval', 'Tapis mengikut Kelulusan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15127', 'sg', 'nonapproved', 'Tidak Diluluskan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15128', 'sg', 'type_name_or_email__enter', 'Taipkan nama atau e-mel & Masukkan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15129', 'sg', 'due_to_seller', 'Kerana penjual', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15130', 'sg', 'log_in_as_this_seller', 'Log masuk sebagai Penjual ini', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15131', 'sg', 'go_to_payment', 'Pergi ke Pembayaran', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15132', 'sg', 'ban_this_seller', 'Larang penjual ini', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15133', 'sg', 'do_you_really_want_to_ban_this_seller', 'Adakah anda benar-benar mahu melarang penjual ini?', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15134', 'sg', 'proceed', 'Teruskan!', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15135', 'sg', 'approved_sellers_updated_successfully', 'Penjual yang diluluskan berjaya dikemas kini', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15136', 'sg', 'seller_has_been_deleted_successfully', 'Penjual berjaya dipadamkan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15137', 'sg', 'seller_information', 'Maklumat Penjual', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15138', 'sg', 'seller_has_been_inserted_successfully', 'Penjual berjaya dimasukkan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15139', 'sg', 'email_already_exists', 'E-mel sudah ada!', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15140', 'sg', 'verify_your_email_address', 'Mengesahkan alamat e-mel anda', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15141', 'sg', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Sebelum meneruskan, sila periksa e-mel anda untuk mendapatkan pautan pengesahan.', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15142', 'sg', 'if_you_did_not_receive_the_email', 'Sekiranya anda tidak menerima e-mel.', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15143', 'sg', 'click_here_to_request_another', 'Klik di sini untuk meminta yang lain', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15144', 'sg', 'email_verification', 'pengesahan email', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15145', 'sg', 'email_verification__', 'Pengesahan email -', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15146', 'sg', 'https_activation', 'Pengaktifan HTTPS', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15147', 'sg', 'maintenance_mode', 'Mod penyelenggaraan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15148', 'sg', 'maintenance_mode_activation', 'Pengaktifan Mod Penyelenggaraan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15149', 'sg', 'classified_product_activate', 'Produk Terkelaskan Diaktifkan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15150', 'sg', 'classified_product', 'Produk Terkelaskan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15151', 'sg', 'business_related', 'Berkaitan Perniagaan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15152', 'sg', 'vendor_system_activation', 'Pengaktifan Sistem Vendor', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15153', 'sg', 'wallet_system_activation', 'Pengaktifan Sistem Dompet', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15154', 'sg', 'coupon_system_activation', 'Pengaktifan Sistem Kupon', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15155', 'sg', 'pickup_point_activation', 'Pengaktifan Titik Pickup', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15156', 'sg', 'conversation_activation', 'Pengaktifan Perbualan', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15157', 'sg', 'guest_checkout_activation', 'Pengaktifan Checkout Tetamu', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15158', 'sg', 'categorybased_commission', 'Suruhanjaya berdasarkan kategori', '2021-02-09 13:14:23', '2021-09-20 12:59:53'),
('15159', 'sg', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'Setelah mengaktifkan pilihan ini Komisen penjual akan dilumpuhkan dan Anda perlu menetapkan komisen pada setiap kategori jika tidak, Admin tidak akan mendapat komisen', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15160', 'sg', 'set_commisssion_now', 'Tetapkan Komisen Sekarang', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15161', 'sg', 'payment_related', 'Berkaitan Pembayaran', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15162', 'sg', 'paypal_payment_activation', 'Pengaktifan Pembayaran Paypal', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15163', 'sg', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Paypal dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15164', 'sg', 'stripe_payment_activation', 'Pengaktifan Pembayaran Stripe', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15165', 'sg', 'sslcommerz_activation', 'Pengaktifan SSlCommerz', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15166', 'sg', 'instamojo_payment_activation', 'Pengaktifan Pembayaran Instamojo', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15167', 'sg', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Pembayaran Instamojo dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15168', 'sg', 'razor_pay_activation', 'Pengaktifan Bayar Cukur', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15169', 'sg', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Razor dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15170', 'sg', 'paystack_activation', 'Pengaktifan PayStack', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15171', 'sg', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi PayStack dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15172', 'sg', 'voguepay_activation', 'Pengaktifan VoguePay', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15173', 'sg', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi VoguePay dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15174', 'sg', 'payhere_activation', 'Pengaktifan Payhere', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15175', 'sg', 'ngenius_activation', 'Pengaktifan Ngenius', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15176', 'sg', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Ngenius dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15177', 'sg', 'iyzico_activation', 'Pengaktifan Iyzico', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15178', 'sg', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi iyzico dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15179', 'sg', 'bkash_activation', 'Pengaktifan Bkash', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15180', 'sg', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi bkash dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15181', 'sg', 'nagad_activation', 'Pengaktifan Nagad', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15182', 'sg', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi nagad dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15183', 'sg', 'cash_payment_activation', 'Pengaktifan Pembayaran Tunai', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15184', 'sg', 'social_media_login', 'Log Masuk Media Sosial', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15185', 'sg', 'facebook_login', 'log masuk Facebook', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15186', 'sg', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Pelanggan Facebook dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15187', 'sg', 'google_login', 'Log masuk Google', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15188', 'sg', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Pelanggan Google dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15189', 'sg', 'twitter_login', 'Log masuk Twitter', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15190', 'sg', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Pelanggan Twitter dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15191', 'sg', 'shop_logo', 'Logo Kedai', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15192', 'sg', 'shop_address', 'Alamat Kedai', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15193', 'sg', 'banner_settings', 'Tetapan Sepanduk', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15194', 'sg', 'banners', 'Sepanduk', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15195', 'sg', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'Kami terpaksa menghadkan ketinggian ke konsistensi maintian. Di beberapa peranti, kedua-dua sisi sepanduk mungkin dipotong untuk had ketinggian.', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15196', 'sg', 'insert_link_with_https_', 'Masukkan pautan dengan https', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15197', 'sg', 'your_shop_has_been_updated_successfully', 'Kedai Anda berjaya dikemas kini!', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15198', 'sg', 'search_result_for_', 'Hasil carian untuk', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15199', 'sg', 'brand_has_been_inserted_successfully', 'Jenama telah berjaya dimasukkan', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15200', 'sg', 'about', 'Mengenai', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15201', 'sg', 'payout_info', 'Maklumat Pembayaran', '2021-02-09 13:14:24', '2021-09-20 12:59:53'),
('15202', 'sg', 'bank_acc_name', 'Nama Acc Bank', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15203', 'sg', 'bank_acc_number', 'Nombor Acc Bank', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15204', 'sg', 'total_products', 'Jumlah Produk', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15205', 'sg', 'total_sold_amount', 'Jumlah Jualan', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15206', 'sg', 'wallet_balance', 'Baki Dompet', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15207', 'sg', 'cookies_agreement', 'Perjanjian Cookies', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15208', 'sg', 'cookies_agreement_text', 'Teks Perjanjian Kuki', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15209', 'sg', 'show_cookies_agreement', 'Tunjukkan Perjanjian Cookies?', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15210', 'sg', 'custom_script', 'Skrip Tersuai', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15211', 'sg', 'header_custom_script__before_head', 'Skrip tersuai tajuk - sebelum </head>', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15212', 'sg', 'write_script_with_script_tag', 'Tulis skrip dengan tag <script>', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15213', 'sg', 'footer_custom_script__before_body', 'Skrip khas footer - sebelum </body>', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15214', 'sg', 'category_has_been_inserted_successfully', 'Kategori telah berjaya dimasukkan', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15215', 'sg', 'all_flash_deals', 'Semua Tawaran Kilat', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15216', 'sg', 'create_new_flash_deal', 'Buat Tawaran Kilat Baru', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15217', 'sg', 'ffffff', '#FFFFFF', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15218', 'sg', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Gambar ini ditunjukkan sebagai spanduk sampul di halaman perincian tawaran kilat.', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15219', 'sg', 'flash_deal_has_been_inserted_successfully', 'Flash Deal berjaya dimasukkan', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15220', 'sg', 'flash_deal_status_updated_successfully', 'Status perjanjian kilat berjaya dikemas kini', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15221', 'sg', 'flash_deal_has_been_updated_successfully', 'Flash Deal berjaya dikemas kini', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15222', 'sg', 'update_language_info', 'kemas kini Maklumat Bahasa', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15223', 'sg', 'language_has_been_updated_successfully', 'Bahasa berjaya dikemas kini', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15224', 'sg', 'type_key__enter', 'Taip kekunci & Enter', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15225', 'sg', 'translations_updated_for_', 'Terjemahan dikemas kini untuk', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15226', 'sg', 'language_has_been_inserted_successfully', 'Bahasa telah berjaya disisipkan', '2021-02-09 13:14:25', '2021-09-20 12:59:53'),
('15227', 'vn', 'all_category', 'Tất cả các loại', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15228', 'vn', 'all', 'Tất cả', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15229', 'vn', 'flash_sale', 'Giảm giá thần tốc', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15230', 'vn', 'view_more', 'Xem thêm', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15231', 'vn', 'add_to_wishlist', 'Thêm vào danh sách yêu thích', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15232', 'vn', 'add_to_compare', 'Thêm vào để so sánh', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15233', 'vn', 'add_to_cart', 'Thêm vào giỏ hàng', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15234', 'vn', 'club_point', 'Điểm câu lạc bộ', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15235', 'vn', 'classified_ads', 'Quảng cáo đã phân loại', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15236', 'vn', 'used', 'Đã sử dụng', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15237', 'vn', 'top_10_categories', '10 danh mục hàng đầu', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15238', 'vn', 'view_all_categories', 'Xem tất cả danh mục', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15239', 'vn', 'top_10_brands', '10 thương hiệu hàng đầu', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15240', 'vn', 'view_all_brands', 'Xem tất cả các thương hiệu', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15241', 'vn', 'terms__conditions', 'Điều khoản và điều kiện', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15242', 'vn', 'best_selling', 'Bán chạy nhất', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15243', 'vn', 'top_20', '20 hạng đầu', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15244', 'vn', 'featured_products', 'Sản phẩm nổi bật', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15245', 'vn', 'best_sellers', 'Bán chạy nhất', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15246', 'vn', 'visit_store', 'Ghé thăm cửa hàng', '2021-02-09 13:17:34', '2021-09-20 12:59:53'),
('15247', 'vn', 'popular_suggestions', 'Đề xuất phổ biến', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15248', 'vn', 'category_suggestions', 'Đề xuất danh mục', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15249', 'vn', 'automobile__motorcycle', 'Ô tô & Xe máy', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15250', 'vn', 'price_range', 'Phạm vi giá', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15251', 'vn', 'filter_by_color', 'Lọc theo màu', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15252', 'vn', 'home', 'Trang Chủ', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15253', 'vn', 'newest', 'Mới nhất', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15254', 'vn', 'oldest', 'Cũ nhất', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15255', 'vn', 'price_low_to_high', 'Giá thấp đến cao', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15256', 'vn', 'price_high_to_low', 'Giá từ cao đến thấp', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15257', 'vn', 'brands', 'Nhãn hiệu', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15258', 'vn', 'all_brands', 'Tất cả các thương hiệu', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15259', 'vn', 'all_sellers', 'Tất cả người bán', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15260', 'vn', 'inhouse_product', 'Sản phẩm nội bộ', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15261', 'vn', 'message_seller', 'Người bán tin nhắn', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15262', 'vn', 'price', 'Giá bán', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15263', 'vn', 'discount_price', 'Giảm giá', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15264', 'vn', 'color', 'Màu sắc', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15265', 'vn', 'quantity', 'Định lượng', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15266', 'vn', 'available', 'có sẵn', '2021-02-09 13:17:35', '2021-02-09 13:17:35'),
('15267', 'vn', 'total_price', 'Tổng giá', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15268', 'vn', 'out_of_stock', 'Hết hàng', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15269', 'vn', 'refund', 'Hoàn tiền', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15270', 'vn', 'share', 'Chia sẻ', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15271', 'vn', 'sold_by', 'Được bán bởi', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15272', 'vn', 'customer_reviews', 'Phản hồi khách hàng', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15273', 'vn', 'top_selling_products', 'Sản phẩm bán chạy nhất', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15274', 'vn', 'description', 'Sự miêu tả', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15275', 'vn', 'video', 'Video', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15276', 'vn', 'reviews', 'Nhận xét', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15277', 'vn', 'download', 'Tải xuống', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15278', 'vn', 'there_have_been_no_reviews_for_this_product_yet', 'Chưa có nhận xét nào cho sản phẩm này.', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15279', 'vn', 'related_products', 'Những sảm phẩm tương tự', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15280', 'vn', 'any_query_about_this_product', 'Mọi thắc mắc về sản phẩm này', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15281', 'vn', 'product_name', 'tên sản phẩm', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15282', 'vn', 'your_question', 'Câu hỏi của bạn', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15283', 'vn', 'send', 'Gửi', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15284', 'vn', 'use_country_code_before_number', 'Sử dụng mã quốc gia trước số', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15285', 'vn', 'remember_me', 'Nhớ tôi', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15286', 'vn', 'dont_have_an_account', 'Không có tài khoản?', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15287', 'vn', 'register_now', 'Đăng ký ngay', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15288', 'vn', 'or_login_with', 'Hoặc đăng nhập bằng', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15289', 'vn', 'oops', 'Giáo sư..', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15290', 'vn', 'this_item_is_out_of_stock', 'Mặt hàng này đã hết!', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15291', 'vn', 'back_to_shopping', 'Quay lại mua sắm', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15292', 'vn', 'login_to_your_account', 'Đăng nhập vào tài khoản của bạn.', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15293', 'vn', 'purchase_history', 'Lịch sử thanh toán', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15294', 'vn', 'new', 'Mới', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15295', 'vn', 'downloads', 'Tải xuống', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15296', 'vn', 'sent_refund_request', 'Yêu cầu hoàn lại tiền đã gửi', '2021-02-09 13:17:35', '2021-09-20 12:59:53'),
('15297', 'vn', 'product_bulk_upload', 'Tải lên hàng loạt sản phẩm', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15298', 'vn', 'orders', 'Đơn hàng', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15299', 'vn', 'recieved_refund_request', 'Yêu cầu hoàn lại tiền đã nhận', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15300', 'vn', 'shop_setting', 'Cài đặt cửa hàng', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15301', 'vn', 'payment_history', 'Lịch sử thanh toán', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15302', 'vn', 'money_withdraw', 'Rút tiền', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15303', 'vn', 'conversations', 'Cuộc trò chuyện', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15304', 'vn', 'my_wallet', 'Ví của tôi', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15305', 'vn', 'earning_points', 'Kiếm được điểm', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15306', 'vn', 'support_ticket', 'Vé ủng hộ', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15307', 'vn', 'manage_profile', 'Quản lý hồ sơ', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15308', 'vn', 'sold_amount', 'Số lượng đã bán', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15309', 'vn', 'your_sold_amount_current_month', 'Số tiền đã bán của bạn (tháng hiện tại)', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15310', 'vn', 'total_sold', 'Tổng số đã bán', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15311', 'vn', 'last_month_sold', 'Tháng trước đã bán', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15312', 'vn', 'total_sale', 'Tổng doanh thu', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15313', 'vn', 'total_earnings', 'Tổng Thu Nhập', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15314', 'vn', 'successful_orders', 'Đơn hàng thành công', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15315', 'vn', 'total_orders', 'Tổng số đơn đặt hàng', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15316', 'vn', 'pending_orders', 'Cấp phát đơn đặt hàng', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15317', 'vn', 'cancelled_orders', 'Đơn đặt hàng đã hủy', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15318', 'vn', 'product', 'Sản phẩm', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15319', 'vn', 'purchased_package', 'Gói đã mua', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15320', 'vn', 'package_not_found', 'Không tìm thấy gói', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15321', 'vn', 'upgrade_package', 'Gói nâng cấp', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15322', 'vn', 'shop', 'cửa tiệm', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15323', 'vn', 'manage__organize_your_shop', 'Quản lý và tổ chức cửa hàng của bạn', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15324', 'vn', 'go_to_setting', 'Đi tới cài đặt', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15325', 'vn', 'payment', 'Thanh toán', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15326', 'vn', 'configure_your_payment_method', 'Định cấu hình phương thức thanh toán của bạn', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15327', 'vn', 'my_panel', 'Bảng điều khiển của tôi', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15328', 'vn', 'item_has_been_added_to_wishlist', 'Mục đã được thêm vào danh sách yêu thích', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15329', 'vn', 'my_points', 'Điểm của tôi', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15330', 'vn', '_points', 'Điểm', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15331', 'vn', 'wallet_money', 'Ví tiền', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15332', 'vn', 'exchange_rate', 'Tỷ giá', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15333', 'vn', 'point_earning_history', 'Lịch sử kiếm điểm', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15334', 'vn', 'date', 'Ngày', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15335', 'vn', 'points', 'Điểm', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15336', 'vn', 'converted', 'Chuyển đổi', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15337', 'vn', 'action', 'Hoạt động', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15338', 'vn', 'no_history_found', 'Không tìm thấy lịch sử.', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15339', 'vn', 'convert_has_been_done_successfully_check_your_wallets', 'Chuyển đổi đã được thực hiện thành công Kiểm tra ví của bạn', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15340', 'vn', 'something_went_wrong', 'Đã xảy ra lỗi', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15341', 'vn', 'remaining_uploads', 'Tải lên còn lại', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15342', 'vn', 'no_package_found', 'Không tìm thấy gói nào', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15343', 'vn', 'search_product', 'Tìm kiếm sản phẩm', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15344', 'vn', 'name', 'Tên', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15345', 'vn', 'current_qty', 'Số lượng hiện tại', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15346', 'vn', 'base_price', 'Giá cơ bản', '2021-02-09 13:17:36', '2021-09-20 12:59:53'),
('15347', 'vn', 'published', 'Được phát hành', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15348', 'vn', 'featured', 'Đặc sắc', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15349', 'vn', 'options', 'Tùy chọn', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15350', 'vn', 'edit', 'Biên tập', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15351', 'vn', 'duplicate', 'Bản sao', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15352', 'vn', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Tải xuống tệp khung xương và điền vào nó với dữ liệu.', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15353', 'vn', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Bạn có thể tải xuống tệp ví dụ để hiểu cách dữ liệu phải được điền.', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15354', 'vn', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Khi bạn đã tải xuống và điền đầy đủ tệp khung xương, hãy tải tệp đó lên theo mẫu bên dưới và gửi.', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15355', 'vn', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Sau khi tải lên sản phẩm, bạn cần chỉnh sửa chúng và thiết lập hình ảnh sản phẩm và lựa chọn.', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15356', 'vn', 'download_csv', 'Tải xuống CSV', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15357', 'vn', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Category, Sub Category, Sub Category Sub và Brand phải ở dạng số id.', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15358', 'vn', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Bạn có thể tải xuống pdf để lấy Category, Sub category, Sub Category và Brand id.', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15359', 'vn', 'download_category', 'Tải xuống danh mục', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15360', 'vn', 'download_sub_category', 'Tải xuống danh mục phụ', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15361', 'vn', 'download_sub_sub_category', 'Tải xuống danh mục Sub Sub', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15362', 'vn', 'download_brand', 'Tải xuống thương hiệu', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15363', 'vn', 'upload_csv_file', 'Tải lên tệp CSV', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15364', 'vn', 'csv', 'CSV', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15365', 'vn', 'choose_csv_file', 'Chọn tệp CSV', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15366', 'vn', 'upload', 'Tải lên', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15367', 'vn', 'add_new_digital_product', 'Thêm sản phẩm kỹ thuật số mới', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15368', 'vn', 'available_status', 'Tình trạng có sẵn', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15369', 'vn', 'admin_status', 'Trạng thái quản trị viên', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15370', 'vn', 'pending_balance', 'Số dư đang chờ xử lý', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15371', 'vn', 'send_withdraw_request', 'Gửi yêu cầu rút tiền', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15372', 'vn', 'withdraw_request_history', 'Lịch sử yêu cầu rút tiền', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15373', 'vn', 'amount', 'Số tiền', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15374', 'vn', 'status', 'Trạng thái', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15375', 'vn', 'message', 'Thông điệp', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15376', 'vn', 'send_a_withdraw_request', 'Gửi yêu cầu rút tiền', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15377', 'vn', 'basic_info', 'Thông tin cơ bản', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15378', 'vn', 'your_phone', 'Điện thoại của bạn', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15379', 'vn', 'photo', 'tấm hình', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15380', 'vn', 'browse', 'Duyệt qua', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15381', 'vn', 'your_password', 'Mật khẩu của bạn', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15382', 'vn', 'new_password', 'mật khẩu mới', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15383', 'vn', 'confirm_password', 'Xác nhận mật khẩu', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15384', 'vn', 'add_new_address', 'Thêm địa chỉ mới', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15385', 'vn', 'payment_setting', 'Cài đặt thanh toán', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15386', 'vn', 'cash_payment', 'Thanh toán bằng tiền mặt', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15387', 'vn', 'bank_payment', 'Thanh toán qua ngân hàng', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15388', 'vn', 'bank_name', 'Tên ngân hàng', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15389', 'vn', 'bank_account_name', 'Tên tài khoản ngân hàng', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15390', 'vn', 'bank_account_number', 'Số tài khoản ngân hàng', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15391', 'vn', 'bank_routing_number', 'Số định tuyến ngân hàng', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15392', 'vn', 'update_profile', 'Cập nhật hồ sơ', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15393', 'vn', 'change_your_email', 'Thay đổi email của bạn', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15394', 'vn', 'your_email', 'Email của bạn', '2021-02-09 13:17:37', '2021-09-20 12:59:53'),
('15395', 'vn', 'sending_email', 'Gửi email...', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15396', 'vn', 'verify', 'Kiểm chứng', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15397', 'vn', 'update_email', 'Cập nhật email', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15398', 'vn', 'new_address', 'Địa chỉ mới', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15399', 'vn', 'your_address', 'Địa chỉ của bạn', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15400', 'vn', 'country', 'Quốc gia', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15401', 'vn', 'select_your_country', 'Chọn đất nước của bạn', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15402', 'vn', 'city', 'Tp.', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15403', 'vn', 'your_city', 'Thành phố của Ban', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15404', 'vn', 'your_postal_code', 'Mã bưu điện của bạn', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15405', 'vn', '880', '+880', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15406', 'vn', 'save', 'Tiết kiệm', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15407', 'vn', 'received_refund_request', 'Đã nhận được yêu cầu hoàn lại tiền', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15408', 'vn', 'delete_confirmation', 'xóa xác nhận', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15409', 'vn', 'are_you_sure_to_delete_this', 'Bạn có chắc chắn xóa cái này không?', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15410', 'vn', 'premium_packages_for_sellers', 'Gói cao cấp dành cho người bán', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15411', 'vn', 'product_upload', 'Tải lên sản phẩm', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15412', 'vn', 'digital_product_upload', 'Tải lên sản phẩm kỹ thuật số', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15413', 'vn', 'purchase_package', 'Mua gói', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15414', 'vn', 'select_payment_type', 'Chọn phương thức thanh toán', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15415', 'vn', 'payment_type', 'Hình thức thanh toán', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15416', 'vn', 'select_one', 'Chọn một', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15417', 'vn', 'online_payment', 'Thanh toán trực tuyến', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15418', 'vn', 'offline_payment', 'Thanh toán ngoại tuyến', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15419', 'vn', 'purchase_your_package', 'Mua gói của bạn', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15420', 'vn', 'paypal', 'Paypal', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15421', 'vn', 'stripe', 'Vạch sọc', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15422', 'vn', 'sslcommerz', 'sslcommerz', '2021-02-09 13:17:38', '2021-02-09 13:17:38'),
('15423', 'vn', 'confirm', 'Xác nhận', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15424', 'vn', 'offline_package_payment', 'Thanh toán gói ngoại tuyến', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15425', 'vn', 'transaction_id', 'ID giao dịch', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15426', 'vn', 'choose_image', 'Chọn hình ảnh', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15427', 'vn', 'code', 'Mã', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15428', 'vn', 'delivery_status', 'Tình trạng giao hàng', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15429', 'vn', 'payment_status', 'Tình trạng thanh toán', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15430', 'vn', 'paid', 'Đã thanh toán', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15431', 'vn', 'order_details', 'Chi tiết đơn hàng', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15432', 'vn', 'download_invoice', 'Tải xuống hóa đơn', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15433', 'vn', 'unpaid', 'Chưa thanh toán', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15434', 'vn', 'order_placed', 'Đa đặt hang', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15435', 'vn', 'confirmed', 'Đã xác nhận', '2021-02-09 13:17:38', '2021-09-20 12:59:53'),
('15436', 'vn', 'on_delivery', 'Khi giao hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15437', 'vn', 'delivered', 'Đã giao hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15438', 'vn', 'order_summary', 'Tóm tắt theo thứ tự', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15439', 'vn', 'order_code', 'Mã đặt hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15440', 'vn', 'customer', 'khách hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15441', 'vn', 'total_order_amount', 'Tổng số tiền đặt hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15442', 'vn', 'shipping_metdod', 'Metdod vận chuyển', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15443', 'vn', 'flat_shipping_rate', 'Tỷ lệ vận chuyển cố định', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15444', 'vn', 'payment_metdod', 'Metdod thanh toán', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15445', 'vn', 'variation', 'Biến thể', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15446', 'vn', 'delivery_type', 'Loại giao hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15447', 'vn', 'home_delivery', 'Giao hàng tận nhà', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15448', 'vn', 'order_ammount', 'Đặt hàng Ammount', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15449', 'vn', 'subtotal', 'Tổng phụ', '2021-02-09 13:17:39', '2021-09-20 12:59:53'),
('15450', 'vn', 'shipping', 'Đang chuyển hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15451', 'vn', 'coupon_discount', 'Phiếu giảm giá', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15452', 'vn', 'na', 'N / A', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15453', 'vn', 'in_stock', 'Trong kho', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15454', 'vn', 'buy_now', 'Mua ngay', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15455', 'vn', 'item_added_to_your_cart', 'Mục được thêm vào giỏ hàng của bạn!', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15456', 'vn', 'proceed_to_checkout', 'Tiến hành kiểm tra', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15457', 'vn', 'cart_items', 'Các mặt hàng trong giỏ hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15458', 'vn', '1_my_cart', '1. Giỏ hàng của tôi', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15459', 'vn', 'view_cart', 'Xem giỏ hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15460', 'vn', '2_shipping_info', '2. Thông tin vận chuyển', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15461', 'vn', 'checkout', 'Thủ tục thanh toán', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15462', 'vn', '3_delivery_info', '3. Thông tin giao hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15463', 'vn', '4_payment', '4. Thanh toán', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15464', 'vn', '5_confirmation', '5. Xác nhận', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15465', 'vn', 'remove', 'Tẩy', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15466', 'vn', 'return_to_shop', 'Quay lại cửa hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15467', 'vn', 'continue_to_shipping', 'Tiếp tục vận chuyển', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15468', 'vn', 'or', 'Hoặc là', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15469', 'vn', 'guest_checkout', 'Thanh toán của khách', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15470', 'vn', 'continue_to_delivery_info', 'Tiếp tục đến thông tin giao hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15471', 'vn', 'postal_code', 'Mã bưu điện', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15472', 'vn', 'choose_delivery_type', 'Chọn loại giao hàng', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15473', 'vn', 'local_pickup', 'Nhận tại địa phương', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15474', 'vn', 'select_your_nearest_pickup_point', 'Chọn điểm đón gần nhất của bạn', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15475', 'vn', 'continue_to_payment', 'Tiếp tục thanh toán', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15476', 'vn', 'select_a_payment_option', 'Chọn một tùy chọn thanh toán', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15477', 'vn', 'razorpay', 'Razorpay', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15478', 'vn', 'paystack', 'Paystack', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15479', 'vn', 'voguepay', 'VoguePay', '2021-02-09 13:17:39', '2021-09-20 12:59:54'),
('15480', 'vn', 'payhere', 'thanh toán', '2021-02-09 13:17:40', '2021-02-09 13:17:40'),
('15481', 'vn', 'ngenius', 'ngenius', '2021-02-09 13:17:40', '2021-02-09 13:17:40'),
('15482', 'vn', 'paytm', 'Paytm', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15483', 'vn', 'cash_on_delivery', 'thanh toán khi giao hàng', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15484', 'vn', 'your_wallet_balance_', 'Số dư trong ví của bạn:', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15485', 'vn', 'insufficient_balance', 'Thiếu cân bằng', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15486', 'vn', 'i_agree_to_the', 'tôi đồng ý với', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15487', 'vn', 'complete_order', 'Kết thúc đặt hàng', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15488', 'vn', 'summary', 'Tóm lược', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15489', 'vn', 'items', 'Mặt hàng', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15490', 'vn', 'total_club_point', 'Tổng điểm Câu lạc bộ', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15491', 'vn', 'total_shipping', 'Tổng số vận chuyển', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15492', 'vn', 'have_coupon_code_enter_here', 'Có mã phiếu giảm giá? Nhập vào đây', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15493', 'vn', 'apply', 'Ứng dụng', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15494', 'vn', 'you_need_to_agree_with_our_policies', 'Bạn cần đồng ý với các chính sách của chúng tôi', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15495', 'vn', 'forgot_password', 'Quên mật khẩu', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15496', 'vn', 'seo_setting', 'Cài đặt SEO', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15497', 'vn', 'system_update', 'Cập nhật hệ thống', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15498', 'vn', 'add_new_payment_method', 'Thêm phương thức thanh toán mới', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15499', 'vn', 'manual_payment_method', 'Phương thức thanh toán thủ công', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15500', 'vn', 'heading', 'Phần mở đầu', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15501', 'vn', 'logo', 'Logo', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15502', 'vn', 'manual_payment_information', 'Thông tin thanh toán thủ công', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15503', 'vn', 'type', 'Kiểu', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15504', 'vn', 'custom_payment', 'Thanh toán tùy chỉnh', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15505', 'vn', 'check_payment', 'Kiểm tra thanh toán', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15506', 'vn', 'checkout_thumbnail', 'Hình thu nhỏ thanh toán', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15507', 'vn', 'payment_instruction', 'Hướng dẫn thanh toán', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15508', 'vn', 'bank_information', 'Thông tin ngân hàng', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15509', 'vn', 'select_file', 'Chọn tập tin', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15510', 'vn', 'upload_new', 'Tải lên mới', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15511', 'vn', 'sort_by_newest', 'Sắp xếp theo mới nhất', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15512', 'vn', 'sort_by_oldest', 'Sắp xếp theo thứ nhất', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15513', 'vn', 'sort_by_smallest', 'Sắp xếp theo nhỏ nhất', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15514', 'vn', 'sort_by_largest', 'Sắp xếp theo lớn nhất', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15515', 'vn', 'selected_only', 'Chỉ được chọn', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15516', 'vn', 'no_files_found', 'Không tìm thấy tệp', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15517', 'vn', '0_file_selected', '0 Tệp được chọn', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15518', 'vn', 'clear', 'Thông thoáng', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15519', 'vn', 'prev', 'Trước đó', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15520', 'vn', 'next', 'Kế tiếp', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15521', 'vn', 'add_files', 'Thêm các tập tin', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15522', 'vn', 'method_has_been_inserted_successfully', 'Phương pháp đã được chèn thành công', '2021-02-09 13:17:40', '2021-09-20 12:59:54'),
('15523', 'vn', 'order_date', 'Ngày đặt hàng', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15524', 'vn', 'bill_to', 'Hoa đơn để', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15525', 'vn', 'sub_total', 'Tổng phụ', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15526', 'vn', 'total_tax', 'Tổng thuế', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15527', 'vn', 'grand_total', 'Tổng cộng', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15528', 'vn', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Đơn hàng của bạn đã được đặt thành công. Vui lòng gửi thông tin thanh toán từ lịch sử mua hàng', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15529', 'vn', 'thank_you_for_your_order', 'Cảm ơn bạn đã đặt hàng của bạn!', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15530', 'vn', 'order_code', 'Mã đặt hàng:', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15531', 'vn', 'a_copy_or_your_order_summary_has_been_sent_to', 'Một bản sao hoặc bản tóm tắt đơn đặt hàng của bạn đã được gửi đến', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15532', 'vn', 'make_payment', 'Thanh toán', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15533', 'vn', 'payment_screenshot', 'Ảnh chụp màn hình thanh toán', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15534', 'vn', 'paypal_credential', 'Thông tin xác thực Paypal', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15535', 'vn', 'paypal_client_id', 'ID khách hàng Paypal', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15536', 'vn', 'paypal_client_secret', 'Bí mật của khách hàng Paypal', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15537', 'vn', 'paypal_sandbox_mode', 'Chế độ hộp cát Paypal', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15538', 'vn', 'sslcommerz_credential', 'Thông tin đăng nhập của Sslcommerz', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15539', 'vn', 'sslcz_store_id', 'Id cửa hàng Sslcz', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15540', 'vn', 'sslcz_store_password', 'Mật khẩu cửa hàng sslcz', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15541', 'vn', 'sslcommerz_sandbox_mode', 'Chế độ hộp cát Sslcommerz', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15542', 'vn', 'stripe_credential', 'Sọc thông tin đăng nhập', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15543', 'vn', 'stripe_key', 'KHÓA DÂY CHUYỀN', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15544', 'vn', 'stripe_secret', 'BÍ QUYẾT DÂY CHUYỀN', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15545', 'vn', 'razorpay_credential', 'Thông tin đăng nhập RazorPay', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15546', 'vn', 'razor_key', 'KHÓA RAZOR', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15547', 'vn', 'razor_secret', 'BÍ QUYẾT RAZOR', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15548', 'vn', 'instamojo_credential', 'Thông tin đăng nhập Instamojo', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15549', 'vn', 'api_key', 'MÃ API', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15550', 'vn', 'im_api_key', 'KHÓA API IM', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15551', 'vn', 'auth_token', 'TOKEN AUTH', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15552', 'vn', 'im_auth_token', 'NGAY LẬP TỨC', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15553', 'vn', 'instamojo_sandbox_mode', 'Chế độ hộp cát Instamojo', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15554', 'vn', 'paystack_credential', 'Thông tin đăng nhập PayStack', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15555', 'vn', 'public_key', 'KHÓA CÔNG KHAI', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15556', 'vn', 'secret_key', 'CHÌA KHOÁ BÍ MẬT', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15557', 'vn', 'merchant_email', 'EMAIL MERCHANT', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15558', 'vn', 'voguepay_credential', 'Thông tin đăng nhập VoguePay', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15559', 'vn', 'merchant_id', 'ID MERCHANT', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15560', 'vn', 'sandbox_mode', 'chế độ sandbox', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15561', 'vn', 'payhere_credential', 'Payhere Credential', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15562', 'vn', 'payhere_merchant_id', 'PAYHERE MERCHANT ID', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15563', 'vn', 'payhere_secret', 'PAYHERE BÍ MẬT', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15564', 'vn', 'payhere_currency', 'TIỀN TỆ PAYHERE', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15565', 'vn', 'payhere_sandbox_mode', 'Chế độ hộp cát Payhere', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15566', 'vn', 'ngenius_credential', 'Ngenius Credential', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15567', 'vn', 'ngenius_outlet_id', 'NGENIUS OUTLET ID', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15568', 'vn', 'ngenius_api_key', 'KHÓA API NGENIUS', '2021-02-09 13:17:41', '2021-09-20 12:59:54'),
('15569', 'vn', 'ngenius_currency', 'TIỀN TỆ NGENIUS', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15570', 'vn', 'mpesa_credential', 'Thông tin đăng nhập Mpesa', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15571', 'vn', 'mpesa_consumer_key', 'KHÓA TIÊU DÙNG MPESA', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15572', 'vn', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15573', 'vn', 'mpesa_consumer_secret', 'BÍ QUYẾT TIÊU DÙNG CỦA MPESA', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15574', 'vn', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15575', 'vn', 'mpesa_short_code', 'MÃ NGẮN CỦA MPESA', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15576', 'vn', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15577', 'vn', 'mpesa_sandbox_activation', 'KÍCH HOẠT SANDBOX MPESA', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15578', 'vn', 'flutterwave_credential', 'Thông tin đăng nhập của Flutterwave', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15579', 'vn', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15580', 'vn', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15581', 'vn', 'rave_title', 'RAVE_TITLE', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15582', 'vn', 'stagin_activation', 'KÍCH HOẠT STAGIN', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15583', 'vn', 'all_product', 'Tất cả sản phẩm', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15584', 'vn', 'sort_by', 'Sắp xếp theo', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15585', 'vn', 'rating_high__low', 'Xếp hạng (Cao> Thấp)', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15586', 'vn', 'rating_low__high', 'Xếp hạng (Thấp> Cao)', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15587', 'vn', 'num_of_sale_high__low', 'Số lượng bán (Cao> Thấp)', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15588', 'vn', 'num_of_sale_low__high', 'Số lượng bán (Thấp> Cao)', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15589', 'vn', 'base_price_high__low', 'Giá cơ bản (Cao> Thấp)', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15590', 'vn', 'base_price_low__high', 'Giá cơ bản (Thấp> Cao)', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15591', 'vn', 'type__enter', 'Nhập & Nhập', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15592', 'vn', 'added_by', 'Được thêm bởi', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15593', 'vn', 'num_of_sale', 'Số lượng giảm giá', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15594', 'vn', 'total_stock', 'Tổng số cổ phần', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15595', 'vn', 'todays_deal', 'Thỏa thuận Todays', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15596', 'vn', 'rating', 'Xếp hạng', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15597', 'vn', 'times', 'lần', '2021-02-09 13:17:42', '2021-02-09 13:17:42'),
('15598', 'vn', 'add_nerw_product', 'Thêm sản phẩm Nerw', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15599', 'vn', 'product_information', 'Thông tin sản phẩm', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15600', 'vn', 'unit', 'Đơn vị', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15601', 'vn', 'unit_eg_kg_pc_etc', 'Đơn vị (ví dụ: KG, Pc, v.v.)', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15602', 'vn', 'minimum_qty', 'Số lượng tối thiểu', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15603', 'vn', 'tags', 'Thẻ', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15604', 'vn', 'type_and_hit_enter_to_add_a_tag', 'Nhập và nhấn enter để thêm thẻ', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15605', 'vn', 'barcode', 'Mã vạch', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15606', 'vn', 'refundable', 'Có thể hoàn lại', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15607', 'vn', 'product_images', 'Hình ảnh sản phẩm', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15608', 'vn', 'gallery_images', 'Hình ảnh Thư viện', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15609', 'vn', 'todays_deal_updated_successfully', 'Đã cập nhật thành công Giao dịch trong ngày', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15610', 'vn', 'published_products_updated_successfully', 'Đã cập nhật sản phẩm đã xuất bản thành công', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15611', 'vn', 'thumbnail_image', 'Hình ảnh thu nhỏ', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15612', 'vn', 'featured_products_updated_successfully', 'Các sản phẩm nổi bật được cập nhật thành công', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15613', 'vn', 'product_videos', 'Video sản phẩm', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15614', 'vn', 'video_provider', 'Nhà cung cấp video', '2021-02-09 13:17:42', '2021-09-20 12:59:54'),
('15615', 'vn', 'youtube', 'Youtube', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15616', 'vn', 'dailymotion', 'Hàng ngày', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15617', 'vn', 'vimeo', 'Vimeo', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15618', 'vn', 'video_link', 'Liên kêt video', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15619', 'vn', 'product_variation', 'Biến thể sản phẩm', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15620', 'vn', 'colors', 'Màu sắc', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15621', 'vn', 'attributes', 'Thuộc tính', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15622', 'vn', 'choose_attributes', 'Chọn thuộc tính', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15623', 'vn', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Chọn các thuộc tính của sản phẩm này, sau đó nhập giá trị của từng thuộc tính', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15624', 'vn', 'product_price__stock', 'Giá sản phẩm + kho', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15625', 'vn', 'unit_price', 'Đơn giá', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15626', 'vn', 'purchase_price', 'Giá mua', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15627', 'vn', 'flat', 'Bằng phẳng', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15628', 'vn', 'percent', 'Phần trăm', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15629', 'vn', 'discount', 'Giảm giá', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15630', 'vn', 'product_description', 'Mô tả Sản phẩm', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15631', 'vn', 'product_shipping_cost', 'Chi phí vận chuyển sản phẩm', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15632', 'vn', 'free_shipping', 'Miễn phí vận chuyển', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15633', 'vn', 'flat_rate', 'Tỷ lệ cố định', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15634', 'vn', 'shipping_cost', 'Giá vận chuyển', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15635', 'vn', 'pdf_specification', 'Đặc tả PDF', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15636', 'vn', 'seo_meta_tags', 'Thẻ meta SEO', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15637', 'vn', 'meta_title', 'Tiêu đề meta', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15638', 'vn', 'meta_image', 'Hình ảnh meta', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15639', 'vn', 'choice_title', 'Tiêu đề lựa chọn', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15640', 'vn', 'enter_choice_values', 'Nhập các giá trị lựa chọn', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15641', 'vn', 'all_categories', 'Tất cả danh mục', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15642', 'vn', 'add_new_category', 'Thêm danh mục mới', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15643', 'vn', 'type_name__enter', 'Nhập tên & Nhập', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15644', 'vn', 'banner', 'Ảnh bìa', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15645', 'vn', 'commission', 'Uỷ ban', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15646', 'vn', 'icon', 'biểu tượng', '2021-02-09 13:17:43', '2021-02-09 13:17:43'),
('15647', 'vn', 'featured_categories_updated_successfully', 'Các danh mục nổi bật được cập nhật thành công', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15648', 'vn', 'hot', 'Nóng bức', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15649', 'vn', 'filter_by_payment_status', 'Lọc theo Trạng thái Thanh toán', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15650', 'vn', 'unpaid', 'Chưa thanh toán', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15651', 'vn', 'filter_by_deliver_status', 'Lọc theo trạng thái phân phối', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15652', 'vn', 'pending', 'Đang chờ xử lý', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15653', 'vn', 'type_order_code__hit_enter', 'Nhập Mã đơn hàng và nhấn Enter', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15654', 'vn', 'num_of_products', 'Không. sản phẩm', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15655', 'vn', 'walk_in_customer', 'Đi trong khách hàng', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15656', 'vn', 'qty', 'QTY', '2021-02-09 13:17:43', '2021-09-20 12:59:54'),
('15657', 'vn', 'without_shipping_charge', 'Không có phí vận chuyển', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15658', 'vn', 'with_shipping_charge', 'Với phí vận chuyển', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15659', 'vn', 'pay_with_cash', 'Thanh toán bằng tiền mặt', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15660', 'vn', 'shipping_address', 'Địa chỉ giao hàng', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15661', 'vn', 'close', 'Đóng', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15662', 'vn', 'select_country', 'Chọn quốc gia', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15663', 'vn', 'order_confirmation', 'Xác nhận đơn hàng', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15664', 'vn', 'are_you_sure_to_confirm_this_order', 'Bạn có chắc chắn xác nhận đơn đặt hàng này không?', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15665', 'vn', 'comfirm_order', 'Xác nhận đơn hàng', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15666', 'vn', 'personal_info', 'Thông tin cá nhân', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15667', 'vn', 'repeat_password', 'Lặp lại mật khẩu', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15668', 'vn', 'shop_name', 'Tên cửa hàng', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15669', 'vn', 'register_your_shop', 'Đăng ký cửa hàng của bạn', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15670', 'vn', 'affiliate_informations', 'Thông tin liên kết', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15671', 'vn', 'affiliate', 'Chi nhánh', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15672', 'vn', 'user_info', 'thông tin người dùng', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15673', 'vn', 'installed_addon', 'Addon đã cài đặt', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15674', 'vn', 'available_addon', 'Addon có sẵn', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15675', 'vn', 'install_new_addon', 'Cài đặt Addon mới', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15676', 'vn', 'version', 'Phiên bản', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15677', 'vn', 'activated', 'Đã kích hoạt', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15678', 'vn', 'deactivated', 'Đã hủy kích hoạt', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15679', 'vn', 'activate_otp', 'Kích hoạt OTP', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15680', 'vn', 'otp_will_be_used_for', 'OTP sẽ được sử dụng cho', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15681', 'vn', 'settings_updated_successfully', 'Đã cập nhật cài đặt thành công', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15682', 'vn', 'product_owner', 'Chủ sở hữu sản phẩm', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15683', 'vn', 'point', 'Điểm', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15684', 'vn', 'set_point_for_product_within_a_range', 'Đặt điểm cho sản phẩm trong phạm vi', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15685', 'vn', 'set_point_for_multiple_products', 'Đặt điểm cho nhiều sản phẩm', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15686', 'vn', 'min_price', 'Giá tối thiểu', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15687', 'vn', 'max_price', 'Giá tối đa', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15688', 'vn', 'set_point_for_all_products', 'Đặt điểm cho tất cả các sản phẩm', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15689', 'vn', 'set_point_for_', 'Đặt điểm cho', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15690', 'vn', 'convert_status', 'Chuyển đổi trạng thái', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15691', 'vn', 'earned_at', 'Kiếm được tại', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15692', 'vn', 'seller_based_selling_report', 'Báo cáo bán hàng dựa trên người bán', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15693', 'vn', 'sort_by_verificarion_status', 'Sắp xếp theo trạng thái xác minh', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15694', 'vn', 'approved', 'Tán thành', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15695', 'vn', 'non_approved', 'Không được chấp thuận', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15696', 'vn', 'filter', 'Bộ lọc', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15697', 'vn', 'seller_name', 'Tên người bán', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15698', 'vn', 'number_of_product_sale', 'Số lượng bán sản phẩm', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15699', 'vn', 'order_amount', 'Số lượng đơn đặt hàng', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15700', 'vn', 'facebook_chat_setting', 'Cài đặt trò chuyện trên Facebook', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15701', 'vn', 'facebook_page_id', 'ID trang Facebook', '2021-02-09 13:17:44', '2021-09-20 12:59:54'),
('15702', 'vn', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Hãy cẩn thận khi bạn đang định cấu hình trò chuyện Facebook. Đối với cấu hình không chính xác, bạn sẽ không nhận được biểu tượng messenger trên trang web người dùng cuối của mình.', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15703', 'vn', 'login_into_your_facebook_page', 'Đăng nhập vào trang facebook của bạn', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15704', 'vn', 'find_the_about_option_of_your_facebook_page', 'Tìm tùy chọn Giới thiệu của trang facebook của bạn', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15705', 'vn', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'Ở dưới cùng, bạn có thể tìm thấy \\ “ID Trang Facebook \\”', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15706', 'vn', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Đi tới Cài đặt của trang của bạn và tìm tùy chọn của \\ \"Nhắn tin trước \\\"', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15707', 'vn', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Cuộn xuống trang đó và bạn sẽ nhận được \\ \"tên miền được liệt kê trắng \\\"', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15708', 'vn', 'set_your_website_domain_name', 'Đặt tên miền trang web của bạn', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15709', 'vn', 'google_recaptcha_setting', 'Cài đặt reCAPTCHA của Google', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15710', 'vn', 'site_key', 'Chìa khoá website', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15711', 'vn', 'select_shipping_method', 'Chọn phương thức vận chuyển', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15712', 'vn', 'product_wise_shipping_cost', 'Chi phí vận chuyển sản phẩm khôn ngoan', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15713', 'vn', 'flat_rate_shipping_cost', 'Phí vận chuyển cố định', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15714', 'vn', 'seller_wise_flat_shipping_cost', 'Người bán khôn ngoan Chi phí vận chuyển cố định', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15715', 'vn', 'note', 'Ghi chú', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15716', 'vn', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Tính toán chi phí vận chuyển sản phẩm khôn ngoan: Chi phí vận chuyển được tính bằng cách cộng với chi phí vận chuyển của từng sản phẩm', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15717', 'vn', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Tỷ lệ cố định Tính toán chi phí vận chuyển: Khách hàng mua bao nhiêu sản phẩm không quan trọng. Chi phí vận chuyển là cố định', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15718', 'vn', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Người bán khôn ngoan Tính toán chi phí vận chuyển: Tỷ lệ cố định cho mỗi người bán. Nếu một khách hàng mua 2 sản phẩm từ hai người bán, chi phí vận chuyển được tính bằng cách cộng chi phí vận chuyển cố định của mỗi người bán', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15719', 'vn', 'flat_rate_cost', 'Chi phí cố định', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15720', 'vn', 'shipping_cost_for_admin_products', 'Chi phí vận chuyển cho các sản phẩm quản trị', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15721', 'vn', 'countries', 'Quốc gia', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15722', 'vn', 'showhide', 'Hiện an', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15723', 'vn', 'country_status_updated_successfully', 'Đã cập nhật trạng thái quốc gia thành công', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15724', 'vn', 'all_subcategories', 'Tất cả các danh mục phụ', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15725', 'vn', 'add_new_subcategory', 'Thêm danh mục con mới', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15726', 'vn', 'subcategories', 'Danh mục phụ', '2021-02-09 13:17:45', '2021-09-20 12:59:54'),
('15727', 'vn', 'sub_category_information', 'Thông tin danh mục phụ', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15728', 'vn', 'slug', 'Sên', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15729', 'vn', 'all_sub_subcategories', 'Tất cả các danh mục phụ', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15730', 'vn', 'add_new_sub_subcategory', 'Thêm danh mục con mới', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15731', 'vn', 'subsubcategories', 'Danh mục phụ', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15732', 'vn', 'make_this_default', 'Đặt điều này làm mặc định', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15733', 'vn', 'shops', 'Cửa hàng', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15734', 'vn', 'women_clothing__fashion', 'Quần áo & Thời trang Nữ', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15735', 'vn', 'cellphones__tabs', 'Điện thoại di động & Tab', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15736', 'vn', 'welcome_to', 'Chào mừng bạn đến', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15737', 'vn', 'create_a_new_account', 'Tạo tài khoản mới', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15738', 'vn', 'full_name', 'Họ và tên', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15739', 'vn', 'password', 'mật khẩu', '2021-02-09 13:18:12', '2021-02-09 13:18:12'),
('15740', 'vn', 'confrim_password', 'Mật khẩu tạm thời', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15741', 'vn', 'i_agree_with_the', 'tôi đồng ý với', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15742', 'vn', 'terms_and_conditions', 'Các điều khoản và điều kiện', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15743', 'vn', 'register', 'Đăng ký', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15744', 'vn', 'already_have_an_account', 'Bạn co săn san để tạo một tai khoản', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15745', 'vn', 'sign_up_with', 'Đăng ký với', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15746', 'vn', 'i_agree_with_the_terms_and_conditions', 'Tôi đồng ý với các Điều khoản và Điều kiện', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15747', 'vn', 'all_role', 'Tất cả các vai trò', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15748', 'vn', 'add_new_role', 'Thêm vai trò mới', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15749', 'vn', 'roles', 'Vai trò', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15750', 'vn', 'add_new_staffs', 'Thêm nhân viên mới', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15751', 'vn', 'role', 'Vai trò', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15752', 'vn', 'frontend_website_name', 'Tên trang web giao diện người dùng', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15753', 'vn', 'website_name', 'Tên trang web', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15754', 'vn', 'site_motto', 'Phương châm trang web', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15755', 'vn', 'best_ecommerce_website', 'Trang web thương mại điện tử tốt nhất', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15756', 'vn', 'site_icon', 'Biểu tượng trang web', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15757', 'vn', 'website_favicon_32x32_png', 'Biểu tượng trang web. 32x32 .png', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15758', 'vn', 'website_base_color', 'Màu nền của trang web', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15759', 'vn', 'hex_color_code', 'Mã màu Hex', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15760', 'vn', 'website_base_hover_color', 'Màu di chuột cơ sở của trang web', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15761', 'vn', 'update', 'Cập nhật', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15762', 'vn', 'global_seo', 'Seo toàn cầu', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15763', 'vn', 'meta_description', 'Mô tả meta', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15764', 'vn', 'keywords', 'Từ khóa', '2021-02-09 13:18:12', '2021-09-20 12:59:54'),
('15765', 'vn', 'separate_with_coma', 'Tách biệt với hôn mê', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15766', 'vn', 'website_pages', 'Trang web', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15767', 'vn', 'all_pages', 'Tất cả các trang', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15768', 'vn', 'add_new_page', 'Thêm trang mới', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15769', 'vn', 'url', 'URL', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15770', 'vn', 'actions', 'Hành động', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15771', 'vn', 'edit_page_information', 'Chỉnh sửa thông tin trang', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15772', 'vn', 'page_content', 'Nội dung trang', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15773', 'vn', 'title', 'Tiêu đề', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15774', 'vn', 'link', 'Liên kết', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15775', 'vn', 'use_character_number_hypen_only', 'Chỉ sử dụng ký tự, số, gạch nối', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15776', 'vn', 'add_content', 'Thêm nội dung', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15777', 'vn', 'seo_fields', 'Lĩnh vực Seo', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15778', 'vn', 'update_page', 'Cập nhật trang', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15779', 'vn', 'default_language', 'Ngôn ngữ mặc định', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15780', 'vn', 'add_new_language', 'Thêm ngôn ngữ mới', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15781', 'vn', 'rtl', 'RTL', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15782', 'vn', 'translation', 'Dịch', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15783', 'vn', 'language_information', 'Thông tin ngôn ngữ', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15784', 'vn', 'save_page', 'Lưu trang', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15785', 'vn', 'home_page_settings', 'Cài đặt Trang chủ', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15786', 'vn', 'home_slider', 'Thanh trượt Trang chủ', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15787', 'vn', 'photos__links', 'Ảnh & Liên kết', '2021-02-09 13:18:13', '2021-09-20 12:59:54'),
('15788', 'vn', 'add_new', 'Thêm mới', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15789', 'vn', 'home_categories', 'Danh mục nhà', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15790', 'vn', 'home_banner_1_max_3', 'Biểu ngữ Trang chủ 1 (Tối đa 3)', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15791', 'vn', 'banner__links', 'Biểu ngữ & Liên kết', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15792', 'vn', 'home_banner_2_max_3', 'Biểu ngữ Trang chủ 2 (Tối đa 3)', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15793', 'vn', 'top_10', 'Tôp 10', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15794', 'vn', 'top_categories_max_10', 'Danh mục hàng đầu (Tối đa 10)', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15795', 'vn', 'top_brands_max_10', 'Thương hiệu hàng đầu (Tối đa 10)', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15796', 'vn', 'system_name', 'Tên hệ thống', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15797', 'vn', 'system_logo__white', 'Logo Hệ thống - Màu trắng', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15798', 'vn', 'choose_files', 'Chọn tệp', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15799', 'vn', 'will_be_used_in_admin_panel_side_menu', 'Sẽ được sử dụng trong menu bên của bảng quản trị', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15800', 'vn', 'system_logo__black', 'Logo Hệ thống - Màu đen', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15801', 'vn', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Sẽ được sử dụng trong thanh trên cùng của bảng quản trị trong trang đăng nhập dành cho quản trị viên + di động', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15802', 'vn', 'system_timezone', 'Múi giờ hệ thống', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15803', 'vn', 'admin_login_page_background', 'Nền trang đăng nhập quản trị viên', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15804', 'vn', 'website_header', 'Tiêu đề trang web', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15805', 'vn', 'header_setting', 'Cài đặt tiêu đề', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15806', 'vn', 'header_logo', 'Biểu trưng tiêu đề', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15807', 'vn', 'show_language_switcher', 'Hiển thị Trình chuyển đổi ngôn ngữ?', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15808', 'vn', 'show_currency_switcher', 'Hiển thị công cụ chuyển đổi tiền tệ?', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15809', 'vn', 'enable_stikcy_header', 'Bật tiêu đề stikcy?', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15810', 'vn', 'website_footer', 'Chân trang trang web', '2021-02-09 13:18:13', '2021-09-20 12:59:55'),
('15811', 'vn', 'footer_widget', 'Tiện ích chân trang', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15812', 'vn', 'about_widget', 'Giới thiệu về Widget', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15813', 'vn', 'footer_logo', 'Biểu trưng chân trang', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15814', 'vn', 'about_description', 'Về mô tả', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15815', 'vn', 'contact_info_widget', 'Tiện ích Thông tin Liên hệ', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15816', 'vn', 'footer_contact_address', 'Địa chỉ liên hệ ở chân trang', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15817', 'vn', 'footer_contact_phone', 'Điện thoại liên hệ chân trang', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15818', 'vn', 'footer_contact_email', 'Email liên hệ ở chân trang', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15819', 'vn', 'link_widget_one', 'Liên kết tiện ích con một', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15820', 'vn', 'links', 'Liên kết', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15821', 'vn', 'footer_bottom', 'Chân trang dưới cùng', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15822', 'vn', 'copyright_widget_', 'Tiện ích bản quyền', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15823', 'vn', 'copyright_text', 'Văn bản Bản quyền', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15824', 'vn', 'social_link_widget_', 'Tiện ích liên kết xã hội', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15825', 'vn', 'show_social_links', 'Hiển thị các liên kết xã hội?', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15826', 'vn', 'social_links', 'đường liên kết mạng xã hội', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15827', 'vn', 'payment_methods_widget_', 'Tiện ích phương thức thanh toán', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15828', 'vn', 'rtl_status_updated_successfully', 'Đã cập nhật trạng thái RTL thành công', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15829', 'vn', 'language_changed_to_', 'Ngôn ngữ đã thay đổi thành', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15830', 'vn', 'inhouse_product_sale_report', 'Báo cáo bán sản phẩm trong nhà', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15831', 'vn', 'sort_by_category', 'Sắp xếp theo thể loại', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15832', 'vn', 'product_wise_stock_report', 'Báo cáo kho sản phẩm khôn ngoan', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15833', 'vn', 'currency_changed_to_', 'Tiền tệ đã thay đổi thành', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15834', 'vn', 'avatar', 'hình đại diện', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15835', 'vn', 'copy', 'Sao chép', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15836', 'vn', 'variant', 'Biến thể', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15837', 'vn', 'variant_price', 'Giá biến thể', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15838', 'vn', 'sku', 'SKU', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15839', 'vn', 'key', 'Chìa khóa', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15840', 'vn', 'value', 'Giá trị', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15841', 'vn', 'copy_translations', 'Sao chép bản dịch', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15842', 'vn', 'all_pickup_points', 'Tất cả các điểm đón', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15843', 'vn', 'add_new_pickup_point', 'Thêm điểm đón mới', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15844', 'vn', 'manager', 'Giám đốc', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15845', 'vn', 'location', 'Vị trí', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15846', 'vn', 'pickup_station_contact', 'Liên hệ trạm đón', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15847', 'vn', 'open', 'Mở', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15848', 'vn', 'pos_activation_for_seller', 'Kích hoạt POS cho Người bán', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15849', 'vn', 'order_completed_successfully', 'Đơn đặt hàng đã hoàn tất thành công.', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15850', 'vn', 'text_input', 'Nhập văn bản', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15851', 'vn', 'select', 'Lựa chọn', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15852', 'vn', 'multiple_select', 'Nhiều lựa chọn', '2021-02-09 13:18:14', '2021-09-20 12:59:55'),
('15853', 'vn', 'radio', 'Đài', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15854', 'vn', 'file', 'Tập tin', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15855', 'vn', 'email_address', 'Địa chỉ email', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15856', 'vn', 'verification_info', 'Thông tin xác minh', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15857', 'vn', 'approval', 'Sự chấp thuận', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15858', 'vn', 'due_amount', 'Số tiền đến hạn', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15859', 'vn', 'show', 'Chỉ', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15860', 'vn', 'pay_now', 'Thanh toán ngay', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15861', 'vn', 'affiliate_user_verification', 'Xác minh người dùng liên kết', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15862', 'vn', 'reject', 'Từ chối', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15863', 'vn', 'accept', 'Chấp nhận', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15864', 'vn', 'beauty_health__hair', 'Làm đẹp, Sức khỏe & Tóc', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15865', 'vn', 'comparison', 'So sánh', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15866', 'vn', 'reset_compare_list', 'Đặt lại danh sách so sánh', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15867', 'vn', 'your_comparison_list_is_empty', 'Danh sách so sánh của bạn trống', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15868', 'vn', 'convert_point_to_wallet', 'Chuyển đổi điểm thành ví', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15869', 'vn', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Lưu ý: Bạn cần kích hoạt tùy chọn ví trước khi sử dụng addon điểm câu lạc bộ.', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15870', 'vn', 'create_an_account', 'Tạo một tài khoản.', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15871', 'vn', 'use_email_instead', 'Sử dụng Email thay thế', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15872', 'vn', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Bằng cách đăng ký, bạn đồng ý với các điều khoản và điều kiện của chúng tôi.', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15873', 'vn', 'create_account', 'Tạo tài khoản', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15874', 'vn', 'or_join_with', 'Hoặc tham gia với', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15875', 'vn', 'already_have_an_account', 'Bạn co săn san để tạo một tai khoản?', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15876', 'vn', 'log_in', 'Đăng nhập', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15877', 'vn', 'computer__accessories', 'Phụ kiện máy tính', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15878', 'vn', 'products', 'Các sản phẩm)', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15879', 'vn', 'in_your_cart', 'trong giỏ hàng của bạn', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15880', 'vn', 'in_your_wishlist', 'trong danh sách mong muốn của bạn', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15881', 'vn', 'you_ordered', 'bạn đặt hàng', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15882', 'vn', 'default_shipping_address', 'Địa chỉ giao hàng mặc định', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15883', 'vn', 'sports__outdoor', 'Thể thao & ngoài trời', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15884', 'vn', 'copied', 'Đã sao chép', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15885', 'vn', 'copy_the_promote_link', 'Sao chép Liên kết Quảng cáo', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15886', 'vn', 'write_a_review', 'Viết nhận xét', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15887', 'vn', 'your_name', 'Tên của bạn', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15888', 'vn', 'comment', 'Bình luận', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15889', 'vn', 'your_review', 'Đánh giá của bạn', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15890', 'vn', 'submit_review', 'Gửi đánh giá', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15891', 'vn', 'claire_willis', 'Claire Willis', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15892', 'vn', 'germaine_greene', 'Germaine Greene', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15893', 'vn', 'product_file', 'Tệp sản phẩm', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15894', 'vn', 'choose_file', 'Chọn tập tin', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15895', 'vn', 'type_to_add_a_tag', 'Nhập để thêm thẻ', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15896', 'vn', 'images', 'Hình ảnh', '2021-02-09 13:18:15', '2021-09-20 12:59:55'),
('15897', 'vn', 'main_images', 'Hình ảnh chính', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15898', 'vn', 'meta_tags', 'Thẻ meta', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15899', 'vn', 'digital_product_has_been_inserted_successfully', 'Sản phẩm kỹ thuật số đã được chèn thành công', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15900', 'vn', 'edit_digital_product', 'Chỉnh sửa sản phẩm kỹ thuật số', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15901', 'vn', 'select_an_option', 'Chọn một tùy chọn', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15902', 'vn', 'tax', 'Thuế', '2021-02-09 13:18:16', '2021-02-09 13:18:16'),
('15903', 'vn', 'any_question_about_this_product', 'Bất kỳ câu hỏi về sản phẩm này?', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15904', 'vn', 'sign_in', 'Đăng nhập', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15905', 'vn', 'login_with_google', 'Đăng nhập với Google', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15906', 'vn', 'login_with_facebook', 'Đăng nhập Facebook', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15907', 'vn', 'login_with_twitter', 'Đăng nhập bằng Twitter', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15908', 'vn', 'click_to_show_phone_number', 'Nhấp để hiển thị số điện thoại', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15909', 'vn', 'other_ads_of', 'Các quảng cáo khác của', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15910', 'vn', 'store_home', 'Trang chủ cửa hàng', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15911', 'vn', 'top_selling', 'Ban chạy nhât', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15912', 'vn', 'shop_settings', 'Cài đặt cửa hàng', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15913', 'vn', 'visit_shop', 'Ghé thăm cửa hàng', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15914', 'vn', 'pickup_points', 'Điểm nhận hàng', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15915', 'vn', 'select_pickup_point', 'Chọn điểm đón', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15916', 'vn', 'slider_settings', 'Cài đặt thanh trượt', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15917', 'vn', 'social_media_link', 'Liên kết truyền thông xã hội', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15918', 'vn', 'facebook', 'Facebook', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15919', 'vn', 'twitter', 'Twitter', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15920', 'vn', 'google', 'Google', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15921', 'vn', 'new_arrival_products', 'Sản phẩm mới về', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15922', 'vn', 'check_your_order_status', 'Kiểm tra trạng thái đơn hàng của bạn', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15923', 'vn', 'shipping_method', 'Phương pháp vận chuyển', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15924', 'vn', 'shipped_by', 'Vận chuyển bằng', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15925', 'vn', 'image', 'Hình ảnh', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15926', 'vn', 'sub_sub_category', 'Hạng mục phụ', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15927', 'vn', 'inhouse_products', 'Sản phẩm nội bộ', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15928', 'vn', 'forgot_password', 'Quên mật khẩu?', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15929', 'vn', 'enter_your_email_address_to_recover_your_password', 'Nhập địa chỉ email của bạn để khôi phục mật khẩu của bạn.', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15930', 'vn', 'email_or_phone', 'Email hoặc điện thoại', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15931', 'vn', 'send_password_reset_link', 'Gửi liên kết đặt lại mật khẩu', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15932', 'vn', 'back_to_login', 'Quay lại đăng nhập', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15933', 'vn', 'index', 'mục lục', '2021-02-09 13:18:16', '2021-02-09 13:18:16'),
('15934', 'vn', 'download_your_product', 'Tải xuống sản phẩm của bạn', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15935', 'vn', 'option', 'Lựa chọn', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15936', 'vn', 'applied_refund_request', 'Yêu cầu hoàn lại tiền đã áp dụng', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15937', 'vn', 'item_has_been_renoved_from_wishlist', 'Mục đã được cải tiến khỏi danh sách yêu thích', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15938', 'vn', 'bulk_products_upload', 'Tải lên hàng loạt sản phẩm', '2021-02-09 13:18:16', '2021-09-20 12:59:55'),
('15939', 'vn', 'upload_csv', 'Tải lên CSV', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15940', 'vn', 'create_a_ticket', 'Tạo vé', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15941', 'vn', 'tickets', 'Vé', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15942', 'vn', 'ticket_id', 'ID vé', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15943', 'vn', 'sending_date', 'Ngày gửi', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15944', 'vn', 'subject', 'Môn học', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15945', 'vn', 'view_details', 'Xem chi tiết', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15946', 'vn', 'provide_a_detailed_description', 'Cung cấp mô tả chi tiết', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15947', 'vn', 'type_your_reply', 'Nhập câu trả lời của bạn', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15948', 'vn', 'send_ticket', 'Gửi vé', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15949', 'vn', 'load_more', 'Tải thêm', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15950', 'vn', 'jewelry__watches', 'Trang sức & Đồng hồ', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15951', 'vn', 'filters', 'Bộ lọc', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15952', 'vn', 'contact_address', 'Địa chỉ liên hệ', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15953', 'vn', 'contact_phone', 'Điện thoại liên hệ', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15954', 'vn', 'contact_email', 'Địa chỉ email liên lạc', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15955', 'vn', 'filter_by', 'Lọc bởi', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15956', 'vn', 'condition', 'Điều kiện', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15957', 'vn', 'all_type', 'Tất cả các loại', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15958', 'vn', 'pay_with_wallet', 'Thanh toán bằng ví', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15959', 'vn', 'select_variation', 'Chọn biến thể', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15960', 'vn', 'no_product_added', 'Không có sản phẩm được thêm vào', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15961', 'vn', 'status_has_been_updated_successfully', 'Trạng thái đã được cập nhật thành công', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15962', 'vn', 'all_seller_packages', 'Tất cả các gói người bán', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15963', 'vn', 'add_new_package', 'Thêm gói mới', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15964', 'vn', 'package_logo', 'Biểu trưng gói', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15965', 'vn', 'days', 'ngày', '2021-02-09 13:18:17', '2021-02-09 13:18:17'),
('15966', 'vn', 'create_new_seller_package', 'Tạo gói người bán mới', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15967', 'vn', 'package_name', 'Tên gói hàng', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15968', 'vn', 'duration', 'Thời lượng', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15969', 'vn', 'validity_in_number_of_days', 'Hiệu lực trong số ngày', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15970', 'vn', 'update_package_information', 'Cập nhật thông tin gói', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15971', 'vn', 'package_has_been_inserted_successfully', 'Gói đã được chèn thành công', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15972', 'vn', 'refund_request', 'Yêu cầu hoàn lại tiền', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15973', 'vn', 'reason', 'Lý do', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15974', 'vn', 'label', 'Nhãn', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15975', 'vn', 'select_label', 'Chọn nhãn', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15976', 'vn', 'multiple_select_label', 'Nhiều lựa chọn nhãn', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15977', 'vn', 'radio_label', 'Nhãn đài', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15978', 'vn', 'pickup_point_orders', 'Đơn đặt hàng tại điểm đón', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15979', 'vn', 'view', 'Lượt xem', '2021-02-09 13:18:17', '2021-09-20 12:59:55'),
('15980', 'vn', 'order_', 'Đặt hàng #', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15981', 'vn', 'order_status', 'Tình trạng đặt hàng', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15982', 'vn', 'total_amount', 'Tổng cộng', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15983', 'vn', 'total', 'TOÀN BỘ', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15984', 'vn', 'delivery_status_has_been_updated', 'Tình trạng giao hàng đã được cập nhật', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15985', 'vn', 'payment_status_has_been_updated', 'Trạng thái thanh toán đã được cập nhật', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15986', 'vn', 'invoice', 'HÓA ĐƠN', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15987', 'vn', 'set_refund_time', 'Đặt thời gian hoàn lại tiền', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15988', 'vn', 'set_time_for_sending_refund_request', 'Đặt thời gian để gửi Yêu cầu hoàn lại tiền', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15989', 'vn', 'set_refund_sticker', 'Đặt hình dán hoàn lại tiền', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15990', 'vn', 'sticker', 'Hình dán', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15991', 'vn', 'refund_request_all', 'Yêu cầu hoàn lại tiền Tất cả', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15992', 'vn', 'order_id', 'Mã đơn hàng', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15993', 'vn', 'seller_approval', 'Phê duyệt người bán', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15994', 'vn', 'admin_approval', 'Phê duyệt của quản trị viên', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15995', 'vn', 'refund_status', 'Trạng thái hoàn tiền', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15996', 'vn', 'no_refund', 'Không hoàn lại tiền', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15997', 'vn', 'status_updated_successfully', 'Đã cập nhật trạng thái thành công', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15998', 'vn', 'user_search_report', 'Báo cáo Tìm kiếm Người dùng', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('15999', 'vn', 'search_by', 'Tìm kiếm bởi', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16000', 'vn', 'number_searches', 'Số lượng tìm kiếm', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16001', 'vn', 'sender', 'Người gửi', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16002', 'vn', 'receiver', 'Người nhận', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16003', 'vn', 'verification_form_updated_successfully', 'Đã cập nhật thành công biểu mẫu xác minh', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16004', 'vn', 'invalid_email_or_password', 'Email hoặc mật khẩu không hợp lệ', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16005', 'vn', 'all_coupons', 'Tất cả các phiếu giảm giá', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16006', 'vn', 'add_new_coupon', 'Thêm phiếu giảm giá mới', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16007', 'vn', 'coupon_information', 'Thông tin phiếu thưởng', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16008', 'vn', 'start_date', 'Ngày bắt đầu', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16009', 'vn', 'end_date', 'Ngày cuối', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16010', 'vn', 'product_base', 'Cơ sở sản phẩm', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16011', 'vn', 'send_newsletter', 'Gửi bản tin', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16012', 'vn', 'mobile_users', 'Người dùng di động', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16013', 'vn', 'sms_subject', 'Chủ đề SMS', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16014', 'vn', 'sms_content', 'Nội dung SMS', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16015', 'vn', 'all_flash_delas', 'Tất cả Flash Delas', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16016', 'vn', 'create_new_flash_dela', 'Tạo Flash Dela mới', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16017', 'vn', 'page_link', 'trang liên kết', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16018', 'vn', 'flash_deal_information', 'Thông tin giao dịch nhanh', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16019', 'vn', 'background_color', 'Màu nền', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16020', 'vn', '0000ff', '# 0000ff', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16021', 'vn', 'text_color', 'Văn bản màu', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16022', 'vn', 'white', 'trắng', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16023', 'vn', 'dark', 'Tối', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16024', 'vn', 'choose_products', 'Chọn sản phẩm', '2021-02-09 13:18:18', '2021-09-20 12:59:55'),
('16025', 'vn', 'discounts', 'Giảm giá', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16026', 'vn', 'discount_type', 'Loại giảm giá', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16027', 'vn', 'twillo_credential', 'Thông tin xác thực Twillo', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16028', 'vn', 'twilio_sid', 'TWILIO SID', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16029', 'vn', 'twilio_auth_token', 'TWILIO AUTH TOKEN', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16030', 'vn', 'twilio_verify_sid', 'TWILIO XÁC MINH SID', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16031', 'vn', 'valid_twillo_number', 'SỐ TWILLO HỢP LỆ', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16032', 'vn', 'nexmo_credential', 'Nexmo Credential', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16033', 'vn', 'nexmo_key', 'NEXMO KEY', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16034', 'vn', 'nexmo_secret', 'BÍ QUYẾT NEXMO', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16035', 'vn', 'ssl_wireless_credential', 'Chứng chỉ không dây SSL', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16036', 'vn', 'ssl_sms_api_token', 'API SMS SSL TOKEN', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16037', 'vn', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16038', 'vn', 'ssl_sms_url', 'URL SMS SSL', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16039', 'vn', 'fast2sms_credential', 'Thông tin đăng nhập Fast2SMS', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16040', 'vn', 'auth_key', 'TỪ KHÓA AUTH', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16041', 'vn', 'route', 'ĐƯỜNG ĐI', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16042', 'vn', 'promotional_use', 'Sử dụng khuyến mại', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16043', 'vn', 'transactional_use', 'Sử dụng giao dịch', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16044', 'vn', 'sender_id', 'GỬI ID', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16045', 'vn', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16046', 'vn', 'twillo_otp', 'Twillo OTP', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16047', 'vn', 'ssl_wireless_otp', 'SSL không dây OTP', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16048', 'vn', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16049', 'vn', 'order_placement', 'Đặt hàng', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16050', 'vn', 'delivery_status_changing_time', 'Thời gian thay đổi trạng thái giao hàng', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16051', 'vn', 'paid_status_changing_time', 'Thời gian thay đổi trạng thái trả tiền', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16052', 'vn', 'send_bulk_sms', 'Gửi tin nhắn SMS hàng loạt', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16053', 'vn', 'all_subscribers', 'Tất cả người đăng ký', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16054', 'vn', 'coupon_information_adding', 'Thêm thông tin phiếu thưởng', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16055', 'vn', 'coupon_type', 'Loại phiếu giảm giá', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16056', 'vn', 'for_products', 'Đối với Sản phẩm', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16057', 'vn', 'for_total_orders', 'Đối với tổng số đơn đặt hàng', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16058', 'vn', 'add_your_product_base_coupon', 'Thêm phiếu giảm giá cơ sở sản phẩm của bạn', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16059', 'vn', 'coupon_code', 'Mã giảm giá', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16060', 'vn', 'sub_category', 'Hạng mục phụ', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16061', 'vn', 'add_more', 'Bổ sung thêm', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16062', 'vn', 'add_your_cart_base_coupon', 'Thêm phiếu giảm giá cơ sở giỏ hàng của bạn', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16063', 'vn', 'minimum_shopping', 'Mua sắm tối thiểu', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16064', 'vn', 'maximum_discount_amount', 'Số tiền chiết khấu tối đa', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16065', 'vn', 'coupon_information_update', 'Cập nhật thông tin phiếu thưởng', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16066', 'vn', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Vui lòng Định cấu hình Cài đặt SMTP để hoạt động tất cả các chức năng gửi email', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16067', 'vn', 'configure_now', 'Định cấu hình ngay', '2021-02-09 13:18:19', '2021-09-20 12:59:55'),
('16068', 'vn', 'total_published_products', 'Tổng số sản phẩm đã xuất bản', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16069', 'vn', 'total_sellers_products', 'Tổng số người bán sản phẩm', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16070', 'vn', 'total_admin_products', 'Tổng số sản phẩm quản trị viên', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16071', 'vn', 'manage_products', 'Quản lý sản phẩm', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16072', 'vn', 'total_product_category', 'Tổng số loại sản phẩm', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16073', 'vn', 'create_category', 'Tạo danh mục', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16074', 'vn', 'total_product_sub_sub_category', 'Tổng danh mục phụ sản phẩm phụ', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16075', 'vn', 'create_sub_sub_category', 'Tạo danh mục phụ phụ', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16076', 'vn', 'total_product_sub_category', 'Tổng danh mục sản phẩm phụ', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16077', 'vn', 'create_sub_category', 'Tạo danh mục phụ', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16078', 'vn', 'total_product_brand', 'Tổng sản phẩm thương hiệu', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16079', 'vn', 'create_brand', 'Tạo thương hiệu', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16080', 'vn', 'total_sellers', 'Tổng số người bán', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16081', 'vn', 'total_approved_sellers', 'Tổng số người bán được chấp thuận', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16082', 'vn', 'total_pending_sellers', 'Tổng số người bán đang chờ xử lý', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16083', 'vn', 'manage_sellers', 'Quản lý người bán', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16084', 'vn', 'category_wise_product_sale', 'Thể loại bán sản phẩm khôn ngoan', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16085', 'vn', 'sale', 'Giảm giá', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16086', 'vn', 'category_wise_product_stock', 'Danh mục kho sản phẩm khôn ngoan', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16087', 'vn', 'category_name', 'tên danh mục', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16088', 'vn', 'stock', 'cổ phần', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16089', 'vn', 'frontend', 'Giao diện người dùng', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16090', 'vn', 'home_page', 'Trang chủ', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16091', 'vn', 'setting', 'cài đặt', '2021-02-09 13:18:20', '2021-02-09 13:18:20'),
('16092', 'vn', 'policy_page', 'Trang chính sách', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16093', 'vn', 'general', 'Chung', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16094', 'vn', 'click_here', 'Bấm vào đây', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16095', 'vn', 'useful_link', 'Liên kết hữu ích', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16096', 'vn', 'activation', 'Kích hoạt', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16097', 'vn', 'smtp', 'SMTP', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16098', 'vn', 'payment_method', 'Phương thức thanh toán', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16099', 'vn', 'social_media', 'Truyền thông xã hội', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16100', 'vn', 'business', 'Kinh doanh', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16101', 'vn', 'seller_verification', 'Xác minh người bán', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16102', 'vn', 'form_setting', 'thiết lập biểu mẫu', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16103', 'vn', 'language', 'Ngôn ngữ', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16104', 'vn', 'dashboard', 'bảng điều khiển', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16105', 'vn', 'pos_system', 'Hệ thống POS', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16106', 'vn', 'pos_manager', 'Quản lý POS', '2021-02-09 13:18:20', '2021-09-20 12:59:55'),
('16107', 'vn', 'pos_configuration', 'Cấu hình POS', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16108', 'vn', 'products', 'Các sản phẩm', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16109', 'vn', 'add_new_product', 'Thêm sản phẩm mới', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16110', 'vn', 'all_products', 'Tất cả sản phẩm', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16111', 'vn', 'in_house_products', 'Sản phẩm trong nhà', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16112', 'vn', 'seller_products', 'Sản phẩm của Người bán', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16113', 'vn', 'digital_products', 'Những sàn phẩm kĩ thuật số', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16114', 'vn', 'bulk_import', 'Nhập khẩu số lượng lớn', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16115', 'vn', 'bulk_export', 'Xuất hàng loạt', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16116', 'vn', 'category', 'thể loại', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16117', 'vn', 'subcategory', 'Danh mục con', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16118', 'vn', 'sub_subcategory', 'Danh mục con phụ', '2021-02-09 13:18:21', '2021-09-20 12:59:55'),
('16119', 'vn', 'brand', 'Nhãn hiệu', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16120', 'vn', 'attribute', 'Thuộc tính', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16121', 'vn', 'product_reviews', 'Đánh giá sản phẩm', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16122', 'vn', 'sales', 'Bán hàng', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16123', 'vn', 'all_orders', 'Tất cả các đơn hàng', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16124', 'vn', 'inhouse_orders', 'Đơn đặt hàng nội bộ', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16125', 'vn', 'seller_orders', 'Đơn đặt hàng của Người bán', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16126', 'vn', 'pickup_point_order', 'Thứ tự điểm đón', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16127', 'vn', 'refunds', 'Tiền hoàn lại', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16128', 'vn', 'refund_requests', 'Yêu cầu hoàn lại tiền', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16129', 'vn', 'approved_refund', 'Hoàn lại tiền được chấp thuận', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16130', 'vn', 'refund_configuration', 'Cấu hình hoàn lại tiền', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16131', 'vn', 'customers', 'Khách hàng', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16132', 'vn', 'customer_list', 'Danh sách khách hàng', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16133', 'vn', 'classified_products', 'Sản phẩm được rao vặt', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16134', 'vn', 'classified_packages', 'Các gói được phân loại', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16135', 'vn', 'sellers', 'Người bán', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16136', 'vn', 'all_seller', 'Tất cả người bán', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16137', 'vn', 'payouts', 'Các khoản thanh toán', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16138', 'vn', 'payout_requests', 'Yêu cầu thanh toán', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16139', 'vn', 'seller_commission', 'Hoa hồng người bán', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16140', 'vn', 'seller_packages', 'Gói người bán', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16141', 'vn', 'seller_verification_form', 'Biểu mẫu xác minh người bán', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16142', 'vn', 'reports', 'Báo cáo', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16143', 'vn', 'in_house_product_sale', 'Bán sản phẩm nội bộ', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16144', 'vn', 'seller_products_sale', 'Bán sản phẩm của người bán', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16145', 'vn', 'products_stock', 'Sản phẩm còn hàng', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16146', 'vn', 'products_wishlist', 'Danh sách sản phẩm mong muốn', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16147', 'vn', 'user_searches', 'Tìm kiếm của Người dùng', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16148', 'vn', 'marketing', 'Tiếp thị', '2021-02-09 13:18:21', '2021-09-20 12:59:56'),
('16149', 'vn', 'flash_deals', 'Giao dịch nhanh', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16150', 'vn', 'newsletters', 'Bản tin', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16151', 'vn', 'bulk_sms', 'SMS hàng loạt', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16152', 'vn', 'subscribers', 'Người đăng ký', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16153', 'vn', 'coupon', 'Phiếu mua hàng', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16154', 'vn', 'support', 'Ủng hộ', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16155', 'vn', 'ticket', 'Vé', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16156', 'vn', 'product_queries', 'Truy vấn sản phẩm', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16157', 'vn', 'website_setup', 'Thiết lập trang web', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16158', 'vn', 'header', 'Tiêu đề', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16159', 'vn', 'footer', 'Chân trang', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16160', 'vn', 'pages', 'Các trang', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16161', 'vn', 'appearance', 'Xuất hiện', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16162', 'vn', 'setup__configurations', 'Thiết lập và cấu hình', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16163', 'vn', 'general_settings', 'Cài đặt chung', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16164', 'vn', 'features_activation', 'Kích hoạt tính năng', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16165', 'vn', 'languages', 'Ngôn ngữ', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16166', 'vn', 'currency', 'Tiền tệ', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16167', 'vn', 'pickup_point', 'Điểm đón', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16168', 'vn', 'smtp_settings', 'Cài đặt SMTP', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16169', 'vn', 'payment_methods', 'Phương thức thanh toán', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16170', 'vn', 'file_system_configuration', 'Cấu hình hệ thống tệp', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16171', 'vn', 'social_media_logins', 'Đăng nhập mạng xã hội', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16172', 'vn', 'analytics_tools', 'Công cụ phân tích', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16173', 'vn', 'facebook_chat', 'Trò chuyện trên Facebook', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16174', 'vn', 'google_recaptcha', 'ReCAPTCHA của Google', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16175', 'vn', 'shipping_configuration', 'Cấu hình vận chuyển', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16176', 'vn', 'shipping_countries', 'Nước vận chuyển', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16177', 'vn', 'affiliate_system', 'Hệ thống liên kết', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16178', 'vn', 'affiliate_registration_form', 'Đơn đăng ký liên kết', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16179', 'vn', 'affiliate_configurations', 'Cấu hình chi nhánh', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16180', 'vn', 'affiliate_users', 'Người dùng liên kết', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16181', 'vn', 'referral_users', 'Người dùng giới thiệu', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16182', 'vn', 'affiliate_withdraw_requests', 'Yêu cầu rút tiền của đơn vị liên kết', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16183', 'vn', 'offline_payment_system', 'Hệ thống thanh toán ngoại tuyến', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16184', 'vn', 'manual_payment_methods', 'Phương thức thanh toán thủ công', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16185', 'vn', 'offline_wallet_recharge', 'Nạp tiền vào ví ngoại tuyến', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16186', 'vn', 'offline_customer_package_payments', 'Thanh toán gói cho khách hàng ngoại tuyến', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16187', 'vn', 'offline_seller_package_payments', 'Thanh toán gói người bán ngoại tuyến', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16188', 'vn', 'paytm_payment_gateway', 'Cổng thanh toán Paytm', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16189', 'vn', 'set_paytm_credentials', 'Đặt thông tin xác thực Paytm', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16190', 'vn', 'club_point_system', 'Hệ thống điểm câu lạc bộ', '2021-02-09 13:18:22', '2021-09-20 12:59:56'),
('16191', 'vn', 'club_point_configurations', 'Cấu hình điểm câu lạc bộ', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16192', 'vn', 'set_product_point', 'Đặt điểm sản phẩm', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16193', 'vn', 'user_points', 'Điểm người dùng', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16194', 'vn', 'otp_system', 'Hệ thống OTP', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16195', 'vn', 'otp_configurations', 'Cấu hình OTP', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16196', 'vn', 'set_otp_credentials', 'Đặt thông tin xác thực OTP', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16197', 'vn', 'staffs', 'Nhân viên', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16198', 'vn', 'all_staffs', 'Tất cả nhân viên', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16199', 'vn', 'staff_permissions', 'Quyền của nhân viên', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16200', 'vn', 'addon_manager', 'Trình quản lý Addon', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16201', 'vn', 'browse_website', 'Duyệt trang web', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16202', 'vn', 'pos', 'POS', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16203', 'vn', 'notifications', 'Thông báo', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16204', 'vn', 'new_orders', 'đơn hàng mới', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16205', 'vn', 'userimage', 'hình ảnh người dùng', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16206', 'vn', 'profile', 'Hồ sơ', '2021-02-09 13:18:23', '2021-09-20 12:59:56'),
('16207', 'vn', 'logout', 'Đăng xuất', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16208', 'vn', 'page_not_found', 'Không tìm thấy trang!', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16209', 'vn', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'Trang bạn đang tìm vẫn chưa được tìm thấy trên máy chủ của chúng tôi.', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16210', 'vn', 'registration', 'Đăng ký', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16211', 'vn', 'i_am_shopping_for', 'Tôi đang tìm mua...', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16212', 'vn', 'compare', 'Đối chiếu', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16213', 'vn', 'wishlist', 'Danh sách yêu thích', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16214', 'vn', 'cart', 'xe đẩy', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16215', 'vn', 'your_cart_is_empty', 'Giỏ của bạn trống trơn', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16216', 'vn', 'categories', 'Thể loại', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16217', 'vn', 'see_all', 'Nhìn thấy tất cả', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16218', 'vn', 'seller_policy', 'Chính sách người bán', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16219', 'vn', 'return_policy', 'Chính sách hoàn trả', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16220', 'vn', 'support_policy', 'Chính sách hỗ trợ', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16221', 'vn', 'privacy_policy', 'Chính sách bảo mật', '2021-02-09 13:35:49', '2021-09-20 12:59:56'),
('16222', 'vn', 'your_email_address', 'Địa chỉ email của bạn', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16223', 'vn', 'subscribe', 'Đăng ký', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16224', 'vn', 'contact_info', 'Thông tin liên lạc', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16225', 'vn', 'address', 'Địa chỉ', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16226', 'vn', 'phone', 'Điện thoại', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16227', 'vn', 'email', 'E-mail', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16228', 'vn', 'login', 'Đăng nhập', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16229', 'vn', 'my_account', 'Tài khoản của tôi', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16230', 'vn', 'order_history', 'lịch sử đơn hàng', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16231', 'vn', 'my_wishlist', 'Sản phẩm yêu thích', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16232', 'vn', 'track_order', 'Theo dõi thứ tự', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16233', 'vn', 'be_an_affiliate_partner', 'Là một đối tác liên kết', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16234', 'vn', 'be_a_seller', 'Là người bán', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16235', 'vn', 'apply_now', 'Áp dụng ngay bây giờ', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16236', 'vn', 'confirmation', 'Xác nhận', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16237', 'vn', 'delete_confirmation_message', 'Xóa tin nhắn xác nhận', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16238', 'vn', 'cancel', 'Huỷ bỏ', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16239', 'vn', 'delete', 'Xóa bỏ', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16240', 'vn', 'item_has_been_added_to_compare_list', 'Mục đã được thêm vào danh sách so sánh', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16241', 'vn', 'please_login_first', 'Vui lòng đăng nhập trước', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16242', 'vn', 'total_earnings_from', 'Tổng thu nhập từ', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16243', 'vn', 'client_subscription', 'Đăng ký Khách hàng', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16244', 'vn', 'product_category', 'Danh mục sản phẩm', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16245', 'vn', 'product_sub_sub_category', 'Danh mục phụ sản phẩm phụ', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16246', 'vn', 'product_sub_category', 'Danh mục sản phẩm phụ', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16247', 'vn', 'product_brand', 'Thương hiệu sản phẩm', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16248', 'vn', 'top_client_packages', 'Gói khách hàng hàng đầu', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16249', 'vn', 'top_freelancer_packages', 'Các gói Freelancer hàng đầu', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16250', 'vn', 'number_of_sale', 'Số lượng bán', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16251', 'vn', 'number_of_stock', 'Số lượng hàng', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16252', 'vn', 'top_10_products', '10 sản phẩm hàng đầu', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16253', 'vn', 'top_12_products', '12 sản phẩm hàng đầu', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16254', 'vn', 'admin_can_not_be_a_seller', 'Quản trị viên không thể là người bán', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16255', 'vn', 'filter_by_rating', 'Lọc theo xếp hạng', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16256', 'vn', 'published_reviews_updated_successfully', 'Đã cập nhật thành công các bài đánh giá đã xuất bản', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16257', 'vn', 'refund_sticker_has_been_updated_successfully', 'Hình dán hoàn tiền đã được cập nhật thành công', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16258', 'vn', 'edit_product', 'Chỉnh sửa sản phẩm', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16259', 'vn', 'meta_images', 'Hình ảnh meta', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16260', 'vn', 'update_product', 'Cập nhật sản phẩm', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16261', 'vn', 'product_has_been_deleted_successfully', 'Sản phẩm đã được xóa thành công', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16262', 'vn', 'your_profile_has_been_updated_successfully', 'Hồ sơ của bạn đã được cập nhật thành công!', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16263', 'vn', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Đã đạt đến giới hạn tải lên. Vui lòng nâng cấp gói của bạn.', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16264', 'vn', 'add_your_product', 'Thêm sản phẩm của bạn', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16265', 'vn', 'select_a_category', 'Chọn một danh mục', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16266', 'vn', 'select_a_brand', 'Chọn một thương hiệu', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16267', 'vn', 'product_unit', 'Đơn vị sản phẩm', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16268', 'vn', 'minimum_qty', 'Số lượng tối thiểu.', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16269', 'vn', 'product_tag', 'Thẻ sản phẩm', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16270', 'vn', 'type__hit_enter', 'Nhập và nhấn enter', '2021-02-09 13:35:50', '2021-09-20 12:59:56'),
('16271', 'vn', 'videos', 'Video', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16272', 'vn', 'video_from', 'Video từ', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16273', 'vn', 'video_url', 'URL video', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16274', 'vn', 'customer_choice', 'Lựa chọn của khách hàng', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16275', 'vn', 'pdf', 'PDF', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16276', 'vn', 'choose_pdf', 'Chọn PDF', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16277', 'vn', 'select_category', 'Chọn loại', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16278', 'vn', 'target_category', 'Mục tiêu', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16279', 'vn', 'subsubcategory', 'danh mục con', '2021-02-09 13:35:51', '2021-02-09 13:35:51'),
('16280', 'vn', 'search_category', 'Danh mục Tìm kiếm', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16281', 'vn', 'search_subcategory', 'Tìm kiếm Danh mục con', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16282', 'vn', 'search_subsubcategory', 'Tìm kiếm SubSubCategory', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16283', 'vn', 'update_your_product', 'Cập nhật sản phẩm của bạn', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16284', 'vn', 'product_has_been_updated_successfully', 'Sản phẩm đã được cập nhật thành công', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16285', 'vn', 'add_your_digital_product', 'Thêm sản phẩm kỹ thuật số của bạn', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16286', 'vn', 'active_ecommerce_cms_update_process', 'Quy trình cập nhật CMS thương mại điện tử đang hoạt động', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16287', 'vn', 'codecanyon_purchase_code', 'Mã mua hàng Codecanyon', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16288', 'vn', 'database_name', 'Tên cơ sở dữ liệu', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16289', 'vn', 'database_username', 'Tên người dùng cơ sở dữ liệu', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16290', 'vn', 'database_password', 'Mật khẩu cơ sở dữ liệu', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16291', 'vn', 'database_hostname', 'Tên máy chủ cơ sở dữ liệu', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16292', 'vn', 'update_now', 'Cập nhật bây giờ', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16293', 'vn', 'congratulations', 'Xin chúc mừng', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16294', 'vn', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'Bạn đã hoàn thành quá trình cập nhật thành công. Làm ơn đăng nhập để tiếp tục', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16295', 'vn', 'go_to_home', 'Đi về nhà', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16296', 'vn', 'login_to_admin_panel', 'Đăng nhập vào bảng quản trị', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16297', 'vn', 's3_file_system_credentials', 'Thông tin đăng nhập hệ thống tệp S3', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16298', 'vn', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16299', 'vn', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16300', 'vn', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16301', 'vn', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16302', 'vn', 'aws_url', 'AWS_URL', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16303', 'vn', 's3_file_system_activation', 'Kích hoạt hệ thống tệp S3', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16304', 'vn', 'your_phone_number', 'Số điện thoại của bạn', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16305', 'vn', 'zip_file', 'Tệp zip', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16306', 'vn', 'install', 'Tải về', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16307', 'vn', 'this_version_is_not_capable_of_installing_addons_please_update', 'Phiên bản này không có khả năng cài đặt Addon, Vui lòng cập nhật.', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16308', 'vn', 'search_in_menu', 'Tìm kiếm trong menu', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16309', 'vn', 'uploaded_files', 'Tệp đã tải lên', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16310', 'vn', 'shipping_cities', 'Thành phố vận chuyển', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16311', 'vn', 'system', 'Hệ thống', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16312', 'vn', 'server_status', 'Trạng thái máy chủ', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16313', 'vn', 'nothing_found', 'Không kết quả', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16314', 'vn', 'parent_category', 'Gia phả', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16315', 'vn', 'level', 'Cấp độ', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16316', 'vn', 'category_information', 'Thông tin danh mục', '2021-02-09 13:35:51', '2021-09-20 12:59:56'),
('16317', 'vn', 'translatable', 'Có thể dịch', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16318', 'vn', 'no_parent', 'Không có cha mẹ', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16319', 'vn', 'physical', 'Vật lý', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16320', 'vn', 'digital', 'Kỹ thuật số', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16321', 'vn', '200x200', '200x200', '2021-02-09 13:35:52', '2021-02-09 13:35:52'),
('16322', 'vn', '32x32', '32x32', '2021-02-09 13:35:52', '2021-02-09 13:35:52'),
('16323', 'vn', 'search_your_files', 'Tìm kiếm tệp của bạn', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16324', 'vn', 'category_has_been_updated_successfully', 'Danh mục đã được cập nhật thành công', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16325', 'vn', 'all_uploaded_files', 'Tất cả các tệp đã tải lên', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16326', 'vn', 'upload_new_file', 'Tải lên tệp mới', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16327', 'vn', 'all_files', 'Tất cả các tệp', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16328', 'vn', 'search', 'Tìm kiếm', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16329', 'vn', 'details_info', 'Thông tin chi tiết', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16330', 'vn', 'copy_link', 'Sao chép đường dẫn', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16331', 'vn', 'are_you_sure_to_delete_this_file', 'Bạn có chắc chắn xóa tệp này không?', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16332', 'vn', 'file_info', 'Nộp thông tin', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16333', 'vn', 'link_copied_to_clipboard', 'Liên kết được sao chép vào khay nhớ tạm', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16334', 'vn', 'oops_unable_to_copy', 'Rất tiếc, không thể sao chép', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16335', 'vn', 'file_deleted_successfully', 'Đã xóa tệp thành công', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16336', 'vn', 'add_new_brand', 'Thêm thương hiệu mới', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16337', 'vn', '120x80', '120x80', '2021-02-09 13:35:52', '2021-02-09 13:35:52'),
('16338', 'vn', 'brand_information', 'Thông tin thương hiệu', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16339', 'vn', 'brand_has_been_updated_successfully', 'Thương hiệu đã được cập nhật thành công', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16340', 'vn', 'brand_has_been_deleted_successfully', 'Thương hiệu đã được xóa thành công', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16341', 'vn', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'Điều này được sử dụng để tìm kiếm. Nhập những từ mà khách hàng có thể tìm thấy sản phẩm này.', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16342', 'vn', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'Những hình ảnh này có thể nhìn thấy trong thư viện trang chi tiết sản phẩm. Sử dụng hình ảnh kích thước 600x600.', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16343', 'vn', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'Hình ảnh này có thể nhìn thấy trong tất cả các hộp sản phẩm. Sử dụng hình ảnh kích thước 300x300. Giữ một số không gian trống xung quanh đối tượng chính của hình ảnh của bạn vì chúng tôi phải cắt một số cạnh trong các thiết bị khác nhau để làm cho nó phản hồi.', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16344', 'vn', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Sử dụng liên kết thích hợp mà không cần tham số phụ. Không sử dụng liên kết chia sẻ ngắn / mã iframe được nhúng.', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16345', 'vn', 'save_product', 'Lưu sản phẩm', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16346', 'vn', 'product_has_been_inserted_successfully', 'Sản phẩm đã được chèn thành công', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16347', 'vn', 'something_went_wrong', 'Đã xảy ra lỗi!', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16348', 'vn', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Xin lỗi vì sự bất tiện này, nhưng chúng tôi đang giải quyết vấn đề này.', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16349', 'vn', 'error_code', 'Mã lỗi', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16350', 'vn', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Vui lòng Định cấu hình Cài đặt SMTP để hoạt động tất cả chức năng gửi email', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16351', 'vn', 'order', 'Đặt hàng', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16352', 'vn', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'Chúng tôi giới hạn chiều cao biểu ngữ để duy trì giao diện người dùng. Chúng tôi đã phải cắt từ cả bên trái và bên phải trong chế độ xem cho các thiết bị khác nhau để làm cho nó phản hồi. Trước khi thiết kế banner, hãy ghi nhớ những điểm này.', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16353', 'vn', 'home_banner_3_max_3', 'Biểu ngữ Trang chủ 3 (Tối đa 3)', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16354', 'vn', 'add_new_seller', 'Thêm người bán mới', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16355', 'vn', 'filter_by_approval', 'Lọc theo phê duyệt', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16356', 'vn', 'nonapproved', 'Không được chấp thuận', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16357', 'vn', 'type_name_or_email__enter', 'Nhập tên hoặc email & Enter', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16358', 'vn', 'due_to_seller', 'Do người bán', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16359', 'vn', 'log_in_as_this_seller', 'Đăng nhập với tư cách Người bán này', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16360', 'vn', 'go_to_payment', 'Chuyển đến Thanh toán', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16361', 'vn', 'ban_this_seller', 'Cấm người bán này', '2021-02-09 13:35:52', '2021-09-20 12:59:56'),
('16362', 'vn', 'do_you_really_want_to_ban_this_seller', 'Bạn có thực sự muốn cấm người bán này không?', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16363', 'vn', 'proceed', 'Tiếp tục!', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16364', 'vn', 'approved_sellers_updated_successfully', 'Người bán được chấp thuận đã cập nhật thành công', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16365', 'vn', 'seller_has_been_deleted_successfully', 'Người bán đã được xóa thành công', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16366', 'vn', 'seller_information', 'Thông tin người bán', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16367', 'vn', 'seller_has_been_inserted_successfully', 'Người bán đã được chèn thành công', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16368', 'vn', 'email_already_exists', 'Email đã tồn tại!', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16369', 'vn', 'verify_your_email_address', 'Xác minh địa chỉ email của bạn', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16370', 'vn', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Trước khi tiếp tục, vui lòng kiểm tra email của bạn để biết liên kết xác minh.', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16371', 'vn', 'if_you_did_not_receive_the_email', 'Nếu bạn không nhận được email.', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16372', 'vn', 'click_here_to_request_another', 'Bấm vào đây để yêu cầu khác', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16373', 'vn', 'email_verification', 'Email xác thực', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16374', 'vn', 'email_verification__', 'Email xác thực -', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16375', 'vn', 'https_activation', 'Kích hoạt HTTPS', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16376', 'vn', 'maintenance_mode', 'Chế độ bảo trì', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16377', 'vn', 'maintenance_mode_activation', 'Kích hoạt chế độ bảo trì', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16378', 'vn', 'classified_product_activate', 'Kích hoạt sản phẩm đã phân loại', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16379', 'vn', 'classified_product', 'Sản phẩm được phân loại', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16380', 'vn', 'business_related', 'Liên quan đến Doanh nghiệp', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16381', 'vn', 'vendor_system_activation', 'Kích hoạt hệ thống nhà cung cấp', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16382', 'vn', 'wallet_system_activation', 'Kích hoạt hệ thống ví', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16383', 'vn', 'coupon_system_activation', 'Kích hoạt hệ thống phiếu thưởng', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16384', 'vn', 'pickup_point_activation', 'Kích hoạt điểm đón', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16385', 'vn', 'conversation_activation', 'Kích hoạt cuộc trò chuyện', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16386', 'vn', 'guest_checkout_activation', 'Kích hoạt thanh toán của khách', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16387', 'vn', 'categorybased_commission', 'Hoa hồng dựa trên danh mục', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16388', 'vn', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'Sau khi kích hoạt tùy chọn này Quyền ủy thác của người bán sẽ bị vô hiệu hóa và Bạn cần đặt hoa hồng cho từng danh mục nếu không Quản trị viên sẽ không nhận được bất kỳ ủy quyền nào', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16389', 'vn', 'set_commisssion_now', 'Đặt Commisssion ngay', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16390', 'vn', 'payment_related', 'Thanh toán liên quan', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16391', 'vn', 'paypal_payment_activation', 'Kích hoạt thanh toán qua Paypal', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16392', 'vn', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'Bạn cần cấu hình Paypal chính xác để kích hoạt tính năng này', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16393', 'vn', 'stripe_payment_activation', 'Kích hoạt thanh toán bằng sọc', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16394', 'vn', 'sslcommerz_activation', 'Kích hoạt SSlCommerz', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16395', 'vn', 'instamojo_payment_activation', 'Kích hoạt thanh toán Instamojo', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16396', 'vn', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'Bạn cần định cấu hình Instamojo Payment chính xác để bật tính năng này', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16397', 'vn', 'razor_pay_activation', 'Kích hoạt Razor Pay', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16398', 'vn', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'Bạn cần định cấu hình Razor chính xác để kích hoạt tính năng này', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16399', 'vn', 'paystack_activation', 'Kích hoạt PayStack', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16400', 'vn', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'Bạn cần định cấu hình PayStack một cách chính xác để bật tính năng này', '2021-02-09 13:35:53', '2021-09-20 12:59:56'),
('16401', 'vn', 'voguepay_activation', 'Kích hoạt VoguePay', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16402', 'vn', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'Bạn cần định cấu hình VoguePay một cách chính xác để bật tính năng này', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16403', 'vn', 'payhere_activation', 'Kích hoạt Payhere', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16404', 'vn', 'ngenius_activation', 'Kích hoạt Ngenius', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16405', 'vn', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'Bạn cần định cấu hình Ngenius một cách chính xác để kích hoạt tính năng này', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16406', 'vn', 'iyzico_activation', 'Kích hoạt Iyzico', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16407', 'vn', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'Bạn cần cấu hình iyzico chính xác để kích hoạt tính năng này', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16408', 'vn', 'bkash_activation', 'Kích hoạt Bkash', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16409', 'vn', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'Bạn cần định cấu hình bkash chính xác để bật tính năng này', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16410', 'vn', 'nagad_activation', 'Kích hoạt Nagad', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16411', 'vn', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'Bạn cần định cấu hình nagad một cách chính xác để bật tính năng này', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16412', 'vn', 'cash_payment_activation', 'Kích hoạt thanh toán bằng tiền mặt', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16413', 'vn', 'social_media_login', 'Đăng nhập mạng xã hội', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16414', 'vn', 'facebook_login', 'đăng nhập Facebook', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16415', 'vn', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'Bạn cần định cấu hình Facebook Client chính xác để bật tính năng này', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16416', 'vn', 'google_login', 'Đăng nhập Google', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16417', 'vn', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'Bạn cần định cấu hình Google Client chính xác để bật tính năng này', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16418', 'vn', 'twitter_login', 'Đăng nhập Twitter', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16419', 'vn', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'Bạn cần định cấu hình Ứng dụng khách Twitter một cách chính xác để bật tính năng này', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16420', 'vn', 'shop_logo', 'Biểu trưng cửa hàng', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16421', 'vn', 'shop_address', 'Địa chỉ cửa hàng', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16422', 'vn', 'banner_settings', 'Cài đặt biểu ngữ', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16423', 'vn', 'banners', 'Băng rôn', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16424', 'vn', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'Chúng tôi đã phải giới hạn chiều cao để duy trì nhất quán. Trong một số thiết bị, cả hai mặt của biểu ngữ có thể bị cắt để giới hạn chiều cao.', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16425', 'vn', 'insert_link_with_https_', 'Chèn liên kết bằng https', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16426', 'vn', 'your_shop_has_been_updated_successfully', 'Shop của bạn đã được cập nhật thành công!', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16427', 'vn', 'search_result_for_', 'tìm kết quả cho', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16428', 'vn', 'brand_has_been_inserted_successfully', 'Thương hiệu đã được chèn thành công', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16429', 'vn', 'about', 'Trong khoảng', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16430', 'vn', 'payout_info', 'Thông tin thanh toán', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16431', 'vn', 'bank_acc_name', 'Tên tài khoản ngân hàng', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16432', 'vn', 'bank_acc_number', 'Số Acc Ngân hàng', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16433', 'vn', 'total_products', 'Tổng số sản phẩm', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16434', 'vn', 'total_sold_amount', 'Tổng số lượng đã bán', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16435', 'vn', 'wallet_balance', 'Số dư trên Wallet', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16436', 'vn', 'cookies_agreement', 'Thỏa thuận cookie', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16437', 'vn', 'cookies_agreement_text', 'Văn bản Thỏa thuận Cookie', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16438', 'vn', 'show_cookies_agreement', 'Hiển thị Thỏa thuận Cookies?', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16439', 'vn', 'custom_script', 'Tập lệnh tùy chỉnh', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16440', 'vn', 'header_custom_script__before_head', 'Tập lệnh tùy chỉnh tiêu đề - trước </head>', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16441', 'vn', 'write_script_with_script_tag', 'Viết script với thẻ <script>', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16442', 'vn', 'footer_custom_script__before_body', 'Tập lệnh tùy chỉnh chân trang - trước </body>', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16443', 'vn', 'category_has_been_inserted_successfully', 'Danh mục đã được chèn thành công', '2021-02-09 13:35:54', '2021-09-20 12:59:56'),
('16444', 'vn', 'all_flash_deals', 'Tất cả các ưu đãi Flash', '2021-02-09 13:35:55', '2021-09-20 12:59:56'),
('16445', 'vn', 'create_new_flash_deal', 'Tạo giao dịch flash mới', '2021-02-09 13:35:55', '2021-09-20 12:59:56'),
('16446', 'vn', 'ffffff', '#FFFFFF', '2021-02-09 13:35:55', '2021-09-20 12:59:56'),
('16447', 'vn', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Hình ảnh này được hiển thị dưới dạng biểu ngữ bìa trong trang chi tiết giao dịch flash.', '2021-02-09 13:35:55', '2021-09-20 12:59:56'),
('16448', 'vn', 'flash_deal_has_been_inserted_successfully', 'Giao dịch Flash đã được chèn thành công', '2021-02-09 13:35:55', '2021-09-20 12:59:56'),
('16449', 'vn', 'flash_deal_status_updated_successfully', 'Đã cập nhật thành công trạng thái giao dịch Flash', '2021-02-09 13:35:55', '2021-09-20 12:59:56'),
('16450', 'vn', 'flash_deal_has_been_updated_successfully', 'Giao dịch Flash đã được cập nhật thành công', '2021-02-09 13:35:55', '2021-09-20 12:59:56'),
('16451', 'vn', 'update_language_info', 'cập nhật thông tin ngôn ngữ', '2021-02-09 13:35:55', '2021-09-20 12:59:56'),
('16452', 'vn', 'language_has_been_updated_successfully', 'Ngôn ngữ đã được cập nhật thành công', '2021-02-09 13:35:55', '2021-09-20 12:59:56'),
('16453', 'vn', 'type_key__enter', 'Gõ phím và Enter', '2021-02-09 13:35:55', '2021-09-20 12:59:57'),
('16454', 'vn', 'translations_updated_for_', 'Bản dịch được cập nhật cho', '2021-02-09 13:35:55', '2021-09-20 12:59:57'),
('16455', 'vn', 'language_has_been_inserted_successfully', 'Ngôn ngữ đã được chèn thành công', '2021-02-09 13:35:55', '2021-09-20 12:59:57'),
('16456', 'my', 'all_category', 'Semua Kategori', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16457', 'my', 'all', 'Semua', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16458', 'my', 'flash_sale', 'Jualan Kilat', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16459', 'my', 'view_more', 'Lihat Lagi', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16460', 'my', 'add_to_wishlist', 'Tambahkan ke senarai keinginan', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16461', 'my', 'add_to_compare', 'Tambah untuk membandingkan', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16462', 'my', 'add_to_cart', 'Tambah ke troli', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16463', 'my', 'club_point', 'Titik Kelab', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16464', 'my', 'classified_ads', 'Iklan', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16465', 'my', 'used', 'Terpakai', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16466', 'my', 'top_10_categories', '10 Kategori Teratas', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16467', 'my', 'view_all_categories', 'Lihat Semua Kategori', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16468', 'my', 'top_10_brands', '10 Jenama Teratas', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16469', 'my', 'view_all_brands', 'Lihat Semua Jenama', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16470', 'my', 'terms__conditions', 'Terma & Syarat', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16471', 'my', 'best_selling', 'Terlaris', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16472', 'my', 'top_20', '20 teratas', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16473', 'my', 'featured_products', 'Produk Pilihan', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16474', 'my', 'best_sellers', 'Jualan paling laris', '2021-02-09 13:39:39', '2021-09-20 12:59:57'),
('16475', 'my', 'visit_store', 'Lawati Kedai', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16476', 'my', 'popular_suggestions', 'Cadangan Popular', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16477', 'my', 'category_suggestions', 'Cadangan Kategori', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16478', 'my', 'automobile__motorcycle', 'Automobil & Motosikal', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16479', 'my', 'price_range', 'Julat harga', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16480', 'my', 'filter_by_color', 'Tapis mengikut warna', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16481', 'my', 'home', 'Rumah', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16482', 'my', 'newest', 'Terkini', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16483', 'my', 'oldest', 'Tertua', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16484', 'my', 'price_low_to_high', 'Harga rendah hingga tinggi', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16485', 'my', 'price_high_to_low', 'Harga tinggi hingga rendah', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16486', 'my', 'brands', 'Jenama', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16487', 'my', 'all_brands', 'Semua Jenama', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16488', 'my', 'all_sellers', 'Semua Penjual', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16489', 'my', 'inhouse_product', 'Produk dalaman', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16490', 'my', 'message_seller', 'Penjual Mesej', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16491', 'my', 'price', 'Harga', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16492', 'my', 'discount_price', 'Harga diskaun', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16493', 'my', 'color', 'Warna', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16494', 'my', 'quantity', 'Kuantiti', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16495', 'my', 'available', 'ada', '2021-02-09 13:39:40', '2021-02-09 13:39:40'),
('16496', 'my', 'total_price', 'Harga keseluruhan', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16497', 'my', 'out_of_stock', 'Kehabisan Stok', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16498', 'my', 'refund', 'Bayaran balik', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16499', 'my', 'share', 'Berkongsi', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16500', 'my', 'sold_by', 'Dijual oleh', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16501', 'my', 'customer_reviews', 'Maklumbalas Pelanggan', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16502', 'my', 'top_selling_products', 'Produk Terlaris', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16503', 'my', 'description', 'Penerangan', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16504', 'my', 'video', 'Video', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16505', 'my', 'reviews', 'Ulasan', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16506', 'my', 'download', 'Muat turun', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16507', 'my', 'there_have_been_no_reviews_for_this_product_yet', 'Belum ada ulasan untuk produk ini.', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16508', 'my', 'related_products', 'Produk Berkaitan', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16509', 'my', 'any_query_about_this_product', 'Sebarang pertanyaan mengenai produk ini', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16510', 'my', 'product_name', 'Nama Produk', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16511', 'my', 'your_question', 'Soalan anda', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16512', 'my', 'send', 'Hantar', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16513', 'my', 'use_country_code_before_number', 'Gunakan kod negara sebelum nombor', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16514', 'my', 'remember_me', 'Ingatlah Aku', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16515', 'my', 'dont_have_an_account', 'Tidak mempunyai akaun?', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16516', 'my', 'register_now', 'Daftar sekarang', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16517', 'my', 'or_login_with', 'Atau Log Masuk Dengan', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16518', 'my', 'oops', 'Alamak ..', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16519', 'my', 'this_item_is_out_of_stock', 'Item ini kehabisan stok!', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16520', 'my', 'back_to_shopping', 'Kembali ke membeli-belah', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16521', 'my', 'login_to_your_account', 'Log masuk ke akaun anda.', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16522', 'my', 'purchase_history', 'Sejarah pembelian', '2021-02-09 13:39:40', '2021-09-20 12:59:57'),
('16523', 'my', 'new', 'Baru', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16524', 'my', 'downloads', 'Muat turun', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16525', 'my', 'sent_refund_request', 'Permintaan Bayaran Balik Dihantar', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16526', 'my', 'product_bulk_upload', 'Muat Naik Pukal Produk', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16527', 'my', 'orders', 'Pesanan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16528', 'my', 'recieved_refund_request', 'Permintaan Bayaran Balik yang Diterima', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16529', 'my', 'shop_setting', 'Kedai Kedai', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16530', 'my', 'payment_history', 'sejarah pembayaran', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16531', 'my', 'money_withdraw', 'Pengeluaran Wang', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16532', 'my', 'conversations', 'Perbualan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16533', 'my', 'my_wallet', 'Dompet saya', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16534', 'my', 'earning_points', 'Memperoleh Mata', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16535', 'my', 'support_ticket', 'Tiket Sokongan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16536', 'my', 'manage_profile', 'Urus Profil', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16537', 'my', 'sold_amount', 'Jumlah Dijual', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16538', 'my', 'your_sold_amount_current_month', 'Jumlah jualan anda (bulan semasa)', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16539', 'my', 'total_sold', 'Jumlah Dijual', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16540', 'my', 'last_month_sold', 'Bulan Terakhir Dijual', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16541', 'my', 'total_sale', 'Jumlah jualan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16542', 'my', 'total_earnings', 'Jumlah pendapatan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16543', 'my', 'successful_orders', 'Pesanan berjaya', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16544', 'my', 'total_orders', 'Jumlah pesanan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16545', 'my', 'pending_orders', 'Pesanan belum selesai', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16546', 'my', 'cancelled_orders', 'Pesanan dibatalkan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16547', 'my', 'product', 'Produk', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16548', 'my', 'purchased_package', 'Pakej yang Dibeli', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16549', 'my', 'package_not_found', 'Pakej Tidak Dijumpai', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16550', 'my', 'upgrade_package', 'Pakej Naik Taraf', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16551', 'my', 'shop', 'Kedai', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16552', 'my', 'manage__organize_your_shop', 'Urus & atur kedai anda', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16553', 'my', 'go_to_setting', 'Pergi ke tetapan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16554', 'my', 'payment', 'Pembayaran', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16555', 'my', 'configure_your_payment_method', 'Konfigurasikan kaedah pembayaran anda', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16556', 'my', 'my_panel', 'Panel Saya', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16557', 'my', 'item_has_been_added_to_wishlist', 'Item telah ditambahkan ke senarai keinginan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16558', 'my', 'my_points', 'Mata Saya', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16559', 'my', '_points', 'Mata', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16560', 'my', 'wallet_money', 'Wang Dompet', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16561', 'my', 'exchange_rate', 'Kadar pertukaran', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16562', 'my', 'point_earning_history', 'Sejarah Perolehan Mata', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16563', 'my', 'date', 'Tarikh', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16564', 'my', 'points', 'Mata', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16565', 'my', 'converted', 'Ditukar', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16566', 'my', 'action', 'Tindakan', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16567', 'my', 'no_history_found', 'Tiada sejarah dijumpai.', '2021-02-09 13:39:41', '2021-09-20 12:59:57'),
('16568', 'my', 'convert_has_been_done_successfully_check_your_wallets', 'Penukaran telah berjaya dilakukan Periksa Dompet anda', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16569', 'my', 'something_went_wrong', 'Ada yang tidak kena', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16570', 'my', 'remaining_uploads', 'Sisa Muat Naik', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16571', 'my', 'no_package_found', 'Tiada Pakej Dijumpai', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16572', 'my', 'search_product', 'Cari produk', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16573', 'my', 'name', 'Nama', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16574', 'my', 'current_qty', 'Kuantiti Semasa', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16575', 'my', 'base_price', 'Harga Asas', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16576', 'my', 'published', 'Diterbitkan', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16577', 'my', 'featured', 'Yang diketengahkan', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16578', 'my', 'options', 'Pilihan', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16579', 'my', 'edit', 'Edit', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16580', 'my', 'duplicate', 'Gandakan', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16581', 'my', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Muat turun fail kerangka dan isi dengan data.', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16582', 'my', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Anda boleh memuat turun fail contoh untuk memahami bagaimana data mesti diisi.', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16583', 'my', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Setelah memuat turun dan mengisi fail kerangka, muat naik dalam bentuk di bawah dan hantar.', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16584', 'my', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Selepas memuat naik produk, anda perlu mengeditnya dan menetapkan gambar dan pilihan produk.', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16585', 'my', 'download_csv', 'Muat turun CSV', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16586', 'my', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Kategori, Sub kategori, Sub Sub kategori dan Jenama hendaklah dalam angka berangka.', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16587', 'my', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Anda boleh memuat turun pdf untuk mendapatkan Kategori, Sub kategori, Sub Sub kategori dan id Jenama.', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16588', 'my', 'download_category', 'Kategori Muat turun', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16589', 'my', 'download_sub_category', 'Muat turun Sub kategori', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16590', 'my', 'download_sub_sub_category', 'Muat turun Sub Sub kategori', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16591', 'my', 'download_brand', 'Muat turun Jenama', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16592', 'my', 'upload_csv_file', 'Muat naik Fail CSV', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16593', 'my', 'csv', 'CSV', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16594', 'my', 'choose_csv_file', 'Pilih Fail CSV', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16595', 'my', 'upload', 'Muat naik', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16596', 'my', 'add_new_digital_product', 'Tambah Produk Digital Baru', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16597', 'my', 'available_status', 'Status yang ada', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16598', 'my', 'admin_status', 'Status Pentadbir', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16599', 'my', 'pending_balance', 'Baki Belum Selesai', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16600', 'my', 'send_withdraw_request', 'Hantar Permintaan Pengeluaran', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16601', 'my', 'withdraw_request_history', 'Tarik balik sejarah Permintaan', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16602', 'my', 'amount', 'Jumlah', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16603', 'my', 'status', 'Status', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16604', 'my', 'message', 'Mesej', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16605', 'my', 'send_a_withdraw_request', 'Hantar Permintaan Pengeluaran', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16606', 'my', 'basic_info', 'Info asas', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16607', 'my', 'your_phone', 'Telefon awak', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16608', 'my', 'photo', 'Foto', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16609', 'my', 'browse', 'Semak imbas', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16610', 'my', 'your_password', 'Kata laluan Awak', '2021-02-09 13:39:42', '2021-09-20 12:59:57'),
('16611', 'my', 'new_password', 'Kata laluan baharu', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16612', 'my', 'confirm_password', 'Sahkan Kata Laluan', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16613', 'my', 'add_new_address', 'Tambah Alamat Baru', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16614', 'my', 'payment_setting', 'Tetapan Pembayaran', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16615', 'my', 'cash_payment', 'Pembayaran tunai', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16616', 'my', 'bank_payment', 'Bayaran Bank', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16617', 'my', 'bank_name', 'Nama bank', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16618', 'my', 'bank_account_name', 'Nama Akaun Bank', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16619', 'my', 'bank_account_number', 'Nombor akaun bank', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16620', 'my', 'bank_routing_number', 'Nombor Laluan Bank', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16621', 'my', 'update_profile', 'Kemas kini Profil', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16622', 'my', 'change_your_email', 'Tukar e-mel anda', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16623', 'my', 'your_email', 'Emel anda', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16624', 'my', 'sending_email', 'Menghantar E-mel ...', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16625', 'my', 'verify', 'Sahkan', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16626', 'my', 'update_email', 'Kemas kini E-mel', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16627', 'my', 'new_address', 'Alamat Baru', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16628', 'my', 'your_address', 'Alamat anda', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16629', 'my', 'country', 'Negara', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16630', 'my', 'select_your_country', 'Pilih negara anda', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16631', 'my', 'city', 'Bandar', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16632', 'my', 'your_city', 'Bandar anda', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16633', 'my', 'your_postal_code', 'Poskod Anda', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16634', 'my', '880', '+880', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16635', 'my', 'save', 'Jimat', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16636', 'my', 'received_refund_request', 'Permintaan Bayaran Balik yang Diterima', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16637', 'my', 'delete_confirmation', 'Padamkan Pengesahan', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16638', 'my', 'are_you_sure_to_delete_this', 'Adakah anda pasti memadamkannya?', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16639', 'my', 'premium_packages_for_sellers', 'Pakej Premium untuk Penjual', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16640', 'my', 'product_upload', 'Muat Naik Produk', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16641', 'my', 'digital_product_upload', 'Muat Naik Produk Digital', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16642', 'my', 'purchase_package', 'Pakej Pembelian', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16643', 'my', 'select_payment_type', 'Pilih Jenis Pembayaran', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16644', 'my', 'payment_type', 'Jenis pembayaran', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16645', 'my', 'select_one', 'Pilih satu', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16646', 'my', 'online_payment', 'Pembayaran dalam talian', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16647', 'my', 'offline_payment', 'Pembayaran luar talian', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16648', 'my', 'purchase_your_package', 'Beli Pakej Anda', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16649', 'my', 'paypal', 'Paypal', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16650', 'my', 'stripe', 'Jalur', '2021-02-09 13:39:43', '2021-09-20 12:59:57'),
('16651', 'my', 'sslcommerz', 'sslcommerz', '2021-02-09 13:39:44', '2021-02-09 13:39:44'),
('16652', 'my', 'confirm', 'Sahkan', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16653', 'my', 'offline_package_payment', 'Pembayaran Pakej Luar Talian', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16654', 'my', 'transaction_id', 'ID Transaksi', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16655', 'my', 'choose_image', 'Pilih gambar', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16656', 'my', 'code', 'Kod', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16657', 'my', 'delivery_status', 'Status penghantaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16658', 'my', 'payment_status', 'Status bayaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16659', 'my', 'paid', 'Dibayar', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16660', 'my', 'order_details', 'Maklumat-maklumat Pesanan', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16661', 'my', 'download_invoice', 'Muat turun Invois', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16662', 'my', 'unpaid', 'Tanpa Bayaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16663', 'my', 'order_placed', 'Pesanan dibuat', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16664', 'my', 'confirmed', 'Disahkan', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16665', 'my', 'on_delivery', 'Dalam penghantaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16666', 'my', 'delivered', 'Dihantar', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16667', 'my', 'order_summary', 'Ringkasan Pesanan', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16668', 'my', 'order_code', 'Kod Pesanan', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16669', 'my', 'customer', 'Pelanggan', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16670', 'my', 'total_order_amount', 'Jumlah jumlah pesanan', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16671', 'my', 'shipping_metdod', 'Metdod penghantaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16672', 'my', 'flat_shipping_rate', 'Kadar penghantaran rata', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16673', 'my', 'payment_metdod', 'Metod pembayaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16674', 'my', 'variation', 'Variasi', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16675', 'my', 'delivery_type', 'Jenis Penghantaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16676', 'my', 'home_delivery', 'Penghantaran ke rumah', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16677', 'my', 'order_ammount', 'Jumlah Pesanan', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16678', 'my', 'subtotal', 'jumlah kecil', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16679', 'my', 'shipping', 'penghantaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16680', 'my', 'coupon_discount', 'Potongan Kupon', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16681', 'my', 'na', 'N / A', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16682', 'my', 'in_stock', 'Dalam stok', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16683', 'my', 'buy_now', 'Beli sekarang', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16684', 'my', 'item_added_to_your_cart', 'Item ditambahkan ke troli anda!', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16685', 'my', 'proceed_to_checkout', 'Teruskan ke Checkout', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16686', 'my', 'cart_items', 'Item Troli', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16687', 'my', '1_my_cart', '1. Troli Saya', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16688', 'my', 'view_cart', 'Lihat troli', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16689', 'my', '2_shipping_info', '2. Maklumat penghantaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16690', 'my', 'checkout', 'Daftar keluar', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16691', 'my', '3_delivery_info', '3. Maklumat penghantaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16692', 'my', '4_payment', '4. Pembayaran', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16693', 'my', '5_confirmation', '5. Pengesahan', '2021-02-09 13:39:44', '2021-09-20 12:59:57'),
('16694', 'my', 'remove', 'Keluarkan', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16695', 'my', 'return_to_shop', 'Kembali ke kedai', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16696', 'my', 'continue_to_shipping', 'Terus Penghantaran', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16697', 'my', 'or', 'Atau', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16698', 'my', 'guest_checkout', 'Daftar Keluar Tetamu', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16699', 'my', 'continue_to_delivery_info', 'Terus ke Maklumat Penghantaran', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16700', 'my', 'postal_code', 'Poskod', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16701', 'my', 'choose_delivery_type', 'Pilih Jenis Penghantaran', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16702', 'my', 'local_pickup', 'Pengambilan Tempatan', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16703', 'my', 'select_your_nearest_pickup_point', 'Pilih tempat pengambilan terdekat anda', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16704', 'my', 'continue_to_payment', 'Terus ke Pembayaran', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16705', 'my', 'select_a_payment_option', 'Pilih pilihan pembayaran', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16706', 'my', 'razorpay', 'Razorpay', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16707', 'my', 'paystack', 'Paystack', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16708', 'my', 'voguepay', 'VoguePay', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16709', 'my', 'payhere', 'gaji', '2021-02-09 13:39:45', '2021-02-09 13:39:45'),
('16710', 'my', 'ngenius', 'ngenius', '2021-02-09 13:39:45', '2021-02-09 13:39:45'),
('16711', 'my', 'paytm', 'Bayaran', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16712', 'my', 'cash_on_delivery', 'Tunai semasa Penghantaran', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16713', 'my', 'your_wallet_balance_', 'Baki dompet anda:', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16714', 'my', 'insufficient_balance', 'Baki tidak mencukupi', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16715', 'my', 'i_agree_to_the', 'saya setuju dengan', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16716', 'my', 'complete_order', 'Pesanan Lengkap', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16717', 'my', 'summary', 'Ringkasan', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16718', 'my', 'items', 'Barang', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16719', 'my', 'total_club_point', 'Jumlah mata Kelab', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16720', 'my', 'total_shipping', 'Jumlah Penghantaran', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16721', 'my', 'have_coupon_code_enter_here', 'Ada kod kupon? Masuk ke sini', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16722', 'my', 'apply', 'Memohon', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16723', 'my', 'you_need_to_agree_with_our_policies', 'Anda perlu bersetuju dengan dasar kami', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16724', 'my', 'forgot_password', 'Lupa kata laluan', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16725', 'my', 'seo_setting', 'Tetapan SEO', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16726', 'my', 'system_update', 'Kemas kini sistem', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16727', 'my', 'add_new_payment_method', 'Tambahkan Kaedah Pembayaran Baru', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16728', 'my', 'manual_payment_method', 'Kaedah Pembayaran Manual', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16729', 'my', 'heading', 'Tajuk', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16730', 'my', 'logo', 'Logo', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16731', 'my', 'manual_payment_information', 'Maklumat Pembayaran Manual', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16732', 'my', 'type', 'Jenis', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16733', 'my', 'custom_payment', 'Pembayaran Tersuai', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16734', 'my', 'check_payment', 'Cek Bayaran', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16735', 'my', 'checkout_thumbnail', 'Gambar Kecil Checkout', '2021-02-09 13:39:45', '2021-09-20 12:59:57'),
('16736', 'my', 'payment_instruction', 'Arahan Pembayaran', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16737', 'my', 'bank_information', 'Maklumat bank', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16738', 'my', 'select_file', 'Pilih fail', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16739', 'my', 'upload_new', 'Muat Naik Baru', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16740', 'my', 'sort_by_newest', 'Susun mengikut yang terbaru', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16741', 'my', 'sort_by_oldest', 'Susun mengikut yang tertua', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16742', 'my', 'sort_by_smallest', 'Isih mengikut terkecil', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16743', 'my', 'sort_by_largest', 'Susun mengikut yang terbesar', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16744', 'my', 'selected_only', 'Dipilih Sahaja', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16745', 'my', 'no_files_found', 'Fail tidak dijumpai', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16746', 'my', '0_file_selected', '0 Fail dipilih', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16747', 'my', 'clear', 'Jelas', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16748', 'my', 'prev', 'Sebelumnya', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16749', 'my', 'next', 'Seterusnya', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16750', 'my', 'add_files', 'Menambah fail', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16751', 'my', 'method_has_been_inserted_successfully', 'Kaedah telah berjaya dimasukkan', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16752', 'my', 'order_date', 'Tarikh pesanan', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16753', 'my', 'bill_to', 'Bil ke', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16754', 'my', 'sub_total', 'Jumlah kecil', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16755', 'my', 'total_tax', 'Jumlah Cukai', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16756', 'my', 'grand_total', 'Jumlah keseluruhan', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16757', 'my', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Pesanan anda berjaya dihantar. Sila hantarkan maklumat pembayaran dari sejarah pembelian', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16758', 'my', 'thank_you_for_your_order', 'Terima kasih atas pesanan anda!', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16759', 'my', 'order_code', 'Kod Pesanan:', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16760', 'my', 'a_copy_or_your_order_summary_has_been_sent_to', 'Salinan atau ringkasan pesanan anda telah dihantar ke', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16761', 'my', 'make_payment', 'Buat bayaran', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16762', 'my', 'payment_screenshot', 'Tangkapan skrin pembayaran', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16763', 'my', 'paypal_credential', 'Kelayakan Paypal', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16764', 'my', 'paypal_client_id', 'ID Pelanggan Paypal', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16765', 'my', 'paypal_client_secret', 'Rahsia Pelanggan Paypal', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16766', 'my', 'paypal_sandbox_mode', 'Mod Kotak Pasir Paypal', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16767', 'my', 'sslcommerz_credential', 'Kelayakan Sslcommerz', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16768', 'my', 'sslcz_store_id', 'Id Kedai Sslcz', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16769', 'my', 'sslcz_store_password', 'Kata laluan kedai Sslcz', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16770', 'my', 'sslcommerz_sandbox_mode', 'Mod Kotak Pasir Sslcommerz', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16771', 'my', 'stripe_credential', 'Kredensial Stripe', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16772', 'my', 'stripe_key', 'KUNCI STRIPE', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16773', 'my', 'stripe_secret', 'RAHSIA STRIPE', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16774', 'my', 'razorpay_credential', 'Kelayakan RazorPay', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16775', 'my', 'razor_key', 'KUNCI RAZOR', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16776', 'my', 'razor_secret', 'RAHSIA RAZOR', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16777', 'my', 'instamojo_credential', 'Kelayakan Instamojo', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16778', 'my', 'api_key', 'KUNCI API', '2021-02-09 13:39:46', '2021-09-20 12:59:57'),
('16779', 'my', 'im_api_key', 'KUNCI API IM', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16780', 'my', 'auth_token', 'TOKEN AUTH', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16781', 'my', 'im_auth_token', 'TOKEN KEBENARAN IM', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16782', 'my', 'instamojo_sandbox_mode', 'Mod Kotak Pasir Instamojo', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16783', 'my', 'paystack_credential', 'Kelayakan PayStack', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16784', 'my', 'public_key', 'KUNCI AWAM', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16785', 'my', 'secret_key', 'KUNCI RAHSIA', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16786', 'my', 'merchant_email', 'E-mel PEKERJA', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16787', 'my', 'voguepay_credential', 'Kelayakan VoguePay', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16788', 'my', 'merchant_id', 'ID PENGEDAR', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16789', 'my', 'sandbox_mode', 'Mod Kotak Pasir', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16790', 'my', 'payhere_credential', 'Kelayakan Payhere', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16791', 'my', 'payhere_merchant_id', 'ID PEMBELI PAYHERE', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16792', 'my', 'payhere_secret', 'RAHSIA PAYHERE', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16793', 'my', 'payhere_currency', 'MATA WANG BAYARAN', '2021-02-09 13:39:47', '2021-09-20 12:59:57'),
('16794', 'my', 'payhere_sandbox_mode', 'Mod Kotak Pasir Payhere', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16795', 'my', 'ngenius_credential', 'Kepujian Ngenius', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16796', 'my', 'ngenius_outlet_id', 'ID NGENIUS OUTLET', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16797', 'my', 'ngenius_api_key', 'KUNCI API NGENIUS', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16798', 'my', 'ngenius_currency', 'MATA WANG NGENIUS', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16799', 'my', 'mpesa_credential', 'Kepujian Mpesa', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16800', 'my', 'mpesa_consumer_key', 'KUNCI PENGGUNA MPESA', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16801', 'my', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16802', 'my', 'mpesa_consumer_secret', 'RAHSIA PENGGUNA MPESA', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16803', 'my', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16804', 'my', 'mpesa_short_code', 'KOD PENDEK MPESA', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16805', 'my', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16806', 'my', 'mpesa_sandbox_activation', 'AKTIVITI SANDBOX MPESA', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16807', 'my', 'flutterwave_credential', 'Kelayakan Flutterwave', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16808', 'my', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16809', 'my', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16810', 'my', 'rave_title', 'RAVE_TITLE', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16811', 'my', 'stagin_activation', 'PENGAKTIFAN STAGIN', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16812', 'my', 'all_product', 'Semua Produk', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16813', 'my', 'sort_by', 'Disusun mengikut', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16814', 'my', 'rating_high__low', 'Penilaian (Tinggi> Rendah)', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16815', 'my', 'rating_low__high', 'Penilaian (Rendah> Tinggi)', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16816', 'my', 'num_of_sale_high__low', 'Jumlah Jualan (Tinggi> Rendah)', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16817', 'my', 'num_of_sale_low__high', 'Jumlah Jualan (Rendah> Tinggi)', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16818', 'my', 'base_price_high__low', 'Harga Asas (Tinggi> Rendah)', '2021-02-09 13:39:47', '2021-09-20 12:59:58'),
('16819', 'my', 'base_price_low__high', 'Harga Asas (Rendah> Tinggi)', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16820', 'my', 'type__enter', 'Taip & Masukkan', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16821', 'my', 'added_by', 'Ditambah Oleh', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16822', 'my', 'num_of_sale', 'Jumlah Jualan', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16823', 'my', 'total_stock', 'Jumlah Stok', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16824', 'my', 'todays_deal', 'Tawaran Hari Ini', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16825', 'my', 'rating', 'Penarafan', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16826', 'my', 'times', 'kali', '2021-02-09 13:39:48', '2021-02-09 13:39:48'),
('16827', 'my', 'add_nerw_product', 'Tambah Produk Nerw', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16828', 'my', 'product_information', 'informasi produk', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16829', 'my', 'unit', 'Unit', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16830', 'my', 'unit_eg_kg_pc_etc', 'Unit (contohnya KG, Pc dll)', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16831', 'my', 'minimum_qty', 'Kuantiti minimum', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16832', 'my', 'tags', 'Teg', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16833', 'my', 'type_and_hit_enter_to_add_a_tag', 'Taip dan tekan enter untuk menambah teg', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16834', 'my', 'barcode', 'Kod bar', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16835', 'my', 'refundable', 'Dikembalikan', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16836', 'my', 'product_images', 'Imej Produk', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16837', 'my', 'gallery_images', 'Gambar Galeri', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16838', 'my', 'todays_deal_updated_successfully', 'Tawaran Hari Ini berjaya dikemas kini', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16839', 'my', 'published_products_updated_successfully', 'Produk yang diterbitkan berjaya dikemas kini', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16840', 'my', 'thumbnail_image', 'Gambar Lakaran Kecil', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16841', 'my', 'featured_products_updated_successfully', 'Produk unggulan berjaya dikemas kini', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16842', 'my', 'product_videos', 'Video Produk', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16843', 'my', 'video_provider', 'Penyedia Video', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16844', 'my', 'youtube', 'Youtube', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16845', 'my', 'dailymotion', 'Dailymotion', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16846', 'my', 'vimeo', 'Vimeo', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16847', 'my', 'video_link', 'Pautan Video', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16848', 'my', 'product_variation', 'Variasi Produk', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16849', 'my', 'colors', 'Warna', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16850', 'my', 'attributes', 'Atribut', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16851', 'my', 'choose_attributes', 'Pilih Atribut', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16852', 'my', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Pilih atribut produk ini dan kemudian masukkan nilai setiap atribut', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16853', 'my', 'product_price__stock', 'Harga produk + stok', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16854', 'my', 'unit_price', 'Harga seunit', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16855', 'my', 'purchase_price', 'Harga pembelian', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16856', 'my', 'flat', 'Rata', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16857', 'my', 'percent', 'Peratus', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16858', 'my', 'discount', 'Diskaun', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16859', 'my', 'product_description', 'Penerangan Produk', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16860', 'my', 'product_shipping_cost', 'Kos Penghantaran Produk', '2021-02-09 13:39:48', '2021-09-20 12:59:58'),
('16861', 'my', 'free_shipping', 'Penghantaran percuma', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16862', 'my', 'flat_rate', 'Kadar rata', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16863', 'my', 'shipping_cost', 'Kos penghantaran', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16864', 'my', 'pdf_specification', 'Spesifikasi PDF', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16865', 'my', 'seo_meta_tags', 'Teg Meta SEO', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16866', 'my', 'meta_title', 'Tajuk Meta', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16867', 'my', 'meta_image', 'Imej Meta', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16868', 'my', 'choice_title', 'Tajuk Pilihan', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16869', 'my', 'enter_choice_values', 'Masukkan nilai pilihan', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16870', 'my', 'all_categories', 'Semua Kategori', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16871', 'my', 'add_new_category', 'Tambah kategori Baru', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16872', 'my', 'type_name__enter', 'Taipkan nama & Masukkan', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16873', 'my', 'banner', 'Sepanduk', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16874', 'my', 'commission', 'Suruhanjaya', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16875', 'my', 'icon', 'ikon', '2021-02-09 13:39:49', '2021-02-09 13:39:49'),
('16876', 'my', 'featured_categories_updated_successfully', 'Kategori pilihan berjaya dikemas kini', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16877', 'my', 'hot', 'Panas', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16878', 'my', 'filter_by_payment_status', 'Tapis mengikut Status Pembayaran', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16879', 'my', 'unpaid', 'Tanpa Bayaran', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16880', 'my', 'filter_by_deliver_status', 'Tapis mengikut Status Penghantaran', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16881', 'my', 'pending', 'Yang belum selesai', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16882', 'my', 'type_order_code__hit_enter', 'Taipkan kod pesanan & tekan Enter', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16883', 'my', 'num_of_products', 'Bil. Produk', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16884', 'my', 'walk_in_customer', 'Berjalan di Pelanggan', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16885', 'my', 'qty', 'QTY', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16886', 'my', 'without_shipping_charge', 'Tanpa Caj Penghantaran', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16887', 'my', 'with_shipping_charge', 'Dengan Caj Penghantaran', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16888', 'my', 'pay_with_cash', 'Bayar Dengan Wang Tunai', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16889', 'my', 'shipping_address', 'Alamat Penghantaran', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16890', 'my', 'close', 'Tutup', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16891', 'my', 'select_country', 'Pilih negara', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16892', 'my', 'order_confirmation', 'Pengesahan pesanan', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16893', 'my', 'are_you_sure_to_confirm_this_order', 'Adakah anda pasti mengesahkan pesanan ini?', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16894', 'my', 'comfirm_order', 'Perintah Mematuhi', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16895', 'my', 'personal_info', 'Maklumat peribadi', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16896', 'my', 'repeat_password', 'Ulang kata laluan', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16897', 'my', 'shop_name', 'Nama Kedai', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16898', 'my', 'register_your_shop', 'Daftarkan Kedai Anda', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16899', 'my', 'affiliate_informations', 'Maklumat Gabungan', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16900', 'my', 'affiliate', 'Ahli gabungan', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16901', 'my', 'user_info', 'Maklumat Pengguna', '2021-02-09 13:39:49', '2021-09-20 12:59:58'),
('16902', 'my', 'installed_addon', 'Addon dipasang', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16903', 'my', 'available_addon', 'Addon yang ada', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16904', 'my', 'install_new_addon', 'Pasang Addon Baru', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16905', 'my', 'version', 'Versi', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16906', 'my', 'activated', 'Diaktifkan', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16907', 'my', 'deactivated', 'Nyahaktifkan', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16908', 'my', 'activate_otp', 'Aktifkan OTP', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16909', 'my', 'otp_will_be_used_for', 'OTP akan digunakan untuk', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16910', 'my', 'settings_updated_successfully', 'Tetapan berjaya dikemas kini', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16911', 'my', 'product_owner', 'Pemilik Produk', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16912', 'my', 'point', 'Titik', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16913', 'my', 'set_point_for_product_within_a_range', 'Tetapkan Titik untuk Produk Dalam Julat', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16914', 'my', 'set_point_for_multiple_products', 'Tetapkan Titik untuk pelbagai produk', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16915', 'my', 'min_price', 'Harga Min', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16916', 'my', 'max_price', 'Harga Maksimum', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16917', 'my', 'set_point_for_all_products', 'Tetapkan Titik untuk semua Produk', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16918', 'my', 'set_point_for_', 'Tetapkan Titik Untuk', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16919', 'my', 'convert_status', 'Tukar Status', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16920', 'my', 'earned_at', 'Diperolehi Pada', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16921', 'my', 'seller_based_selling_report', 'Laporan Jual Berdasarkan Penjual', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16922', 'my', 'sort_by_verificarion_status', 'Isih mengikut status verifikasi', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16923', 'my', 'approved', 'Diluluskan', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16924', 'my', 'non_approved', 'Tidak Diluluskan', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16925', 'my', 'filter', 'Tapis', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16926', 'my', 'seller_name', 'Nama Penjual', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16927', 'my', 'number_of_product_sale', 'Bilangan Jualan Produk', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16928', 'my', 'order_amount', 'Jumlah Pesanan', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16929', 'my', 'facebook_chat_setting', 'Tetapan Sembang Facebook', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16930', 'my', 'facebook_page_id', 'ID Halaman Facebook', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16931', 'my', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Berhati-hatilah semasa anda mengkonfigurasi sembang Facebook. Untuk konfigurasi yang salah, anda tidak akan mendapat ikon messenger di laman web pengguna anda.', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16932', 'my', 'login_into_your_facebook_page', 'Log masuk ke laman facebook anda', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16933', 'my', 'find_the_about_option_of_your_facebook_page', 'Cari pilihan Tentang halaman facebook anda', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16934', 'my', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'Di bahagian paling bawah, anda boleh menemui \\ \"ID Halaman Facebook \\\"', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16935', 'my', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Pergi ke Tetapan halaman anda dan cari pilihan \\ \"Advance Messaging \\\"', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16936', 'my', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Tatal ke bawah halaman itu dan anda akan mendapat \\ \"domain yang disenaraikan putih \\\"', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16937', 'my', 'set_your_website_domain_name', 'Tetapkan nama domain laman web anda', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16938', 'my', 'google_recaptcha_setting', 'Tetapan Google reCAPTCHA', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16939', 'my', 'site_key', 'KUNCI laman web', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16940', 'my', 'select_shipping_method', 'Pilih Kaedah Penghantaran', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16941', 'my', 'product_wise_shipping_cost', 'Kos Penghantaran Produk', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16942', 'my', 'flat_rate_shipping_cost', 'Kos Penghantaran Kadar Rata', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16943', 'my', 'seller_wise_flat_shipping_cost', 'Kos Penghantaran Rata-rata Penjual', '2021-02-09 13:39:50', '2021-09-20 12:59:58'),
('16944', 'my', 'note', 'Catatan', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16945', 'my', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Penghitungan Kos Penghantaran Produk Bijak: Kos penghantaran dikira dengan penambahan setiap kos penghantaran produk', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16946', 'my', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Penghitungan Kos Penghantaran Rata-rata: Berapa banyak produk yang dibeli oleh pelanggan, tidak menjadi masalah. Kos penghantaran tetap', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16947', 'my', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Pengiraan Kos Penghantaran Rata-rata Penjual: Kadar tetap untuk setiap penjual. Sekiranya pelanggan membeli 2 produk dari dua kos penghantaran penjual dikira dengan penambahan setiap kos penghantaran flat setiap penjual', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16948', 'my', 'flat_rate_cost', 'Kos Kadar Rata', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16949', 'my', 'shipping_cost_for_admin_products', 'Kos Penghantaran untuk Produk Pentadbir', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16950', 'my', 'countries', 'Negara', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16951', 'my', 'showhide', 'Tunjukkan / Sembunyikan', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16952', 'my', 'country_status_updated_successfully', 'Status negara berjaya dikemas kini', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16953', 'my', 'all_subcategories', 'Semua Subkategori', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16954', 'my', 'add_new_subcategory', 'Tambah Subkategori Baru', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16955', 'my', 'subcategories', 'Sub-Kategori', '2021-02-09 13:39:51', '2021-09-20 12:59:58'),
('16956', 'my', 'sub_category_information', 'Maklumat Sub Kategori', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16957', 'my', 'slug', 'Slug', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16958', 'my', 'all_sub_subcategories', 'Semua Subkategori', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16959', 'my', 'add_new_sub_subcategory', 'Tambah Subkategori Baru', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16960', 'my', 'subsubcategories', 'Sub-sub-kategori', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16961', 'my', 'make_this_default', 'Jadikan Lalai Ini', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16962', 'my', 'shops', 'Kedai', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16963', 'my', 'women_clothing__fashion', 'Pakaian & Fesyen Wanita', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16964', 'my', 'cellphones__tabs', 'Telefon bimbit & Tab', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16965', 'my', 'welcome_to', 'Selamat datang ke', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16966', 'my', 'create_a_new_account', 'Buat Akaun Baru', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16967', 'my', 'full_name', 'Nama penuh', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16968', 'my', 'password', 'kata laluan', '2021-02-09 13:40:38', '2021-02-09 13:40:38'),
('16969', 'my', 'confrim_password', 'Konfirmasi Kata Laluan', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16970', 'my', 'i_agree_with_the', 'Saya bersetuju dengan', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16971', 'my', 'terms_and_conditions', 'Terma dan syarat', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16972', 'my', 'register', 'Daftar', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16973', 'my', 'already_have_an_account', 'Sudah mempunyai akaun', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16974', 'my', 'sign_up_with', 'Daftar dengan', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16975', 'my', 'i_agree_with_the_terms_and_conditions', 'Saya bersetuju dengan Terma dan Syarat', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16976', 'my', 'all_role', 'Semua Peranan', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16977', 'my', 'add_new_role', 'Tambah Peranan Baru', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16978', 'my', 'roles', 'Peranan', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16979', 'my', 'add_new_staffs', 'Tambah Kakitangan Baru', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16980', 'my', 'role', 'Peranan', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16981', 'my', 'frontend_website_name', 'Nama Laman Web Frontend', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16982', 'my', 'website_name', 'Nama Laman Web', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16983', 'my', 'site_motto', 'Moto Laman Web', '2021-02-09 13:40:38', '2021-09-20 12:59:58'),
('16984', 'my', 'best_ecommerce_website', 'Laman Web eCommerce Terbaik', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16985', 'my', 'site_icon', 'Ikon Tapak', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16986', 'my', 'website_favicon_32x32_png', 'Favicon laman web. 32x32 .png', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16987', 'my', 'website_base_color', 'Warna Pangkalan Laman Web', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16988', 'my', 'hex_color_code', 'Kod Warna Hex', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16989', 'my', 'website_base_hover_color', 'Warna Hover Pangkalan Laman Web', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16990', 'my', 'update', 'Kemas kini', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16991', 'my', 'global_seo', 'Seo Global', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16992', 'my', 'meta_description', 'Penerangan meta', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16993', 'my', 'keywords', 'Kata kunci', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16994', 'my', 'separate_with_coma', 'Pisahkan dengan koma', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16995', 'my', 'website_pages', 'Halaman Laman Web', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16996', 'my', 'all_pages', 'Semua Halaman', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16997', 'my', 'add_new_page', 'Tambah Halaman Baru', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16998', 'my', 'url', 'URL', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('16999', 'my', 'actions', 'Tindakan', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17000', 'my', 'edit_page_information', 'Edit Maklumat Halaman', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17001', 'my', 'page_content', 'Kandungan Halaman', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17002', 'my', 'title', 'Tajuk', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17003', 'my', 'link', 'Pautan', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17004', 'my', 'use_character_number_hypen_only', 'Gunakan watak, nombor, tanda hubung sahaja', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17005', 'my', 'add_content', 'Tambah Kandungan', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17006', 'my', 'seo_fields', 'Seo Fields', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17007', 'my', 'update_page', 'Kemas kini Halaman', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17008', 'my', 'default_language', 'Bahasa Lalai', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17009', 'my', 'add_new_language', 'Tambah Bahasa Baru', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17010', 'my', 'rtl', 'RTL', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17011', 'my', 'translation', 'Terjemahan', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17012', 'my', 'language_information', 'Maklumat Bahasa', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17013', 'my', 'save_page', 'Simpan Halaman', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17014', 'my', 'home_page_settings', 'Tetapan Halaman Utama', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17015', 'my', 'home_slider', 'Gelangsar Rumah', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17016', 'my', 'photos__links', 'Foto & Pautan', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17017', 'my', 'add_new', 'Tambah baru', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17018', 'my', 'home_categories', 'Kategori Rumah', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17019', 'my', 'home_banner_1_max_3', 'Sepanduk Rumah 1 (Maksimum 3)', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17020', 'my', 'banner__links', 'Sepanduk & Pautan', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17021', 'my', 'home_banner_2_max_3', 'Sepanduk Rumah 2 (Maksimum 3)', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17022', 'my', 'top_10', '10 teratas', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17023', 'my', 'top_categories_max_10', 'Kategori Teratas (Maksimum 10)', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17024', 'my', 'top_brands_max_10', 'Jenama Teratas (Maksimum 10)', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17025', 'my', 'system_name', 'Nama Sistem', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17026', 'my', 'system_logo__white', 'Logo Sistem - Putih', '2021-02-09 13:40:39', '2021-09-20 12:59:58'),
('17027', 'my', 'choose_files', 'Pilih Fail', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17028', 'my', 'will_be_used_in_admin_panel_side_menu', 'Akan digunakan dalam menu sisi panel pentadbir', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17029', 'my', 'system_logo__black', 'Logo Sistem - Hitam', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17030', 'my', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Akan digunakan dalam barisan panel pentadbir di halaman masuk mudah alih + Pentadbir', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17031', 'my', 'system_timezone', 'Zon Waktu Sistem', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17032', 'my', 'admin_login_page_background', 'Latar belakang halaman log masuk pentadbir', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17033', 'my', 'website_header', 'Pengepala Laman Web', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17034', 'my', 'header_setting', 'Penetapan Header', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17035', 'my', 'header_logo', 'Logo Pengepala', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17036', 'my', 'show_language_switcher', 'Tunjukkan Pengalih Bahasa?', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17037', 'my', 'show_currency_switcher', 'Tunjukkan Penukar Mata Wang?', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17038', 'my', 'enable_stikcy_header', 'Dayakan pengepala tegas?', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17039', 'my', 'website_footer', 'Footer Laman Web', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17040', 'my', 'footer_widget', 'Widget Kaki', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17041', 'my', 'about_widget', 'Mengenai Widget', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17042', 'my', 'footer_logo', 'Logo Footer', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17043', 'my', 'about_description', 'Mengenai keterangan', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17044', 'my', 'contact_info_widget', 'Widget Maklumat Perhubungan', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17045', 'my', 'footer_contact_address', 'Alamat hubungan footer', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17046', 'my', 'footer_contact_phone', 'Telefon kenalan footer', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17047', 'my', 'footer_contact_email', 'E-mel hubungan footer', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17048', 'my', 'link_widget_one', 'Pautan Widget Satu', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17049', 'my', 'links', 'Pautan', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17050', 'my', 'footer_bottom', 'Bahagian Bawah Kaki', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17051', 'my', 'copyright_widget_', 'Widget Hak Cipta', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17052', 'my', 'copyright_text', 'Teks Hak Cipta', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17053', 'my', 'social_link_widget_', 'Widget Pautan Sosial', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17054', 'my', 'show_social_links', 'Tunjukkan Pautan Sosial?', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17055', 'my', 'social_links', 'Pautan Sosial', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17056', 'my', 'payment_methods_widget_', 'Widget Kaedah Pembayaran', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17057', 'my', 'rtl_status_updated_successfully', 'Status RTL berjaya dikemas kini', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17058', 'my', 'language_changed_to_', 'Bahasa ditukar menjadi', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17059', 'my', 'inhouse_product_sale_report', 'Laporan penjualan Produk Inhouse', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17060', 'my', 'sort_by_category', 'Susun mengikut Kategori', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17061', 'my', 'product_wise_stock_report', 'Laporan stok produk', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17062', 'my', 'currency_changed_to_', 'Mata wang ditukar menjadi', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17063', 'my', 'avatar', 'Avatar', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17064', 'my', 'copy', 'Salinan', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17065', 'my', 'variant', 'Pelbagai', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17066', 'my', 'variant_price', 'Harga Bervariasi', '2021-02-09 13:40:40', '2021-09-20 12:59:58'),
('17067', 'my', 'sku', 'SKU', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17068', 'my', 'key', 'Kunci', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17069', 'my', 'value', 'Nilai', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17070', 'my', 'copy_translations', 'Salin Terjemahan', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17071', 'my', 'all_pickup_points', 'Semua Mata Pengambilan', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17072', 'my', 'add_new_pickup_point', 'Tambah Titik Pengambilan Baru', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17073', 'my', 'manager', 'Pengurus', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17074', 'my', 'location', 'Lokasi', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17075', 'my', 'pickup_station_contact', 'Hubungi Stesen Pickup', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17076', 'my', 'open', 'Buka', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17077', 'my', 'pos_activation_for_seller', 'Pengaktifan POS untuk Penjual', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17078', 'my', 'order_completed_successfully', 'Pesanan Selesai Berjaya.', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17079', 'my', 'text_input', 'Input Teks', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17080', 'my', 'select', 'Pilih', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17081', 'my', 'multiple_select', 'Pelbagai Pilihan', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17082', 'my', 'radio', 'Radio', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17083', 'my', 'file', 'Fail', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17084', 'my', 'email_address', 'Alamat emel', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17085', 'my', 'verification_info', 'Maklumat Pengesahan', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17086', 'my', 'approval', 'Kelulusan', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17087', 'my', 'due_amount', 'Jumlah Hutang', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17088', 'my', 'show', 'Tunjuk', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17089', 'my', 'pay_now', 'Bayar sekarang', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17090', 'my', 'affiliate_user_verification', 'Pengesahan Pengguna Gabungan', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17091', 'my', 'reject', 'Tolak', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17092', 'my', 'accept', 'Terima', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17093', 'my', 'beauty_health__hair', 'Kecantikan, Kesihatan & Rambut', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17094', 'my', 'comparison', 'Perbandingan', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17095', 'my', 'reset_compare_list', 'Tetapkan semula Senarai Bandingkan', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17096', 'my', 'your_comparison_list_is_empty', 'Senarai perbandingan anda kosong', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17097', 'my', 'convert_point_to_wallet', 'Tukar Titik Ke Dompet', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17098', 'my', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Catatan: Anda perlu mengaktifkan pilihan dompet terlebih dahulu sebelum menggunakan add point kelab.', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17099', 'my', 'create_an_account', 'Buat akaun.', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17100', 'my', 'use_email_instead', 'Gunakan E-mel Sebaliknya', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17101', 'my', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Dengan mendaftar anda bersetuju dengan terma dan syarat kami.', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17102', 'my', 'create_account', 'Buat akaun', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17103', 'my', 'or_join_with', 'Atau Sertai Dengan', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17104', 'my', 'already_have_an_account', 'Sudah mempunyai akaun?', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17105', 'my', 'log_in', 'Log masuk', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17106', 'my', 'computer__accessories', 'Aksesori komputer', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17107', 'my', 'products', 'Produk', '2021-02-09 13:40:41', '2021-09-20 12:59:58'),
('17108', 'my', 'in_your_cart', 'di dalam troli anda', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17109', 'my', 'in_your_wishlist', 'dalam senarai keinginan anda', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17110', 'my', 'you_ordered', 'awak pesan', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17111', 'my', 'default_shipping_address', 'Alamat Penghantaran Lalai', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17112', 'my', 'sports__outdoor', 'Sukan & luaran', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17113', 'my', 'copied', 'Disalin', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17114', 'my', 'copy_the_promote_link', 'Salin Pautan Promosi', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17115', 'my', 'write_a_review', 'Menulis ulasan', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17116', 'my', 'your_name', 'Nama awak', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17117', 'my', 'comment', 'Komen', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17118', 'my', 'your_review', 'Ulasan anda', '2021-02-09 13:40:42', '2021-09-20 12:59:58'),
('17119', 'my', 'submit_review', 'Hantar semakan', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17120', 'my', 'claire_willis', 'Claire Willis', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17121', 'my', 'germaine_greene', 'Germaine Greene', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17122', 'my', 'product_file', 'Fail Produk', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17123', 'my', 'choose_file', 'Pilih fail', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17124', 'my', 'type_to_add_a_tag', 'Taip untuk menambah teg', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17125', 'my', 'images', 'Gambar', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17126', 'my', 'main_images', 'Imej Utama', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17127', 'my', 'meta_tags', 'Teg Meta', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17128', 'my', 'digital_product_has_been_inserted_successfully', 'Produk Digital berjaya dimasukkan', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17129', 'my', 'edit_digital_product', 'Edit Produk Digital', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17130', 'my', 'select_an_option', 'Buat pilihan', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17131', 'my', 'tax', 'cukai', '2021-02-09 13:40:42', '2021-02-09 13:40:42'),
('17132', 'my', 'any_question_about_this_product', 'Ada sebarang pertanyaan mengenai produk ini?', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17133', 'my', 'sign_in', 'Log masuk', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17134', 'my', 'login_with_google', 'Log masuk dengan Google', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17135', 'my', 'login_with_facebook', 'Log masuk melalui Facebook', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17136', 'my', 'login_with_twitter', 'Log masuk dengan Twitter', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17137', 'my', 'click_to_show_phone_number', 'Klik untuk menunjukkan nombor telefon', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17138', 'my', 'other_ads_of', 'Iklan lain dari', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17139', 'my', 'store_home', 'Stor Rumah', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17140', 'my', 'top_selling', 'Terlaris', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17141', 'my', 'shop_settings', 'Tetapan Kedai', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17142', 'my', 'visit_shop', 'Lawati Kedai', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17143', 'my', 'pickup_points', 'Mata Pengambilan', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17144', 'my', 'select_pickup_point', 'Pilih Pickup Point', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17145', 'my', 'slider_settings', 'Tetapan Gelangsar', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17146', 'my', 'social_media_link', 'Pautan Media Sosial', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17147', 'my', 'facebook', 'Facebook', '2021-02-09 13:40:42', '2021-09-20 12:59:59'),
('17148', 'my', 'twitter', 'Twitter', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17149', 'my', 'google', 'Google', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17150', 'my', 'new_arrival_products', 'Produk Ketibaan Baru', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17151', 'my', 'check_your_order_status', 'Periksa Status Pesanan Anda', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17152', 'my', 'shipping_method', 'Cara penghantaran', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17153', 'my', 'shipped_by', 'Dihantar oleh', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17154', 'my', 'image', 'Imej', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17155', 'my', 'sub_sub_category', 'Sub Sub Kategori', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17156', 'my', 'inhouse_products', 'Produk Dalaman', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17157', 'my', 'forgot_password', 'Lupa kata laluan?', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17158', 'my', 'enter_your_email_address_to_recover_your_password', 'Masukkan alamat e-mel anda untuk mendapatkan semula kata laluan anda.', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17159', 'my', 'email_or_phone', 'Emel atau telefon', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17160', 'my', 'send_password_reset_link', 'Hantar Pautan Tetapkan Semula Kata Laluan', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17161', 'my', 'back_to_login', 'Kembali ke Log Masuk', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17162', 'my', 'index', 'indeks', '2021-02-09 13:40:43', '2021-02-09 13:40:43'),
('17163', 'my', 'download_your_product', 'Muat turun Produk Anda', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17164', 'my', 'option', 'Pilihan', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17165', 'my', 'applied_refund_request', 'Permintaan Bayaran Balik Terpakai', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17166', 'my', 'item_has_been_renoved_from_wishlist', 'Item telah ditukar dari senarai keinginan', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17167', 'my', 'bulk_products_upload', 'Muat Naik Produk Pukal', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17168', 'my', 'upload_csv', 'Muat naik CSV', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17169', 'my', 'create_a_ticket', 'Buat Tiket', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17170', 'my', 'tickets', 'Tiket', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17171', 'my', 'ticket_id', 'ID tiket', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17172', 'my', 'sending_date', 'Tarikh Penghantaran', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17173', 'my', 'subject', 'Subjek', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17174', 'my', 'view_details', 'Lihat butiran', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17175', 'my', 'provide_a_detailed_description', 'Berikan penerangan terperinci', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17176', 'my', 'type_your_reply', 'Taipkan jawapan anda', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17177', 'my', 'send_ticket', 'Hantar Tiket', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17178', 'my', 'load_more', 'Tambah lagi', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17179', 'my', 'jewelry__watches', 'Perhiasan & Jam Tangan', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17180', 'my', 'filters', 'Penapis', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17181', 'my', 'contact_address', 'Alamat', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17182', 'my', 'contact_phone', 'Telefon kenalan', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17183', 'my', 'contact_email', 'E-mel hubungan', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17184', 'my', 'filter_by', 'Tapis mengikut', '2021-02-09 13:40:43', '2021-09-20 12:59:59'),
('17185', 'my', 'condition', 'Keadaan', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17186', 'my', 'all_type', 'Semua Jenis', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17187', 'my', 'pay_with_wallet', 'Bayar dengan dompet', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17188', 'my', 'select_variation', 'Pilih variasi', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17189', 'my', 'no_product_added', 'Tiada Produk Ditambah', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17190', 'my', 'status_has_been_updated_successfully', 'Status telah berjaya dikemas kini', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17191', 'my', 'all_seller_packages', 'Semua Pakej Penjual', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17192', 'my', 'add_new_package', 'Tambah Pakej Baru', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17193', 'my', 'package_logo', 'Logo Pakej', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17194', 'my', 'days', 'hari-hari', '2021-02-09 13:40:44', '2021-02-09 13:40:44'),
('17195', 'my', 'create_new_seller_package', 'Buat Pakej Penjual Baru', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17196', 'my', 'package_name', 'Nama Pakej', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17197', 'my', 'duration', 'Jangka masa', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17198', 'my', 'validity_in_number_of_days', 'Kesahan dalam bilangan hari', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17199', 'my', 'update_package_information', 'Kemas kini Maklumat Pakej', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17200', 'my', 'package_has_been_inserted_successfully', 'Pakej telah berjaya dimasukkan', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17201', 'my', 'refund_request', 'Permintaan Bayaran Balik', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17202', 'my', 'reason', 'Sebab', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17203', 'my', 'label', 'Label', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17204', 'my', 'select_label', 'Pilih Label', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17205', 'my', 'multiple_select_label', 'Pelbagai Pilih Label', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17206', 'my', 'radio_label', 'Label Radio', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17207', 'my', 'pickup_point_orders', 'Pesanan Pickup Point', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17208', 'my', 'view', 'Pandangan', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17209', 'my', 'order_', 'Pesanan #', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17210', 'my', 'order_status', 'Status pesanan', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17211', 'my', 'total_amount', 'Jumlah keseluruhan', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17212', 'my', 'total', 'JUMLAH', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17213', 'my', 'delivery_status_has_been_updated', 'Status penghantaran telah dikemas kini', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17214', 'my', 'payment_status_has_been_updated', 'Status pembayaran telah dikemas kini', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17215', 'my', 'invoice', 'INVOIS', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17216', 'my', 'set_refund_time', 'Tetapkan Masa Bayaran Balik', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17217', 'my', 'set_time_for_sending_refund_request', 'Tetapkan Masa untuk menghantar Permintaan Bayaran Balik', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17218', 'my', 'set_refund_sticker', 'Tetapkan Pelekat Bayaran Balik', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17219', 'my', 'sticker', 'Pelekat', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17220', 'my', 'refund_request_all', 'Permintaan Bayaran Balik Semua', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17221', 'my', 'order_id', 'Id Pesanan', '2021-02-09 13:40:44', '2021-09-20 12:59:59'),
('17222', 'my', 'seller_approval', 'Kelulusan Penjual', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17223', 'my', 'admin_approval', 'Kelulusan Pentadbir', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17224', 'my', 'refund_status', 'Status Bayaran Balik', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17225', 'my', 'no_refund', 'Tanpa Bayaran Balik', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17226', 'my', 'status_updated_successfully', 'Status berjaya dikemas kini', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17227', 'my', 'user_search_report', 'Laporan Carian Pengguna', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17228', 'my', 'search_by', 'Dicari oleh', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17229', 'my', 'number_searches', 'Pencarian nombor', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17230', 'my', 'sender', 'Penghantar', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17231', 'my', 'receiver', 'Penerima', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17232', 'my', 'verification_form_updated_successfully', 'Borang pengesahan berjaya dikemas kini', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17233', 'my', 'invalid_email_or_password', 'emel dan kata laluan tidak sah', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17234', 'my', 'all_coupons', 'Semua Kupon', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17235', 'my', 'add_new_coupon', 'Tambah Kupon Baru', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17236', 'my', 'coupon_information', 'Maklumat Kupon', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17237', 'my', 'start_date', 'Tarikh mula', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17238', 'my', 'end_date', 'Tarikh tamat', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17239', 'my', 'product_base', 'Pangkalan Produk', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17240', 'my', 'send_newsletter', 'Hantar Buletin', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17241', 'my', 'mobile_users', 'Pengguna Mudah Alih', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17242', 'my', 'sms_subject', 'Subjek SMS', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17243', 'my', 'sms_content', 'Kandungan SMS', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17244', 'my', 'all_flash_delas', 'Semua Flash Delas', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17245', 'my', 'create_new_flash_dela', 'Buat Dela Flash Baru', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17246', 'my', 'page_link', 'Pautan Halaman', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17247', 'my', 'flash_deal_information', 'Maklumat Perjanjian Kilat', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17248', 'my', 'background_color', 'Warna latar belakang', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17249', 'my', '0000ff', '# 0000ff', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17250', 'my', 'text_color', 'Warna Teks', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17251', 'my', 'white', 'Putih', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17252', 'my', 'dark', 'Gelap', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17253', 'my', 'choose_products', 'Pilih Produk', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17254', 'my', 'discounts', 'Potongan harga', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17255', 'my', 'discount_type', 'Jenis Diskaun', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17256', 'my', 'twillo_credential', 'Kepujian Twillo', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17257', 'my', 'twilio_sid', 'TWILIO SID', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17258', 'my', 'twilio_auth_token', 'TOKEN AUTH TWILIO', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17259', 'my', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17260', 'my', 'valid_twillo_number', 'NOMBOR DUA BIL', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17261', 'my', 'nexmo_credential', 'Kelayakan Nexmo', '2021-02-09 13:40:45', '2021-09-20 12:59:59'),
('17262', 'my', 'nexmo_key', 'KUNCI NEXMO', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17263', 'my', 'nexmo_secret', 'RAHSIA NEXMO', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17264', 'my', 'ssl_wireless_credential', 'Kelayakan Tanpa Wayar SSL', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17265', 'my', 'ssl_sms_api_token', 'TOKEN API SMS SSL', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17266', 'my', 'ssl_sms_sid', 'SSL SMS SSL', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17267', 'my', 'ssl_sms_url', 'URL SMS SSL', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17268', 'my', 'fast2sms_credential', 'Kelayakan Fast2SMS', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17269', 'my', 'auth_key', 'KUNCI AUTH', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17270', 'my', 'route', 'JALAN', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17271', 'my', 'promotional_use', 'Penggunaan Promosi', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17272', 'my', 'transactional_use', 'Penggunaan Transaksional', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17273', 'my', 'sender_id', 'ID PENGHANTAR', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17274', 'my', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17275', 'my', 'twillo_otp', 'Twillo OTP', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17276', 'my', 'ssl_wireless_otp', 'OTP Tanpa Wayar SSL', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17277', 'my', 'fast2sms_otp', 'OTP Cepat2SMS', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17278', 'my', 'order_placement', 'Penempatan Pesanan', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17279', 'my', 'delivery_status_changing_time', 'Status Perubahan Waktu Penghantaran', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17280', 'my', 'paid_status_changing_time', 'Masa Berubah Status Berbayar', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17281', 'my', 'send_bulk_sms', 'Hantar SMS Pukal', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17282', 'my', 'all_subscribers', 'Semua Pelanggan', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17283', 'my', 'coupon_information_adding', 'Menambah Maklumat Kupon', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17284', 'my', 'coupon_type', 'Jenis Kupon', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17285', 'my', 'for_products', 'Untuk Produk', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17286', 'my', 'for_total_orders', 'Untuk Jumlah Pesanan', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17287', 'my', 'add_your_product_base_coupon', 'Tambahkan Kupon Pangkalan Produk Anda', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17288', 'my', 'coupon_code', 'Kod Kupon', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17289', 'my', 'sub_category', 'Sub Kategori', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17290', 'my', 'add_more', 'Tambah Lagi', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17291', 'my', 'add_your_cart_base_coupon', 'Tambahkan Kupon Pangkalan Troli Anda', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17292', 'my', 'minimum_shopping', 'Belanja Minimum', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17293', 'my', 'maximum_discount_amount', 'Amaun Diskaun Maksimum', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17294', 'my', 'coupon_information_update', 'Kemas kini Maklumat Kupon', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17295', 'my', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Sila Konfigurasikan Tetapan SMTP untuk berfungsi semua e-mel menghantar fungsi', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17296', 'my', 'configure_now', 'Konfigurasikan Sekarang', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17297', 'my', 'total_published_products', 'Jumlah produk yang diterbitkan', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17298', 'my', 'total_sellers_products', 'Jumlah produk penjual', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17299', 'my', 'total_admin_products', 'Jumlah produk pentadbir', '2021-02-09 13:40:46', '2021-09-20 12:59:59'),
('17300', 'my', 'manage_products', 'Urus Produk', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17301', 'my', 'total_product_category', 'Jumlah kategori produk', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17302', 'my', 'create_category', 'Buat Kategori', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17303', 'my', 'total_product_sub_sub_category', 'Jumlah subkategori produk', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17304', 'my', 'create_sub_sub_category', 'Buat Sub Sub Kategori', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17305', 'my', 'total_product_sub_category', 'Jumlah subkategori produk', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17306', 'my', 'create_sub_category', 'Buat Sub Kategori', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17307', 'my', 'total_product_brand', 'Jumlah jenama produk', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17308', 'my', 'create_brand', 'Buat Jenama', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17309', 'my', 'total_sellers', 'Jumlah penjual', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17310', 'my', 'total_approved_sellers', 'Jumlah penjual yang diluluskan', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17311', 'my', 'total_pending_sellers', 'Jumlah penjual belum selesai', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17312', 'my', 'manage_sellers', 'Urus Penjual', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17313', 'my', 'category_wise_product_sale', 'Penjualan produk berdasarkan kategori', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17314', 'my', 'sale', 'Jualan', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17315', 'my', 'category_wise_product_stock', 'Stok produk bijak kategori', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17316', 'my', 'category_name', 'Nama kategori', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17317', 'my', 'stock', 'Stok', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17318', 'my', 'frontend', 'Bahagian depan', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17319', 'my', 'home_page', 'Laman utama', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17320', 'my', 'setting', 'tetapan', '2021-02-09 13:40:47', '2021-02-09 13:40:47'),
('17321', 'my', 'policy_page', 'Halaman dasar', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17322', 'my', 'general', 'Am', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17323', 'my', 'click_here', 'Tekan di sini', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17324', 'my', 'useful_link', 'Pautan berguna', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17325', 'my', 'activation', 'Pengaktifan', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17326', 'my', 'smtp', 'SMTP', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17327', 'my', 'payment_method', 'Kaedah pembayaran', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17328', 'my', 'social_media', 'Media sosial', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17329', 'my', 'business', 'Perniagaan', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17330', 'my', 'seller_verification', 'Pengesahan penjual', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17331', 'my', 'form_setting', 'penetapan borang', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17332', 'my', 'language', 'Bahasa', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17333', 'my', 'dashboard', 'Papan Pemuka', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17334', 'my', 'pos_system', 'Sistem POS', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17335', 'my', 'pos_manager', 'Pengurus POS', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17336', 'my', 'pos_configuration', 'Konfigurasi POS', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17337', 'my', 'products', 'Produk', '2021-02-09 13:40:47', '2021-09-20 12:59:59'),
('17338', 'my', 'add_new_product', 'Tambah produk Baru', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17339', 'my', 'all_products', 'Semua produk', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17340', 'my', 'in_house_products', 'Produk Rumah', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17341', 'my', 'seller_products', 'Produk Penjual', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17342', 'my', 'digital_products', 'Produk Digital', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17343', 'my', 'bulk_import', 'Import Pukal', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17344', 'my', 'bulk_export', 'Eksport Pukal', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17345', 'my', 'category', 'Kategori', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17346', 'my', 'subcategory', 'Subkategori', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17347', 'my', 'sub_subcategory', 'Subkategori', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17348', 'my', 'brand', 'Jenama', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17349', 'my', 'attribute', 'Atribut', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17350', 'my', 'product_reviews', 'Ulasan Produk', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17351', 'my', 'sales', 'Jualan', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17352', 'my', 'all_orders', 'Semua Pesanan', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17353', 'my', 'inhouse_orders', 'Pesanan dalam rumah', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17354', 'my', 'seller_orders', 'Pesanan Penjual', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17355', 'my', 'pickup_point_order', 'Pesanan Titik Pick-up', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17356', 'my', 'refunds', 'Bayaran Balik', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17357', 'my', 'refund_requests', 'Permintaan Bayaran Balik', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17358', 'my', 'approved_refund', 'Bayaran Balik yang Diluluskan', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17359', 'my', 'refund_configuration', 'Konfigurasi Bayaran Balik', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17360', 'my', 'customers', 'Pelanggan', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17361', 'my', 'customer_list', 'Senarai pelanggan', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17362', 'my', 'classified_products', 'Produk Terkelaskan', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17363', 'my', 'classified_packages', 'Pakej Terkelaskan', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17364', 'my', 'sellers', 'Penjual', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17365', 'my', 'all_seller', 'Semua Penjual', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17366', 'my', 'payouts', 'Bayaran', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17367', 'my', 'payout_requests', 'Permintaan Pembayaran', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17368', 'my', 'seller_commission', 'Suruhanjaya Penjual', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17369', 'my', 'seller_packages', 'Pakej Penjual', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17370', 'my', 'seller_verification_form', 'Borang Pengesahan Penjual', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17371', 'my', 'reports', 'Laporan', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17372', 'my', 'in_house_product_sale', 'Jualan Produk Dalam Rumah', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17373', 'my', 'seller_products_sale', 'Penjualan Produk Penjual', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17374', 'my', 'products_stock', 'Stok Produk', '2021-02-09 13:40:48', '2021-09-20 12:59:59'),
('17375', 'my', 'products_wishlist', 'Senarai harapan produk', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17376', 'my', 'user_searches', 'Carian Pengguna', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17377', 'my', 'marketing', 'Pemasaran', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17378', 'my', 'flash_deals', 'Tawaran kilat', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17379', 'my', 'newsletters', 'Surat berita', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17380', 'my', 'bulk_sms', 'SMS pukal', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17381', 'my', 'subscribers', 'Pelanggan', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17382', 'my', 'coupon', 'Kupon', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17383', 'my', 'support', 'Sokongan', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17384', 'my', 'ticket', 'Tiket', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17385', 'my', 'product_queries', 'Pertanyaan Produk', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17386', 'my', 'website_setup', 'Persediaan Laman Web', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17387', 'my', 'header', 'Kepala', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17388', 'my', 'footer', 'Kaki', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17389', 'my', 'pages', 'Halaman', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17390', 'my', 'appearance', 'Penampilan', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17391', 'my', 'setup__configurations', 'Persediaan & Konfigurasi', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17392', 'my', 'general_settings', 'Tetapan umum', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17393', 'my', 'features_activation', 'Ciri pengaktifan', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17394', 'my', 'languages', 'Bahasa', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17395', 'my', 'currency', 'Mata Wang', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17396', 'my', 'pickup_point', 'Titik pengambilan', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17397', 'my', 'smtp_settings', 'Tetapan SMTP', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17398', 'my', 'payment_methods', 'cara bayaran', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17399', 'my', 'file_system_configuration', 'Konfigurasi Sistem Fail', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17400', 'my', 'social_media_logins', 'Log masuk media sosial', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17401', 'my', 'analytics_tools', 'Alat Analisis', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17402', 'my', 'facebook_chat', 'Sembang Facebook', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17403', 'my', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17404', 'my', 'shipping_configuration', 'Konfigurasi Penghantaran', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17405', 'my', 'shipping_countries', 'Negara Penghantaran', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17406', 'my', 'affiliate_system', 'Sistem Gabungan', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17407', 'my', 'affiliate_registration_form', 'Borang Pendaftaran Gabungan', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17408', 'my', 'affiliate_configurations', 'Konfigurasi Gabungan', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17409', 'my', 'affiliate_users', 'Pengguna Gabungan', '2021-02-09 13:40:49', '2021-09-20 12:59:59'),
('17410', 'my', 'referral_users', 'Pengguna Rujukan', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17411', 'my', 'affiliate_withdraw_requests', 'Permintaan Pengeluaran Gabungan', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17412', 'my', 'offline_payment_system', 'Sistem Pembayaran Luar Talian', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17413', 'my', 'manual_payment_methods', 'Kaedah Pembayaran Manual', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17414', 'my', 'offline_wallet_recharge', 'Isi Ulang Dompet Luar Talian', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17415', 'my', 'offline_customer_package_payments', 'Pembayaran Pakej Pelanggan Luar Talian', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17416', 'my', 'offline_seller_package_payments', 'Pembayaran Pakej Penjual Luar Talian', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17417', 'my', 'paytm_payment_gateway', 'Gerbang Pembayaran Paytm', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17418', 'my', 'set_paytm_credentials', 'Tetapkan Kelayakan Paytm', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17419', 'my', 'club_point_system', 'Sistem Titik Kelab', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17420', 'my', 'club_point_configurations', 'Konfigurasi Titik Kelab', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17421', 'my', 'set_product_point', 'Tetapkan Titik Produk', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17422', 'my', 'user_points', 'Mata Pengguna', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17423', 'my', 'otp_system', 'Sistem OTP', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17424', 'my', 'otp_configurations', 'Konfigurasi OTP', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17425', 'my', 'set_otp_credentials', 'Tetapkan Kelayakan OTP', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17426', 'my', 'staffs', 'Kakitangan', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17427', 'my', 'all_staffs', 'Semua kakitangan', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17428', 'my', 'staff_permissions', 'Kebenaran kakitangan', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17429', 'my', 'addon_manager', 'Pengurus Addon', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17430', 'my', 'browse_website', 'Layari Laman Web', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17431', 'my', 'pos', 'POS', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17432', 'my', 'notifications', 'Pemberitahuan', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17433', 'my', 'new_orders', 'pesanan baru', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17434', 'my', 'userimage', 'gambar pengguna', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17435', 'my', 'profile', 'Profil', '2021-02-09 13:40:50', '2021-09-20 12:59:59'),
('17436', 'my', 'logout', 'Log keluar', '2021-02-09 13:41:22', '2021-09-20 12:59:59'),
('17437', 'my', 'page_not_found', 'Laman tidak dijumpai!', '2021-02-09 13:41:22', '2021-09-20 12:59:59'),
('17438', 'my', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'Halaman yang anda cari belum dijumpai di pelayan kami.', '2021-02-09 13:41:22', '2021-09-20 12:59:59'),
('17439', 'my', 'registration', 'Pendaftaran', '2021-02-09 13:41:22', '2021-09-20 12:59:59'),
('17440', 'my', 'i_am_shopping_for', 'Saya membeli-belah untuk ...', '2021-02-09 13:41:22', '2021-09-20 12:59:59'),
('17441', 'my', 'compare', 'Bandingkan', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17442', 'my', 'wishlist', 'Daftar Keinginan', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17443', 'my', 'cart', 'Troli', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17444', 'my', 'your_cart_is_empty', 'Troli anda kosong', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17445', 'my', 'categories', 'Kategori', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17446', 'my', 'see_all', 'Lihat semua', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17447', 'my', 'seller_policy', 'Dasar Penjual', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17448', 'my', 'return_policy', 'Syarat pengembalian', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17449', 'my', 'support_policy', 'Dasar Sokongan', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17450', 'my', 'privacy_policy', 'Dasar Privasi', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17451', 'my', 'your_email_address', 'Alamat E-mel Anda', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17452', 'my', 'subscribe', 'Langgan', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17453', 'my', 'contact_info', 'Maklumat Perhubungan', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17454', 'my', 'address', 'Alamat', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17455', 'my', 'phone', 'Telefon', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17456', 'my', 'email', 'E-mel', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17457', 'my', 'login', 'Log masuk', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17458', 'my', 'my_account', 'Akaun saya', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17459', 'my', 'order_history', 'Sejarah Pesanan', '2021-02-09 13:41:22', '2021-09-20 13:00:00'),
('17460', 'my', 'my_wishlist', 'Permintaan Saya', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17461', 'my', 'track_order', 'Susunan Jejak', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17462', 'my', 'be_an_affiliate_partner', 'Jadilah rakan sekutu', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17463', 'my', 'be_a_seller', 'Jadilah Penjual', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17464', 'my', 'apply_now', 'Mohon sekarang', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17465', 'my', 'confirmation', 'Pengesahan', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17466', 'my', 'delete_confirmation_message', 'Padamkan mesej pengesahan', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17467', 'my', 'cancel', 'Batal', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17468', 'my', 'delete', 'Padam', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17469', 'my', 'item_has_been_added_to_compare_list', 'Item telah ditambahkan untuk membandingkan senarai', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17470', 'my', 'please_login_first', 'Sila log masuk dahulu', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17471', 'my', 'total_earnings_from', 'Jumlah Pendapatan Dari', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17472', 'my', 'client_subscription', 'Langganan Pelanggan', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17473', 'my', 'product_category', 'Kategori Produk', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17474', 'my', 'product_sub_sub_category', 'Subkategori produk', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17475', 'my', 'product_sub_category', 'Subkategori produk', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17476', 'my', 'product_brand', 'Jenama produk', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17477', 'my', 'top_client_packages', 'Pakej Pelanggan Teratas', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17478', 'my', 'top_freelancer_packages', 'Pakej Freelancer Teratas', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17479', 'my', 'number_of_sale', 'Jumlah penjualan', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17480', 'my', 'number_of_stock', 'Bilangan Stok', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17481', 'my', 'top_10_products', '10 Produk Teratas', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17482', 'my', 'top_12_products', '12 Produk Teratas', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17483', 'my', 'admin_can_not_be_a_seller', 'Admin tidak boleh menjadi penjual', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17484', 'my', 'filter_by_rating', 'Tapis mengikut Penarafan', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17485', 'my', 'published_reviews_updated_successfully', 'Ulasan yang diterbitkan berjaya dikemas kini', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17486', 'my', 'refund_sticker_has_been_updated_successfully', 'Refund Sticker berjaya dikemas kini', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17487', 'my', 'edit_product', 'Edit Produk', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17488', 'my', 'meta_images', 'Imej Meta', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17489', 'my', 'update_product', 'Kemas kini Produk', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17490', 'my', 'product_has_been_deleted_successfully', 'Produk berjaya dipadamkan', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17491', 'my', 'your_profile_has_been_updated_successfully', 'Profil anda berjaya dikemas kini!', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17492', 'my', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Had muat naik telah dicapai. Sila tingkatkan pakej anda.', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17493', 'my', 'add_your_product', 'Tambah Produk Anda', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17494', 'my', 'select_a_category', 'Pilih kategori', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17495', 'my', 'select_a_brand', 'Pilih jenama', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17496', 'my', 'product_unit', 'Unit Produk', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17497', 'my', 'minimum_qty', 'Kuantiti minimum.', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17498', 'my', 'product_tag', 'Tag Produk', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17499', 'my', 'type__hit_enter', 'Taip & tekan enter', '2021-02-09 13:41:23', '2021-09-20 13:00:00'),
('17500', 'my', 'videos', 'Video', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17501', 'my', 'video_from', 'Video Dari', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17502', 'my', 'video_url', 'URL video', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17503', 'my', 'customer_choice', 'Pilihan Pelanggan', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17504', 'my', 'pdf', 'PDF', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17505', 'my', 'choose_pdf', 'Pilih PDF', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17506', 'my', 'select_category', 'Pilih Kategori', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17507', 'my', 'target_category', 'Kategori Sasaran', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17508', 'my', 'subsubcategory', 'subkategori', '2021-02-09 13:41:24', '2021-02-09 13:41:24'),
('17509', 'my', 'search_category', 'Kategori Carian', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17510', 'my', 'search_subcategory', 'Cari Subkategori', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17511', 'my', 'search_subsubcategory', 'Cari SubSubKategori', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17512', 'my', 'update_your_product', 'Kemas kini produk anda', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17513', 'my', 'product_has_been_updated_successfully', 'Produk berjaya dikemas kini', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17514', 'my', 'add_your_digital_product', 'Tambahkan Produk Digital Anda', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17515', 'my', 'active_ecommerce_cms_update_process', 'Proses Kemas kini CMS eCommerce aktif', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17516', 'my', 'codecanyon_purchase_code', 'Kod pembelian Codecanyon', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17517', 'my', 'database_name', 'Nama Pangkalan Data', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17518', 'my', 'database_username', 'Nama Pengguna Pangkalan Data', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17519', 'my', 'database_password', 'Kata Laluan Pangkalan Data', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17520', 'my', 'database_hostname', 'Nama Hos Pangkalan Data', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17521', 'my', 'update_now', 'Mengemas kini sekarang', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17522', 'my', 'congratulations', 'Selamat bertunang', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17523', 'my', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'Anda telah berjaya menyelesaikan proses pengemaskinian. Sila Masuk untuk meneruskan', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17524', 'my', 'go_to_home', 'Pulang ke rumah', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17525', 'my', 'login_to_admin_panel', 'Log masuk ke panel Pentadbir', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17526', 'my', 's3_file_system_credentials', 'Kelayakan Sistem Fail S3', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17527', 'my', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17528', 'my', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17529', 'my', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17530', 'my', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17531', 'my', 'aws_url', 'AWS_URL', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17532', 'my', 's3_file_system_activation', 'Pengaktifan Sistem Fail S3', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17533', 'my', 'your_phone_number', 'Nombor telefon anda', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17534', 'my', 'zip_file', 'Fail Zip', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17535', 'my', 'install', 'Pasang', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17536', 'my', 'this_version_is_not_capable_of_installing_addons_please_update', 'Versi ini tidak dapat memasang Addons, Sila kemas kini.', '2021-02-09 13:41:24', '2021-09-20 13:00:00'),
('17537', 'my', 'search_in_menu', 'Cari dalam menu', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17538', 'my', 'uploaded_files', 'Fail yang dimuat naik', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17539', 'my', 'shipping_cities', 'Bandar Penghantaran', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17540', 'my', 'system', 'Sistem', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17541', 'my', 'server_status', 'Status pelayan', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17542', 'my', 'nothing_found', 'Tiada apa-apa Dijumpai', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17543', 'my', 'parent_category', 'Kategori Ibu Bapa', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17544', 'my', 'level', 'Tahap', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17545', 'my', 'category_information', 'Maklumat Kategori', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17546', 'my', 'translatable', 'Boleh dilayari', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17547', 'my', 'no_parent', 'Tiada Ibu Bapa', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17548', 'my', 'physical', 'Fizikal', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17549', 'my', 'digital', 'Digital', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17550', 'my', '200x200', '200x200', '2021-02-09 13:41:25', '2021-02-09 13:41:25'),
('17551', 'my', '32x32', '32x32', '2021-02-09 13:41:25', '2021-02-09 13:41:25'),
('17552', 'my', 'search_your_files', 'Cari fail anda', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17553', 'my', 'category_has_been_updated_successfully', 'Kategori telah berjaya dikemas kini', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17554', 'my', 'all_uploaded_files', 'Semua fail yang dimuat naik', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17555', 'my', 'upload_new_file', 'Muat Naik Fail Baru', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17556', 'my', 'all_files', 'Semua fail', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17557', 'my', 'search', 'Cari', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17558', 'my', 'details_info', 'Maklumat Perincian', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17559', 'my', 'copy_link', 'Salin pautan', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17560', 'my', 'are_you_sure_to_delete_this_file', 'Adakah anda pasti memadamkan fail ini?', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17561', 'my', 'file_info', 'Maklumat Fail', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17562', 'my', 'link_copied_to_clipboard', 'Pautan disalin ke papan keratan', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17563', 'my', 'oops_unable_to_copy', 'Op, tidak dapat menyalin', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17564', 'my', 'file_deleted_successfully', 'Fail berjaya dipadamkan', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17565', 'my', 'add_new_brand', 'Tambah Jenama Baru', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17566', 'my', '120x80', '120x80', '2021-02-09 13:41:25', '2021-02-09 13:41:25'),
('17567', 'my', 'brand_information', 'Maklumat Jenama', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17568', 'my', 'brand_has_been_updated_successfully', 'Jenama telah berjaya dikemas kini', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17569', 'my', 'brand_has_been_deleted_successfully', 'Jenama berjaya dipadamkan', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17570', 'my', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'This is used for search. Input those words by which cutomer can find this product.', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17571', 'my', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'These images are visible in product details page gallery. Use 600x600 sizes images.', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17572', 'my', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.', '2021-02-09 13:41:25', '2021-09-20 13:00:00'),
('17573', 'my', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Use proper link without extra parameter. Don\'t use short share link/embeded iframe code.', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17574', 'my', 'save_product', 'Save Product', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17575', 'my', 'product_has_been_inserted_successfully', 'Product has been inserted successfully', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17576', 'my', 'something_went_wrong', 'Something went wrong!', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17577', 'my', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Sorry for the inconvenience, but we\'re working on it.', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17578', 'my', 'error_code', 'Error code', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17579', 'my', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Please Configure SMTP Setting to work all email sending functionality', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17580', 'my', 'order', 'Order', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17581', 'my', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'Kami mempunyai ketinggian sepanduk yang terhad untuk mengekalkan UI. Kami harus memotong dari kedua kiri dan kanan untuk melihat peranti yang berlainan untuk menjadikannya responsif. Sebelum merancang sepanduk, ingat perkara ini.', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17582', 'my', 'home_banner_3_max_3', 'Sepanduk Rumah 3 (Maksimum 3)', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17583', 'my', 'add_new_seller', 'Tambah Penjual Baru', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17584', 'my', 'filter_by_approval', 'Tapis mengikut Kelulusan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17585', 'my', 'nonapproved', 'Tidak Diluluskan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17586', 'my', 'type_name_or_email__enter', 'Taipkan nama atau e-mel & Masukkan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17587', 'my', 'due_to_seller', 'Kerana penjual', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17588', 'my', 'log_in_as_this_seller', 'Log masuk sebagai Penjual ini', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17589', 'my', 'go_to_payment', 'Pergi ke Pembayaran', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17590', 'my', 'ban_this_seller', 'Larang penjual ini', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17591', 'my', 'do_you_really_want_to_ban_this_seller', 'Adakah anda benar-benar mahu melarang penjual ini?', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17592', 'my', 'proceed', 'Teruskan!', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17593', 'my', 'approved_sellers_updated_successfully', 'Penjual yang diluluskan berjaya dikemas kini', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17594', 'my', 'seller_has_been_deleted_successfully', 'Penjual berjaya dipadamkan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17595', 'my', 'seller_information', 'Maklumat Penjual', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17596', 'my', 'seller_has_been_inserted_successfully', 'Penjual berjaya dimasukkan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17597', 'my', 'email_already_exists', 'E-mel sudah ada!', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17598', 'my', 'verify_your_email_address', 'Mengesahkan alamat e-mel anda', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17599', 'my', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Sebelum meneruskan, sila periksa e-mel anda untuk mendapatkan pautan pengesahan.', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17600', 'my', 'if_you_did_not_receive_the_email', 'Sekiranya anda tidak menerima e-mel.', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17601', 'my', 'click_here_to_request_another', 'Klik di sini untuk meminta yang lain', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17602', 'my', 'email_verification', 'pengesahan email', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17603', 'my', 'email_verification__', 'Pengesahan email -', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17604', 'my', 'https_activation', 'Pengaktifan HTTPS', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17605', 'my', 'maintenance_mode', 'Mod penyelenggaraan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17606', 'my', 'maintenance_mode_activation', 'Pengaktifan Mod Penyelenggaraan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17607', 'my', 'classified_product_activate', 'Produk Terkelaskan Diaktifkan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17608', 'my', 'classified_product', 'Produk Terkelaskan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17609', 'my', 'business_related', 'Berkaitan Perniagaan', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17610', 'my', 'vendor_system_activation', 'Pengaktifan Sistem Vendor', '2021-02-09 13:41:26', '2021-09-20 13:00:00'),
('17611', 'my', 'wallet_system_activation', 'Pengaktifan Sistem Dompet', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17612', 'my', 'coupon_system_activation', 'Pengaktifan Sistem Kupon', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17613', 'my', 'pickup_point_activation', 'Pengaktifan Titik Pickup', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17614', 'my', 'conversation_activation', 'Pengaktifan Perbualan', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17615', 'my', 'guest_checkout_activation', 'Pengaktifan Checkout Tetamu', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17616', 'my', 'categorybased_commission', 'Suruhanjaya berdasarkan kategori', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17617', 'my', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'Setelah mengaktifkan pilihan ini Komisen penjual akan dilumpuhkan dan Anda perlu menetapkan komisen pada setiap kategori jika tidak, Admin tidak akan mendapat komisen', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17618', 'my', 'set_commisssion_now', 'Tetapkan Komisen Sekarang', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17619', 'my', 'payment_related', 'Berkaitan Pembayaran', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17620', 'my', 'paypal_payment_activation', 'Pengaktifan Pembayaran Paypal', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17621', 'my', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Paypal dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17622', 'my', 'stripe_payment_activation', 'Pengaktifan Pembayaran Stripe', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17623', 'my', 'sslcommerz_activation', 'Pengaktifan SSlCommerz', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17624', 'my', 'instamojo_payment_activation', 'Pengaktifan Pembayaran Instamojo', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17625', 'my', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Pembayaran Instamojo dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17626', 'my', 'razor_pay_activation', 'Pengaktifan Bayar Cukur', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17627', 'my', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Razor dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17628', 'my', 'paystack_activation', 'Pengaktifan PayStack', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17629', 'my', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi PayStack dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17630', 'my', 'voguepay_activation', 'Pengaktifan VoguePay', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17631', 'my', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi VoguePay dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17632', 'my', 'payhere_activation', 'Pengaktifan Payhere', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17633', 'my', 'ngenius_activation', 'Pengaktifan Ngenius', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17634', 'my', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Ngenius dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17635', 'my', 'iyzico_activation', 'Pengaktifan Iyzico', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17636', 'my', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi iyzico dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17637', 'my', 'bkash_activation', 'Pengaktifan Bkash', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17638', 'my', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi bkash dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17639', 'my', 'nagad_activation', 'Pengaktifan Nagad', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17640', 'my', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi nagad dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17641', 'my', 'cash_payment_activation', 'Pengaktifan Pembayaran Tunai', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17642', 'my', 'social_media_login', 'Log Masuk Media Sosial', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17643', 'my', 'facebook_login', 'log masuk Facebook', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17644', 'my', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Pelanggan Facebook dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17645', 'my', 'google_login', 'Log masuk Google', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17646', 'my', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Pelanggan Google dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17647', 'my', 'twitter_login', 'Log masuk Twitter', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17648', 'my', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'Anda perlu mengkonfigurasi Pelanggan Twitter dengan betul untuk mengaktifkan ciri ini', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17649', 'my', 'shop_logo', 'Logo Kedai', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17650', 'my', 'shop_address', 'Alamat Kedai', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17651', 'my', 'banner_settings', 'Tetapan Sepanduk', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17652', 'my', 'banners', 'Sepanduk', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17653', 'my', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'Kami terpaksa menghadkan ketinggian ke konsistensi maintian. Di beberapa peranti, kedua-dua sisi sepanduk mungkin dipotong untuk had ketinggian.', '2021-02-09 13:41:27', '2021-09-20 13:00:00'),
('17654', 'my', 'insert_link_with_https_', 'Masukkan pautan dengan https', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17655', 'my', 'your_shop_has_been_updated_successfully', 'Kedai Anda berjaya dikemas kini!', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17656', 'my', 'search_result_for_', 'Hasil carian untuk', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17657', 'my', 'brand_has_been_inserted_successfully', 'Jenama telah berjaya dimasukkan', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17658', 'my', 'about', 'Mengenai', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17659', 'my', 'payout_info', 'Maklumat Pembayaran', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17660', 'my', 'bank_acc_name', 'Nama Acc Bank', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17661', 'my', 'bank_acc_number', 'Nombor Acc Bank', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17662', 'my', 'total_products', 'Jumlah Produk', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17663', 'my', 'total_sold_amount', 'Jumlah Jualan', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17664', 'my', 'wallet_balance', 'Baki Dompet', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17665', 'my', 'cookies_agreement', 'Perjanjian Cookies', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17666', 'my', 'cookies_agreement_text', 'Teks Perjanjian Kuki', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17667', 'my', 'show_cookies_agreement', 'Tunjukkan Perjanjian Cookies?', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17668', 'my', 'custom_script', 'Skrip Tersuai', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17669', 'my', 'header_custom_script__before_head', 'Skrip tersuai tajuk - sebelum </head>', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17670', 'my', 'write_script_with_script_tag', 'Tulis skrip dengan tag <script>', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17671', 'my', 'footer_custom_script__before_body', 'Skrip khas footer - sebelum </body>', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17672', 'my', 'category_has_been_inserted_successfully', 'Kategori telah berjaya dimasukkan', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17673', 'my', 'all_flash_deals', 'Semua Tawaran Kilat', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17674', 'my', 'create_new_flash_deal', 'Buat Tawaran Kilat Baru', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17675', 'my', 'ffffff', '#FFFFFF', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17676', 'my', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Gambar ini ditunjukkan sebagai spanduk sampul di halaman perincian tawaran kilat.', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17677', 'my', 'flash_deal_has_been_inserted_successfully', 'Flash Deal berjaya dimasukkan', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17678', 'my', 'flash_deal_status_updated_successfully', 'Status perjanjian kilat berjaya dikemas kini', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17679', 'my', 'flash_deal_has_been_updated_successfully', 'Flash Deal berjaya dikemas kini', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17680', 'my', 'update_language_info', 'kemas kini Maklumat Bahasa', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17681', 'my', 'language_has_been_updated_successfully', 'Bahasa berjaya dikemas kini', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17682', 'my', 'type_key__enter', 'Taip kekunci & Enter', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17683', 'my', 'translations_updated_for_', 'Terjemahan dikemas kini untuk', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17684', 'my', 'language_has_been_inserted_successfully', 'Bahasa telah berjaya disisipkan', '2021-02-09 13:41:28', '2021-09-20 13:00:00'),
('17685', 'lk', 'all_category', 'அனைத்து வகை', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17686', 'lk', 'all', 'அனைத்தும்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17687', 'lk', 'flash_sale', 'ஃபிளாஷ் விற்பனை', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17688', 'lk', 'view_more', 'மேலும் பார்க்க', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17689', 'lk', 'add_to_wishlist', 'விருப்பப்பட்டியலில் சேர்க்கவும்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17690', 'lk', 'add_to_compare', 'ஒப்பிட சேர்க்கவும்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17691', 'lk', 'add_to_cart', 'பெட்டகத்தில் சேர்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17692', 'lk', 'club_point', 'கிளப் பாயிண்ட்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17693', 'lk', 'classified_ads', 'வகைப்படுத்தப்பட்ட விளம்பரங்கள்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17694', 'lk', 'used', 'பயன்படுத்தப்பட்டது', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17695', 'lk', 'top_10_categories', 'முதல் 10 வகைகள்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17696', 'lk', 'view_all_categories', 'எல்லா வகைகளையும் காண்க', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17697', 'lk', 'top_10_brands', 'சிறந்த 10 பிராண்டுகள்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17698', 'lk', 'view_all_brands', 'எல்லா பிராண்டுகளையும் காண்க', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17699', 'lk', 'terms__conditions', 'விதிமுறைகளும் நிபந்தனைகளும்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17700', 'lk', 'best_selling', 'சிறந்த விற்பனை', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17701', 'lk', 'top_20', 'முதல் 20', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17702', 'lk', 'featured_products', 'சிறப்பு தயாரிப்புகள்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17703', 'lk', 'best_sellers', 'சிறந்த விற்பனையாளர்கள்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17704', 'lk', 'visit_store', 'கடைக்குச் செல்லவும்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17705', 'lk', 'popular_suggestions', 'பிரபலமான பரிந்துரைகள்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17706', 'lk', 'category_suggestions', 'வகை பரிந்துரைகள்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17707', 'lk', 'automobile__motorcycle', 'ஆட்டோமொபைல் & மோட்டார் சைக்கிள்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17708', 'lk', 'price_range', 'விலை வரம்பு', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17709', 'lk', 'filter_by_color', 'வண்ணத்தால் வடிகட்டவும்', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17710', 'lk', 'home', 'வீடு', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17711', 'lk', 'newest', 'புதியது', '2021-02-09 13:43:48', '2021-09-20 13:00:00'),
('17712', 'lk', 'oldest', 'பழமையான', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17713', 'lk', 'price_low_to_high', 'விலை குறைந்த முதல் அதிகமானது', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17714', 'lk', 'price_high_to_low', 'விலை உயர்ந்தது முதல் குறைவானது', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17715', 'lk', 'brands', 'பிராண்டுகள்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17716', 'lk', 'all_brands', 'அனைத்து பிராண்டுகளும்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17717', 'lk', 'all_sellers', 'அனைத்து விற்பனையாளர்களும்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17718', 'lk', 'inhouse_product', 'உள் தயாரிப்பு', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17719', 'lk', 'message_seller', 'செய்தி விற்பனையாளர்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17720', 'lk', 'price', 'விலை', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17721', 'lk', 'discount_price', 'தள்ளுபடி விலை', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17722', 'lk', 'color', 'நிறம்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17723', 'lk', 'quantity', 'அளவு', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17724', 'lk', 'available', 'கிடைக்கிறது', '2021-02-09 13:43:49', '2021-02-09 13:43:49'),
('17725', 'lk', 'total_price', 'மொத்த விலை', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17726', 'lk', 'out_of_stock', 'பங்கு இல்லை', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17727', 'lk', 'refund', 'பணத்தைத் திரும்பப் பெறுங்கள்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17728', 'lk', 'share', 'பகிர்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17729', 'lk', 'sold_by', 'விற்றவர்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17730', 'lk', 'customer_reviews', 'வாடிக்கையாளர் மதிப்புரைகள்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17731', 'lk', 'top_selling_products', 'சிறந்த விற்பனையான தயாரிப்புகள்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17732', 'lk', 'description', 'விளக்கம்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17733', 'lk', 'video', 'வீடியோ', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17734', 'lk', 'reviews', 'விமர்சனங்கள்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17735', 'lk', 'download', 'பதிவிறக்க Tamil', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17736', 'lk', 'there_have_been_no_reviews_for_this_product_yet', 'இந்த தயாரிப்புக்கான மதிப்புரைகள் இதுவரை இல்லை.', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17737', 'lk', 'related_products', 'தொடர்புடைய தயாரிப்புகள்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17738', 'lk', 'any_query_about_this_product', 'இந்த தயாரிப்பு பற்றிய எந்த வினவலும்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17739', 'lk', 'product_name', 'பொருளின் பெயர்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17740', 'lk', 'your_question', 'உங்கள் கேள்வி', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17741', 'lk', 'send', 'அனுப்புக', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17742', 'lk', 'use_country_code_before_number', 'எண்ணுக்கு முன் நாட்டின் குறியீட்டைப் பயன்படுத்தவும்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17743', 'lk', 'remember_me', 'என்னை நினைவில் வையுங்கள்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17744', 'lk', 'dont_have_an_account', 'கணக்கு இல்லையா?', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17745', 'lk', 'register_now', 'இப்போது பதிவுசெய்க', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17746', 'lk', 'or_login_with', 'அல்லது உள்நுழைக', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17747', 'lk', 'oops', 'அச்சச்சோ ..', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17748', 'lk', 'this_item_is_out_of_stock', 'இந்த உருப்படி கையிருப்பில் இல்லை!', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17749', 'lk', 'back_to_shopping', 'ஷாப்பிங்கிற்குத் திரும்பு', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17750', 'lk', 'login_to_your_account', 'உங்கள் கணக்கில் உள்நுழைக.', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17751', 'lk', 'purchase_history', 'கொள்முதல் வரலாறு', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17752', 'lk', 'new', 'புதியது', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17753', 'lk', 'downloads', 'பதிவிறக்கங்கள்', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17754', 'lk', 'sent_refund_request', 'பணத்தைத் திரும்பப்பெறும் கோரிக்கை அனுப்பப்பட்டது', '2021-02-09 13:43:49', '2021-09-20 13:00:00'),
('17755', 'lk', 'product_bulk_upload', 'தயாரிப்பு மொத்த பதிவேற்றம்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17756', 'lk', 'orders', 'ஆர்டர்கள்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17757', 'lk', 'recieved_refund_request', 'பணத்தைத் திரும்பப்பெறும் கோரிக்கை பெறப்பட்டது', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17758', 'lk', 'shop_setting', 'கடை அமைத்தல்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17759', 'lk', 'payment_history', 'கட்டண வரலாறு', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17760', 'lk', 'money_withdraw', 'பணம் திரும்பப் பெறுதல்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17761', 'lk', 'conversations', 'உரையாடல்கள்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17762', 'lk', 'my_wallet', 'என் பணப்பை', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17763', 'lk', 'earning_points', 'சம்பாதிக்கும் புள்ளிகள்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17764', 'lk', 'support_ticket', 'ஆதரவு டிக்கெட்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17765', 'lk', 'manage_profile', 'சுயவிவரத்தை நிர்வகிக்கவும்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17766', 'lk', 'sold_amount', 'விற்கப்பட்ட தொகை', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17767', 'lk', 'your_sold_amount_current_month', 'நீங்கள் விற்ற தொகை (நடப்பு மாதம்)', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17768', 'lk', 'total_sold', 'மொத்தம் விற்கப்பட்டது', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17769', 'lk', 'last_month_sold', 'கடந்த மாதம் விற்கப்பட்டது', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17770', 'lk', 'total_sale', 'மொத்த விற்பனை', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17771', 'lk', 'total_earnings', 'மொத்த வருவாய்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17772', 'lk', 'successful_orders', 'வெற்றிகரமான ஆர்டர்கள்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17773', 'lk', 'total_orders', 'மொத்த ஆர்டர்கள்', '2021-02-09 13:43:50', '2021-09-20 13:00:00'),
('17774', 'lk', 'pending_orders', 'ஆர்டர்கள் நிலுவையில் உள்ளன', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17775', 'lk', 'cancelled_orders', 'ரத்து செய்யப்பட்ட ஆர்டர்கள்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17776', 'lk', 'product', 'தயாரிப்பு', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17777', 'lk', 'purchased_package', 'வாங்கிய தொகுப்பு', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17778', 'lk', 'package_not_found', 'தொகுப்பு கிடைக்கவில்லை', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17779', 'lk', 'upgrade_package', 'தொகுப்பை மேம்படுத்தவும்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17780', 'lk', 'shop', 'கடை', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17781', 'lk', 'manage__organize_your_shop', 'உங்கள் கடையை நிர்வகிக்கவும் ஒழுங்கமைக்கவும்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17782', 'lk', 'go_to_setting', 'அமைப்பிற்குச் செல்லவும்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17783', 'lk', 'payment', 'கட்டணம்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17784', 'lk', 'configure_your_payment_method', 'உங்கள் கட்டண முறையை உள்ளமைக்கவும்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17785', 'lk', 'my_panel', 'எனது குழு', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17786', 'lk', 'item_has_been_added_to_wishlist', 'விருப்பப்பட்டியலில் உருப்படி சேர்க்கப்பட்டுள்ளது', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17787', 'lk', 'my_points', 'எனது புள்ளிகள்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17788', 'lk', '_points', 'புள்ளிகள்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17789', 'lk', 'wallet_money', 'Wallet Money', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17790', 'lk', 'exchange_rate', 'பரிமாற்ற வீதம்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17791', 'lk', 'point_earning_history', 'புள்ளி சம்பாதிக்கும் வரலாறு', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17792', 'lk', 'date', 'தேதி', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17793', 'lk', 'points', 'புள்ளிகள்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17794', 'lk', 'converted', 'மாற்றப்பட்டது', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17795', 'lk', 'action', 'செயல்', '2021-02-09 13:43:50', '2021-09-20 13:00:01'),
('17796', 'lk', 'no_history_found', 'எந்த வரலாறும் கிடைக்கவில்லை.', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17797', 'lk', 'convert_has_been_done_successfully_check_your_wallets', 'மாற்றம் வெற்றிகரமாக முடிந்தது உங்கள் பணப்பையை சரிபார்க்கவும்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17798', 'lk', 'something_went_wrong', 'ஏதோ தவறு நடந்துவிட்டது', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17799', 'lk', 'remaining_uploads', 'மீதமுள்ள பதிவேற்றங்கள்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17800', 'lk', 'no_package_found', 'தொகுப்பு எதுவும் கிடைக்கவில்லை', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17801', 'lk', 'search_product', 'தயாரிப்பு தேட', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17802', 'lk', 'name', 'பெயர்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17803', 'lk', 'current_qty', 'தற்போதைய Qty', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17804', 'lk', 'base_price', 'அடிப்படை விலை', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17805', 'lk', 'published', 'வெளியிடப்பட்டது', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17806', 'lk', 'featured', 'சிறப்பு', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17807', 'lk', 'options', 'விருப்பங்கள்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17808', 'lk', 'edit', 'தொகு', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17809', 'lk', 'duplicate', 'நகல்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17810', 'lk', '1_download_the_skeleton_file_and_fill_it_with_data', '1. எலும்புக்கூடு கோப்பை பதிவிறக்கம் செய்து தரவு நிரப்பவும்.', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17811', 'lk', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. தரவு எவ்வாறு நிரப்பப்பட வேண்டும் என்பதைப் புரிந்து கொள்ள உதாரணக் கோப்பைப் பதிவிறக்கலாம்.', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17812', 'lk', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. நீங்கள் எலும்புக்கூடு கோப்பை பதிவிறக்கம் செய்து பூர்த்தி செய்தவுடன், அதை கீழே உள்ள படிவத்தில் பதிவேற்றி சமர்ப்பிக்கவும்.', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17813', 'lk', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. தயாரிப்புகளை பதிவேற்றிய பிறகு நீங்கள் அவற்றைத் திருத்த வேண்டும் மற்றும் தயாரிப்புகளின் படங்களையும் தேர்வுகளையும் அமைக்க வேண்டும்.', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17814', 'lk', 'download_csv', 'CSV ஐ பதிவிறக்கவும்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17815', 'lk', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. வகை, துணை வகை, துணை துணை வகை மற்றும் பிராண்ட் எண் ஐடிகளில் இருக்க வேண்டும்.', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17816', 'lk', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. வகை, துணை வகை, துணை துணை வகை மற்றும் பிராண்ட் ஐடியைப் பெற நீங்கள் PDF ஐ பதிவிறக்கம் செய்யலாம்.', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17817', 'lk', 'download_category', 'வகையைப் பதிவிறக்குக', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17818', 'lk', 'download_sub_category', 'துணை வகையைப் பதிவிறக்குக', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17819', 'lk', 'download_sub_sub_category', 'துணை துணை வகையை பதிவிறக்கவும்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17820', 'lk', 'download_brand', 'பிராண்டைப் பதிவிறக்குக', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17821', 'lk', 'upload_csv_file', 'CSV கோப்பை பதிவேற்றவும்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17822', 'lk', 'csv', 'சி.எஸ்.வி.', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17823', 'lk', 'choose_csv_file', 'CSV கோப்பைத் தேர்வுசெய்க', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17824', 'lk', 'upload', 'பதிவேற்றவும்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17825', 'lk', 'add_new_digital_product', 'புதிய டிஜிட்டல் தயாரிப்பு சேர்க்கவும்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17826', 'lk', 'available_status', 'கிடைக்கும் நிலை', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17827', 'lk', 'admin_status', 'நிர்வாக நிலை', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17828', 'lk', 'pending_balance', 'நிலுவை நிலுவையில் உள்ளது', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17829', 'lk', 'send_withdraw_request', 'திரும்பப் பெறுதல் கோரிக்கையை அனுப்பவும்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17830', 'lk', 'withdraw_request_history', 'கோரிக்கை வரலாற்றைத் திரும்பப் பெறுங்கள்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17831', 'lk', 'amount', 'தொகை', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17832', 'lk', 'status', 'நிலை', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17833', 'lk', 'message', 'செய்தி', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17834', 'lk', 'send_a_withdraw_request', 'திரும்பப் பெறும் கோரிக்கையை அனுப்பவும்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17835', 'lk', 'basic_info', 'அடிப்படை தகவல்', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17836', 'lk', 'your_phone', 'உங்கள் தொலைபேசி', '2021-02-09 13:43:51', '2021-09-20 13:00:01'),
('17837', 'lk', 'photo', 'புகைப்படம்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17838', 'lk', 'browse', 'உலாவுக', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17839', 'lk', 'your_password', 'தங்களது கடவுச்சொல்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17840', 'lk', 'new_password', 'புதிய கடவுச்சொல்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17841', 'lk', 'confirm_password', 'கடவுச்சொல்லை உறுதிப்படுத்தவும்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17842', 'lk', 'add_new_address', 'புதிய முகவரியைச் சேர்க்கவும்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17843', 'lk', 'payment_setting', 'கட்டணம் அமைத்தல்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17844', 'lk', 'cash_payment', 'பண கொடுப்பனவு', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17845', 'lk', 'bank_payment', 'வங்கி கட்டணம்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17846', 'lk', 'bank_name', 'வங்கி பெயர்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17847', 'lk', 'bank_account_name', 'வங்கி கணக்கு பெயர்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17848', 'lk', 'bank_account_number', 'வங்கி கணக்கு எண்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17849', 'lk', 'bank_routing_number', 'வங்கி ரூட்டிங் எண்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17850', 'lk', 'update_profile', 'சுயவிவரத்தைப் புதுப்பிக்கவும்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17851', 'lk', 'change_your_email', 'உங்கள் மின்னஞ்சலை மாற்றவும்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17852', 'lk', 'your_email', 'உங்கள் மின்னஞ்சல்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17853', 'lk', 'sending_email', 'மின்னஞ்சல் அனுப்புகிறது ...', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17854', 'lk', 'verify', 'சரிபார்க்கவும்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17855', 'lk', 'update_email', 'மின்னஞ்சலைப் புதுப்பிக்கவும்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17856', 'lk', 'new_address', 'புதிய முகவரி', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17857', 'lk', 'your_address', 'உங்கள் முகவரி', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17858', 'lk', 'country', 'நாடு', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17859', 'lk', 'select_your_country', 'உன் நாட்டை தேர்வு செய்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17860', 'lk', 'city', 'நகரம்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17861', 'lk', 'your_city', 'உங்கள் நகரம்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17862', 'lk', 'your_postal_code', 'உங்கள் அஞ்சல் குறியீடு', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17863', 'lk', '880', '+880', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17864', 'lk', 'save', 'சேமி', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17865', 'lk', 'received_refund_request', 'பணத்தைத் திரும்பப்பெறும் கோரிக்கை பெறப்பட்டது', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17866', 'lk', 'delete_confirmation', 'உறுதிப்படுத்தலை நீக்கு', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17867', 'lk', 'are_you_sure_to_delete_this', 'இதை நீக்குவது உறுதி?', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17868', 'lk', 'premium_packages_for_sellers', 'விற்பனையாளர்களுக்கான பிரீமியம் தொகுப்புகள்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17869', 'lk', 'product_upload', 'தயாரிப்பு பதிவேற்றம்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17870', 'lk', 'digital_product_upload', 'டிஜிட்டல் தயாரிப்பு பதிவேற்றம்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17871', 'lk', 'purchase_package', 'தொகுப்பு வாங்கவும்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17872', 'lk', 'select_payment_type', 'கட்டண வகையைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17873', 'lk', 'payment_type', 'கட்டணம் வகை', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17874', 'lk', 'select_one', 'ஒன்றை தேர்ந்தெடு', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17875', 'lk', 'online_payment', 'ஆன்லைன் கட்டணம்', '2021-02-09 13:43:52', '2021-09-20 13:00:01'),
('17876', 'lk', 'offline_payment', 'ஆஃப்லைன் கட்டணம்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17877', 'lk', 'purchase_your_package', 'உங்கள் தொகுப்பை வாங்கவும்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17878', 'lk', 'paypal', 'பேபால்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17879', 'lk', 'stripe', 'கோடு', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17880', 'lk', 'sslcommerz', 'sslcommerz', '2021-02-09 13:43:53', '2021-02-09 13:43:53'),
('17881', 'lk', 'confirm', 'உறுதிப்படுத்தவும்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17882', 'lk', 'offline_package_payment', 'ஆஃப்லைன் தொகுப்பு கட்டணம்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17883', 'lk', 'transaction_id', 'பரிவர்த்தனை ஐடி', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17884', 'lk', 'choose_image', 'படத்தைத் தேர்வுசெய்க', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17885', 'lk', 'code', 'குறியீடு', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17886', 'lk', 'delivery_status', 'விநியோக நிலை', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17887', 'lk', 'payment_status', 'கட்டண நிலை', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17888', 'lk', 'paid', 'கட்டணம்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17889', 'lk', 'order_details', 'ஆணை விவரங்கள்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17890', 'lk', 'download_invoice', 'விலைப்பட்டியல் பதிவிறக்கவும்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17891', 'lk', 'unpaid', 'செலுத்தப்படாதது', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17892', 'lk', 'order_placed', 'ஆர்டர் வைக்கப்பட்டுள்ளது', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17893', 'lk', 'confirmed', 'உறுதி', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17894', 'lk', 'on_delivery', 'விநியோகத்தில்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17895', 'lk', 'delivered', 'வழங்கப்பட்டது', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17896', 'lk', 'order_summary', 'ஆர்டர் சுருக்கம்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17897', 'lk', 'order_code', 'ஆர்டர் குறியீடு', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17898', 'lk', 'customer', 'வாடிக்கையாளர்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17899', 'lk', 'total_order_amount', 'மொத்த ஆர்டர் தொகை', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17900', 'lk', 'shipping_metdod', 'ஷிப்பிங் மெட்டோட்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17901', 'lk', 'flat_shipping_rate', 'தட்டையான கப்பல் வீதம்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17902', 'lk', 'payment_metdod', 'கட்டண மெட்டோட்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17903', 'lk', 'variation', 'மாறுபாடு', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17904', 'lk', 'delivery_type', 'டெலிவரி வகை', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17905', 'lk', 'home_delivery', 'வீட்டு விநியோகம்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17906', 'lk', 'order_ammount', 'அம்மவுண்ட் ஆர்டர்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17907', 'lk', 'subtotal', 'கூட்டுத்தொகை', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17908', 'lk', 'shipping', 'கப்பல் போக்குவரத்து', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17909', 'lk', 'coupon_discount', 'கூப்பன் தள்ளுபடி', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17910', 'lk', 'na', 'ந / அ', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17911', 'lk', 'in_stock', 'கையிருப்பில்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17912', 'lk', 'buy_now', 'இப்போது வாங்க', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17913', 'lk', 'item_added_to_your_cart', 'உங்கள் வண்டியில் உருப்படி சேர்க்கப்பட்டது!', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17914', 'lk', 'proceed_to_checkout', 'புதுப்பித்தலுக்குச் செல்லவும்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17915', 'lk', 'cart_items', 'வண்டி பொருட்கள்', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17916', 'lk', '1_my_cart', '1. எனது வண்டி', '2021-02-09 13:43:53', '2021-09-20 13:00:01'),
('17917', 'lk', 'view_cart', 'வண்டியைக் காண்க', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17918', 'lk', '2_shipping_info', '2. கப்பல் தகவல்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17919', 'lk', 'checkout', 'சரிபார்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17920', 'lk', '3_delivery_info', '3. விநியோக தகவல்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17921', 'lk', '4_payment', '4. கட்டணம்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17922', 'lk', '5_confirmation', '5. உறுதிப்படுத்தல்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17923', 'lk', 'remove', 'அகற்று', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17924', 'lk', 'return_to_shop', 'கடைக்குத் திரும்பு', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17925', 'lk', 'continue_to_shipping', 'கப்பல் போக்குவரத்து தொடரவும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17926', 'lk', 'or', 'அல்லது', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17927', 'lk', 'guest_checkout', 'விருந்தாளி விடைபெறல்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17928', 'lk', 'continue_to_delivery_info', 'டெலிவரி தகவலுக்குத் தொடரவும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17929', 'lk', 'postal_code', 'அஞ்சல் குறியீடு', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17930', 'lk', 'choose_delivery_type', 'டெலிவரி வகையைத் தேர்வுசெய்க', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17931', 'lk', 'local_pickup', 'உள்ளூர் இடும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17932', 'lk', 'select_your_nearest_pickup_point', 'உங்கள் அருகிலுள்ள இடும் இடத்தைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17933', 'lk', 'continue_to_payment', 'கட்டணம் செலுத்துவதைத் தொடரவும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17934', 'lk', 'select_a_payment_option', 'கட்டண விருப்பத்தைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17935', 'lk', 'razorpay', 'ரேஸர்பே', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17936', 'lk', 'paystack', 'பேஸ்டாக்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17937', 'lk', 'voguepay', 'வோக் பே', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17938', 'lk', 'payhere', 'payhere', '2021-02-09 13:43:54', '2021-02-09 13:43:54'),
('17939', 'lk', 'ngenius', 'ngenius', '2021-02-09 13:43:54', '2021-02-09 13:43:54'),
('17940', 'lk', 'paytm', 'Paytm', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17941', 'lk', 'cash_on_delivery', 'டெலிவரி போது பணம்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17942', 'lk', 'your_wallet_balance_', 'உங்கள் பணப்பை இருப்பு:', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17943', 'lk', 'insufficient_balance', 'போதுமான இருப்பு', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17944', 'lk', 'i_agree_to_the', 'நான் இதனை ஏற்று கொள்கிறேன்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17945', 'lk', 'complete_order', 'முழுமையான ஆர்டர்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17946', 'lk', 'summary', 'சுருக்கம்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17947', 'lk', 'items', 'பொருட்களை', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17948', 'lk', 'total_club_point', 'மொத்த கிளப் புள்ளி', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17949', 'lk', 'total_shipping', 'மொத்த கப்பல் போக்குவரத்து', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17950', 'lk', 'have_coupon_code_enter_here', 'கூப்பன் குறியீடு உள்ளதா? இங்கே உள்ளிடவும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17951', 'lk', 'apply', 'விண்ணப்பிக்கவும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17952', 'lk', 'you_need_to_agree_with_our_policies', 'எங்கள் கொள்கைகளுடன் நீங்கள் உடன்பட வேண்டும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17953', 'lk', 'forgot_password', 'கடவுச்சொல்லை மறந்துவிட்டீர்களா', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17954', 'lk', 'seo_setting', 'எஸ்சிஓ அமைப்பு', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17955', 'lk', 'system_update', 'கணினி மேம்படுத்தல்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17956', 'lk', 'add_new_payment_method', 'புதிய கட்டண முறையைச் சேர்க்கவும்', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17957', 'lk', 'manual_payment_method', 'கையேடு செலுத்தும் முறை', '2021-02-09 13:43:54', '2021-09-20 13:00:01'),
('17958', 'lk', 'heading', 'தலைப்பு', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17959', 'lk', 'logo', 'லோகோ', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17960', 'lk', 'manual_payment_information', 'கையேடு செலுத்தும் தகவல்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17961', 'lk', 'type', 'வகை', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17962', 'lk', 'custom_payment', 'தனிப்பயன் கட்டணம்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17963', 'lk', 'check_payment', 'கட்டணத்தை சரிபார்க்கவும்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17964', 'lk', 'checkout_thumbnail', 'புதுப்பிப்பு சிறுபடம்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17965', 'lk', 'payment_instruction', 'கட்டண வழிமுறை', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17966', 'lk', 'bank_information', 'வங்கி தகவல்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17967', 'lk', 'select_file', 'கோப்பைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17968', 'lk', 'upload_new', 'புதியதைப் பதிவேற்றுங்கள்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17969', 'lk', 'sort_by_newest', 'புதியது மூலம் வரிசைப்படுத்து', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17970', 'lk', 'sort_by_oldest', 'பழமையானவாறு வரிசைப்படுத்து', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17971', 'lk', 'sort_by_smallest', 'மிகச்சிறிய முறையில் வரிசைப்படுத்து', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17972', 'lk', 'sort_by_largest', 'மிகப்பெரிய அளவில் வரிசைப்படுத்து', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17973', 'lk', 'selected_only', 'தேர்ந்தெடுக்கப்பட்டவை மட்டும்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17974', 'lk', 'no_files_found', 'கோப்புகள் எதுவும் கிடைக்கவில்லை', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17975', 'lk', '0_file_selected', '0 கோப்பு தேர்ந்தெடுக்கப்பட்டது', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17976', 'lk', 'clear', 'அழி', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17977', 'lk', 'prev', 'முந்தைய', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17978', 'lk', 'next', 'அடுத்தது', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17979', 'lk', 'add_files', 'கோப்புகளைச் சேர்க்கவும்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17980', 'lk', 'method_has_been_inserted_successfully', 'முறை வெற்றிகரமாக செருகப்பட்டது', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17981', 'lk', 'order_date', 'ஆர்டர் தேதி', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17982', 'lk', 'bill_to', 'பில்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17983', 'lk', 'sub_total', 'கூட்டுத்தொகை', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17984', 'lk', 'total_tax', 'மொத்த வரி', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17985', 'lk', 'grand_total', 'மொத்தம்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17986', 'lk', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'உங்கள் ஆர்டர் வெற்றிகரமாக வைக்கப்பட்டுள்ளது. கொள்முதல் வரலாற்றிலிருந்து கட்டணத் தகவலைச் சமர்ப்பிக்கவும்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17987', 'lk', 'thank_you_for_your_order', 'உங்கள் ஆர்டருக்கு நன்றி!', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17988', 'lk', 'order_code', 'ஆர்டர் குறியீடு:', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17989', 'lk', 'a_copy_or_your_order_summary_has_been_sent_to', 'ஒரு நகல் அல்லது உங்கள் ஆர்டர் சுருக்கம் அனுப்பப்பட்டுள்ளது', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17990', 'lk', 'make_payment', 'பணம் கட்டு', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17991', 'lk', 'payment_screenshot', 'கட்டண ஸ்கிரீன்ஷாட்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17992', 'lk', 'paypal_credential', 'பேபால் நற்சான்றிதழ்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17993', 'lk', 'paypal_client_id', 'பேபால் கிளையண்ட் ஐடி', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17994', 'lk', 'paypal_client_secret', 'பேபால் கிளையண்ட் ரகசியம்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17995', 'lk', 'paypal_sandbox_mode', 'பேபால் சாண்ட்பாக்ஸ் பயன்முறை', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17996', 'lk', 'sslcommerz_credential', 'Sslcommerz நற்சான்றிதழ்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17997', 'lk', 'sslcz_store_id', 'Sslcz ஸ்டோர் ஐடி', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17998', 'lk', 'sslcz_store_password', 'Sslcz ஸ்டோர் கடவுச்சொல்', '2021-02-09 13:43:55', '2021-09-20 13:00:01'),
('17999', 'lk', 'sslcommerz_sandbox_mode', 'Sslcommerz சாண்ட்பாக்ஸ் பயன்முறை', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18000', 'lk', 'stripe_credential', 'கோடு நற்சான்றிதழ்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18001', 'lk', 'stripe_key', 'ஸ்ட்ரைப் கீ', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18002', 'lk', 'stripe_secret', 'ஸ்ட்ரைப் ரகசியம்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18003', 'lk', 'razorpay_credential', 'ரேஸர்பே நற்சான்றிதழ்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18004', 'lk', 'razor_key', 'ரேஸர் கீ', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18005', 'lk', 'razor_secret', 'ரேஸர் ரகசியம்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18006', 'lk', 'instamojo_credential', 'Instamojo நற்சான்றிதழ்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18007', 'lk', 'api_key', 'API KEY', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18008', 'lk', 'im_api_key', 'IM API KEY', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18009', 'lk', 'auth_token', 'AUTH டோக்கன்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18010', 'lk', 'im_auth_token', 'IM AUTH டோக்கன்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18011', 'lk', 'instamojo_sandbox_mode', 'இன்ஸ்டாமோஜோ சாண்ட்பாக்ஸ் பயன்முறை', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18012', 'lk', 'paystack_credential', 'PayStack நற்சான்றிதழ்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18013', 'lk', 'public_key', 'பொது விசை', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18014', 'lk', 'secret_key', 'ரகசிய விசை', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18015', 'lk', 'merchant_email', 'வணிக மின்னஞ்சல்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18016', 'lk', 'voguepay_credential', 'வோக் பே நற்சான்றிதழ்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18017', 'lk', 'merchant_id', 'வணிக ஐடி', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18018', 'lk', 'sandbox_mode', 'சாண்ட்பாக்ஸ் பயன்முறை', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18019', 'lk', 'payhere_credential', 'Payhere நற்சான்றிதழ்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18020', 'lk', 'payhere_merchant_id', 'PAYHERE MERCHANT ஐடி', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18021', 'lk', 'payhere_secret', 'பேஹெர் ரகசியம்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18022', 'lk', 'payhere_currency', 'PAYHERE CURRENCY', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18023', 'lk', 'payhere_sandbox_mode', 'Payhere சாண்ட்பாக்ஸ் பயன்முறை', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18024', 'lk', 'ngenius_credential', 'Ngenius நற்சான்றிதழ்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18025', 'lk', 'ngenius_outlet_id', 'NGENIUS OUTLET ஐடி', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18026', 'lk', 'ngenius_api_key', 'NGENIUS API KEY', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18027', 'lk', 'ngenius_currency', 'NGENIUS CURRENCY', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18028', 'lk', 'mpesa_credential', 'Mpesa நற்சான்றிதழ்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18029', 'lk', 'mpesa_consumer_key', 'MPESA CONSUMER KEY', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18030', 'lk', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18031', 'lk', 'mpesa_consumer_secret', 'MPESA CONSUMER SECRET', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18032', 'lk', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18033', 'lk', 'mpesa_short_code', 'MPESA குறுகிய குறியீடு', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18034', 'lk', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18035', 'lk', 'mpesa_sandbox_activation', 'MPESA SANDBOX ACTIVATION', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18036', 'lk', 'flutterwave_credential', 'Flutterwave நற்சான்றிதழ்', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18037', 'lk', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 13:43:56', '2021-09-20 13:00:01'),
('18038', 'lk', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18039', 'lk', 'rave_title', 'RAVE_TITLE', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18040', 'lk', 'stagin_activation', 'ஸ்டேஜின் செயல்பாடு', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18041', 'lk', 'all_product', 'அனைத்து தயாரிப்பு', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18042', 'lk', 'sort_by', 'மூலம் வரிசைப்படுத்து', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18043', 'lk', 'rating_high__low', 'மதிப்பீடு (உயர்> குறைந்த)', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18044', 'lk', 'rating_low__high', 'மதிப்பீடு (குறைந்த> உயர்)', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18045', 'lk', 'num_of_sale_high__low', 'விற்பனையின் எண்ணிக்கை (உயர்> குறைந்த)', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18046', 'lk', 'num_of_sale_low__high', 'விற்பனையின் எண்ணிக்கை (குறைந்த> உயர்)', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18047', 'lk', 'base_price_high__low', 'அடிப்படை விலை (உயர்> குறைந்த)', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18048', 'lk', 'base_price_low__high', 'அடிப்படை விலை (குறைந்த> உயர்)', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18049', 'lk', 'type__enter', 'தட்டச்சு செய்து உள்ளிடவும்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18050', 'lk', 'added_by', 'மூலம் சேர்க்கப்பட்டது', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18051', 'lk', 'num_of_sale', 'விற்பனை எண்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18052', 'lk', 'total_stock', 'மொத்த பங்கு', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18053', 'lk', 'todays_deal', 'இன்றைய ஒப்பந்தம்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18054', 'lk', 'rating', 'மதிப்பீடு', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18055', 'lk', 'times', 'முறை', '2021-02-09 13:43:57', '2021-02-09 13:43:57'),
('18056', 'lk', 'add_nerw_product', 'நெர்வ் தயாரிப்பு சேர்க்கவும்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18057', 'lk', 'product_information', 'பண்டத்தின் விபரங்கள்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18058', 'lk', 'unit', 'அலகு', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18059', 'lk', 'unit_eg_kg_pc_etc', 'அலகு (எ.கா. கே.ஜி., பி.சி போன்றவை)', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18060', 'lk', 'minimum_qty', 'குறைந்தபட்ச Qty', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18061', 'lk', 'tags', 'குறிச்சொற்கள்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18062', 'lk', 'type_and_hit_enter_to_add_a_tag', 'குறிச்சொல்லைச் சேர்க்க Enter என தட்டச்சு செய்து அழுத்தவும்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18063', 'lk', 'barcode', 'பார்கோடு', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18064', 'lk', 'refundable', 'திரும்பப்பெறக்கூடியது', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18065', 'lk', 'product_images', 'தயாரிப்பு படங்கள்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18066', 'lk', 'gallery_images', 'கேலரி படங்கள்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18067', 'lk', 'todays_deal_updated_successfully', 'இன்றைய ஒப்பந்தம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18068', 'lk', 'published_products_updated_successfully', 'வெளியிடப்பட்ட தயாரிப்புகள் வெற்றிகரமாக புதுப்பிக்கப்பட்டன', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18069', 'lk', 'thumbnail_image', 'சிறு படம்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18070', 'lk', 'featured_products_updated_successfully', 'சிறப்பு தயாரிப்புகள் வெற்றிகரமாக புதுப்பிக்கப்பட்டன', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18071', 'lk', 'product_videos', 'தயாரிப்பு வீடியோக்கள்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18072', 'lk', 'video_provider', 'வீடியோ வழங்குநர்', '2021-02-09 13:43:57', '2021-09-20 13:00:01'),
('18073', 'lk', 'youtube', 'வலைஒளி', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18074', 'lk', 'dailymotion', 'டெய்லிமோஷன்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18075', 'lk', 'vimeo', 'விமியோ', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18076', 'lk', 'video_link', 'வீடியோ இணைப்பு', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18077', 'lk', 'product_variation', 'தயாரிப்பு மாறுபாடு', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18078', 'lk', 'colors', 'வண்ணங்கள்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18079', 'lk', 'attributes', 'பண்புக்கூறுகள்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18080', 'lk', 'choose_attributes', 'பண்புகளைத் தேர்வுசெய்க', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18081', 'lk', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'இந்த தயாரிப்பின் பண்புகளைத் தேர்வுசெய்து ஒவ்வொரு பண்புகளின் உள்ளீட்டு மதிப்புகளையும் தேர்வு செய்யவும்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18082', 'lk', 'product_price__stock', 'தயாரிப்பு விலை + பங்கு', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18083', 'lk', 'unit_price', 'அலகு விலை', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18084', 'lk', 'purchase_price', 'கொள்முதல் விலை', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18085', 'lk', 'flat', 'பிளாட்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18086', 'lk', 'percent', 'சதவீதம்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18087', 'lk', 'discount', 'தள்ளுபடி', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18088', 'lk', 'product_description', 'தயாரிப்பு விளக்கம்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18089', 'lk', 'product_shipping_cost', 'தயாரிப்பு கப்பல் செலவு', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18090', 'lk', 'free_shipping', 'இலவச கப்பல் போக்குவரத்து', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18091', 'lk', 'flat_rate', 'பிளாட் வீதம்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18092', 'lk', 'shipping_cost', 'கப்பல் செலவு', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18093', 'lk', 'pdf_specification', 'PDF விவரக்குறிப்பு', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18094', 'lk', 'seo_meta_tags', 'எஸ்சிஓ மெட்டா குறிச்சொற்கள்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18095', 'lk', 'meta_title', 'மெட்டா தலைப்பு', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18096', 'lk', 'meta_image', 'மெட்டா படம்', '2021-02-09 13:43:58', '2021-09-20 13:00:01'),
('18097', 'lk', 'choice_title', 'தேர்வு தலைப்பு', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18098', 'lk', 'enter_choice_values', 'தேர்வு மதிப்புகளை உள்ளிடவும்', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18099', 'lk', 'all_categories', 'அனைத்து வகைகளும்', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18100', 'lk', 'add_new_category', 'புதிய வகையைச் சேர்க்கவும்', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18101', 'lk', 'type_name__enter', 'பெயரைத் தட்டச்சு செய்து உள்ளிடவும்', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18102', 'lk', 'banner', 'பதாகை', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18103', 'lk', 'commission', 'தரகு', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18104', 'lk', 'icon', 'ஐகான்', '2021-02-09 13:43:58', '2021-02-09 13:43:58'),
('18105', 'lk', 'featured_categories_updated_successfully', 'சிறப்பு பிரிவுகள் வெற்றிகரமாக புதுப்பிக்கப்பட்டன', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18106', 'lk', 'hot', 'சூடாக', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18107', 'lk', 'filter_by_payment_status', 'கட்டண நிலை மூலம் வடிகட்டவும்', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18108', 'lk', 'unpaid', 'செலுத்தப்படாதது', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18109', 'lk', 'filter_by_deliver_status', 'நிலையை வழங்குவதன் மூலம் வடிகட்டவும்', '2021-02-09 13:43:58', '2021-09-20 13:00:02'),
('18110', 'lk', 'pending', 'நிலுவையில் உள்ளது', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18111', 'lk', 'type_order_code__hit_enter', 'ஆர்டர் குறியீட்டைத் தட்டச்சு செய்து Enter ஐ அழுத்தவும்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18112', 'lk', 'num_of_products', 'எண். தயாரிப்புகள்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18113', 'lk', 'walk_in_customer', 'வாடிக்கையாளராக நடந்து செல்லுங்கள்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18114', 'lk', 'qty', 'QTY', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18115', 'lk', 'without_shipping_charge', 'கப்பல் கட்டணம் இல்லாமல்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18116', 'lk', 'with_shipping_charge', 'கப்பல் கட்டணத்துடன்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18117', 'lk', 'pay_with_cash', 'பணத்துடன் செலுத்துங்கள்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18118', 'lk', 'shipping_address', 'சேரும் முகவரி', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18119', 'lk', 'close', 'நெருக்கமான', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18120', 'lk', 'select_country', 'நாட்டினை தேர்வுசெய்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18121', 'lk', 'order_confirmation', 'ஆர்டர் உறுதிப்படுத்தல்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18122', 'lk', 'are_you_sure_to_confirm_this_order', 'இந்த ஆர்டரை உறுதிப்படுத்துவது உறுதி?', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18123', 'lk', 'comfirm_order', 'உத்தரவை உறுதிப்படுத்தவும்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18124', 'lk', 'personal_info', 'தனிப்பட்ட தகவல்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18125', 'lk', 'repeat_password', 'ரகசிய குறியீட்டை திரும்பச்சொல்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18126', 'lk', 'shop_name', 'கடை பெயர்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18127', 'lk', 'register_your_shop', 'உங்கள் கடையை பதிவு செய்யுங்கள்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18128', 'lk', 'affiliate_informations', 'இணைப்பு தகவல்கள்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18129', 'lk', 'affiliate', 'தொடர்புடைய', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18130', 'lk', 'user_info', 'பயனர் தகவல்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18131', 'lk', 'installed_addon', 'நிறுவப்பட்ட ஆடான்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18132', 'lk', 'available_addon', 'கிடைக்கும் Addon', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18133', 'lk', 'install_new_addon', 'புதிய துணை நிரலை நிறுவவும்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18134', 'lk', 'version', 'பதிப்பு', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18135', 'lk', 'activated', 'செயல்படுத்தப்பட்டது', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18136', 'lk', 'deactivated', 'செயலிழக்கப்பட்டது', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18137', 'lk', 'activate_otp', 'OTP ஐ செயல்படுத்தவும்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18138', 'lk', 'otp_will_be_used_for', 'OTP இதற்கு பயன்படுத்தப்படும்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18139', 'lk', 'settings_updated_successfully', 'அமைப்புகள் வெற்றிகரமாக புதுப்பிக்கப்பட்டன', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18140', 'lk', 'product_owner', 'தயாரிப்பு உரிமையாளர்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18141', 'lk', 'point', 'புள்ளி', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18142', 'lk', 'set_point_for_product_within_a_range', 'ஒரு எல்லைக்குள் தயாரிப்புக்கான புள்ளி அமைக்கவும்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18143', 'lk', 'set_point_for_multiple_products', 'பல தயாரிப்புகளுக்கான புள்ளி அமை', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18144', 'lk', 'min_price', 'குறைந்தபட்ச விலை', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18145', 'lk', 'max_price', 'அதிகபட்ச விலை', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18146', 'lk', 'set_point_for_all_products', 'அனைத்து தயாரிப்புகளுக்கும் புள்ளி அமைக்கவும்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18147', 'lk', 'set_point_for_', 'புள்ளி அமைக்கவும்', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18148', 'lk', 'convert_status', 'நிலையை மாற்று', '2021-02-09 13:43:59', '2021-09-20 13:00:02'),
('18149', 'lk', 'earned_at', 'இல் சம்பாதித்தார்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18150', 'lk', 'seller_based_selling_report', 'விற்பனையாளர் அடிப்படையிலான விற்பனை அறிக்கை', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18151', 'lk', 'sort_by_verificarion_status', 'சரிபார்ப்பு நிலை மூலம் வரிசைப்படுத்து', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18152', 'lk', 'approved', 'அங்கீகரிக்கப்பட்டது', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18153', 'lk', 'non_approved', 'அங்கீகரிக்கப்படவில்லை', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18154', 'lk', 'filter', 'வடிகட்டி', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18155', 'lk', 'seller_name', 'விற்பனையாளர் பெயர்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18156', 'lk', 'number_of_product_sale', 'தயாரிப்பு விற்பனையின் எண்ணிக்கை', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18157', 'lk', 'order_amount', 'ஆர்டர் தொகை', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18158', 'lk', 'facebook_chat_setting', 'பேஸ்புக் அரட்டை அமைப்பு', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18159', 'lk', 'facebook_page_id', 'பேஸ்புக் பக்க ஐடி', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18160', 'lk', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'நீங்கள் பேஸ்புக் அரட்டையை உள்ளமைக்கும்போது கவனமாக இருங்கள். தவறான உள்ளமைவுக்கு உங்கள் பயனர் இறுதி தளத்தில் மெசஞ்சர் ஐகானைப் பெற மாட்டீர்கள்.', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18161', 'lk', 'login_into_your_facebook_page', 'உங்கள் முகநூல் பக்கத்தில் உள்நுழைக', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18162', 'lk', 'find_the_about_option_of_your_facebook_page', 'உங்கள் ஃபேஸ்புக் பக்கத்தின் அறிமுகம் விருப்பத்தைக் கண்டறியவும்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18163', 'lk', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'மிகவும் கீழே, நீங்கள் Facebook “பேஸ்புக் பக்க ஐடி \\” ஐக் காணலாம்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18164', 'lk', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'உங்கள் பக்கத்தின் அமைப்புகளுக்குச் சென்று Adv \"அட்வான்ஸ் மெசேஜிங் of\" விருப்பத்தைக் கண்டறியவும்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18165', 'lk', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'அந்தப் பக்கத்தை உருட்டவும், நீங்கள் white \"வெள்ளை பட்டியலிடப்பட்ட டொமைன் get\" பெறுவீர்கள்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18166', 'lk', 'set_your_website_domain_name', 'உங்கள் வலைத்தள டொமைன் பெயரை அமைக்கவும்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18167', 'lk', 'google_recaptcha_setting', 'Google reCAPTCHA அமைத்தல்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18168', 'lk', 'site_key', 'தள KEY', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18169', 'lk', 'select_shipping_method', 'கப்பல் முறை என்பதைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18170', 'lk', 'product_wise_shipping_cost', 'தயாரிப்பு விவேகமான கப்பல் செலவு', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18171', 'lk', 'flat_rate_shipping_cost', 'பிளாட் வீதம் கப்பல் செலவு', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18172', 'lk', 'seller_wise_flat_shipping_cost', 'விற்பனையாளர் வைஸ் பிளாட் ஷிப்பிங் செலவு', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18173', 'lk', 'note', 'குறிப்பு', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18174', 'lk', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'தயாரிப்பு விவேகமான கப்பல் செலவு கணக்கீடு: ஒவ்வொரு தயாரிப்பு கப்பல் செலவையும் சேர்த்து கப்பல் செலவு கணக்கிடப்படுகிறது', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18175', 'lk', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'பிளாட் ரேட் ஷிப்பிங் செலவு கணக்கீடு: வாடிக்கையாளர் எத்தனை தயாரிப்புகளை வாங்குகிறார் என்பது முக்கியமல்ல. கப்பல் செலவு நிர்ணயிக்கப்பட்டுள்ளது', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18176', 'lk', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'விற்பனையாளர் வைஸ் பிளாட் ஷிப்பிங் செலவு கணக்கீடு: ஒவ்வொரு விற்பனையாளருக்கும் நிலையான வீதம். ஒரு வாடிக்கையாளர் இரண்டு விற்பனையாளர் கப்பல் செலவில் இருந்து 2 தயாரிப்பு வாங்கினால், ஒவ்வொரு விற்பனையாளரின் பிளாட் ஷிப்பிங் செலவையும் சேர்த்து கணக்கிடப்படுகிறது', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18177', 'lk', 'flat_rate_cost', 'பிளாட் வீத செலவு', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18178', 'lk', 'shipping_cost_for_admin_products', 'நிர்வாக தயாரிப்புகளுக்கான கப்பல் செலவு', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18179', 'lk', 'countries', 'நாடுகள்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18180', 'lk', 'showhide', 'காட்டு / மறை', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18181', 'lk', 'country_status_updated_successfully', 'நாட்டின் நிலை வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18182', 'lk', 'all_subcategories', 'அனைத்து துணைப்பிரிவுகளும்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18183', 'lk', 'add_new_subcategory', 'புதிய துணைப்பிரிவைச் சேர்க்கவும்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18184', 'lk', 'subcategories', 'துணை வகைகள்', '2021-02-09 13:44:00', '2021-09-20 13:00:02'),
('18185', 'lk', 'sub_category_information', 'துணை வகை தகவல்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18186', 'lk', 'slug', 'ஸ்லக்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18187', 'lk', 'all_sub_subcategories', 'அனைத்து துணை துணைப்பிரிவுகள்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18188', 'lk', 'add_new_sub_subcategory', 'புதிய துணை துணைப்பிரிவைச் சேர்க்கவும்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18189', 'lk', 'subsubcategories', 'துணை துணை பிரிவுகள்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18190', 'lk', 'make_this_default', 'இதை இயல்புநிலையாக்குங்கள்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18191', 'lk', 'shops', 'கடைகள்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18192', 'lk', 'women_clothing__fashion', 'பெண்கள் ஆடை & ஃபேஷன்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18193', 'lk', 'cellphones__tabs', 'செல்போன்கள் மற்றும் தாவல்கள்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18194', 'lk', 'welcome_to', 'வரவேற்கிறோம்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18195', 'lk', 'create_a_new_account', 'புதிய கணக்கை துவங்கு', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18196', 'lk', 'full_name', 'முழு பெயர்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18197', 'lk', 'password', 'கடவுச்சொல்', '2021-02-09 13:44:40', '2021-02-09 13:44:40'),
('18198', 'lk', 'confrim_password', 'கடவுச்சொல்லை உறுதிப்படுத்தவும்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18199', 'lk', 'i_agree_with_the', 'நான் உடன்படுகிறேன்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18200', 'lk', 'terms_and_conditions', 'விதிமுறைகள் மற்றும் நிபந்தனைகள்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18201', 'lk', 'register', 'பதிவு', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18202', 'lk', 'already_have_an_account', 'ஏற்கனவே ஒரு கணக்கு உள்ளதா', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18203', 'lk', 'sign_up_with', 'உடன் பதிவுபெறுக', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18204', 'lk', 'i_agree_with_the_terms_and_conditions', 'விதிமுறைகள் மற்றும் நிபந்தனைகளுடன் நான் உடன்படுகிறேன்', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18205', 'lk', 'all_role', 'அனைத்து பங்கு', '2021-02-09 13:44:40', '2021-09-20 13:00:02'),
('18206', 'lk', 'add_new_role', 'புதிய பாத்திரத்தைச் சேர்க்கவும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18207', 'lk', 'roles', 'பாத்திரங்கள்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18208', 'lk', 'add_new_staffs', 'புதிய பணியாளர்களைச் சேர்க்கவும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18209', 'lk', 'role', 'பங்கு', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18210', 'lk', 'frontend_website_name', 'முன்பக்க வலைத்தள பெயர்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18211', 'lk', 'website_name', 'வலைத்தளத்தின் பெயர்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18212', 'lk', 'site_motto', 'தள குறிக்கோள்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18213', 'lk', 'best_ecommerce_website', 'சிறந்த இணையவழி வலைத்தளம்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18214', 'lk', 'site_icon', 'தள ஐகான்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18215', 'lk', 'website_favicon_32x32_png', 'வலைத்தளம் ஃபேவிகான். 32x32 .png', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18216', 'lk', 'website_base_color', 'வலைத்தள அடிப்படை வண்ணம்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18217', 'lk', 'hex_color_code', 'ஹெக்ஸ் வண்ண குறியீடு', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18218', 'lk', 'website_base_hover_color', 'வலைத்தள அடிப்படை ஹோவர் வண்ணம்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18219', 'lk', 'update', 'புதுப்பிப்பு', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18220', 'lk', 'global_seo', 'உலகளாவிய எஸ்சிஓ', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18221', 'lk', 'meta_description', 'மெட்டா விளக்கம்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18222', 'lk', 'keywords', 'முக்கிய வார்த்தைகள்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18223', 'lk', 'separate_with_coma', 'கோமாவுடன் பிரிக்கவும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18224', 'lk', 'website_pages', 'வலைத்தள பக்கங்கள்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18225', 'lk', 'all_pages', 'அனைத்து பக்கங்களும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18226', 'lk', 'add_new_page', 'புதிய பக்கத்தைச் சேர்க்கவும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18227', 'lk', 'url', 'URL', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18228', 'lk', 'actions', 'செயல்கள்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18229', 'lk', 'edit_page_information', 'பக்கத் தகவலைத் திருத்துக', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18230', 'lk', 'page_content', 'பக்க உள்ளடக்கம்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18231', 'lk', 'title', 'தலைப்பு', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18232', 'lk', 'link', 'இணைப்பு', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18233', 'lk', 'use_character_number_hypen_only', 'எழுத்து, எண், ஹைபன் மட்டும் பயன்படுத்தவும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18234', 'lk', 'add_content', 'உள்ளடக்கத்தைச் சேர்க்கவும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18235', 'lk', 'seo_fields', 'எஸ்சிஓ புலங்கள்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18236', 'lk', 'update_page', 'பக்கத்தைப் புதுப்பிக்கவும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18237', 'lk', 'default_language', 'இயல்புநிலை மொழி', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18238', 'lk', 'add_new_language', 'புதிய மொழியைச் சேர்க்கவும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18239', 'lk', 'rtl', 'ஆர்.டி.எல்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18240', 'lk', 'translation', 'மொழிபெயர்ப்பு', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18241', 'lk', 'language_information', 'மொழி தகவல்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18242', 'lk', 'save_page', 'பக்கத்தைச் சேமிக்கவும்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18243', 'lk', 'home_page_settings', 'முகப்பு பக்க அமைப்புகள்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18244', 'lk', 'home_slider', 'முகப்பு ஸ்லைடர்', '2021-02-09 13:44:41', '2021-09-20 13:00:02'),
('18245', 'lk', 'photos__links', 'புகைப்படங்கள் & இணைப்புகள்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18246', 'lk', 'add_new', 'புதிதாக சேர்க்கவும்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18247', 'lk', 'home_categories', 'வீட்டு வகைகள்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18248', 'lk', 'home_banner_1_max_3', 'முகப்பு பேனர் 1 (அதிகபட்சம் 3)', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18249', 'lk', 'banner__links', 'பேனர் & இணைப்புகள்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18250', 'lk', 'home_banner_2_max_3', 'முகப்பு பேனர் 2 (அதிகபட்சம் 3)', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18251', 'lk', 'top_10', 'முதல் 10', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18252', 'lk', 'top_categories_max_10', 'சிறந்த வகைகள் (அதிகபட்சம் 10)', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18253', 'lk', 'top_brands_max_10', 'சிறந்த பிராண்டுகள் (அதிகபட்சம் 10)', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18254', 'lk', 'system_name', 'கணினி பெயர்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18255', 'lk', 'system_logo__white', 'கணினி லோகோ - வெள்ளை', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18256', 'lk', 'choose_files', 'கோப்புகளைத் தேர்வுசெய்க', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18257', 'lk', 'will_be_used_in_admin_panel_side_menu', 'நிர்வாக குழு பக்க மெனுவில் பயன்படுத்தப்படும்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18258', 'lk', 'system_logo__black', 'கணினி லோகோ - கருப்பு', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18259', 'lk', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'மொபைல் + நிர்வாக உள்நுழைவு பக்கத்தில் நிர்வாக குழு டாப்பாரில் பயன்படுத்தப்படும்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18260', 'lk', 'system_timezone', 'கணினி நேர மண்டலம்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18261', 'lk', 'admin_login_page_background', 'நிர்வாகி உள்நுழைவு பக்க பின்னணி', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18262', 'lk', 'website_header', 'வலைத்தள தலைப்பு', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18263', 'lk', 'header_setting', 'தலைப்பு அமைத்தல்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18264', 'lk', 'header_logo', 'தலைப்பு லோகோ', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18265', 'lk', 'show_language_switcher', 'மொழி மாற்றியைக் காண்பிக்கவா?', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18266', 'lk', 'show_currency_switcher', 'நாணய மாற்றியைக் காண்பிக்கவா?', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18267', 'lk', 'enable_stikcy_header', 'ஸ்டிக்கி தலைப்பை இயக்கவா?', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18268', 'lk', 'website_footer', 'வலைத்தள அடிக்குறிப்பு', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18269', 'lk', 'footer_widget', 'அடிக்குறிப்பு சாளரம்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18270', 'lk', 'about_widget', 'சாளரம் பற்றி', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18271', 'lk', 'footer_logo', 'அடிக்குறிப்பு லோகோ', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18272', 'lk', 'about_description', 'விளக்கம் பற்றி', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18273', 'lk', 'contact_info_widget', 'தகவல் விட்ஜெட்டை தொடர்பு கொள்ளவும்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18274', 'lk', 'footer_contact_address', 'அடிக்குறிப்பு தொடர்பு முகவரி', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18275', 'lk', 'footer_contact_phone', 'அடிக்குறிப்பு தொடர்பு தொலைபேசி', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18276', 'lk', 'footer_contact_email', 'அடிக்குறிப்பு தொடர்பு மின்னஞ்சல்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18277', 'lk', 'link_widget_one', 'இணைப்பு விட்ஜெட் ஒன்று', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18278', 'lk', 'links', 'இணைப்புகள்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18279', 'lk', 'footer_bottom', 'அடிக்குறிப்பு கீழே', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18280', 'lk', 'copyright_widget_', 'பதிப்புரிமை சாளரம்', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18281', 'lk', 'copyright_text', 'பதிப்புரிமை உரை', '2021-02-09 13:44:42', '2021-09-20 13:00:02'),
('18282', 'lk', 'social_link_widget_', 'சமூக இணைப்பு சாளரம்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18283', 'lk', 'show_social_links', 'சமூக இணைப்புகளைக் காண்பிக்கவா?', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18284', 'lk', 'social_links', 'சமூக இணைப்புகள்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18285', 'lk', 'payment_methods_widget_', 'கட்டண முறைகள் விட்ஜெட்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18286', 'lk', 'rtl_status_updated_successfully', 'ஆர்டிஎல் நிலை வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18287', 'lk', 'language_changed_to_', 'மொழி மாற்றப்பட்டது', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18288', 'lk', 'inhouse_product_sale_report', 'உள்ளக தயாரிப்பு விற்பனை அறிக்கை', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18289', 'lk', 'sort_by_category', 'வகைப்படி வரிசைப்படுத்து', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18290', 'lk', 'product_wise_stock_report', 'தயாரிப்பு வாரியாக பங்கு அறிக்கை', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18291', 'lk', 'currency_changed_to_', 'நாணயம் மாற்றப்பட்டது', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18292', 'lk', 'avatar', 'அவதார்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18293', 'lk', 'copy', 'நகலெடுக்கவும்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18294', 'lk', 'variant', 'மாறுபாடு', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18295', 'lk', 'variant_price', 'மாறுபாடு விலை', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18296', 'lk', 'sku', 'எஸ்.கே.யு.', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18297', 'lk', 'key', 'விசை', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18298', 'lk', 'value', 'மதிப்பு', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18299', 'lk', 'copy_translations', 'மொழிபெயர்ப்புகளை நகலெடுக்கவும்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18300', 'lk', 'all_pickup_points', 'அனைத்து பிக்-அப் புள்ளிகள்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18301', 'lk', 'add_new_pickup_point', 'புதிய பிக்-அப் புள்ளியைச் சேர்க்கவும்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18302', 'lk', 'manager', 'மேலாளர்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18303', 'lk', 'location', 'இடம்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18304', 'lk', 'pickup_station_contact', 'இடும் நிலைய தொடர்பு', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18305', 'lk', 'open', 'திற', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18306', 'lk', 'pos_activation_for_seller', 'விற்பனையாளருக்கான பிஓஎஸ் செயல்படுத்தல்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18307', 'lk', 'order_completed_successfully', 'ஆர்டர் வெற்றிகரமாக முடிந்தது.', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18308', 'lk', 'text_input', 'உரை உள்ளீடு', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18309', 'lk', 'select', 'தேர்ந்தெடு', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18310', 'lk', 'multiple_select', 'பல தேர்வு', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18311', 'lk', 'radio', 'வானொலி', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18312', 'lk', 'file', 'கோப்பு', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18313', 'lk', 'email_address', 'மின்னஞ்சல் முகவரி', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18314', 'lk', 'verification_info', 'சரிபார்ப்பு தகவல்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18315', 'lk', 'approval', 'ஒப்புதல்', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18316', 'lk', 'due_amount', 'நிலுவை தொகை', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18317', 'lk', 'show', 'காட்டு', '2021-02-09 13:44:43', '2021-09-20 13:00:02'),
('18318', 'lk', 'pay_now', 'இப்போது செலுத்த', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18319', 'lk', 'affiliate_user_verification', 'இணைப்பு பயனர் சரிபார்ப்பு', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18320', 'lk', 'reject', 'நிராகரி', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18321', 'lk', 'accept', 'ஏற்றுக்கொள்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18322', 'lk', 'beauty_health__hair', 'அழகு, உடல்நலம் மற்றும் முடி', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18323', 'lk', 'comparison', 'ஒப்பீடு', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18324', 'lk', 'reset_compare_list', 'பட்டியலை ஒப்பிடுக மீட்டமை', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18325', 'lk', 'your_comparison_list_is_empty', 'உங்கள் ஒப்பீட்டு பட்டியல் காலியாக உள்ளது', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18326', 'lk', 'convert_point_to_wallet', 'புள்ளியை பணப்பையாக மாற்றவும்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18327', 'lk', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'குறிப்பு: கிளப் பாயிண்ட் ஆடோனைப் பயன்படுத்துவதற்கு முன்பு நீங்கள் முதலில் பணப்பை விருப்பத்தை செயல்படுத்த வேண்டும்.', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18328', 'lk', 'create_an_account', 'ஒரு கணக்கை உருவாக்க.', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18329', 'lk', 'use_email_instead', 'அதற்கு பதிலாக மின்னஞ்சல் பயன்படுத்தவும்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18330', 'lk', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'பதிவுபெறுவதன் மூலம் எங்கள் விதிமுறைகளையும் நிபந்தனைகளையும் ஒப்புக்கொள்கிறீர்கள்.', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18331', 'lk', 'create_account', 'உங்கள் கணக்கை துவங்குங்கள்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18332', 'lk', 'or_join_with', 'அல்லது சேரவும்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18333', 'lk', 'already_have_an_account', 'ஏற்கனவே ஒரு கணக்கு உள்ளதா?', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18334', 'lk', 'log_in', 'உள்நுழைய', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18335', 'lk', 'computer__accessories', 'கணினி மற்றும் பாகங்கள்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18336', 'lk', 'products', 'தயாரிப்பு (கள்)', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18337', 'lk', 'in_your_cart', 'உங்கள் வண்டியில்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18338', 'lk', 'in_your_wishlist', 'உங்கள் விருப்பப்பட்டியலில்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18339', 'lk', 'you_ordered', 'நீங்கள் உத்தரவிட்டீர்கள்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18340', 'lk', 'default_shipping_address', 'இயல்புநிலை கப்பல் முகவரி', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18341', 'lk', 'sports__outdoor', 'விளையாட்டு மற்றும் வெளிப்புறம்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18342', 'lk', 'copied', 'நகலெடுக்கப்பட்டது', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18343', 'lk', 'copy_the_promote_link', 'விளம்பர இணைப்பை நகலெடுக்கவும்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18344', 'lk', 'write_a_review', 'ஒரு விமர்சனம் எழுத', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18345', 'lk', 'your_name', 'உங்கள் பெயர்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18346', 'lk', 'comment', 'கருத்து', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18347', 'lk', 'your_review', 'உங்கள் விமர்சனம்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18348', 'lk', 'submit_review', 'விமர்சனத்தை சமர்ப்பிக்கவும்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18349', 'lk', 'claire_willis', 'கிளாரி வில்லிஸ்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18350', 'lk', 'germaine_greene', 'ஜெர்மைன் கிரீன்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18351', 'lk', 'product_file', 'தயாரிப்பு கோப்பு', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18352', 'lk', 'choose_file', 'கோப்பை தேர்ந்தெடுங்கள்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18353', 'lk', 'type_to_add_a_tag', 'குறிச்சொல்லைச் சேர்க்க தட்டச்சு செய்க', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18354', 'lk', 'images', 'படங்கள்', '2021-02-09 13:44:44', '2021-09-20 13:00:02'),
('18355', 'lk', 'main_images', 'முக்கிய படங்கள்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18356', 'lk', 'meta_tags', 'மெட்டா குறிச்சொற்கள்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18357', 'lk', 'digital_product_has_been_inserted_successfully', 'டிஜிட்டல் தயாரிப்பு வெற்றிகரமாக செருகப்பட்டுள்ளது', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18358', 'lk', 'edit_digital_product', 'டிஜிட்டல் தயாரிப்பைத் திருத்து', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18359', 'lk', 'select_an_option', 'ஒரு விருப்பத்தைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18360', 'lk', 'tax', 'வரி', '2021-02-09 13:44:45', '2021-02-09 13:44:45'),
('18361', 'lk', 'any_question_about_this_product', 'இந்த தயாரிப்பு பற்றி ஏதேனும் கேள்வி இருக்கிறதா?', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18362', 'lk', 'sign_in', 'உள்நுழைக', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18363', 'lk', 'login_with_google', 'Google உடன் உள்நுழைக', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18364', 'lk', 'login_with_facebook', 'பேஸ்புக் மூலம் உள்நுழைக', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18365', 'lk', 'login_with_twitter', 'ட்விட்டரில் உள்நுழைக', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18366', 'lk', 'click_to_show_phone_number', 'தொலைபேசி எண்ணைக் காட்ட கிளிக் செய்க', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18367', 'lk', 'other_ads_of', 'பிற விளம்பரங்கள்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18368', 'lk', 'store_home', 'வீட்டில் சேமிக்கவும்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18369', 'lk', 'top_selling', 'சிறந்த விற்பனை', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18370', 'lk', 'shop_settings', 'கடை அமைப்புகள்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18371', 'lk', 'visit_shop', 'கடைக்குச் செல்லவும்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18372', 'lk', 'pickup_points', 'இடும் புள்ளிகள்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18373', 'lk', 'select_pickup_point', 'பிக்கப் பாயிண்டைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18374', 'lk', 'slider_settings', 'ஸ்லைடர் அமைப்புகள்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18375', 'lk', 'social_media_link', 'சமூக ஊடக இணைப்பு', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18376', 'lk', 'facebook', 'முகநூல்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18377', 'lk', 'twitter', 'ட்விட்டர்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18378', 'lk', 'google', 'கூகிள்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18379', 'lk', 'new_arrival_products', 'புதிய வருகை தயாரிப்புகள்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18380', 'lk', 'check_your_order_status', 'உங்கள் ஆர்டர் நிலையை சரிபார்க்கவும்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18381', 'lk', 'shipping_method', 'கப்பல் முறை', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18382', 'lk', 'shipped_by', 'அனுப்பப்பட்டது', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18383', 'lk', 'image', 'படம்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18384', 'lk', 'sub_sub_category', 'துணை துணை வகை', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18385', 'lk', 'inhouse_products', 'உள் தயாரிப்புகள்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18386', 'lk', 'forgot_password', 'கடவுச்சொல்லை மறந்துவிட்டீர்களா?', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18387', 'lk', 'enter_your_email_address_to_recover_your_password', 'உங்கள் கடவுச்சொல்லை மீட்டெடுக்க உங்கள் மின்னஞ்சல் முகவரியை உள்ளிடவும்.', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18388', 'lk', 'email_or_phone', 'மின்னஞ்சல் அல்லது தொலைபேசி', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18389', 'lk', 'send_password_reset_link', 'கடவுச்சொல் மீட்டமைப்பு இணைப்பை அனுப்பவும்', '2021-02-09 13:44:45', '2021-09-20 13:00:02'),
('18390', 'lk', 'back_to_login', 'உள்நுழைவுக்குத் திரும்பு', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18391', 'lk', 'index', 'குறியீட்டு', '2021-02-09 13:44:46', '2021-02-09 13:44:46'),
('18392', 'lk', 'download_your_product', 'உங்கள் தயாரிப்பைப் பதிவிறக்கவும்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18393', 'lk', 'option', 'விருப்பம்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18394', 'lk', 'applied_refund_request', 'பயன்பாட்டு பணத்தைத் திரும்பப்பெறுதல் கோரிக்கை', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18395', 'lk', 'item_has_been_renoved_from_wishlist', 'விருப்பப்பட்டியலில் இருந்து உருப்படி புதுப்பிக்கப்பட்டது', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18396', 'lk', 'bulk_products_upload', 'மொத்த தயாரிப்புகள் பதிவேற்றம்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18397', 'lk', 'upload_csv', 'CSV ஐ பதிவேற்றுக', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18398', 'lk', 'create_a_ticket', 'ஒரு டிக்கெட்டை உருவாக்கவும்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18399', 'lk', 'tickets', 'டிக்கெட்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18400', 'lk', 'ticket_id', 'டிக்கெட் ஐடி', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18401', 'lk', 'sending_date', 'அனுப்பும் தேதி', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18402', 'lk', 'subject', 'பொருள்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18403', 'lk', 'view_details', 'விபரங்களை பார்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18404', 'lk', 'provide_a_detailed_description', 'விரிவான விளக்கத்தை வழங்கவும்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18405', 'lk', 'type_your_reply', 'உங்கள் பதிலைத் தட்டச்சு செய்க', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18406', 'lk', 'send_ticket', 'டிக்கெட் அனுப்பு', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18407', 'lk', 'load_more', 'அதிகமாக ஏற்று', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18408', 'lk', 'jewelry__watches', 'நகைகள் மற்றும் கடிகாரங்கள்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18409', 'lk', 'filters', 'வடிப்பான்கள்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18410', 'lk', 'contact_address', 'தொடர்பு முகவரி', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18411', 'lk', 'contact_phone', 'தொலைபேசியைத் தொடர்பு கொள்ளுங்கள்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18412', 'lk', 'contact_email', 'தொடர்பு மின்னஞ்சல்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18413', 'lk', 'filter_by', 'மூலம் வடிகட்டவும்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18414', 'lk', 'condition', 'நிலை', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18415', 'lk', 'all_type', 'அனைத்து வகை', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18416', 'lk', 'pay_with_wallet', 'பணப்பையுடன் பணம் செலுத்துங்கள்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18417', 'lk', 'select_variation', 'மாறுபாட்டைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18418', 'lk', 'no_product_added', 'தயாரிப்பு எதுவும் சேர்க்கப்படவில்லை', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18419', 'lk', 'status_has_been_updated_successfully', 'நிலை வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18420', 'lk', 'all_seller_packages', 'அனைத்து விற்பனையாளர் தொகுப்புகள்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18421', 'lk', 'add_new_package', 'புதிய தொகுப்பு சேர்க்கவும்', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18422', 'lk', 'package_logo', 'தொகுப்பு லோகோ', '2021-02-09 13:44:46', '2021-09-20 13:00:02'),
('18423', 'lk', 'days', 'நாட்கள்', '2021-02-09 13:44:46', '2021-02-09 13:44:46'),
('18424', 'lk', 'create_new_seller_package', 'புதிய விற்பனையாளர் தொகுப்பை உருவாக்கவும்', '2021-02-09 13:44:47', '2021-09-20 13:00:02'),
('18425', 'lk', 'package_name', 'தொகுப்பு பெயர்', '2021-02-09 13:44:47', '2021-09-20 13:00:02'),
('18426', 'lk', 'duration', 'காலம்', '2021-02-09 13:44:47', '2021-09-20 13:00:02'),
('18427', 'lk', 'validity_in_number_of_days', 'நாட்களின் செல்லுபடியாகும்', '2021-02-09 13:44:47', '2021-09-20 13:00:02'),
('18428', 'lk', 'update_package_information', 'தொகுப்பு தகவலைப் புதுப்பிக்கவும்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18429', 'lk', 'package_has_been_inserted_successfully', 'தொகுப்பு வெற்றிகரமாக செருகப்பட்டுள்ளது', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18430', 'lk', 'refund_request', 'பணத்தைத் திரும்பப்பெறுதல் கோரிக்கை', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18431', 'lk', 'reason', 'காரணம்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18432', 'lk', 'label', 'லேபிள்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18433', 'lk', 'select_label', 'லேபிளைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18434', 'lk', 'multiple_select_label', 'பல தேர்ந்தெடுக்கப்பட்ட லேபிள்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18435', 'lk', 'radio_label', 'ரேடியோ லேபிள்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18436', 'lk', 'pickup_point_orders', 'பிக்கப் பாயிண்ட் ஆர்டர்கள்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18437', 'lk', 'view', 'காண்க', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18438', 'lk', 'order_', 'ஆர்டர் #', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18439', 'lk', 'order_status', 'ஒழுங்கு நிலை', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18440', 'lk', 'total_amount', 'மொத்த தொகை', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18441', 'lk', 'total', 'மொத்தம்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18442', 'lk', 'delivery_status_has_been_updated', 'விநியோக நிலை புதுப்பிக்கப்பட்டது', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18443', 'lk', 'payment_status_has_been_updated', 'கட்டண நிலை புதுப்பிக்கப்பட்டது', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18444', 'lk', 'invoice', 'விலைப்பட்டியல்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18445', 'lk', 'set_refund_time', 'பணத்தைத் திருப்பிச் செலுத்தும் நேரத்தை அமைக்கவும்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18446', 'lk', 'set_time_for_sending_refund_request', 'பணத்தைத் திரும்பப்பெறுவதற்கான கோரிக்கையை அனுப்புவதற்கான நேரத்தை அமைக்கவும்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18447', 'lk', 'set_refund_sticker', 'பணத்தைத் திரும்பப்பெறும் ஸ்டிக்கரை அமைக்கவும்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18448', 'lk', 'sticker', 'ஓட்டி', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18449', 'lk', 'refund_request_all', 'அனைத்தையும் திரும்பப்பெறுதல் கோரிக்கை', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18450', 'lk', 'order_id', 'ஆர்டர் ஐடி', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18451', 'lk', 'seller_approval', 'விற்பனையாளர் ஒப்புதல்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18452', 'lk', 'admin_approval', 'நிர்வாக ஒப்புதல்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18453', 'lk', 'refund_status', 'பணத்தைத் திரும்பப்பெறுதல் நிலை', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18454', 'lk', 'no_refund', 'பணத்தைத் திரும்பப் பெற முடியாது', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18455', 'lk', 'status_updated_successfully', 'நிலை வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18456', 'lk', 'user_search_report', 'பயனர் தேடல் அறிக்கை', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18457', 'lk', 'search_by', 'மூலம் தேடுங்கள்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18458', 'lk', 'number_searches', 'எண் தேடல்கள்', '2021-02-09 13:44:47', '2021-09-20 13:00:03'),
('18459', 'lk', 'sender', 'அனுப்புநர்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18460', 'lk', 'receiver', 'பெறுநர்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18461', 'lk', 'verification_form_updated_successfully', 'சரிபார்ப்பு படிவம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18462', 'lk', 'invalid_email_or_password', 'தவறான மின்னஞ்சல் அல்லது கடவுச்சொல்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18463', 'lk', 'all_coupons', 'அனைத்து கூப்பன்களும்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18464', 'lk', 'add_new_coupon', 'புதிய கூப்பனைச் சேர்க்கவும்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18465', 'lk', 'coupon_information', 'கூப்பன் தகவல்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18466', 'lk', 'start_date', 'தொடக்க தேதி', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18467', 'lk', 'end_date', 'கடைசி தேதி', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18468', 'lk', 'product_base', 'தயாரிப்பு அடிப்படை', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18469', 'lk', 'send_newsletter', 'செய்திமடலை அனுப்பவும்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18470', 'lk', 'mobile_users', 'மொபைல் பயனர்கள்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18471', 'lk', 'sms_subject', 'எஸ்எம்எஸ் பொருள்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18472', 'lk', 'sms_content', 'எஸ்எம்எஸ் உள்ளடக்கம்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18473', 'lk', 'all_flash_delas', 'அனைத்து ஃப்ளாஷ் டெலாஸ்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18474', 'lk', 'create_new_flash_dela', 'புதிய ஃப்ளாஷ் டெலாவை உருவாக்கவும்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18475', 'lk', 'page_link', 'பக்க இணைப்பு', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18476', 'lk', 'flash_deal_information', 'ஃபிளாஷ் ஒப்பந்த தகவல்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18477', 'lk', 'background_color', 'பின்னணி நிறம்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18478', 'lk', '0000ff', '# 0000ff', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18479', 'lk', 'text_color', 'உரை வண்ணம்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18480', 'lk', 'white', 'வெள்ளை', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18481', 'lk', 'dark', 'இருள்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18482', 'lk', 'choose_products', 'தயாரிப்புகளைத் தேர்வுசெய்க', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18483', 'lk', 'discounts', 'தள்ளுபடிகள்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18484', 'lk', 'discount_type', 'தள்ளுபடி வகை', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18485', 'lk', 'twillo_credential', 'ட்விலோ நற்சான்றிதழ்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18486', 'lk', 'twilio_sid', 'ட்விலியோ சிட்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18487', 'lk', 'twilio_auth_token', 'ட்விலியோ ஆத் டோக்கன்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18488', 'lk', 'twilio_verify_sid', 'ட்விலியோ சரிபார்ப்பு சிட்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18489', 'lk', 'valid_twillo_number', 'செல்லுபடியாகும் ட்விலோ எண்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18490', 'lk', 'nexmo_credential', 'நெக்ஸ்மோ நற்சான்றிதழ்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18491', 'lk', 'nexmo_key', 'நெக்ஸ்மோ கீ', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18492', 'lk', 'nexmo_secret', 'நெக்ஸ்மோ ரகசியம்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18493', 'lk', 'ssl_wireless_credential', 'எஸ்எஸ்எல் வயர்லெஸ் நற்சான்றிதழ்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18494', 'lk', 'ssl_sms_api_token', 'SSL SMS API டோக்கன்', '2021-02-09 13:44:48', '2021-09-20 13:00:03'),
('18495', 'lk', 'ssl_sms_sid', 'எஸ்எஸ்எல் எஸ்எம்எஸ் எஸ்ஐடி', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18496', 'lk', 'ssl_sms_url', 'SSL SMS URL', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18497', 'lk', 'fast2sms_credential', 'Fast2SMS நற்சான்றிதழ்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18498', 'lk', 'auth_key', 'AUTH KEY', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18499', 'lk', 'route', 'பாதை', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18500', 'lk', 'promotional_use', 'விளம்பர பயன்பாடு', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18501', 'lk', 'transactional_use', 'பரிவர்த்தனை பயன்பாடு', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18502', 'lk', 'sender_id', 'SENDER ஐடி', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18503', 'lk', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18504', 'lk', 'twillo_otp', 'ட்விலோ OTP', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18505', 'lk', 'ssl_wireless_otp', 'SSL வயர்லெஸ் OTP', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18506', 'lk', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18507', 'lk', 'order_placement', 'ஆர்டர் வேலை வாய்ப்பு', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18508', 'lk', 'delivery_status_changing_time', 'டெலிவரி நிலை மாற்றும் நேரம்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18509', 'lk', 'paid_status_changing_time', 'கட்டண நிலை மாற்றும் நேரம்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18510', 'lk', 'send_bulk_sms', 'மொத்த எஸ்எம்எஸ் அனுப்பவும்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18511', 'lk', 'all_subscribers', 'அனைத்து சந்தாதாரர்களும்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18512', 'lk', 'coupon_information_adding', 'கூப்பன் தகவல் சேர்த்தல்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18513', 'lk', 'coupon_type', 'கூப்பன் வகை', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18514', 'lk', 'for_products', 'தயாரிப்புகளுக்கு', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18515', 'lk', 'for_total_orders', 'மொத்த ஆர்டர்களுக்கு', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18516', 'lk', 'add_your_product_base_coupon', 'உங்கள் தயாரிப்பு அடிப்படை கூப்பனைச் சேர்க்கவும்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18517', 'lk', 'coupon_code', 'கூப்பன் குறியீடு', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18518', 'lk', 'sub_category', 'துணை வகை', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18519', 'lk', 'add_more', 'மேலும் சேர்க்கவும்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18520', 'lk', 'add_your_cart_base_coupon', 'உங்கள் வண்டி அடிப்படை கூப்பனைச் சேர்க்கவும்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18521', 'lk', 'minimum_shopping', 'குறைந்தபட்ச ஷாப்பிங்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18522', 'lk', 'maximum_discount_amount', 'அதிகபட்ச தள்ளுபடி தொகை', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18523', 'lk', 'coupon_information_update', 'கூப்பன் தகவல் புதுப்பிப்பு', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18524', 'lk', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'தயவுசெய்து மின்னஞ்சல் அனுப்பும் அனைத்து செயல்பாடுகளையும் செயல்படுத்த SMTP அமைப்பை உள்ளமைக்கவும்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18525', 'lk', 'configure_now', 'இப்போது உள்ளமைக்கவும்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18526', 'lk', 'total_published_products', 'மொத்த வெளியிடப்பட்ட தயாரிப்புகள்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18527', 'lk', 'total_sellers_products', 'மொத்த விற்பனையாளர்கள் தயாரிப்புகள்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18528', 'lk', 'total_admin_products', 'மொத்த நிர்வாக தயாரிப்புகள்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18529', 'lk', 'manage_products', 'தயாரிப்புகளை நிர்வகிக்கவும்', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18530', 'lk', 'total_product_category', 'மொத்த தயாரிப்பு வகை', '2021-02-09 13:44:49', '2021-09-20 13:00:03'),
('18531', 'lk', 'create_category', 'வகையை உருவாக்கவும்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18532', 'lk', 'total_product_sub_sub_category', 'மொத்த தயாரிப்பு துணை துணை வகை', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18533', 'lk', 'create_sub_sub_category', 'துணை துணை வகையை உருவாக்கவும்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18534', 'lk', 'total_product_sub_category', 'மொத்த தயாரிப்பு துணை வகை', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18535', 'lk', 'create_sub_category', 'துணை வகையை உருவாக்கவும்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18536', 'lk', 'total_product_brand', 'மொத்த தயாரிப்பு பிராண்ட்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18537', 'lk', 'create_brand', 'பிராண்டை உருவாக்கவும்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18538', 'lk', 'total_sellers', 'மொத்த விற்பனையாளர்கள்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18539', 'lk', 'total_approved_sellers', 'மொத்த அங்கீகரிக்கப்பட்ட விற்பனையாளர்கள்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18540', 'lk', 'total_pending_sellers', 'மொத்த விற்பனையாளர்கள் நிலுவையில் உள்ளனர்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18541', 'lk', 'manage_sellers', 'விற்பனையாளர்களை நிர்வகிக்கவும்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18542', 'lk', 'category_wise_product_sale', 'வகை வாரியாக தயாரிப்பு விற்பனை', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18543', 'lk', 'sale', 'விற்பனை', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18544', 'lk', 'category_wise_product_stock', 'வகை வாரியாக தயாரிப்பு பங்கு', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18545', 'lk', 'category_name', 'வகை பெயர்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18546', 'lk', 'stock', 'பங்கு', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18547', 'lk', 'frontend', 'ஃபிரான்டென்ட்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18548', 'lk', 'home_page', 'முகப்பு பக்கம்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18549', 'lk', 'setting', 'அமைப்பு', '2021-02-09 13:44:50', '2021-02-09 13:44:50'),
('18550', 'lk', 'policy_page', 'கொள்கை பக்கம்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18551', 'lk', 'general', 'பொது', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18552', 'lk', 'click_here', 'இங்கே கிளிக் செய்க', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18553', 'lk', 'useful_link', 'பயனுள்ள இணைப்பு', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18554', 'lk', 'activation', 'செயல்படுத்தல்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18555', 'lk', 'smtp', 'SMTP', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18556', 'lk', 'payment_method', 'கட்டணம் செலுத்தும் முறை', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18557', 'lk', 'social_media', 'சமூக ஊடகம்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18558', 'lk', 'business', 'வணிக', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18559', 'lk', 'seller_verification', 'விற்பனையாளர் சரிபார்ப்பு', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18560', 'lk', 'form_setting', 'படிவ அமைப்பு', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18561', 'lk', 'language', 'மொழி', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18562', 'lk', 'dashboard', 'டாஷ்போர்டு', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18563', 'lk', 'pos_system', 'பிஓஎஸ் அமைப்பு', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18564', 'lk', 'pos_manager', 'பிஓஎஸ் மேலாளர்', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18565', 'lk', 'pos_configuration', 'பிஓஎஸ் கட்டமைப்பு', '2021-02-09 13:44:50', '2021-09-20 13:00:03'),
('18566', 'lk', 'products', 'தயாரிப்புகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18567', 'lk', 'add_new_product', 'புதிய தயாரிப்பு சேர்க்கவும்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18568', 'lk', 'all_products', 'அனைத்து தயாரிப்புகளும்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18569', 'lk', 'in_house_products', 'ஹவுஸ் தயாரிப்புகளில்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18570', 'lk', 'seller_products', 'விற்பனையாளர் தயாரிப்புகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18571', 'lk', 'digital_products', 'டிஜிட்டல் தயாரிப்புகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18572', 'lk', 'bulk_import', 'மொத்த இறக்குமதி', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18573', 'lk', 'bulk_export', 'மொத்த ஏற்றுமதி', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18574', 'lk', 'category', 'வகை', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18575', 'lk', 'subcategory', 'துணைப்பிரிவு', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18576', 'lk', 'sub_subcategory', 'துணை துணைப்பிரிவு', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18577', 'lk', 'brand', 'பிராண்ட்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18578', 'lk', 'attribute', 'பண்பு', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18579', 'lk', 'product_reviews', 'தயாரிப்பு மதிப்புரைகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18580', 'lk', 'sales', 'விற்பனை', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18581', 'lk', 'all_orders', 'அனைத்து ஆர்டர்களும்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18582', 'lk', 'inhouse_orders', 'உள்ளக ஆர்டர்கள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18583', 'lk', 'seller_orders', 'விற்பனையாளர் ஆணைகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18584', 'lk', 'pickup_point_order', 'பிக்-அப் பாயிண்ட் ஆர்டர்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18585', 'lk', 'refunds', 'பணத்தைத் திருப்பித் தருகிறது', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18586', 'lk', 'refund_requests', 'பணத்தைத் திரும்பப்பெறுதல் கோரிக்கைகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18587', 'lk', 'approved_refund', 'அங்கீகரிக்கப்பட்ட பணத்தைத் திரும்பப் பெறுதல்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18588', 'lk', 'refund_configuration', 'பணத்தைத் திரும்பப்பெறுதல்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18589', 'lk', 'customers', 'வாடிக்கையாளர்கள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18590', 'lk', 'customer_list', 'வாடிக்கையாளர் பட்டியல்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18591', 'lk', 'classified_products', 'வகைப்படுத்தப்பட்ட தயாரிப்புகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18592', 'lk', 'classified_packages', 'வகைப்படுத்தப்பட்ட தொகுப்புகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18593', 'lk', 'sellers', 'விற்பனையாளர்கள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18594', 'lk', 'all_seller', 'அனைத்து விற்பனையாளர்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18595', 'lk', 'payouts', 'பணம் செலுத்துதல்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18596', 'lk', 'payout_requests', 'பணம் செலுத்தும் கோரிக்கைகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18597', 'lk', 'seller_commission', 'விற்பனையாளர் ஆணையம்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18598', 'lk', 'seller_packages', 'விற்பனையாளர் தொகுப்புகள்', '2021-02-09 13:44:51', '2021-09-20 13:00:03'),
('18599', 'lk', 'seller_verification_form', 'விற்பனையாளர் சரிபார்ப்பு படிவம்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18600', 'lk', 'reports', 'அறிக்கைகள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18601', 'lk', 'in_house_product_sale', 'வீட்டு தயாரிப்பு விற்பனையில்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18602', 'lk', 'seller_products_sale', 'விற்பனையாளர் தயாரிப்புகள் விற்பனை', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18603', 'lk', 'products_stock', 'தயாரிப்புகள் பங்கு', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18604', 'lk', 'products_wishlist', 'தயாரிப்புகள் விருப்பப்பட்டியல்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18605', 'lk', 'user_searches', 'பயனர் தேடல்கள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18606', 'lk', 'marketing', 'சந்தைப்படுத்தல்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18607', 'lk', 'flash_deals', 'ஃபிளாஷ் ஒப்பந்தங்கள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18608', 'lk', 'newsletters', 'செய்திமடல்கள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18609', 'lk', 'bulk_sms', 'மொத்த எஸ்.எம்.எஸ்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18610', 'lk', 'subscribers', 'சந்தாதாரர்கள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18611', 'lk', 'coupon', 'கூப்பன்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18612', 'lk', 'support', 'ஆதரவு', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18613', 'lk', 'ticket', 'டிக்கெட்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18614', 'lk', 'product_queries', 'தயாரிப்பு வினவல்கள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18615', 'lk', 'website_setup', 'வலைத்தள அமைப்பு', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18616', 'lk', 'header', 'தலைப்பு', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18617', 'lk', 'footer', 'அடிக்குறிப்பு', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18618', 'lk', 'pages', 'பக்கங்கள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18619', 'lk', 'appearance', 'தோற்றம்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18620', 'lk', 'setup__configurations', 'அமைவு மற்றும் உள்ளமைவுகள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18621', 'lk', 'general_settings', 'பொது அமைப்புகள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18622', 'lk', 'features_activation', 'அம்சங்கள் செயல்படுத்தல்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18623', 'lk', 'languages', 'மொழிகள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18624', 'lk', 'currency', 'நாணய', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18625', 'lk', 'pickup_point', 'இடும் புள்ளி', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18626', 'lk', 'smtp_settings', 'SMTP அமைப்புகள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18627', 'lk', 'payment_methods', 'பணம் செலுத்தும் முறைகள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18628', 'lk', 'file_system_configuration', 'கோப்பு முறைமை உள்ளமைவு', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18629', 'lk', 'social_media_logins', 'சமூக ஊடக உள்நுழைவுகள்', '2021-02-09 13:44:52', '2021-09-20 13:00:03'),
('18630', 'lk', 'analytics_tools', 'பகுப்பாய்வு கருவிகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18631', 'lk', 'facebook_chat', 'பேஸ்புக் அரட்டை', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18632', 'lk', 'google_recaptcha', 'கூகிள் reCAPTCHA', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18633', 'lk', 'shipping_configuration', 'கப்பல் கட்டமைப்பு', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18634', 'lk', 'shipping_countries', 'கப்பல் நாடுகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18635', 'lk', 'affiliate_system', 'இணைப்பு அமைப்பு', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18636', 'lk', 'affiliate_registration_form', 'இணைப்பு பதிவு படிவம்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18637', 'lk', 'affiliate_configurations', 'இணைப்பு கட்டமைப்புகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18638', 'lk', 'affiliate_users', 'இணைப்பு பயனர்கள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18639', 'lk', 'referral_users', 'பரிந்துரை பயனர்கள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18640', 'lk', 'affiliate_withdraw_requests', 'திரும்பப் பெறுதல் கோரிக்கைகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18641', 'lk', 'offline_payment_system', 'ஆஃப்லைன் கட்டண முறை', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18642', 'lk', 'manual_payment_methods', 'கையேடு செலுத்தும் முறைகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18643', 'lk', 'offline_wallet_recharge', 'ஆஃப்லைன் வாலட் ரீசார்ஜ்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18644', 'lk', 'offline_customer_package_payments', 'ஆஃப்லைன் வாடிக்கையாளர் தொகுப்பு கொடுப்பனவுகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18645', 'lk', 'offline_seller_package_payments', 'ஆஃப்லைன் விற்பனையாளர் தொகுப்பு கொடுப்பனவுகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18646', 'lk', 'paytm_payment_gateway', 'Paytm கொடுப்பனவு நுழைவாயில்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18647', 'lk', 'set_paytm_credentials', 'Paytm நற்சான்றிதழ்களை அமைக்கவும்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18648', 'lk', 'club_point_system', 'கிளப் பாயிண்ட் சிஸ்டம்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18649', 'lk', 'club_point_configurations', 'கிளப் பாயிண்ட் உள்ளமைவுகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18650', 'lk', 'set_product_point', 'தயாரிப்பு புள்ளியை அமைக்கவும்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18651', 'lk', 'user_points', 'பயனர் புள்ளிகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18652', 'lk', 'otp_system', 'OTP அமைப்பு', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18653', 'lk', 'otp_configurations', 'OTP உள்ளமைவுகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18654', 'lk', 'set_otp_credentials', 'OTP நற்சான்றிதழ்களை அமைக்கவும்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18655', 'lk', 'staffs', 'பணியாளர்கள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18656', 'lk', 'all_staffs', 'அனைத்து ஊழியர்களும்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18657', 'lk', 'staff_permissions', 'பணியாளர்கள் அனுமதிகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18658', 'lk', 'addon_manager', 'ஆடான் மேலாளர்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18659', 'lk', 'browse_website', 'வலைத்தளத்தை உலாவுக', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18660', 'lk', 'pos', 'பிஓஎஸ்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18661', 'lk', 'notifications', 'அறிவிப்புகள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18662', 'lk', 'new_orders', 'புதிய ஆர்டர்கள்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18663', 'lk', 'userimage', 'பயனர் படம்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18664', 'lk', 'profile', 'சுயவிவரம்', '2021-02-09 13:44:53', '2021-09-20 13:00:03'),
('18665', 'lk', 'logout', 'வெளியேறு', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18666', 'lk', 'page_not_found', 'பக்கம் கிடைக்கவில்லை!', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18667', 'lk', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'நீங்கள் தேடும் பக்கம் எங்கள் சேவையகத்தில் காணப்படவில்லை.', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18668', 'lk', 'registration', 'பதிவு', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18669', 'lk', 'i_am_shopping_for', 'நான் ஷாப்பிங் செய்கிறேன் ...', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18670', 'lk', 'compare', 'ஒப்பிடுக', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18671', 'lk', 'wishlist', 'விருப்பப்பட்டியல்', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18672', 'lk', 'cart', 'வண்டி', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18673', 'lk', 'your_cart_is_empty', 'உங்கள் வண்டி காலியாக உள்ளது', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18674', 'lk', 'categories', 'வகைகள்', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18675', 'lk', 'see_all', 'அனைத்தையும் பார்', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18676', 'lk', 'seller_policy', 'விற்பனையாளர் கொள்கை', '2021-02-09 13:45:29', '2021-09-20 13:00:03'),
('18677', 'lk', 'return_policy', 'வருவாய் கொள்கை', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18678', 'lk', 'support_policy', 'ஆதரவு கொள்கை', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18679', 'lk', 'privacy_policy', 'தனியுரிமைக் கொள்கை', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18680', 'lk', 'your_email_address', 'உங்கள் மின்னஞ்சல் முகவரி', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18681', 'lk', 'subscribe', 'பதிவு', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18682', 'lk', 'contact_info', 'தொடர்பு தகவல்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18683', 'lk', 'address', 'முகவரி', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18684', 'lk', 'phone', 'தொலைபேசி', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18685', 'lk', 'email', 'மின்னஞ்சல்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18686', 'lk', 'login', 'உள்நுழைய', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18687', 'lk', 'my_account', 'என் கணக்கு', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18688', 'lk', 'order_history', 'ஒழுங்கு வரலாறு', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18689', 'lk', 'my_wishlist', 'எனது விருப்பப்பட்டியல்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18690', 'lk', 'track_order', 'பாதையில் பொருட்டு', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18691', 'lk', 'be_an_affiliate_partner', 'ஒரு துணை பங்காளியாக இருங்கள்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18692', 'lk', 'be_a_seller', 'விற்பனையாளராக இருங்கள்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18693', 'lk', 'apply_now', 'இப்பொழுது விண்ணப்பியுங்கள்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18694', 'lk', 'confirmation', 'உறுதிப்படுத்தல்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18695', 'lk', 'delete_confirmation_message', 'உறுதிப்படுத்தல் செய்தியை நீக்கு', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18696', 'lk', 'cancel', 'ரத்துசெய்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18697', 'lk', 'delete', 'அழி', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18698', 'lk', 'item_has_been_added_to_compare_list', 'பட்டியலை ஒப்பிடுவதற்கு உருப்படி சேர்க்கப்பட்டுள்ளது', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18699', 'lk', 'please_login_first', 'தயவுசெய்து முதலில் உள்நுழைக', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18700', 'lk', 'total_earnings_from', 'மொத்த வருவாய்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18701', 'lk', 'client_subscription', 'வாடிக்கையாளர் சந்தா', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18702', 'lk', 'product_category', 'தயாரிப்பு வகை', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18703', 'lk', 'product_sub_sub_category', 'தயாரிப்பு துணை துணை வகை', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18704', 'lk', 'product_sub_category', 'தயாரிப்பு துணை வகை', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18705', 'lk', 'product_brand', 'தயாரிப்பு பிராண்ட்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18706', 'lk', 'top_client_packages', 'சிறந்த கிளையன்ட் தொகுப்புகள்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18707', 'lk', 'top_freelancer_packages', 'சிறந்த ஃப்ரீலான்ஸர் தொகுப்புகள்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18708', 'lk', 'number_of_sale', 'விற்பனை எண்ணிக்கை', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18709', 'lk', 'number_of_stock', 'பங்கு எண்ணிக்கை', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18710', 'lk', 'top_10_products', 'சிறந்த 10 தயாரிப்புகள்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18711', 'lk', 'top_12_products', 'சிறந்த 12 தயாரிப்புகள்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18712', 'lk', 'admin_can_not_be_a_seller', 'நிர்வாகி விற்பனையாளராக இருக்க முடியாது', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18713', 'lk', 'filter_by_rating', 'மதிப்பீடு மூலம் வடிகட்டவும்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18714', 'lk', 'published_reviews_updated_successfully', 'வெளியிடப்பட்ட மதிப்புரைகள் வெற்றிகரமாக புதுப்பிக்கப்பட்டன', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18715', 'lk', 'refund_sticker_has_been_updated_successfully', 'பணத்தைத் திரும்பப்பெறும் ஸ்டிக்கர் வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18716', 'lk', 'edit_product', 'தயாரிப்பைத் திருத்து', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18717', 'lk', 'meta_images', 'மெட்டா படங்கள்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18718', 'lk', 'update_product', 'தயாரிப்பு புதுப்பிக்கவும்', '2021-02-09 13:45:30', '2021-09-20 13:00:03'),
('18719', 'lk', 'product_has_been_deleted_successfully', 'தயாரிப்பு வெற்றிகரமாக நீக்கப்பட்டது', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18720', 'lk', 'your_profile_has_been_updated_successfully', 'உங்கள் சுயவிவரம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது!', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18721', 'lk', 'upload_limit_has_been_reached_please_upgrade_your_package', 'பதிவேற்ற வரம்பு எட்டப்பட்டுள்ளது. உங்கள் தொகுப்பை மேம்படுத்தவும்.', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18722', 'lk', 'add_your_product', 'உங்கள் தயாரிப்பைச் சேர்க்கவும்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18723', 'lk', 'select_a_category', 'ஓர் வகையறாவை தேர்ந்தெடு', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18724', 'lk', 'select_a_brand', 'ஒரு பிராண்டைத் தேர்ந்தெடுக்கவும்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18725', 'lk', 'product_unit', 'தயாரிப்பு அலகு', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18726', 'lk', 'minimum_qty', 'குறைந்தபட்ச Qty.', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18727', 'lk', 'product_tag', 'தயாரிப்பு குறிச்சொல்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18728', 'lk', 'type__hit_enter', 'தட்டச்சு செய்து உள்ளிடவும்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18729', 'lk', 'videos', 'வீடியோக்கள்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18730', 'lk', 'video_from', 'வீடியோ இருந்து', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18731', 'lk', 'video_url', 'வீடியோ URL', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18732', 'lk', 'customer_choice', 'வாடிக்கையாளர் தேர்வு', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18733', 'lk', 'pdf', 'PDF', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18734', 'lk', 'choose_pdf', 'PDF ஐத் தேர்வுசெய்க', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18735', 'lk', 'select_category', 'பிரிவை தேர்வு செய்க', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18736', 'lk', 'target_category', 'இலக்கு வகை', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18737', 'lk', 'subsubcategory', 'துணைப்பிரிவு', '2021-02-09 13:45:31', '2021-02-09 13:45:31'),
('18738', 'lk', 'search_category', 'தேடல் வகை', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18739', 'lk', 'search_subcategory', 'துணைப்பிரிவைத் தேடுங்கள்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18740', 'lk', 'search_subsubcategory', 'துணை துணை வகையைத் தேடுங்கள்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18741', 'lk', 'update_your_product', 'உங்கள் தயாரிப்பைப் புதுப்பிக்கவும்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18742', 'lk', 'product_has_been_updated_successfully', 'தயாரிப்பு வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18743', 'lk', 'add_your_digital_product', 'உங்கள் டிஜிட்டல் தயாரிப்பைச் சேர்க்கவும்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18744', 'lk', 'active_ecommerce_cms_update_process', 'செயலில் இணையவழி CMS புதுப்பிப்பு செயல்முறை', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18745', 'lk', 'codecanyon_purchase_code', 'கோடேகனியன் கொள்முதல் குறியீடு', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18746', 'lk', 'database_name', 'தரவுத்தள பெயர்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18747', 'lk', 'database_username', 'தரவுத்தள பயனர்பெயர்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18748', 'lk', 'database_password', 'தரவுத்தள கடவுச்சொல்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18749', 'lk', 'database_hostname', 'தரவுத்தள ஹோஸ்ட் பெயர்', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18750', 'lk', 'update_now', 'இப்பொழுது மேம்படுத்து', '2021-02-09 13:45:31', '2021-09-20 13:00:03'),
('18751', 'lk', 'congratulations', 'வாழ்த்துக்கள்', '2021-02-09 13:45:31', '2021-09-20 13:00:04'),
('18752', 'lk', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'புதுப்பித்தல் செயல்முறையை வெற்றிகரமாக முடித்துவிட்டீர்கள். தொடர உள்நுழைக', '2021-02-09 13:45:31', '2021-09-20 13:00:04'),
('18753', 'lk', 'go_to_home', 'வீட்டிற்கு போ', '2021-02-09 13:45:31', '2021-09-20 13:00:04'),
('18754', 'lk', 'login_to_admin_panel', 'நிர்வாக குழுவுக்கு உள்நுழைக', '2021-02-09 13:45:31', '2021-09-20 13:00:04'),
('18755', 'lk', 's3_file_system_credentials', 'எஸ் 3 கோப்பு முறைமை நற்சான்றிதழ்கள்', '2021-02-09 13:45:31', '2021-09-20 13:00:04'),
('18756', 'lk', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 13:45:31', '2021-09-20 13:00:04'),
('18757', 'lk', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 13:45:31', '2021-09-20 13:00:04'),
('18758', 'lk', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18759', 'lk', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18760', 'lk', 'aws_url', 'AWS_URL', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18761', 'lk', 's3_file_system_activation', 'எஸ் 3 கோப்பு முறைமை செயல்படுத்தல்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18762', 'lk', 'your_phone_number', 'உங்கள் தொலைபேசி எண்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18763', 'lk', 'zip_file', 'ஜிப் கோப்பு', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18764', 'lk', 'install', 'நிறுவு', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18765', 'lk', 'this_version_is_not_capable_of_installing_addons_please_update', 'இந்த பதிப்பு Addons ஐ நிறுவும் திறன் இல்லை, தயவுசெய்து புதுப்பிக்கவும்.', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18766', 'lk', 'search_in_menu', 'மெனுவில் தேடுங்கள்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18767', 'lk', 'uploaded_files', 'பதிவேற்றிய கோப்புகள்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18768', 'lk', 'shipping_cities', 'கப்பல் நகரங்கள்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18769', 'lk', 'system', 'அமைப்பு', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18770', 'lk', 'server_status', 'சேவையக நிலை', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18771', 'lk', 'nothing_found', 'எதுவும் கிடைக்கவில்லை', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18772', 'lk', 'parent_category', 'பெற்றோர் வகை', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18773', 'lk', 'level', 'நிலை', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18774', 'lk', 'category_information', 'வகை தகவல்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18775', 'lk', 'translatable', 'மொழிபெயர்க்கக்கூடியது', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18776', 'lk', 'no_parent', 'பெற்றோர் இல்லை', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18777', 'lk', 'physical', 'உடல்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18778', 'lk', 'digital', 'டிஜிட்டல்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18779', 'lk', '200x200', '200x200', '2021-02-09 13:45:32', '2021-02-09 13:45:32'),
('18780', 'lk', '32x32', '32x32', '2021-02-09 13:45:32', '2021-02-09 13:45:32'),
('18781', 'lk', 'search_your_files', 'உங்கள் கோப்புகளைத் தேடுங்கள்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18782', 'lk', 'category_has_been_updated_successfully', 'வகை வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18783', 'lk', 'all_uploaded_files', 'பதிவேற்றிய கோப்புகள் அனைத்தும்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18784', 'lk', 'upload_new_file', 'புதிய கோப்பைப் பதிவேற்றுக', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18785', 'lk', 'all_files', 'அனைத்து கோப்புகள்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18786', 'lk', 'search', 'தேடல்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18787', 'lk', 'details_info', 'விவரங்கள் தகவல்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18788', 'lk', 'copy_link', 'இணைப்பை நகலெடுக்கவும்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18789', 'lk', 'are_you_sure_to_delete_this_file', 'இந்த கோப்பை நீக்குவது உறுதி?', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18790', 'lk', 'file_info', 'கோப்பு தகவல்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18791', 'lk', 'link_copied_to_clipboard', 'இணைப்பு கிளிப்போர்டுக்கு நகலெடுக்கப்பட்டது', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18792', 'lk', 'oops_unable_to_copy', 'அச்சச்சோ, நகலெடுக்க முடியவில்லை', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18793', 'lk', 'file_deleted_successfully', 'கோப்பு வெற்றிகரமாக நீக்கப்பட்டது', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18794', 'lk', 'add_new_brand', 'புதிய பிராண்டைச் சேர்க்கவும்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18795', 'lk', '120x80', '120x80', '2021-02-09 13:45:32', '2021-02-09 13:45:32'),
('18796', 'lk', 'brand_information', 'பிராண்ட் தகவல்', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18797', 'lk', 'brand_has_been_updated_successfully', 'பிராண்ட் வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:45:32', '2021-09-20 13:00:04'),
('18798', 'lk', 'brand_has_been_deleted_successfully', 'பிராண்ட் வெற்றிகரமாக நீக்கப்பட்டது', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18799', 'lk', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'இது தேடலுக்குப் பயன்படுத்தப்படுகிறது. கட்டோமர் இந்த தயாரிப்பைக் கண்டுபிடிக்கக்கூடிய சொற்களை உள்ளிடவும்.', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18800', 'lk', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'இந்த படங்கள் தயாரிப்பு விவரங்கள் பக்க கேலரியில் தெரியும். 600x600 அளவிலான படங்களைப் பயன்படுத்தவும்.', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18801', 'lk', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'இந்த படம் எல்லா தயாரிப்பு பெட்டியிலும் தெரியும். 300x300 அளவிலான படத்தைப் பயன்படுத்தவும். உங்கள் படத்தின் முக்கிய பொருளைச் சுற்றி சில வெற்று இடத்தை வைத்திருங்கள், ஏனெனில் நாங்கள் அதை பதிலளிக்க பல்வேறு சாதனங்களில் சில விளிம்புகளை செதுக்க வேண்டியிருந்தது.', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18802', 'lk', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'கூடுதல் அளவுரு இல்லாமல் சரியான இணைப்பைப் பயன்படுத்தவும். குறுகிய பங்கு இணைப்பு / உட்பொதிக்கப்பட்ட ஐஃப்ரேம் குறியீட்டைப் பயன்படுத்த வேண்டாம்.', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18803', 'lk', 'save_product', 'தயாரிப்பு சேமிக்கவும்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18804', 'lk', 'product_has_been_inserted_successfully', 'தயாரிப்பு வெற்றிகரமாக செருகப்பட்டது', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18805', 'lk', 'something_went_wrong', 'ஏதோ தவறு நடந்துவிட்டது!', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18806', 'lk', 'sorry_for_the_inconvenience_but_were_working_on_it', 'சிரமத்திற்கு மன்னிக்கவும், ஆனால் நாங்கள் அதைச் செய்கிறோம்.', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18807', 'lk', 'error_code', 'பிழை குறியீடு', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18808', 'lk', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'மின்னஞ்சல் அனுப்பும் அனைத்து செயல்பாடுகளையும் செயல்படுத்த SMTP அமைப்பை உள்ளமைக்கவும்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18809', 'lk', 'order', 'ஆர்டர்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18810', 'lk', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'UI ஐ பராமரிக்க எங்களிடம் குறைந்த அளவு பேனர் உயரம் உள்ளது. வெவ்வேறு சாதனங்களுக்கு பதிலளிக்கக்கூடிய வகையில் இடது மற்றும் வலது பக்கத்திலிருந்து பயிர் செய்ய வேண்டியிருந்தது. பேனரை வடிவமைப்பதற்கு முன் இந்த விஷயங்களை மனதில் கொள்ளுங்கள்.', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18811', 'lk', 'home_banner_3_max_3', 'முகப்பு பேனர் 3 (அதிகபட்சம் 3)', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18812', 'lk', 'add_new_seller', 'புதிய விற்பனையாளரைச் சேர்க்கவும்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18813', 'lk', 'filter_by_approval', 'ஒப்புதல் மூலம் வடிகட்டவும்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18814', 'lk', 'nonapproved', 'அங்கீகரிக்கப்படாதது', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18815', 'lk', 'type_name_or_email__enter', 'பெயர் அல்லது மின்னஞ்சல் தட்டச்சு செய்து உள்ளிடவும்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18816', 'lk', 'due_to_seller', 'விற்பனையாளர் காரணமாக', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18817', 'lk', 'log_in_as_this_seller', 'இந்த விற்பனையாளராக உள்நுழைக', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18818', 'lk', 'go_to_payment', 'கொடுப்பனவுக்குச் செல்லவும்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18819', 'lk', 'ban_this_seller', 'இந்த விற்பனையாளரை தடை செய்யுங்கள்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18820', 'lk', 'do_you_really_want_to_ban_this_seller', 'இந்த விற்பனையாளரை நீங்கள் உண்மையில் தடை செய்ய விரும்புகிறீர்களா?', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18821', 'lk', 'proceed', 'தொடரவும்!', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18822', 'lk', 'approved_sellers_updated_successfully', 'அங்கீகரிக்கப்பட்ட விற்பனையாளர்கள் வெற்றிகரமாக புதுப்பிக்கப்பட்டனர்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18823', 'lk', 'seller_has_been_deleted_successfully', 'விற்பனையாளர் வெற்றிகரமாக நீக்கப்பட்டார்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18824', 'lk', 'seller_information', 'விற்பனையாளர் தகவல்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18825', 'lk', 'seller_has_been_inserted_successfully', 'விற்பனையாளர் வெற்றிகரமாக செருகப்பட்டார்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18826', 'lk', 'email_already_exists', 'மின்னஞ்சல் முன்பே பதிவில் இருக்கிறது!', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18827', 'lk', 'verify_your_email_address', 'உங்கள் மின்னஞ்சல் முகவரியை சரிபார்க்கவும்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18828', 'lk', 'before_proceeding_please_check_your_email_for_a_verification_link', 'தொடர்வதற்கு முன், சரிபார்ப்பு இணைப்புக்காக உங்கள் மின்னஞ்சலைச் சரிபார்க்கவும்.', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18829', 'lk', 'if_you_did_not_receive_the_email', 'நீங்கள் மின்னஞ்சல் பெறவில்லை என்றால்.', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18830', 'lk', 'click_here_to_request_another', 'இன்னொன்றைக் கோர இங்கே கிளிக் செய்க', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18831', 'lk', 'email_verification', 'மின்னஞ்சல் சரிபார்ப்பு', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18832', 'lk', 'email_verification__', 'மின்னஞ்சல் சரிபார்ப்பு -', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18833', 'lk', 'https_activation', 'HTTPS செயல்படுத்தல்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18834', 'lk', 'maintenance_mode', 'பராமரிப்பு முறை', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18835', 'lk', 'maintenance_mode_activation', 'பராமரிப்பு முறை செயல்படுத்தல்', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18836', 'lk', 'classified_product_activate', 'வகைப்படுத்தப்பட்ட தயாரிப்பு செயல்படுத்து', '2021-02-09 13:45:33', '2021-09-20 13:00:04'),
('18837', 'lk', 'classified_product', 'வகைப்படுத்தப்பட்ட தயாரிப்பு', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18838', 'lk', 'business_related', 'வணிகம் தொடர்பானது', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18839', 'lk', 'vendor_system_activation', 'விற்பனையாளர் கணினி செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18840', 'lk', 'wallet_system_activation', 'Wallet கணினி செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18841', 'lk', 'coupon_system_activation', 'கூப்பன் கணினி செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18842', 'lk', 'pickup_point_activation', 'இடும் புள்ளி செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18843', 'lk', 'conversation_activation', 'உரையாடல் செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18844', 'lk', 'guest_checkout_activation', 'விருந்தினர் புதுப்பித்து செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18845', 'lk', 'categorybased_commission', 'வகை அடிப்படையிலான ஆணையம்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18846', 'lk', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'இந்த விருப்பத்தை செயல்படுத்திய பிறகு விற்பனையாளர் கமிஷன் முடக்கப்படும், மேலும் ஒவ்வொரு வகையிலும் நீங்கள் கமிஷனை அமைக்க வேண்டும், இல்லையெனில் நிர்வாகிக்கு எந்த கமிஷனும் கிடைக்காது', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18847', 'lk', 'set_commisssion_now', 'கமிஷனை இப்போது அமைக்கவும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18848', 'lk', 'payment_related', 'கட்டணம் தொடர்பான', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18849', 'lk', 'paypal_payment_activation', 'பேபால் கொடுப்பனவு செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18850', 'lk', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் பேபாலை சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18851', 'lk', 'stripe_payment_activation', 'கோடு கொடுப்பனவு செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18852', 'lk', 'sslcommerz_activation', 'SSlCommerz செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18853', 'lk', 'instamojo_payment_activation', 'Instamojo கொடுப்பனவு செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18854', 'lk', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் இன்ஸ்டாமோஜோ கட்டணத்தை சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18855', 'lk', 'razor_pay_activation', 'ரேஸர் ஊதிய செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18856', 'lk', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் ரேஸரை சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18857', 'lk', 'paystack_activation', 'PayStack செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18858', 'lk', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் PayStack ஐ சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18859', 'lk', 'voguepay_activation', 'வோக் பே செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18860', 'lk', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் வோக்பேவை சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18861', 'lk', 'payhere_activation', 'Payhere செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18862', 'lk', 'ngenius_activation', 'Ngenius செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18863', 'lk', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் Ngenius ஐ சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18864', 'lk', 'iyzico_activation', 'ஐசிகோ செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18865', 'lk', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் iyzico ஐ சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18866', 'lk', 'bkash_activation', 'Bkash செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18867', 'lk', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் bkash ஐ சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18868', 'lk', 'nagad_activation', 'நாகட் செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18869', 'lk', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் நாகட்டை சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18870', 'lk', 'cash_payment_activation', 'பண கொடுப்பனவு செயல்படுத்தல்', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18871', 'lk', 'social_media_login', 'சமூக ஊடக உள்நுழைவு', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18872', 'lk', 'facebook_login', 'பேஸ்புக் உள்நுழைவு', '2021-02-09 13:45:34', '2021-09-20 13:00:04'),
('18873', 'lk', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் பேஸ்புக் கிளையண்டை சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18874', 'lk', 'google_login', 'Google உள்நுழைவு', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18875', 'lk', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் Google கிளையண்டை சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18876', 'lk', 'twitter_login', 'ட்விட்டர் உள்நுழைவு', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18877', 'lk', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'இந்த அம்சத்தை இயக்க நீங்கள் ட்விட்டர் கிளையண்டை சரியாக உள்ளமைக்க வேண்டும்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18878', 'lk', 'shop_logo', 'கடை லோகோ', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18879', 'lk', 'shop_address', 'கடை முகவரி', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18880', 'lk', 'banner_settings', 'பேனர் அமைப்புகள்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18881', 'lk', 'banners', 'பதாகைகள்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18882', 'lk', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'நாங்கள் உயரத்தை மெயின்டியன் நிலைத்தன்மையுடன் மட்டுப்படுத்த வேண்டியிருந்தது. சில சாதனங்களில், பேனரின் இருபுறமும் உயர வரம்புக்காக வெட்டப்படலாம்.', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18883', 'lk', 'insert_link_with_https_', 'Https உடன் இணைப்பைச் செருகவும்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18884', 'lk', 'your_shop_has_been_updated_successfully', 'உங்கள் கடை வெற்றிகரமாக புதுப்பிக்கப்பட்டது!', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18885', 'lk', 'search_result_for_', 'க்கான தேடல் முடிவு', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18886', 'lk', 'brand_has_been_inserted_successfully', 'பிராண்ட் வெற்றிகரமாக செருகப்பட்டுள்ளது', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18887', 'lk', 'about', 'பற்றி', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18888', 'lk', 'payout_info', 'பணம் செலுத்தும் தகவல்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18889', 'lk', 'bank_acc_name', 'வங்கி அக் பெயர்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18890', 'lk', 'bank_acc_number', 'வங்கி அக் எண்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18891', 'lk', 'total_products', 'மொத்த தயாரிப்புகள்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18892', 'lk', 'total_sold_amount', 'மொத்த விற்கப்பட்ட தொகை', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18893', 'lk', 'wallet_balance', 'Wallet இருப்பு', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18894', 'lk', 'cookies_agreement', 'குக்கீகள் ஒப்பந்தம்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18895', 'lk', 'cookies_agreement_text', 'குக்கீகள் ஒப்பந்த உரை', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18896', 'lk', 'show_cookies_agreement', 'குக்கீகள் ஒப்பந்தத்தைக் காட்டவா?', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18897', 'lk', 'custom_script', 'தனிப்பயன் ஸ்கிரிப்ட்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18898', 'lk', 'header_custom_script__before_head', 'தலைப்பு தனிப்பயன் ஸ்கிரிப்ட் - முன் </ head>', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18899', 'lk', 'write_script_with_script_tag', '<script> குறிச்சொல்லுடன் ஸ்கிரிப்டை எழுதவும்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18900', 'lk', 'footer_custom_script__before_body', 'அடிக்குறிப்பு தனிப்பயன் ஸ்கிரிப்ட் - முன் </ body>', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18901', 'lk', 'category_has_been_inserted_successfully', 'வகை வெற்றிகரமாக செருகப்பட்டது', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18902', 'lk', 'all_flash_deals', 'அனைத்து ஃப்ளாஷ் ஒப்பந்தங்களும்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18903', 'lk', 'create_new_flash_deal', 'புதிய ஃபிளாஷ் ஒப்பந்தத்தை உருவாக்கவும்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18904', 'lk', 'ffffff', '#FFFFFF', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18905', 'lk', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'ஃபிளாஷ் ஒப்பந்த விவரங்கள் பக்கத்தில் இந்த படம் கவர் பேனராக காட்டப்பட்டுள்ளது.', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18906', 'lk', 'flash_deal_has_been_inserted_successfully', 'ஃபிளாஷ் ஒப்பந்தம் வெற்றிகரமாக செருகப்பட்டது', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18907', 'lk', 'flash_deal_status_updated_successfully', 'ஃபிளாஷ் ஒப்பந்த நிலை வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18908', 'lk', 'flash_deal_has_been_updated_successfully', 'ஃபிளாஷ் ஒப்பந்தம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18909', 'lk', 'update_language_info', 'மொழித் தகவலைப் புதுப்பிக்கவும்', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18910', 'lk', 'language_has_been_updated_successfully', 'மொழி வெற்றிகரமாக புதுப்பிக்கப்பட்டது', '2021-02-09 13:45:35', '2021-09-20 13:00:04'),
('18911', 'lk', 'type_key__enter', 'விசையைத் தட்டச்சு செய்து உள்ளிடவும்', '2021-02-09 13:45:36', '2021-09-20 13:00:04'),
('18912', 'lk', 'translations_updated_for_', 'மொழிபெயர்ப்புகள் புதுப்பிக்கப்பட்டன', '2021-02-09 13:45:36', '2021-09-20 13:00:04'),
('18913', 'lk', 'language_has_been_inserted_successfully', 'மொழி வெற்றிகரமாக செருகப்பட்டுள்ளது', '2021-02-09 13:45:36', '2021-09-20 13:00:04'),
('18914', 'ke', 'all_category', 'Jamii zote', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18915', 'ke', 'all', 'Wote', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18916', 'ke', 'flash_sale', 'Uuzaji wa Flash', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18917', 'ke', 'view_more', 'Ona zaidi', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18918', 'ke', 'add_to_wishlist', 'Ongeza kwenye orodha ya matamanio', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18919', 'ke', 'add_to_compare', 'Ongeza kulinganisha', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18920', 'ke', 'add_to_cart', 'Ongeza kwenye gari', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18921', 'ke', 'club_point', 'Kiwango cha Klabu', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18922', 'ke', 'classified_ads', 'Matangazo yaliyopangwa', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18923', 'ke', 'used', 'Imetumika', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18924', 'ke', 'top_10_categories', 'Jamii 10 za juu', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18925', 'ke', 'view_all_categories', 'Tazama Jamii Zote', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18926', 'ke', 'top_10_brands', 'Bidhaa 10 za juu', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18927', 'ke', 'view_all_brands', 'Angalia Bidhaa Zote', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18928', 'ke', 'terms__conditions', 'Sheria na Masharti', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18929', 'ke', 'best_selling', 'Mauzo mazuri', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18930', 'ke', 'top_20', 'Juu 20', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18931', 'ke', 'featured_products', 'Bidhaa Zilizoangaziwa', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18932', 'ke', 'best_sellers', 'Wauzaji bora', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18933', 'ke', 'visit_store', 'Tembelea Duka', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18934', 'ke', 'popular_suggestions', 'Mapendekezo Maarufu', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18935', 'ke', 'category_suggestions', 'Mapendekezo ya Jamii', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18936', 'ke', 'automobile__motorcycle', 'Magari na Pikipiki', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18937', 'ke', 'price_range', 'Kiwango cha bei', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18938', 'ke', 'filter_by_color', 'Chuja kwa rangi', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18939', 'ke', 'home', 'Nyumbani', '2021-02-09 13:49:19', '2021-09-20 13:00:04'),
('18940', 'ke', 'newest', 'Mpya kabisa', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18941', 'ke', 'oldest', 'Kongwe zaidi', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18942', 'ke', 'price_low_to_high', 'Bei ya chini hadi juu', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18943', 'ke', 'price_high_to_low', 'Bei ya juu hadi chini', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18944', 'ke', 'brands', 'Bidhaa', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18945', 'ke', 'all_brands', 'Bidhaa zote', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18946', 'ke', 'all_sellers', 'Wauzaji wote', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18947', 'ke', 'inhouse_product', 'Bidhaa ya ndani', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18948', 'ke', 'message_seller', 'Muuzaji wa Ujumbe', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18949', 'ke', 'price', 'Bei', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18950', 'ke', 'discount_price', 'Bei ya punguzo', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18951', 'ke', 'color', 'Rangi', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18952', 'ke', 'quantity', 'Wingi', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18953', 'ke', 'available', 'inapatikana', '2021-02-09 13:49:20', '2021-02-09 13:49:20'),
('18954', 'ke', 'total_price', 'Bei jumla', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18955', 'ke', 'out_of_stock', 'Kati ya Hisa', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18956', 'ke', 'refund', 'Marejesho', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18957', 'ke', 'share', 'Shiriki', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18958', 'ke', 'sold_by', 'Imeuzwa na', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18959', 'ke', 'customer_reviews', 'hakiki za wateja', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18960', 'ke', 'top_selling_products', 'Bidhaa za Kuuza Juu', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18961', 'ke', 'description', 'Maelezo', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18962', 'ke', 'video', 'Video', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18963', 'ke', 'reviews', 'Mapitio', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18964', 'ke', 'download', 'Pakua', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18965', 'ke', 'there_have_been_no_reviews_for_this_product_yet', 'Kumekuwa hakuna hakiki za bidhaa hii bado.', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18966', 'ke', 'related_products', 'Bidhaa zinazohusiana', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18967', 'ke', 'any_query_about_this_product', 'Hoja yoyote kuhusu bidhaa hii', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18968', 'ke', 'product_name', 'Jina la bidhaa', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18969', 'ke', 'your_question', 'Swali lako', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18970', 'ke', 'send', 'Tuma', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18971', 'ke', 'use_country_code_before_number', 'Tumia nambari ya nchi kabla ya nambari', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18972', 'ke', 'remember_me', 'Nikumbuke', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18973', 'ke', 'dont_have_an_account', 'Je! Hauna akaunti?', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18974', 'ke', 'register_now', 'Jiandikishe sasa', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18975', 'ke', 'or_login_with', 'Au Ingia Na', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18976', 'ke', 'oops', 'Lo ..', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18977', 'ke', 'this_item_is_out_of_stock', 'Bidhaa hii imepotea!', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18978', 'ke', 'back_to_shopping', 'Rudi kwa ununuzi', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18979', 'ke', 'login_to_your_account', 'Ingia kwenye akaunti yako.', '2021-02-09 13:49:20', '2021-09-20 13:00:04'),
('18980', 'ke', 'purchase_history', 'Historia ya Ununuzi', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18981', 'ke', 'new', 'Mpya', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18982', 'ke', 'downloads', 'Vipakuzi', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18983', 'ke', 'sent_refund_request', 'Ombi la Kurejeshewa pesa', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18984', 'ke', 'product_bulk_upload', 'Upakiaji wa Wingi wa Bidhaa', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18985', 'ke', 'orders', 'Maagizo', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18986', 'ke', 'recieved_refund_request', 'Ombi la Kupokea Fedha', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18987', 'ke', 'shop_setting', 'Kuweka Duka', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18988', 'ke', 'payment_history', 'Historia ya Malipo', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18989', 'ke', 'money_withdraw', 'Kuondoa Pesa', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18990', 'ke', 'conversations', 'Mazungumzo', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18991', 'ke', 'my_wallet', 'Pochi yangu', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18992', 'ke', 'earning_points', 'Pointi za Kupata', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18993', 'ke', 'support_ticket', 'Tikiti ya Usaidizi', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18994', 'ke', 'manage_profile', 'Dhibiti Profaili', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18995', 'ke', 'sold_amount', 'Kiasi kilichouzwa', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18996', 'ke', 'your_sold_amount_current_month', 'Kiasi chako kilichouzwa (mwezi wa sasa)', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18997', 'ke', 'total_sold', 'Jumla ya Kuuzwa', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18998', 'ke', 'last_month_sold', 'Mwezi uliopita Uliuzwa', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('18999', 'ke', 'total_sale', 'Uuzaji wa jumla', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19000', 'ke', 'total_earnings', 'Jumla ya mapato', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19001', 'ke', 'successful_orders', 'Mafanikio ya maagizo', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19002', 'ke', 'total_orders', 'Jumla ya maagizo', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19003', 'ke', 'pending_orders', 'Inasubiri maagizo', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19004', 'ke', 'cancelled_orders', 'Imeghairi maagizo', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19005', 'ke', 'product', 'Bidhaa', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19006', 'ke', 'purchased_package', 'Kifurushi kilichonunuliwa', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19007', 'ke', 'package_not_found', 'Kifurushi Haikupatikana', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19008', 'ke', 'upgrade_package', 'Boresha Kifurushi', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19009', 'ke', 'shop', 'Duka', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19010', 'ke', 'manage__organize_your_shop', 'Dhibiti na upange duka lako', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19011', 'ke', 'go_to_setting', 'Nenda kuweka', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19012', 'ke', 'payment', 'Malipo', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19013', 'ke', 'configure_your_payment_method', 'Sanidi njia yako ya kulipa', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19014', 'ke', 'my_panel', 'Jopo langu', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19015', 'ke', 'item_has_been_added_to_wishlist', 'Bidhaa imeongezwa kwenye orodha ya matamanio', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19016', 'ke', 'my_points', 'Pointi Zangu', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19017', 'ke', '_points', 'Pointi', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19018', 'ke', 'wallet_money', 'Pesa za Mkoba', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19019', 'ke', 'exchange_rate', 'Kiwango cha ubadilishaji', '2021-02-09 13:49:21', '2021-09-20 13:00:04'),
('19020', 'ke', 'point_earning_history', 'Historia ya Kupata Uhakika', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19021', 'ke', 'date', 'Tarehe', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19022', 'ke', 'points', 'Pointi', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19023', 'ke', 'converted', 'Imegeuzwa', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19024', 'ke', 'action', 'Hatua', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19025', 'ke', 'no_history_found', 'Hakuna historia iliyopatikana.', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19026', 'ke', 'convert_has_been_done_successfully_check_your_wallets', 'Kubadilisha kumefanywa kwa mafanikio Angalia Pochi zako', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19027', 'ke', 'something_went_wrong', 'Hitilafu imetokea', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19028', 'ke', 'remaining_uploads', 'Vipakiwa vilivyobaki', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19029', 'ke', 'no_package_found', 'Hakuna Kifurushi Kilichopatikana', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19030', 'ke', 'search_product', 'Tafuta bidhaa', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19031', 'ke', 'name', 'Jina', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19032', 'ke', 'current_qty', 'Hivi sasa', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19033', 'ke', 'base_price', 'Bei ya Msingi', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19034', 'ke', 'published', 'Imechapishwa', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19035', 'ke', 'featured', 'Iliyoangaziwa', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19036', 'ke', 'options', 'Chaguzi', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19037', 'ke', 'edit', 'Hariri', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19038', 'ke', 'duplicate', 'Nakala', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19039', 'ke', '1_download_the_skeleton_file_and_fill_it_with_data', '1. Pakua faili ya mifupa na uijaze na data.', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19040', 'ke', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Unaweza kupakua faili ya mfano ili kuelewa jinsi data lazima ijazwe.', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19041', 'ke', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Mara baada ya kupakua na kujaza faili ya mifupa, pakia katika fomu hapa chini na uwasilishe.', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19042', 'ke', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Baada ya kupakia bidhaa unahitaji kuzihariri na kuweka bidhaa picha na chaguo.', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19043', 'ke', 'download_csv', 'Pakua CSV', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19044', 'ke', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Jamii, Jamii ndogo, Jamii ndogo na Chapa inapaswa kuwa katika vitambulisho vya nambari.', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19045', 'ke', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Unaweza kupakua pdf kupata Jamii, Kitengo kidogo, Jamii ndogo na kitambulisho cha chapa.', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19046', 'ke', 'download_category', 'Jamii ya Kupakua', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19047', 'ke', 'download_sub_category', 'Pakua Jamii ndogo', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19048', 'ke', 'download_sub_sub_category', 'Pakua sehemu ndogo', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19049', 'ke', 'download_brand', 'Pakua Brand', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19050', 'ke', 'upload_csv_file', 'Pakia faili ya CSV', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19051', 'ke', 'csv', 'CSV', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19052', 'ke', 'choose_csv_file', 'Chagua Faili ya CSV', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19053', 'ke', 'upload', 'Pakia', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19054', 'ke', 'add_new_digital_product', 'Ongeza Bidhaa Mpya ya Dijitali', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19055', 'ke', 'available_status', 'Hali Inayopatikana', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19056', 'ke', 'admin_status', 'Hali ya Usimamizi', '2021-02-09 13:49:22', '2021-09-20 13:00:04'),
('19057', 'ke', 'pending_balance', 'Mizani Inasubiri', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19058', 'ke', 'send_withdraw_request', 'Tuma Ombi la Kuondoa', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19059', 'ke', 'withdraw_request_history', 'Ondoa historia ya Ombi', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19060', 'ke', 'amount', 'Kiasi', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19061', 'ke', 'status', 'Hali', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19062', 'ke', 'message', 'Ujumbe', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19063', 'ke', 'send_a_withdraw_request', 'Tuma Ombi la Kuondoa', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19064', 'ke', 'basic_info', 'Maelezo ya Msingi', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19065', 'ke', 'your_phone', 'Simu yako', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19066', 'ke', 'photo', 'Picha', '2021-02-09 13:49:23', '2021-09-20 13:00:04'),
('19067', 'ke', 'browse', 'Vinjari', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19068', 'ke', 'your_password', 'Nenosiri lako', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19069', 'ke', 'new_password', 'Nenosiri mpya', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19070', 'ke', 'confirm_password', 'Thibitisha Nenosiri', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19071', 'ke', 'add_new_address', 'Ongeza Anwani Mpya', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19072', 'ke', 'payment_setting', 'Kuweka Malipo', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19073', 'ke', 'cash_payment', 'Malipo ya Fedha', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19074', 'ke', 'bank_payment', 'Malipo ya Benki', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19075', 'ke', 'bank_name', 'Jina la benki', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19076', 'ke', 'bank_account_name', 'Jina la Akaunti ya Benki', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19077', 'ke', 'bank_account_number', 'Nambari ya Akaunti ya Benki', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19078', 'ke', 'bank_routing_number', 'Nambari ya Kupitisha Benki', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19079', 'ke', 'update_profile', 'Sasisha Profaili', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19080', 'ke', 'change_your_email', 'Badilisha barua pepe yako', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19081', 'ke', 'your_email', 'Barua pepe yako', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19082', 'ke', 'sending_email', 'Inatuma Barua pepe ...', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19083', 'ke', 'verify', 'Thibitisha', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19084', 'ke', 'update_email', 'Sasisha Barua pepe', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19085', 'ke', 'new_address', 'Anwani mpya', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19086', 'ke', 'your_address', 'Anwani yako', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19087', 'ke', 'country', 'Nchi', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19088', 'ke', 'select_your_country', 'Chagua nchi yako', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19089', 'ke', 'city', 'Jiji', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19090', 'ke', 'your_city', 'Jiji Lako', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19091', 'ke', 'your_postal_code', 'Nambari yako ya posta', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19092', 'ke', '880', '+880', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19093', 'ke', 'save', 'Okoa', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19094', 'ke', 'received_refund_request', 'Ombi la Kurejeshewa pesa', '2021-02-09 13:49:23', '2021-09-20 13:00:05'),
('19095', 'ke', 'delete_confirmation', 'Futa Uthibitisho', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19096', 'ke', 'are_you_sure_to_delete_this', 'Je, una uhakika wa kufuta hii?', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19097', 'ke', 'premium_packages_for_sellers', 'Vifurushi vya Premium kwa Wauzaji', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19098', 'ke', 'product_upload', 'Upakiaji wa Bidhaa', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19099', 'ke', 'digital_product_upload', 'Upakiaji wa Bidhaa Dijitali', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19100', 'ke', 'purchase_package', 'Kifurushi cha Ununuzi', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19101', 'ke', 'select_payment_type', 'Chagua Aina ya Malipo', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19102', 'ke', 'payment_type', 'Aina ya malipo', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19103', 'ke', 'select_one', 'Chagua moja', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19104', 'ke', 'online_payment', 'Malipo mkondoni', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19105', 'ke', 'offline_payment', 'Malipo ya nje ya mtandao', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19106', 'ke', 'purchase_your_package', 'Nunua kifurushi chako', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19107', 'ke', 'paypal', 'Paypal', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19108', 'ke', 'stripe', 'Mstari', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19109', 'ke', 'sslcommerz', 'sslcommerz', '2021-02-09 13:49:24', '2021-02-09 13:49:24'),
('19110', 'ke', 'confirm', 'Thibitisha', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19111', 'ke', 'offline_package_payment', 'Malipo ya Kifurushi cha nje ya mtandao', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19112', 'ke', 'transaction_id', 'Kitambulisho cha Muamala', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19113', 'ke', 'choose_image', 'Chagua picha', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19114', 'ke', 'code', 'Kanuni', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19115', 'ke', 'delivery_status', 'Hali ya Uwasilishaji', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19116', 'ke', 'payment_status', 'Hali ya Malipo', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19117', 'ke', 'paid', 'Imelipwa', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19118', 'ke', 'order_details', 'Maelezo ya Agizo', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19119', 'ke', 'download_invoice', 'Pakua ankara', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19120', 'ke', 'unpaid', 'Hajalipwa', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19121', 'ke', 'order_placed', 'Agizo limewekwa', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19122', 'ke', 'confirmed', 'Imethibitishwa', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19123', 'ke', 'on_delivery', 'Wakati wa kujifungua', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19124', 'ke', 'delivered', 'Imewasilishwa', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19125', 'ke', 'order_summary', 'Muhtasari wa Agizo', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19126', 'ke', 'order_code', 'Nambari ya Agizo', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19127', 'ke', 'customer', 'Mteja', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19128', 'ke', 'total_order_amount', 'Jumla ya agizo kiasi', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19129', 'ke', 'shipping_metdod', 'Usafirishaji wa metdod', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19130', 'ke', 'flat_shipping_rate', 'Kiwango cha usafirishaji gorofa', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19131', 'ke', 'payment_metdod', 'Metdod ya malipo', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19132', 'ke', 'variation', 'Tofauti', '2021-02-09 13:49:24', '2021-09-20 13:00:05'),
('19133', 'ke', 'delivery_type', 'Aina ya Uwasilishaji', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19134', 'ke', 'home_delivery', 'Utoaji wa Nyumba', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19135', 'ke', 'order_ammount', 'Agiza Kiasi', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19136', 'ke', 'subtotal', 'jumla ndogo', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19137', 'ke', 'shipping', 'Usafirishaji', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19138', 'ke', 'coupon_discount', 'Punguzo la Kuponi', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19139', 'ke', 'na', 'N / A', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19140', 'ke', 'in_stock', 'Katika hisa', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19141', 'ke', 'buy_now', 'Nunua Sasa', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19142', 'ke', 'item_added_to_your_cart', 'Kipengee kimeongezwa kwenye gari lako!', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19143', 'ke', 'proceed_to_checkout', 'Endelea kwa Checkout', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19144', 'ke', 'cart_items', 'Vitu vya Mkokoteni', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19145', 'ke', '1_my_cart', '1. Kikapu changu', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19146', 'ke', 'view_cart', 'Angalia gari', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19147', 'ke', '2_shipping_info', '2. Usafirishaji wa habari', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19148', 'ke', 'checkout', 'Angalia', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19149', 'ke', '3_delivery_info', '3. Maelezo ya utoaji', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19150', 'ke', '4_payment', '4. Malipo', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19151', 'ke', '5_confirmation', '5. Uthibitisho', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19152', 'ke', 'remove', 'Ondoa', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19153', 'ke', 'return_to_shop', 'Rudi dukani', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19154', 'ke', 'continue_to_shipping', 'Endelea Kusafirisha', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19155', 'ke', 'or', 'Au', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19156', 'ke', 'guest_checkout', 'Malipo ya Wageni', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19157', 'ke', 'continue_to_delivery_info', 'Endelea na Maelezo ya Uwasilishaji', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19158', 'ke', 'postal_code', 'Msimbo wa posta', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19159', 'ke', 'choose_delivery_type', 'Chagua Aina ya Uwasilishaji', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19160', 'ke', 'local_pickup', 'Kuchukua kwa Mitaa', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19161', 'ke', 'select_your_nearest_pickup_point', 'Chagua eneo lako la karibu la kuchukua', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19162', 'ke', 'continue_to_payment', 'Endelea kwa Malipo', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19163', 'ke', 'select_a_payment_option', 'Chagua chaguo la malipo', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19164', 'ke', 'razorpay', 'Razorpay', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19165', 'ke', 'paystack', 'Malipo', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19166', 'ke', 'voguepay', 'VoguePay', '2021-02-09 13:49:25', '2021-09-20 13:00:05'),
('19167', 'ke', 'payhere', 'payhere', '2021-02-09 13:49:26', '2021-02-09 13:49:26'),
('19168', 'ke', 'ngenius', 'ngenius', '2021-02-09 13:49:26', '2021-02-09 13:49:26'),
('19169', 'ke', 'paytm', 'Paytm', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19170', 'ke', 'cash_on_delivery', 'Fedha kwenye Uwasilishaji', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19171', 'ke', 'your_wallet_balance_', 'Salio lako la mkoba:', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19172', 'ke', 'insufficient_balance', 'Usawa wa kutosha', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19173', 'ke', 'i_agree_to_the', 'Ninakubali', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19174', 'ke', 'complete_order', 'Amri kamili', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19175', 'ke', 'summary', 'Muhtasari', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19176', 'ke', 'items', 'Vitu', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19177', 'ke', 'total_club_point', 'Jumla ya hatua ya Klabu', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19178', 'ke', 'total_shipping', 'Usafirishaji wa Jumla', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19179', 'ke', 'have_coupon_code_enter_here', 'Una nambari ya kuponi? Ingiza hapa', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19180', 'ke', 'apply', 'Tumia', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19181', 'ke', 'you_need_to_agree_with_our_policies', 'Unahitaji kukubaliana na sera zetu', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19182', 'ke', 'forgot_password', 'Umesahau nywila', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19183', 'ke', 'seo_setting', 'Kuweka SEO', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19184', 'ke', 'system_update', 'Sasisho la Mfumo', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19185', 'ke', 'add_new_payment_method', 'Ongeza Njia Mpya ya Malipo', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19186', 'ke', 'manual_payment_method', 'Njia ya Malipo ya Mwongozo', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19187', 'ke', 'heading', 'Kichwa', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19188', 'ke', 'logo', 'Nembo', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19189', 'ke', 'manual_payment_information', 'Habari ya Malipo ya Mwongozo', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19190', 'ke', 'type', 'Andika', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19191', 'ke', 'custom_payment', 'Malipo ya kawaida', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19192', 'ke', 'check_payment', 'Angalia Malipo', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19193', 'ke', 'checkout_thumbnail', 'Kijipicha cha Checkout', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19194', 'ke', 'payment_instruction', 'Maagizo ya Malipo', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19195', 'ke', 'bank_information', 'Habari za Benki', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19196', 'ke', 'select_file', 'Chagua Faili', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19197', 'ke', 'upload_new', 'Pakia Mpya', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19198', 'ke', 'sort_by_newest', 'Panga kwa mpya zaidi', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19199', 'ke', 'sort_by_oldest', 'Panga kulingana na kongwe', '2021-02-09 13:49:26', '2021-09-20 13:00:05'),
('19200', 'ke', 'sort_by_smallest', 'Panga kwa ndogo', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19201', 'ke', 'sort_by_largest', 'Panga kwa ukubwa', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19202', 'ke', 'selected_only', 'Imechaguliwa pekee', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19203', 'ke', 'no_files_found', 'Hakuna faili zilizopatikana', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19204', 'ke', '0_file_selected', 'Faili 0 imechaguliwa', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19205', 'ke', 'clear', 'Wazi', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19206', 'ke', 'prev', 'Kabla', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19207', 'ke', 'next', 'Ifuatayo', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19208', 'ke', 'add_files', 'Ongeza faili', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19209', 'ke', 'method_has_been_inserted_successfully', 'Njia imeingizwa kwa mafanikio', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19210', 'ke', 'order_date', 'Tarehe ya Agizo', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19211', 'ke', 'bill_to', 'Bili kwa', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19212', 'ke', 'sub_total', 'Jumla ndogo', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19213', 'ke', 'total_tax', 'Jumla ya Ushuru', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19214', 'ke', 'grand_total', 'Jumla Jumla', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19215', 'ke', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Agizo lako limewekwa kwa mafanikio. Tafadhali wasilisha maelezo ya malipo kutoka kwa historia ya ununuzi', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19216', 'ke', 'thank_you_for_your_order', 'Asante kwa Agizo Lako!', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19217', 'ke', 'order_code', 'Nambari ya Agizo:', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19218', 'ke', 'a_copy_or_your_order_summary_has_been_sent_to', 'Nakala au muhtasari wa agizo lako umetumwa', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19219', 'ke', 'make_payment', 'Fanya Malipo', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19220', 'ke', 'payment_screenshot', 'Picha ya skrini ya malipo', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19221', 'ke', 'paypal_credential', 'Utambulisho wa Paypal', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19222', 'ke', 'paypal_client_id', 'Kitambulisho cha Mteja wa Paypal', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19223', 'ke', 'paypal_client_secret', 'Siri ya Mteja wa Paypal', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19224', 'ke', 'paypal_sandbox_mode', 'Njia ya Sandbox ya Paypal', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19225', 'ke', 'sslcommerz_credential', 'Kitambulisho cha Sslcommerz', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19226', 'ke', 'sslcz_store_id', 'Kitambulisho cha Duka la Sslcz', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19227', 'ke', 'sslcz_store_password', 'Nenosiri la duka la Sslcz', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19228', 'ke', 'sslcommerz_sandbox_mode', 'Njia ya Sandbox ya Sslcommerz', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19229', 'ke', 'stripe_credential', 'Utambulisho wa Mstari', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19230', 'ke', 'stripe_key', 'FUNGUO LA MUHIMU', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19231', 'ke', 'stripe_secret', 'SIRI YA KIPANDE', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19232', 'ke', 'razorpay_credential', 'Kitambulisho cha RazorPay', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19233', 'ke', 'razor_key', 'KIWANGO CHA RISHA', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19234', 'ke', 'razor_secret', 'SIRI YA RAZOR', '2021-02-09 13:49:27', '2021-09-20 13:00:05'),
('19235', 'ke', 'instamojo_credential', 'Utambulisho wa Instamojo', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19236', 'ke', 'api_key', 'KIWANGO CHA API', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19237', 'ke', 'im_api_key', 'IM API MUHIMU', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19238', 'ke', 'auth_token', 'MWANDISHI ALIYEKIWA', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19239', 'ke', 'im_auth_token', 'IM AUTH ACHUKULIWA', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19240', 'ke', 'instamojo_sandbox_mode', 'Njia ya Sandbox ya Instamojo', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19241', 'ke', 'paystack_credential', 'Kitambulisho cha PayStack', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19242', 'ke', 'public_key', 'MUHIMU WA UMMA', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19243', 'ke', 'secret_key', 'MUHIMU WA SIRI', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19244', 'ke', 'merchant_email', 'Barua pepe ya mfanyabiashara', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19245', 'ke', 'voguepay_credential', 'Utambulisho wa VoguePay', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19246', 'ke', 'merchant_id', 'Kitambulisho cha mfanyabiashara', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19247', 'ke', 'sandbox_mode', 'Njia ya Sandbox', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19248', 'ke', 'payhere_credential', 'Kitambulisho cha Payhere', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19249', 'ke', 'payhere_merchant_id', 'Kitambulisho cha mfanyabiashara wa ulipaji', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19250', 'ke', 'payhere_secret', 'SIRI YA PAYHERE', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19251', 'ke', 'payhere_currency', 'SALAMU ZA KULIPA', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19252', 'ke', 'payhere_sandbox_mode', 'Njia ya Sandbox ya Payhere', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19253', 'ke', 'ngenius_credential', 'Kitambulisho cha Ngenius', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19254', 'ke', 'ngenius_outlet_id', 'Kitambulisho cha NGENIUS OUTLET', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19255', 'ke', 'ngenius_api_key', 'NGENIUS API MUHIMU', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19256', 'ke', 'ngenius_currency', 'SASA YA NGENIUS', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19257', 'ke', 'mpesa_credential', 'Kitambulisho cha Mpesa', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19258', 'ke', 'mpesa_consumer_key', 'MPESA CONSUMER KEY', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19259', 'ke', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19260', 'ke', 'mpesa_consumer_secret', 'SIRI YA MTUMIAJI WA MPESA', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19261', 'ke', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19262', 'ke', 'mpesa_short_code', 'KANUNI FUPI YA MPESA', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19263', 'ke', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19264', 'ke', 'mpesa_sandbox_activation', 'SHUGHULI YA MPESA SANDBOX', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19265', 'ke', 'flutterwave_credential', 'Kitambulisho cha Flutterwave', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19266', 'ke', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19267', 'ke', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19268', 'ke', 'rave_title', 'RAVE_TITLE', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19269', 'ke', 'stagin_activation', 'SHUGHULI YA STAGIN', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19270', 'ke', 'all_product', 'Bidhaa zote', '2021-02-09 13:49:28', '2021-09-20 13:00:05'),
('19271', 'ke', 'sort_by', 'Panga kwa', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19272', 'ke', 'rating_high__low', 'Ukadiriaji (Juu> Chini)', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19273', 'ke', 'rating_low__high', 'Ukadiriaji (Chini> Juu)', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19274', 'ke', 'num_of_sale_high__low', 'Hisa ya Uuzaji (Juu> Chini)', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19275', 'ke', 'num_of_sale_low__high', 'Hisa ya Uuzaji (Chini> Juu)', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19276', 'ke', 'base_price_high__low', 'Bei ya Msingi (Juu> Chini)', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19277', 'ke', 'base_price_low__high', 'Bei ya Msingi (Chini> Juu)', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19278', 'ke', 'type__enter', 'Andika & Ingiza', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19279', 'ke', 'added_by', 'Imeongezwa na', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19280', 'ke', 'num_of_sale', 'Hesabu ya Uuzaji', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19281', 'ke', 'total_stock', 'Jumla ya Hisa', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19282', 'ke', 'todays_deal', 'Mpango wa leo', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19283', 'ke', 'rating', 'Upimaji', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19284', 'ke', 'times', 'nyakati', '2021-02-09 13:49:29', '2021-02-09 13:49:29'),
('19285', 'ke', 'add_nerw_product', 'Ongeza Bidhaa ya Nerw', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19286', 'ke', 'product_information', 'Habari ya Bidhaa', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19287', 'ke', 'unit', 'Kitengo', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19288', 'ke', 'unit_eg_kg_pc_etc', 'Kitengo (km KG, PC nk)', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19289', 'ke', 'minimum_qty', 'Kiwango cha chini cha Kiasi', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19290', 'ke', 'tags', 'Vitambulisho', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19291', 'ke', 'type_and_hit_enter_to_add_a_tag', 'Andika na gonga kuingia ili kuongeza lebo', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19292', 'ke', 'barcode', 'Msimbo wa mwambaa', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19293', 'ke', 'refundable', 'Inarejeshwa', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19294', 'ke', 'product_images', 'Picha za Bidhaa', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19295', 'ke', 'gallery_images', 'Picha za Matunzio', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19296', 'ke', 'todays_deal_updated_successfully', 'Mpango wa leo umesasishwa kwa mafanikio', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19297', 'ke', 'published_products_updated_successfully', 'Bidhaa zilizochapishwa zimesasishwa kwa mafanikio', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19298', 'ke', 'thumbnail_image', 'Picha ndogo', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19299', 'ke', 'featured_products_updated_successfully', 'Bidhaa zilizoangaziwa zimesasishwa kwa mafanikio', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19300', 'ke', 'product_videos', 'Video za Bidhaa', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19301', 'ke', 'video_provider', 'Mtoaji wa Video', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19302', 'ke', 'youtube', 'Youtube', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19303', 'ke', 'dailymotion', 'Uhuishaji', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19304', 'ke', 'vimeo', 'Vimeo', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19305', 'ke', 'video_link', 'Kiungo cha Video', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19306', 'ke', 'product_variation', 'Tofauti ya Bidhaa', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19307', 'ke', 'colors', 'Rangi', '2021-02-09 13:49:29', '2021-09-20 13:00:05'),
('19308', 'ke', 'attributes', 'Sifa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19309', 'ke', 'choose_attributes', 'Chagua Sifa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19310', 'ke', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Chagua sifa za bidhaa hii na kisha nambari za kuingiza za kila sifa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19311', 'ke', 'product_price__stock', 'Bei ya bidhaa + hisa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19312', 'ke', 'unit_price', 'Bei ya kitengo', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19313', 'ke', 'purchase_price', 'Bei ya ununuzi', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19314', 'ke', 'flat', 'Gorofa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19315', 'ke', 'percent', 'Asilimia', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19316', 'ke', 'discount', 'Punguzo', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19317', 'ke', 'product_description', 'Maelezo ya bidhaa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19318', 'ke', 'product_shipping_cost', 'Gharama ya Usafirishaji wa Bidhaa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19319', 'ke', 'free_shipping', 'Usafirishaji wa Bure', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19320', 'ke', 'flat_rate', 'Kiwango cha gorofa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19321', 'ke', 'shipping_cost', 'Gharama ya usafirishaji', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19322', 'ke', 'pdf_specification', 'Ufafanuzi wa PDF', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19323', 'ke', 'seo_meta_tags', 'Lebo za Meta za SEO', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19324', 'ke', 'meta_title', 'Kichwa cha Meta', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19325', 'ke', 'meta_image', 'Picha ya Meta', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19326', 'ke', 'choice_title', 'Kichwa cha Chaguo', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19327', 'ke', 'enter_choice_values', 'Ingiza maadili ya chaguo', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19328', 'ke', 'all_categories', 'Jamii zote', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19329', 'ke', 'add_new_category', 'Ongeza kategoria Mpya', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19330', 'ke', 'type_name__enter', 'Andika jina & Ingiza', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19331', 'ke', 'banner', 'Bango', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19332', 'ke', 'commission', 'Tume', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19333', 'ke', 'icon', 'ikoni', '2021-02-09 13:49:30', '2021-02-09 13:49:30'),
('19334', 'ke', 'featured_categories_updated_successfully', 'Aina zilizoangaziwa zimesasishwa kwa mafanikio', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19335', 'ke', 'hot', 'Moto', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19336', 'ke', 'filter_by_payment_status', 'Chuja kwa Hali ya Malipo', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19337', 'ke', 'unpaid', 'Isiyolipwa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19338', 'ke', 'filter_by_deliver_status', 'Chuja kwa Kutoa Hali', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19339', 'ke', 'pending', 'Inasubiri', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19340', 'ke', 'type_order_code__hit_enter', 'Andika Nambari ya Agizo na piga Enter', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19341', 'ke', 'num_of_products', 'Hesabu. ya Bidhaa', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19342', 'ke', 'walk_in_customer', 'Tembea kwa Wateja', '2021-02-09 13:49:30', '2021-09-20 13:00:05'),
('19343', 'ke', 'qty', 'QTY', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19344', 'ke', 'without_shipping_charge', 'Bila Malipo ya Usafirishaji', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19345', 'ke', 'with_shipping_charge', 'Na malipo ya Usafirishaji', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19346', 'ke', 'pay_with_cash', 'Lipa Kwa Fedha', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19347', 'ke', 'shipping_address', 'Anwani ya kusafirishia', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19348', 'ke', 'close', 'Funga', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19349', 'ke', 'select_country', 'Chagua nchi', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19350', 'ke', 'order_confirmation', 'Uthibitisho wa Agizo', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19351', 'ke', 'are_you_sure_to_confirm_this_order', 'Je! Una uhakika wa kuthibitisha agizo hili?', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19352', 'ke', 'comfirm_order', 'Thibitisha Agizo', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19353', 'ke', 'personal_info', 'Maelezo ya Kibinafsi', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19354', 'ke', 'repeat_password', 'Rudia neno siri', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19355', 'ke', 'shop_name', 'Jina la Duka', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19356', 'ke', 'register_your_shop', 'Sajili Duka lako', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19357', 'ke', 'affiliate_informations', 'Maelezo ya Ushirika', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19358', 'ke', 'affiliate', 'Ushirika', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19359', 'ke', 'user_info', 'Maelezo ya Mtumiaji', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19360', 'ke', 'installed_addon', 'Imewekwa Addon', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19361', 'ke', 'available_addon', 'Inapatikana Addon', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19362', 'ke', 'install_new_addon', 'Sakinisha New Addon', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19363', 'ke', 'version', 'Toleo', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19364', 'ke', 'activated', 'Imeamilishwa', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19365', 'ke', 'deactivated', 'Imelemazwa', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19366', 'ke', 'activate_otp', 'Amilisha OTP', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19367', 'ke', 'otp_will_be_used_for', 'OTP Itatumika Kwa', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19368', 'ke', 'settings_updated_successfully', 'Mipangilio imesasishwa kwa mafanikio', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19369', 'ke', 'product_owner', 'Mmiliki wa Bidhaa', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19370', 'ke', 'point', 'Hatua', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19371', 'ke', 'set_point_for_product_within_a_range', 'Weka Kiwango cha Bidhaa Ndani ya Mbalimbali', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19372', 'ke', 'set_point_for_multiple_products', 'Weka Sehemu kwa bidhaa nyingi', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19373', 'ke', 'min_price', 'Bei ndogo', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19374', 'ke', 'max_price', 'Bei ya Juu', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19375', 'ke', 'set_point_for_all_products', 'Weka Sehemu kwa Bidhaa zote', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19376', 'ke', 'set_point_for_', 'Weka Sehemu kwa', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19377', 'ke', 'convert_status', 'Badilisha Hali', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19378', 'ke', 'earned_at', 'Imepatikana saa', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19379', 'ke', 'seller_based_selling_report', 'Ripoti ya Uuzaji kulingana na muuzaji', '2021-02-09 13:49:31', '2021-09-20 13:00:05'),
('19380', 'ke', 'sort_by_verificarion_status', 'Panga kulingana na hali ya uthibitisho', '2021-02-09 13:49:32', '2021-09-20 13:00:05'),
('19381', 'ke', 'approved', 'Imeidhinishwa', '2021-02-09 13:49:32', '2021-09-20 13:00:05'),
('19382', 'ke', 'non_approved', 'Isiyoidhinishwa', '2021-02-09 13:49:32', '2021-09-20 13:00:05'),
('19383', 'ke', 'filter', 'Kichujio', '2021-02-09 13:49:32', '2021-09-20 13:00:05'),
('19384', 'ke', 'seller_name', 'Jina la muuzaji', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19385', 'ke', 'number_of_product_sale', 'Idadi ya Uuzaji wa Bidhaa', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19386', 'ke', 'order_amount', 'Kiasi cha Agizo', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19387', 'ke', 'facebook_chat_setting', 'Kuweka Mazungumzo ya Facebook', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19388', 'ke', 'facebook_page_id', 'Kitambulisho cha Ukurasa wa Facebook', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19389', 'ke', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Tafadhali kuwa mwangalifu wakati unasanidi gumzo la Facebook. Kwa usanidi usiofaa hautapata aikoni ya mjumbe kwenye wavuti yako ya mwisho wa mtumiaji.', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19390', 'ke', 'login_into_your_facebook_page', 'Ingia kwenye ukurasa wako wa facebook', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19391', 'ke', 'find_the_about_option_of_your_facebook_page', 'Pata chaguo la Kuhusu ukurasa wako wa facebook', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19392', 'ke', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'Chini kabisa, unaweza kupata \\ \"Kitambulisho cha Ukurasa wa Facebook \\\"', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19393', 'ke', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Nenda kwenye Mipangilio ya ukurasa wako na upate chaguo la \"Ujumbe wa Mbele\"', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19394', 'ke', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Tembeza chini kwenye ukurasa huo na utapata \\ \"kikoa kilichoorodheshwa nyeupe \\\"', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19395', 'ke', 'set_your_website_domain_name', 'Weka jina la kikoa chako', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19396', 'ke', 'google_recaptcha_setting', 'Mpangilio wa Google reCAPTCHA', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19397', 'ke', 'site_key', 'Tovuti MUHIMU', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19398', 'ke', 'select_shipping_method', 'Chagua Njia ya Usafirishaji', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19399', 'ke', 'product_wise_shipping_cost', 'Bei ya Usafirishaji wa Hekima ya Bidhaa', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19400', 'ke', 'flat_rate_shipping_cost', 'Kiwango Gharama cha Usafirishaji', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19401', 'ke', 'seller_wise_flat_shipping_cost', 'Gharama ya Usafirishaji wa gorofa yenye busara', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19402', 'ke', 'note', 'Kumbuka', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19403', 'ke', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Usafirishaji wa Hekima ya Bidhaa Hesabu ya usafirishaji: Gharama ya usafirishaji ni mahesabu kwa kuongeza ya kila gharama ya usafirishaji wa bidhaa', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19404', 'ke', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Kiwango cha Usafirishaji wa Gari Hesabu: Ni bidhaa ngapi ununuzi wa mteja, haijalishi. Gharama ya usafirishaji imewekwa', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19405', 'ke', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Uuzaji wa Gharama ya Usafirishaji wa Gharama Hekima: Kiwango kilichowekwa kwa kila muuzaji. Ikiwa ununuzi wa mteja bidhaa 2 kutoka kwa gharama ya usafirishaji wa muuzaji ni mahesabu kwa kuongeza ya kila gharama ya usafirishaji wa muuzaji', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19406', 'ke', 'flat_rate_cost', 'Kiwango cha gorofa', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19407', 'ke', 'shipping_cost_for_admin_products', 'Gharama ya Usafirishaji wa Bidhaa za Usimamizi', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19408', 'ke', 'countries', 'Nchi', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19409', 'ke', 'showhide', 'Onyesha / Ficha', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19410', 'ke', 'country_status_updated_successfully', 'Hali ya nchi imesasishwa kwa mafanikio', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19411', 'ke', 'all_subcategories', 'Jamii zote', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19412', 'ke', 'add_new_subcategory', 'Ongeza Kitongoji kipya', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19413', 'ke', 'subcategories', 'Jamii Ndogo', '2021-02-09 13:49:32', '2021-09-20 13:00:06'),
('19414', 'ke', 'sub_category_information', 'Habari ya Jamii Ndogo', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19415', 'ke', 'slug', 'Konokono', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19416', 'ke', 'all_sub_subcategories', 'Vikundi vyote vidogo', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19417', 'ke', 'add_new_sub_subcategory', 'Ongeza Kitongoji kipya kipya', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19418', 'ke', 'subsubcategories', 'Vikundi vidogo', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19419', 'ke', 'make_this_default', 'Fanya Chaguo-msingi Hiki', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19420', 'ke', 'shops', 'Maduka', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19421', 'ke', 'women_clothing__fashion', 'Mavazi ya Wanawake na Mitindo', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19422', 'ke', 'cellphones__tabs', 'Simu za Mkononi & Tabo', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19423', 'ke', 'welcome_to', 'Karibu', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19424', 'ke', 'create_a_new_account', 'Unda Akaunti Mpya', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19425', 'ke', 'full_name', 'Jina kamili', '2021-02-09 13:52:56', '2021-09-20 13:00:06'),
('19426', 'ke', 'password', 'nywila', '2021-02-09 13:52:57', '2021-02-09 13:52:57'),
('19427', 'ke', 'confrim_password', 'Hakikisha Nenosiri', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19428', 'ke', 'i_agree_with_the', 'Nakubaliana na', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19429', 'ke', 'terms_and_conditions', 'Sheria na Masharti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19430', 'ke', 'register', 'Jisajili', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19431', 'ke', 'already_have_an_account', 'Tayari una akaunti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19432', 'ke', 'sign_up_with', 'Jisajili na', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19433', 'ke', 'i_agree_with_the_terms_and_conditions', 'Ninakubaliana na Masharti na Masharti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19434', 'ke', 'all_role', 'Wajibu Wote', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19435', 'ke', 'add_new_role', 'Ongeza Jukumu Jipya', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19436', 'ke', 'roles', 'Majukumu', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19437', 'ke', 'add_new_staffs', 'Ongeza Wafanyikazi Wapya', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19438', 'ke', 'role', 'Wajibu', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19439', 'ke', 'frontend_website_name', 'Frontend Jina la Wavuti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19440', 'ke', 'website_name', 'Jina la Wavuti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19441', 'ke', 'site_motto', 'Wito wa Tovuti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19442', 'ke', 'best_ecommerce_website', 'Tovuti bora ya Biashara za Kielektroniki', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19443', 'ke', 'site_icon', 'Aikoni ya Tovuti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19444', 'ke', 'website_favicon_32x32_png', 'Favicon ya tovuti. 32x32 .png', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19445', 'ke', 'website_base_color', 'Rangi ya Msingi wa Tovuti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19446', 'ke', 'hex_color_code', 'Nambari ya Rangi ya Hex', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19447', 'ke', 'website_base_hover_color', 'Rangi ya Hover ya Msingi wa Tovuti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19448', 'ke', 'update', 'Sasisha', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19449', 'ke', 'global_seo', 'Global Seo', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19450', 'ke', 'meta_description', 'Maelezo ya Meta', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19451', 'ke', 'keywords', 'Maneno muhimu', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19452', 'ke', 'separate_with_coma', 'Tenganisha na kukosa fahamu', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19453', 'ke', 'website_pages', 'Kurasa za Wavuti', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19454', 'ke', 'all_pages', 'Kurasa zote', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19455', 'ke', 'add_new_page', 'Ongeza Ukurasa Mpya', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19456', 'ke', 'url', 'URL', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19457', 'ke', 'actions', 'Vitendo', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19458', 'ke', 'edit_page_information', 'Hariri Habari za Ukurasa', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19459', 'ke', 'page_content', 'Maudhui ya Ukurasa', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19460', 'ke', 'title', 'Kichwa', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19461', 'ke', 'link', 'Kiungo', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19462', 'ke', 'use_character_number_hypen_only', 'Tumia tabia, nambari, hypen tu', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19463', 'ke', 'add_content', 'Ongeza Yaliyomo', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19464', 'ke', 'seo_fields', 'Mashamba ya Seo', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19465', 'ke', 'update_page', 'Sasisha Ukurasa', '2021-02-09 13:52:57', '2021-09-20 13:00:06'),
('19466', 'ke', 'default_language', 'Lugha Mbadala', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19467', 'ke', 'add_new_language', 'Ongeza Lugha Mpya', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19468', 'ke', 'rtl', 'RTL', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19469', 'ke', 'translation', 'Tafsiri', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19470', 'ke', 'language_information', 'Habari ya Lugha', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19471', 'ke', 'save_page', 'Hifadhi Ukurasa', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19472', 'ke', 'home_page_settings', 'Mipangilio ya Ukurasa wa Nyumbani', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19473', 'ke', 'home_slider', 'Slider ya nyumbani', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19474', 'ke', 'photos__links', 'Picha na Viungo', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19475', 'ke', 'add_new', 'Ongeza Mpya', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19476', 'ke', 'home_categories', 'Jamii Jamii', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19477', 'ke', 'home_banner_1_max_3', 'Bango la Nyumba 1 (Max 3)', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19478', 'ke', 'banner__links', 'Bendera na Viungo', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19479', 'ke', 'home_banner_2_max_3', 'Bango la Nyumba 2 (Upeo 3)', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19480', 'ke', 'top_10', 'Juu 10', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19481', 'ke', 'top_categories_max_10', 'Vitengo Vikuu (Max 10)', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19482', 'ke', 'top_brands_max_10', 'Bidhaa za Juu (Max 10)', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19483', 'ke', 'system_name', 'Jina la Mfumo', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19484', 'ke', 'system_logo__white', 'Nembo ya Mfumo - Nyeupe', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19485', 'ke', 'choose_files', 'Chagua Faili', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19486', 'ke', 'will_be_used_in_admin_panel_side_menu', 'Itatumika katika menyu ya upande wa jopo la msimamizi', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19487', 'ke', 'system_logo__black', 'Nembo ya Mfumo - Nyeusi', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19488', 'ke', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Itatumika kwenye upau wa jopo la msimamizi kwenye ukurasa wa kuingia wa Admin', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19489', 'ke', 'system_timezone', 'Wakati wa Mfumo', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19490', 'ke', 'admin_login_page_background', 'Usuli wa ukurasa wa kuingia wa Msimamizi', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19491', 'ke', 'website_header', 'Kichwa cha Tovuti', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19492', 'ke', 'header_setting', 'Kuweka Kichwa', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19493', 'ke', 'header_logo', 'Nembo ya kichwa', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19494', 'ke', 'show_language_switcher', 'Onyesha Kibadilisha Lugha?', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19495', 'ke', 'show_currency_switcher', 'Onyesha Kibadilishaji Fedha?', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19496', 'ke', 'enable_stikcy_header', 'Washa kichwa cha stikcy?', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19497', 'ke', 'website_footer', 'Kijachini cha Tovuti', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19498', 'ke', 'footer_widget', 'Wijeti ya futi', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19499', 'ke', 'about_widget', 'Kuhusu Wijeti', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19500', 'ke', 'footer_logo', 'Nembo ya futa', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19501', 'ke', 'about_description', 'Kuhusu maelezo', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19502', 'ke', 'contact_info_widget', 'Wijeti ya Maelezo', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19503', 'ke', 'footer_contact_address', 'Anwani ya anwani ya chini', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19504', 'ke', 'footer_contact_phone', 'Nambari ya mawasiliano ya footer', '2021-02-09 13:52:58', '2021-09-20 13:00:06'),
('19505', 'ke', 'footer_contact_email', 'Anwani ya barua pepe ya mawasiliano', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19506', 'ke', 'link_widget_one', 'Unganisha Widget One', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19507', 'ke', 'links', 'Viungo', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19508', 'ke', 'footer_bottom', 'Chini chini', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19509', 'ke', 'copyright_widget_', 'Wijeti ya hakimiliki', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19510', 'ke', 'copyright_text', 'Nakala ya hakimiliki', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19511', 'ke', 'social_link_widget_', 'Wijeti ya Kiungo cha Jamii', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19512', 'ke', 'show_social_links', 'Onyesha Viungo vya Kijamii?', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19513', 'ke', 'social_links', 'Viungo vya Kijamii', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19514', 'ke', 'payment_methods_widget_', 'Njia za Malipo Wijeti', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19515', 'ke', 'rtl_status_updated_successfully', 'Hali ya RTL imesasishwa vyema', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19516', 'ke', 'language_changed_to_', 'Lugha ilibadilishwa kuwa', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19517', 'ke', 'inhouse_product_sale_report', 'Ripoti ya uuzaji wa Bidhaa ya ndani', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19518', 'ke', 'sort_by_category', 'Panga kwa Jamii', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19519', 'ke', 'product_wise_stock_report', 'Bidhaa busara ripoti ya hisa', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19520', 'ke', 'currency_changed_to_', 'Fedha ilibadilishwa kuwa', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19521', 'ke', 'avatar', 'Avatar', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19522', 'ke', 'copy', 'Nakili', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19523', 'ke', 'variant', 'Tofauti', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19524', 'ke', 'variant_price', 'Bei Mbadala', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19525', 'ke', 'sku', 'SKU', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19526', 'ke', 'key', 'Muhimu', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19527', 'ke', 'value', 'Thamani', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19528', 'ke', 'copy_translations', 'Nakili Tafsiri', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19529', 'ke', 'all_pickup_points', 'Pointi Zote za Kuchukua', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19530', 'ke', 'add_new_pickup_point', 'Ongeza Sehemu mpya ya Kuchukua', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19531', 'ke', 'manager', 'Meneja', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19532', 'ke', 'location', 'Mahali', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19533', 'ke', 'pickup_station_contact', 'Mawasiliano ya Kituo cha Kuchukua', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19534', 'ke', 'open', 'Fungua', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19535', 'ke', 'pos_activation_for_seller', 'Uanzishaji wa POS kwa Muuzaji', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19536', 'ke', 'order_completed_successfully', 'Agizo Limekamilishwa Kwa Mafanikio.', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19537', 'ke', 'text_input', 'Uingizaji wa Nakala', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19538', 'ke', 'select', 'Chagua', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19539', 'ke', 'multiple_select', 'Chagua Nyingi', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19540', 'ke', 'radio', 'Redio', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19541', 'ke', 'file', 'Faili', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19542', 'ke', 'email_address', 'Barua pepe', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19543', 'ke', 'verification_info', 'Maelezo ya Uthibitishaji', '2021-02-09 13:52:59', '2021-09-20 13:00:06'),
('19544', 'ke', 'approval', 'Ruhusa', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19545', 'ke', 'due_amount', 'Kiasi cha malipo', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19546', 'ke', 'show', 'Onyesha', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19547', 'ke', 'pay_now', 'LIPA sasa', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19548', 'ke', 'affiliate_user_verification', 'Uthibitishaji wa Mtumiaji', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19549', 'ke', 'reject', 'Kataa', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19550', 'ke', 'accept', 'Kubali', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19551', 'ke', 'beauty_health__hair', 'Uzuri, Afya na Nywele', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19552', 'ke', 'comparison', 'Kulinganisha', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19553', 'ke', 'reset_compare_list', 'Weka upya Orodha ya Linganisha', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19554', 'ke', 'your_comparison_list_is_empty', 'Orodha yako ya kulinganisha haina kitu', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19555', 'ke', 'convert_point_to_wallet', 'Badilisha Sehemu Kuwa Mkoba', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19556', 'ke', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Kumbuka: Unahitaji kuamsha chaguo la mkoba kwanza kabla ya kutumia kiboreshaji cha kilabu.', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19557', 'ke', 'create_an_account', 'Fungua akaunti.', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19558', 'ke', 'use_email_instead', 'Tumia Barua pepe Badala yake', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19559', 'ke', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Kwa kujisajili unakubali sheria na masharti yetu.', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19560', 'ke', 'create_account', 'Tengeneza akaunti', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19561', 'ke', 'or_join_with', 'Au Jiunge na', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19562', 'ke', 'already_have_an_account', 'Tayari una akaunti?', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19563', 'ke', 'log_in', 'Ingia', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19564', 'ke', 'computer__accessories', 'Kompyuta na Vifaa', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19565', 'ke', 'products', 'Bidhaa (s)', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19566', 'ke', 'in_your_cart', 'kwenye gari lako', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19567', 'ke', 'in_your_wishlist', 'katika orodha yako ya matamanio', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19568', 'ke', 'you_ordered', 'uliamuru', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19569', 'ke', 'default_shipping_address', 'Anwani ya Usafirishaji chaguomsingi', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19570', 'ke', 'sports__outdoor', 'Michezo na nje', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19571', 'ke', 'copied', 'Imenakiliwa', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19572', 'ke', 'copy_the_promote_link', 'Nakili Kiungo cha Kukuza', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19573', 'ke', 'write_a_review', 'Andika ukaguzi', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19574', 'ke', 'your_name', 'Jina lako', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19575', 'ke', 'comment', 'Maoni', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19576', 'ke', 'your_review', 'Ukaguzi wako', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19577', 'ke', 'submit_review', 'Tuma ukaguzi', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19578', 'ke', 'claire_willis', 'Claire Willis', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19579', 'ke', 'germaine_greene', 'Germaine Greene', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19580', 'ke', 'product_file', 'Faili ya Bidhaa', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19581', 'ke', 'choose_file', 'Chagua faili', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19582', 'ke', 'type_to_add_a_tag', 'Andika ili kuongeza lebo', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19583', 'ke', 'images', 'Picha', '2021-02-09 13:53:00', '2021-09-20 13:00:06'),
('19584', 'ke', 'main_images', 'Picha kuu', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19585', 'ke', 'meta_tags', 'Lebo za Meta', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19586', 'ke', 'digital_product_has_been_inserted_successfully', 'Bidhaa ya dijiti imeingizwa kwa mafanikio', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19587', 'ke', 'edit_digital_product', 'Hariri Bidhaa Dijitali', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19588', 'ke', 'select_an_option', 'Chagua chaguo', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19589', 'ke', 'tax', 'Kodi', '2021-02-09 13:53:01', '2021-02-09 13:53:01'),
('19590', 'ke', 'any_question_about_this_product', 'Swali lolote juu ya bidhaa hii?', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19591', 'ke', 'sign_in', 'Weka sahihi', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19592', 'ke', 'login_with_google', 'Ingia na Google', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19593', 'ke', 'login_with_facebook', 'Ingia na Facebook', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19594', 'ke', 'login_with_twitter', 'Ingia na Twitter', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19595', 'ke', 'click_to_show_phone_number', 'Bonyeza kuonyesha nambari ya simu', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19596', 'ke', 'other_ads_of', 'Matangazo mengine ya', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19597', 'ke', 'store_home', 'Hifadhi Nyumba', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19598', 'ke', 'top_selling', 'Uuzaji wa Juu', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19599', 'ke', 'shop_settings', 'Mipangilio ya Duka', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19600', 'ke', 'visit_shop', 'Tembelea Duka', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19601', 'ke', 'pickup_points', 'Pointi za Kuchukua', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19602', 'ke', 'select_pickup_point', 'Chagua Sehemu ya Kuchukua', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19603', 'ke', 'slider_settings', 'Mipangilio ya Slider', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19604', 'ke', 'social_media_link', 'Kiungo cha Media Jamii', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19605', 'ke', 'facebook', 'Picha za', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19606', 'ke', 'twitter', 'Twitter', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19607', 'ke', 'google', 'Google', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19608', 'ke', 'new_arrival_products', 'Bidhaa mpya za Kuwasili', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19609', 'ke', 'check_your_order_status', 'Angalia Hali yako ya Agizo', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19610', 'ke', 'shipping_method', 'Njia ya usafirishaji', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19611', 'ke', 'shipped_by', 'Kusafirishwa Na', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19612', 'ke', 'image', 'Picha', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19613', 'ke', 'sub_sub_category', 'Jamii ndogo', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19614', 'ke', 'inhouse_products', 'Bidhaa za ndani', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19615', 'ke', 'forgot_password', 'Umesahau nywila?', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19616', 'ke', 'enter_your_email_address_to_recover_your_password', 'Ingiza anwani yako ya barua pepe ili upate nenosiri lako.', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19617', 'ke', 'email_or_phone', 'Barua pepe au Simu', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19618', 'ke', 'send_password_reset_link', 'Tuma Kiungo Rudisha Nenosiri', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19619', 'ke', 'back_to_login', 'Rudi kwenye Ingia', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19620', 'ke', 'index', 'faharisi', '2021-02-09 13:53:01', '2021-02-09 13:53:01'),
('19621', 'ke', 'download_your_product', 'Pakua Bidhaa Yako', '2021-02-09 13:53:01', '2021-09-20 13:00:06'),
('19622', 'ke', 'option', 'Chaguo', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19623', 'ke', 'applied_refund_request', 'Ombi la Kurejeshewa Fedha', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19624', 'ke', 'item_has_been_renoved_from_wishlist', 'Kipengee kimebadilishwa kutoka orodha ya matamanio', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19625', 'ke', 'bulk_products_upload', 'Bidhaa za Wingi Pakia', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19626', 'ke', 'upload_csv', 'Pakia CSV', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19627', 'ke', 'create_a_ticket', 'Unda Tiketi', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19628', 'ke', 'tickets', 'Tiketi', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19629', 'ke', 'ticket_id', 'Kitambulisho cha Tiketi', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19630', 'ke', 'sending_date', 'Tarehe ya kutuma', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19631', 'ke', 'subject', 'Mada', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19632', 'ke', 'view_details', 'Angalia Maelezo', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19633', 'ke', 'provide_a_detailed_description', 'Toa maelezo ya kina', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19634', 'ke', 'type_your_reply', 'Andika jibu lako', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19635', 'ke', 'send_ticket', 'Tuma Tiketi', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19636', 'ke', 'load_more', 'Pakia Zaidi', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19637', 'ke', 'jewelry__watches', 'Vito vya mapambo na saa', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19638', 'ke', 'filters', 'Vichungi', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19639', 'ke', 'contact_address', 'Anwani ya mawasiliano', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19640', 'ke', 'contact_phone', 'Wasiliana na simu', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19641', 'ke', 'contact_email', 'Wasiliana na barua pepe', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19642', 'ke', 'filter_by', 'Chuja na', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19643', 'ke', 'condition', 'Hali', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19644', 'ke', 'all_type', 'Aina zote', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19645', 'ke', 'pay_with_wallet', 'Lipa na mkoba', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19646', 'ke', 'select_variation', 'Chagua tofauti', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19647', 'ke', 'no_product_added', 'Hakuna Bidhaa Iliyoongezwa', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19648', 'ke', 'status_has_been_updated_successfully', 'Hali imesasishwa kwa mafanikio', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19649', 'ke', 'all_seller_packages', 'Vifurushi vyote vya muuzaji', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19650', 'ke', 'add_new_package', 'Ongeza Kifurushi kipya', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19651', 'ke', 'package_logo', 'Nembo ya Kifurushi', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19652', 'ke', 'days', 'siku', '2021-02-09 13:53:02', '2021-02-09 13:53:02'),
('19653', 'ke', 'create_new_seller_package', 'Unda Kifurushi kipya cha Muuzaji', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19654', 'ke', 'package_name', 'Jina la Kifurushi', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19655', 'ke', 'duration', 'Muda', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19656', 'ke', 'validity_in_number_of_days', 'Uhalali katika idadi ya siku', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19657', 'ke', 'update_package_information', 'Sasisha Maelezo ya Kifurushi', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19658', 'ke', 'package_has_been_inserted_successfully', 'Kifurushi kimeingizwa kwa mafanikio', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19659', 'ke', 'refund_request', 'Ombi la Kurejeshewa pesa', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19660', 'ke', 'reason', 'Sababu', '2021-02-09 13:53:02', '2021-09-20 13:00:06'),
('19661', 'ke', 'label', 'Lebo', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19662', 'ke', 'select_label', 'Chagua Lebo', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19663', 'ke', 'multiple_select_label', 'Lebo ya Chagua Nyingi', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19664', 'ke', 'radio_label', 'Lebo ya Redio', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19665', 'ke', 'pickup_point_orders', 'Maagizo ya Sehemu ya Kuchukua', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19666', 'ke', 'view', 'Angalia', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19667', 'ke', 'order_', 'Agizo #', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19668', 'ke', 'order_status', 'Hali ya Agizo', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19669', 'ke', 'total_amount', 'Jumla', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19670', 'ke', 'total', 'JUMLA', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19671', 'ke', 'delivery_status_has_been_updated', 'Hali ya uwasilishaji imesasishwa', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19672', 'ke', 'payment_status_has_been_updated', 'Hali ya malipo imesasishwa', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19673', 'ke', 'invoice', 'HAKI', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19674', 'ke', 'set_refund_time', 'Weka Wakati wa Kurejesha', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19675', 'ke', 'set_time_for_sending_refund_request', 'Weka Wakati wa kutuma Ombi la Kurejeshewa pesa', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19676', 'ke', 'set_refund_sticker', 'Weka Kibandiko cha Kurejeshewa Fedha', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19677', 'ke', 'sticker', 'Kibandiko', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19678', 'ke', 'refund_request_all', 'Ombi la Kurejeshewa pesa zote', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19679', 'ke', 'order_id', 'Kitambulisho cha Agizo', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19680', 'ke', 'seller_approval', 'Idhini ya muuzaji', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19681', 'ke', 'admin_approval', 'Idhini ya Usimamizi', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19682', 'ke', 'refund_status', 'Hali ya Kurejeshewa Fedha', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19683', 'ke', 'no_refund', 'Hakuna Marejesho', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19684', 'ke', 'status_updated_successfully', 'Hali imesasishwa kwa mafanikio', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19685', 'ke', 'user_search_report', 'Ripoti ya Utafutaji wa Mtumiaji', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19686', 'ke', 'search_by', 'Tafuta Na', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19687', 'ke', 'number_searches', 'Utafutaji wa nambari', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19688', 'ke', 'sender', 'Mtumaji', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19689', 'ke', 'receiver', 'Mpokeaji', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19690', 'ke', 'verification_form_updated_successfully', 'Fomu ya uthibitishaji imesasishwa kwa mafanikio', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19691', 'ke', 'invalid_email_or_password', 'Barua pepe au nywila batili', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19692', 'ke', 'all_coupons', 'Kuponi zote', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19693', 'ke', 'add_new_coupon', 'Ongeza Kuponi Mpya', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19694', 'ke', 'coupon_information', 'Habari ya Kuponi', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19695', 'ke', 'start_date', 'Tarehe ya Kuanza', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19696', 'ke', 'end_date', 'Tarehe ya mwisho', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19697', 'ke', 'product_base', 'Msingi wa Bidhaa', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19698', 'ke', 'send_newsletter', 'Tuma Jarida', '2021-02-09 13:53:03', '2021-09-20 13:00:06'),
('19699', 'ke', 'mobile_users', 'Watumiaji wa rununu', '2021-02-09 13:53:04', '2021-09-20 13:00:06'),
('19700', 'ke', 'sms_subject', 'Mada ya SMS', '2021-02-09 13:53:04', '2021-09-20 13:00:06'),
('19701', 'ke', 'sms_content', 'Maudhui ya SMS', '2021-02-09 13:53:04', '2021-09-20 13:00:06'),
('19702', 'ke', 'all_flash_delas', 'Delas zote za Flash', '2021-02-09 13:53:04', '2021-09-20 13:00:06'),
('19703', 'ke', 'create_new_flash_dela', 'Unda Kiwango kipya cha Dela', '2021-02-09 13:53:04', '2021-09-20 13:00:06'),
('19704', 'ke', 'page_link', 'Kiungo cha Ukurasa', '2021-02-09 13:53:04', '2021-09-20 13:00:06'),
('19705', 'ke', 'flash_deal_information', 'Maelezo ya Deal Flash', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19706', 'ke', 'background_color', 'Rangi ya Asili', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19707', 'ke', '0000ff', '# 0000ff', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19708', 'ke', 'text_color', 'Rangi ya Nakala', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19709', 'ke', 'white', 'Nyeupe', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19710', 'ke', 'dark', 'Giza', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19711', 'ke', 'choose_products', 'Chagua Bidhaa', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19712', 'ke', 'discounts', 'Punguzo', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19713', 'ke', 'discount_type', 'Aina ya Punguzo', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19714', 'ke', 'twillo_credential', 'Kitambulisho cha Twillo', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19715', 'ke', 'twilio_sid', 'UPANDE WA TWILIO', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19716', 'ke', 'twilio_auth_token', 'MWANDISHI WA TWILIO ACHUKULIWA', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19717', 'ke', 'twilio_verify_sid', 'TWILIO Thibitisha SID', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19718', 'ke', 'valid_twillo_number', 'NAMBA HALISI YA TWILLO', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19719', 'ke', 'nexmo_credential', 'Kitambulisho cha Nexmo', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19720', 'ke', 'nexmo_key', 'FUNGUO YA NEXMO', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19721', 'ke', 'nexmo_secret', 'SIRI YA NEXMO', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19722', 'ke', 'ssl_wireless_credential', 'Kitambulisho cha Wiki ya SSL', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19723', 'ke', 'ssl_sms_api_token', 'API ya SMS ya SSL Imefutwa', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19724', 'ke', 'ssl_sms_sid', 'SMS ya SID ya SSL', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19725', 'ke', 'ssl_sms_url', 'URL ya SMS ya SSL', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19726', 'ke', 'fast2sms_credential', 'Utambulisho wa Fast2SMS', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19727', 'ke', 'auth_key', 'AUTH KEY', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19728', 'ke', 'route', 'NJIA', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19729', 'ke', 'promotional_use', 'Matumizi ya Uendelezaji', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19730', 'ke', 'transactional_use', 'Matumizi ya shughuli', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19731', 'ke', 'sender_id', 'Kitambulisho cha SENDER', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19732', 'ke', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19733', 'ke', 'twillo_otp', 'Twillo OTP', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19734', 'ke', 'ssl_wireless_otp', 'OTP isiyo na waya ya SSL', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19735', 'ke', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 13:53:04', '2021-09-20 13:00:07'),
('19736', 'ke', 'order_placement', 'Kuweka Agizo', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19737', 'ke', 'delivery_status_changing_time', 'Utoaji wa Hali ya Utoaji wa Hali', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19738', 'ke', 'paid_status_changing_time', 'Hali ya Kulipa Kubadilisha Saa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19739', 'ke', 'send_bulk_sms', 'Tuma SMS ya Wingi', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19740', 'ke', 'all_subscribers', 'Wasajili wote', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19741', 'ke', 'coupon_information_adding', 'Kuongeza Habari', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19742', 'ke', 'coupon_type', 'Aina ya Coupon', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19743', 'ke', 'for_products', 'Kwa Bidhaa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19744', 'ke', 'for_total_orders', 'Kwa Agizo Jumla', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19745', 'ke', 'add_your_product_base_coupon', 'Ongeza Bidhaa yako Msingi Coupon', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19746', 'ke', 'coupon_code', 'Nambari ya kuponi', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19747', 'ke', 'sub_category', 'Jamii Ndogo', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19748', 'ke', 'add_more', 'Ongeza zaidi', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19749', 'ke', 'add_your_cart_base_coupon', 'Ongeza Coupon Yako ya Msingi wa Cart', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19750', 'ke', 'minimum_shopping', 'Kiwango cha chini cha Ununuzi', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19751', 'ke', 'maximum_discount_amount', 'Kiwango cha juu cha Punguzo', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19752', 'ke', 'coupon_information_update', 'Sasisho la Habari ya Kuponi', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19753', 'ke', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Tafadhali Sanidi Mipangilio ya SMTP ya kufanya kazi kwa kutuma barua pepe kwa utaftaji mzuri', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19754', 'ke', 'configure_now', 'Sanidi Sasa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19755', 'ke', 'total_published_products', 'Jumla ya bidhaa zilizochapishwa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19756', 'ke', 'total_sellers_products', 'Jumla ya wauzaji bidhaa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19757', 'ke', 'total_admin_products', 'Jumla ya bidhaa za msimamizi', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19758', 'ke', 'manage_products', 'Dhibiti Bidhaa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19759', 'ke', 'total_product_category', 'Jamii ya bidhaa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19760', 'ke', 'create_category', 'Unda Jamii', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19761', 'ke', 'total_product_sub_sub_category', 'Jumla ya bidhaa ndogo ya kitengo', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19762', 'ke', 'create_sub_sub_category', 'Unda Jamii Ndogo Ndogo', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19763', 'ke', 'total_product_sub_category', 'Jumla ya kitengo cha bidhaa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19764', 'ke', 'create_sub_category', 'Unda Jamii Ndogo', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19765', 'ke', 'total_product_brand', 'Bidhaa ya jumla', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19766', 'ke', 'create_brand', 'Unda Chapa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19767', 'ke', 'total_sellers', 'Wauzaji wa jumla', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19768', 'ke', 'total_approved_sellers', 'Jumla ya wauzaji walioidhinishwa', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19769', 'ke', 'total_pending_sellers', 'Wauzaji wote wanaosubiri', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19770', 'ke', 'manage_sellers', 'Dhibiti Wauzaji', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19771', 'ke', 'category_wise_product_sale', 'Jamii kuuza bidhaa kwa busara', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19772', 'ke', 'sale', 'Uuzaji', '2021-02-09 13:53:05', '2021-09-20 13:00:07'),
('19773', 'ke', 'category_wise_product_stock', 'Jamii hisa ya bidhaa yenye busara', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19774', 'ke', 'category_name', 'Jina la Jamii', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19775', 'ke', 'stock', 'Hisa', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19776', 'ke', 'frontend', 'Mbele', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19777', 'ke', 'home_page', 'Ukurasa wa nyumbani', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19778', 'ke', 'setting', 'kuweka', '2021-02-09 13:53:06', '2021-02-09 13:53:06'),
('19779', 'ke', 'policy_page', 'Ukurasa wa sera', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19780', 'ke', 'general', 'Mkuu', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19781', 'ke', 'click_here', 'Bonyeza hapa', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19782', 'ke', 'useful_link', 'Kiunga muhimu', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19783', 'ke', 'activation', 'Uanzishaji', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19784', 'ke', 'smtp', 'SMTP', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19785', 'ke', 'payment_method', 'Njia ya malipo', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19786', 'ke', 'social_media', 'Mtandao wa kijamii', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19787', 'ke', 'business', 'Biashara', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19788', 'ke', 'seller_verification', 'Uthibitishaji wa muuzaji', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19789', 'ke', 'form_setting', 'mpangilio wa fomu', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19790', 'ke', 'language', 'Lugha', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19791', 'ke', 'dashboard', 'Dashibodi', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19792', 'ke', 'pos_system', 'Mfumo wa POS', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19793', 'ke', 'pos_manager', 'Meneja wa POS', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19794', 'ke', 'pos_configuration', 'Usanidi wa POS', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19795', 'ke', 'products', 'Bidhaa', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19796', 'ke', 'add_new_product', 'Ongeza bidhaa mpya', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19797', 'ke', 'all_products', 'Bidhaa zote', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19798', 'ke', 'in_house_products', 'Katika Bidhaa za Nyumba', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19799', 'ke', 'seller_products', 'Bidhaa za muuzaji', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19800', 'ke', 'digital_products', 'Bidhaa za Dijitali', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19801', 'ke', 'bulk_import', 'Uingizaji wa Wingi', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19802', 'ke', 'bulk_export', 'Usafirishaji wa Wingi', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19803', 'ke', 'category', 'Jamii', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19804', 'ke', 'subcategory', 'Jamii ndogo', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19805', 'ke', 'sub_subcategory', 'Kitongoji kidogo', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19806', 'ke', 'brand', 'Chapa', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19807', 'ke', 'attribute', 'Sifa', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19808', 'ke', 'product_reviews', 'Mapitio ya Bidhaa', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19809', 'ke', 'sales', 'Mauzo', '2021-02-09 13:53:06', '2021-09-20 13:00:07'),
('19810', 'ke', 'all_orders', 'Maagizo yote', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19811', 'ke', 'inhouse_orders', 'Amri za ndani', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19812', 'ke', 'seller_orders', 'Amri za muuzaji', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19813', 'ke', 'pickup_point_order', 'Amri ya Kuokota ya Kuchukua', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19814', 'ke', 'refunds', 'Marejesho', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19815', 'ke', 'refund_requests', 'Maombi ya Kurejeshewa pesa', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19816', 'ke', 'approved_refund', 'Marejesho Yaliyoidhinishwa', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19817', 'ke', 'refund_configuration', 'Usanidi wa Marejesho', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19818', 'ke', 'customers', 'Wateja', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19819', 'ke', 'customer_list', 'Orodha ya Wateja', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19820', 'ke', 'classified_products', 'Bidhaa Zilizoainishwa', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19821', 'ke', 'classified_packages', 'Vifurushi vilivyoainishwa', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19822', 'ke', 'sellers', 'Wauzaji', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19823', 'ke', 'all_seller', 'Muuzaji wote', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19824', 'ke', 'payouts', 'Malipo', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19825', 'ke', 'payout_requests', 'Maombi ya Malipo', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19826', 'ke', 'seller_commission', 'Tume ya muuzaji', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19827', 'ke', 'seller_packages', 'Vifurushi vya muuzaji', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19828', 'ke', 'seller_verification_form', 'Fomu ya Uthibitishaji wa muuzaji', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19829', 'ke', 'reports', 'Ripoti', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19830', 'ke', 'in_house_product_sale', 'Katika Uuzaji wa Bidhaa za Nyumba', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19831', 'ke', 'seller_products_sale', 'Uuzaji wa Bidhaa za muuzaji', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19832', 'ke', 'products_stock', 'Bidhaa Stock', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19833', 'ke', 'products_wishlist', 'Orodha ya matamanio ya bidhaa', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19834', 'ke', 'user_searches', 'Utafutaji wa Mtumiaji', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19835', 'ke', 'marketing', 'Uuzaji', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19836', 'ke', 'flash_deals', 'Kiwango cha mikataba', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19837', 'ke', 'newsletters', 'Jarida', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19838', 'ke', 'bulk_sms', 'Ujumbe mwingi', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19839', 'ke', 'subscribers', 'Wafuatiliaji', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19840', 'ke', 'coupon', 'Kuponi', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19841', 'ke', 'support', 'Msaada', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19842', 'ke', 'ticket', 'Tikiti', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19843', 'ke', 'product_queries', 'Maswali ya Bidhaa', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19844', 'ke', 'website_setup', 'Usanidi wa Tovuti', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19845', 'ke', 'header', 'Kichwa', '2021-02-09 13:53:07', '2021-09-20 13:00:07'),
('19846', 'ke', 'footer', 'Kijachini', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19847', 'ke', 'pages', 'Kurasa', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19848', 'ke', 'appearance', 'Mwonekano', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19849', 'ke', 'setup__configurations', 'Usanidi na Mipangilio', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19850', 'ke', 'general_settings', 'Mipangilio ya Jumla', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19851', 'ke', 'features_activation', 'Vipengele vya uanzishaji', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19852', 'ke', 'languages', 'Lugha', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19853', 'ke', 'currency', 'Sarafu', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19854', 'ke', 'pickup_point', 'Sehemu ya kuchukua', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19855', 'ke', 'smtp_settings', 'Mipangilio ya SMTP', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19856', 'ke', 'payment_methods', 'Njia za Malipo', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19857', 'ke', 'file_system_configuration', 'Usanidi wa Mfumo wa Faili', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19858', 'ke', 'social_media_logins', 'Ingia vyombo vya habari vya kijamii', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19859', 'ke', 'analytics_tools', 'Zana za Uchanganuzi', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19860', 'ke', 'facebook_chat', 'Gumzo la Facebook', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19861', 'ke', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19862', 'ke', 'shipping_configuration', 'Usanidi wa Usafirishaji', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19863', 'ke', 'shipping_countries', 'Nchi za Usafirishaji', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19864', 'ke', 'affiliate_system', 'Mfumo wa Ushirika', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19865', 'ke', 'affiliate_registration_form', 'Fomu ya Usajili wa Ushirika', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19866', 'ke', 'affiliate_configurations', 'Mipangilio ya Ushirika', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19867', 'ke', 'affiliate_users', 'Watumiaji Washirika', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19868', 'ke', 'referral_users', 'Watumiaji wa Rufaa', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19869', 'ke', 'affiliate_withdraw_requests', 'Maombi ya Uondoaji wa Ushirika', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19870', 'ke', 'offline_payment_system', 'Mfumo wa Malipo Nje ya Mtandao', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19871', 'ke', 'manual_payment_methods', 'Njia za Malipo ya Mwongozo', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19872', 'ke', 'offline_wallet_recharge', 'Uchaji wa mkoba wa nje ya mtandao', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19873', 'ke', 'offline_customer_package_payments', 'Malipo ya Kifurushi cha Wateja wa Mtandaoni', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19874', 'ke', 'offline_seller_package_payments', 'Malipo ya kifurushi cha muuzaji wa nje ya mtandao', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19875', 'ke', 'paytm_payment_gateway', 'Lango la Malipo ya Paytm', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19876', 'ke', 'set_paytm_credentials', 'Weka Hati za Paytm', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19877', 'ke', 'club_point_system', 'Mfumo wa Club Point', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19878', 'ke', 'club_point_configurations', 'Mipangilio ya Club Point', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19879', 'ke', 'set_product_point', 'Weka Sehemu ya Bidhaa', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19880', 'ke', 'user_points', 'Pointi za Mtumiaji', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19881', 'ke', 'otp_system', 'Mfumo wa OTP', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19882', 'ke', 'otp_configurations', 'Mipangilio ya OTP', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19883', 'ke', 'set_otp_credentials', 'Weka Hati za OTP', '2021-02-09 13:53:08', '2021-09-20 13:00:07'),
('19884', 'ke', 'staffs', 'Wafanyikazi', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19885', 'ke', 'all_staffs', 'Fimbo zote', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19886', 'ke', 'staff_permissions', 'Ruhusa za wafanyikazi', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19887', 'ke', 'addon_manager', 'Meneja wa Addon', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19888', 'ke', 'browse_website', 'Vinjari Tovuti', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19889', 'ke', 'pos', 'POS', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19890', 'ke', 'notifications', 'Arifa', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19891', 'ke', 'new_orders', 'amri mpya', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19892', 'ke', 'userimage', 'picha ya mtumiaji', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19893', 'ke', 'profile', 'Profaili', '2021-02-09 13:53:09', '2021-09-20 13:00:07'),
('19894', 'ke', 'logout', 'Kuondoka', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19895', 'ke', 'page_not_found', 'Ukurasa Haukupatikana!', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19896', 'ke', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'Ukurasa unaotafuta haujapatikana kwenye seva yetu.', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19897', 'ke', 'registration', 'Usajili', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19898', 'ke', 'i_am_shopping_for', 'Ninanunua ...', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19899', 'ke', 'compare', 'Linganisha', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19900', 'ke', 'wishlist', 'Orodha ya matamanio', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19901', 'ke', 'cart', 'Kikapu', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19902', 'ke', 'your_cart_is_empty', 'Kikapu chako hakina kitu', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19903', 'ke', 'categories', 'Jamii', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19904', 'ke', 'see_all', 'Ona yote', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19905', 'ke', 'seller_policy', 'Sera ya muuzaji', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19906', 'ke', 'return_policy', 'Sera ya Kurudisha', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19907', 'ke', 'support_policy', 'Sera ya Msaada', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19908', 'ke', 'privacy_policy', 'Sera ya faragha', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19909', 'ke', 'your_email_address', 'Anwani yako ya barua pepe', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19910', 'ke', 'subscribe', 'Jisajili', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19911', 'ke', 'contact_info', 'Maelezo ya Mawasiliano', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19912', 'ke', 'address', 'Anwani', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19913', 'ke', 'phone', 'Simu', '2021-02-09 13:53:59', '2021-09-20 13:00:07'),
('19914', 'ke', 'email', 'Barua pepe', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19915', 'ke', 'login', 'Ingia', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19916', 'ke', 'my_account', 'Akaunti yangu', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19917', 'ke', 'order_history', 'Historia ya Agizo', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19918', 'ke', 'my_wishlist', 'Orodha ya matamanio yangu', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19919', 'ke', 'track_order', 'Fuatilia Agizo', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19920', 'ke', 'be_an_affiliate_partner', 'Kuwa mshirika wa ushirika', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19921', 'ke', 'be_a_seller', 'Kuwa muuzaji', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19922', 'ke', 'apply_now', 'Tumia Sasa', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19923', 'ke', 'confirmation', 'Uthibitisho', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19924', 'ke', 'delete_confirmation_message', 'Futa ujumbe wa uthibitisho', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19925', 'ke', 'cancel', 'Ghairi', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19926', 'ke', 'delete', 'Futa', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19927', 'ke', 'item_has_been_added_to_compare_list', 'Bidhaa imeongezwa kulinganisha orodha', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19928', 'ke', 'please_login_first', 'Tafadhali ingia kwanza', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19929', 'ke', 'total_earnings_from', 'Jumla ya Mapato Kutoka', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19930', 'ke', 'client_subscription', 'Usajili wa Mteja', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19931', 'ke', 'product_category', 'Jamii ya bidhaa', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19932', 'ke', 'product_sub_sub_category', 'Jamii ndogo ya bidhaa', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19933', 'ke', 'product_sub_category', 'Jamii ndogo ya bidhaa', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19934', 'ke', 'product_brand', 'Bidhaa chapa', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19935', 'ke', 'top_client_packages', 'Vifurushi vya Mteja wa Juu', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19936', 'ke', 'top_freelancer_packages', 'Vifurushi vya Juu vya Freelancer', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19937', 'ke', 'number_of_sale', 'Idadi ya mauzo', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19938', 'ke', 'number_of_stock', 'Idadi ya Hisa', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19939', 'ke', 'top_10_products', 'Bidhaa 10 za juu', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19940', 'ke', 'top_12_products', 'Bidhaa 12 za Juu', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19941', 'ke', 'admin_can_not_be_a_seller', 'Usimamizi hauwezi kuwa muuzaji', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19942', 'ke', 'filter_by_rating', 'Chuja kwa Ukadiriaji', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19943', 'ke', 'published_reviews_updated_successfully', 'Maoni yaliyochapishwa yamesasishwa kwa mafanikio', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19944', 'ke', 'refund_sticker_has_been_updated_successfully', 'Kibandiko cha Kurejeshewa pesa kimesasishwa kwa mafanikio', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19945', 'ke', 'edit_product', 'Hariri Bidhaa', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19946', 'ke', 'meta_images', 'Picha za Meta', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19947', 'ke', 'update_product', 'Sasisha Bidhaa', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19948', 'ke', 'product_has_been_deleted_successfully', 'Bidhaa imefutwa kwa mafanikio', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19949', 'ke', 'your_profile_has_been_updated_successfully', 'Profaili yako imesasishwa kwa mafanikio!', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19950', 'ke', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Kikomo cha kupakia kimefikiwa. Tafadhali sasisha kifurushi chako.', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19951', 'ke', 'add_your_product', 'Ongeza Bidhaa Yako', '2021-02-09 13:54:00', '2021-09-20 13:00:07'),
('19952', 'ke', 'select_a_category', 'Chagua kitengo', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19953', 'ke', 'select_a_brand', 'Chagua chapa', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19954', 'ke', 'product_unit', 'Kitengo cha Bidhaa', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19955', 'ke', 'minimum_qty', 'Kiwango cha chini cha Kiasi.', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19956', 'ke', 'product_tag', 'Lebo ya Bidhaa', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19957', 'ke', 'type__hit_enter', 'Andika & ingiza kuingia', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19958', 'ke', 'videos', 'Video', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19959', 'ke', 'video_from', 'Video Kutoka', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19960', 'ke', 'video_url', 'URL ya Video', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19961', 'ke', 'customer_choice', 'Chaguo la Wateja', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19962', 'ke', 'pdf', 'PDF', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19963', 'ke', 'choose_pdf', 'Chagua PDF', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19964', 'ke', 'select_category', 'Chagua Jamii', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19965', 'ke', 'target_category', 'Jamii inayolengwa', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19966', 'ke', 'subsubcategory', 'jamii ndogo', '2021-02-09 13:54:01', '2021-02-09 13:54:01'),
('19967', 'ke', 'search_category', 'Jamii ya Utafutaji', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19968', 'ke', 'search_subcategory', 'Tafuta Kijamii', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19969', 'ke', 'search_subsubcategory', 'Tafuta SubSubCategory', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19970', 'ke', 'update_your_product', 'Sasisha bidhaa yako', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19971', 'ke', 'product_has_been_updated_successfully', 'Bidhaa imesasishwa kwa mafanikio', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19972', 'ke', 'add_your_digital_product', 'Ongeza Bidhaa Yako ya Dijiti', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19973', 'ke', 'active_ecommerce_cms_update_process', 'Mchakato wa Kusasisha wa eCommerce CMS', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19974', 'ke', 'codecanyon_purchase_code', 'Nambari ya ununuzi wa Codecanyon', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19975', 'ke', 'database_name', 'Jina la Hifadhidata', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19976', 'ke', 'database_username', 'Jina la Mtumiaji la Hifadhidata', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19977', 'ke', 'database_password', 'Nenosiri la Hifadhidata', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19978', 'ke', 'database_hostname', 'Jina la mwenyeji wa Hifadhidata', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19979', 'ke', 'update_now', 'Sasisha Sasa', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19980', 'ke', 'congratulations', 'Hongera', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19981', 'ke', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'Umekamilisha mchakato wa kusasisha. Tafadhali Ingia ili uendelee', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19982', 'ke', 'go_to_home', 'Nenda nyumbani', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19983', 'ke', 'login_to_admin_panel', 'Ingia kwenye jopo la Msimamizi', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19984', 'ke', 's3_file_system_credentials', 'S3 Kitambulisho cha Mfumo wa Faili', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19985', 'ke', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19986', 'ke', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19987', 'ke', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19988', 'ke', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 13:54:01', '2021-09-20 13:00:07'),
('19989', 'ke', 'aws_url', 'AWS_URL', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19990', 'ke', 's3_file_system_activation', 'Uanzishaji wa Mfumo wa Faili ya S3', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19991', 'ke', 'your_phone_number', 'Nambari yako ya simu', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19992', 'ke', 'zip_file', 'Faili ya Zip', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19993', 'ke', 'install', 'Sakinisha', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19994', 'ke', 'this_version_is_not_capable_of_installing_addons_please_update', 'Toleo hili halina uwezo wa kusanikisha Addons, Tafadhali sasisha', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19995', 'ke', 'search_in_menu', 'Tafuta kwenye menyu', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19996', 'ke', 'uploaded_files', 'Faili Zilizopakiwa', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19997', 'ke', 'shipping_cities', 'Miji ya Usafirishaji', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19998', 'ke', 'system', 'Mfumo', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('19999', 'ke', 'server_status', 'Hali ya seva', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20000', 'ke', 'nothing_found', 'Hakuna Kilichopatikana', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20001', 'ke', 'parent_category', 'Jamii ya Mzazi', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20002', 'ke', 'level', 'Kiwango', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20003', 'ke', 'category_information', 'Habari ya Jamii', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20004', 'ke', 'translatable', 'Inatafsiriwa', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20005', 'ke', 'no_parent', 'Hakuna Mzazi', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20006', 'ke', 'physical', 'Kimwili', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20007', 'ke', 'digital', 'Digital', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20008', 'ke', '200x200', '200x200', '2021-02-09 13:54:02', '2021-02-09 13:54:02'),
('20009', 'ke', '32x32', '32x32', '2021-02-09 13:54:02', '2021-02-09 13:54:02'),
('20010', 'ke', 'search_your_files', 'Tafuta faili zako', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20011', 'ke', 'category_has_been_updated_successfully', 'Jamii imesasishwa kwa mafanikio', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20012', 'ke', 'all_uploaded_files', 'Faili zote zilizopakiwa', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20013', 'ke', 'upload_new_file', 'Pakia faili mpya', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20014', 'ke', 'all_files', 'Faili zote', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20015', 'ke', 'search', 'Tafuta', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20016', 'ke', 'details_info', 'Maelezo ya Maelezo', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20017', 'ke', 'copy_link', 'Nakili Kiungo', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20018', 'ke', 'are_you_sure_to_delete_this_file', 'Je, una uhakika wa kufuta faili hii?', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20019', 'ke', 'file_info', 'Maelezo ya Faili', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20020', 'ke', 'link_copied_to_clipboard', 'Kiungo kimenakiliwa kwenye clipboard', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20021', 'ke', 'oops_unable_to_copy', 'Lo, haiwezi kunakili', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20022', 'ke', 'file_deleted_successfully', 'Faili imefutwa kwa mafanikio', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20023', 'ke', 'add_new_brand', 'Ongeza Bidhaa Mpya', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20024', 'ke', '120x80', '120x80', '2021-02-09 13:54:02', '2021-02-09 13:54:02'),
('20025', 'ke', 'brand_information', 'Maelezo ya Bidhaa', '2021-02-09 13:54:02', '2021-09-20 13:00:07'),
('20026', 'ke', 'brand_has_been_updated_successfully', 'Bidhaa imesasishwa kwa mafanikio', '2021-02-09 13:54:03', '2021-09-20 13:00:07'),
('20027', 'ke', 'brand_has_been_deleted_successfully', 'Chapa imefutwa kwa mafanikio', '2021-02-09 13:54:03', '2021-09-20 13:00:07'),
('20028', 'ke', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'Hii hutumiwa kwa utaftaji. Ingiza maneno hayo ambayo cutomer anaweza kupata bidhaa hii.', '2021-02-09 13:54:03', '2021-09-20 13:00:07'),
('20029', 'ke', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'Picha hizi zinaonekana kwenye matunzio ya ukurasa wa maelezo ya bidhaa. Tumia picha za ukubwa 600x600.', '2021-02-09 13:54:03', '2021-09-20 13:00:07'),
('20030', 'ke', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'Picha hii inaonekana katika sanduku la bidhaa zote. Tumia picha ya ukubwa wa 300x300. Weka nafasi tupu karibu na kitu kuu cha picha yako kwani tulilazimika kupunguza makali katika vifaa tofauti kuifanya iwe msikivu.', '2021-02-09 13:54:03', '2021-09-20 13:00:07'),
('20031', 'ke', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Tumia kiunga sahihi bila parameter ya ziada. Usitumie kiunga kifupi cha kushiriki / kupachika msimbo wa iframe.', '2021-02-09 13:54:03', '2021-09-20 13:00:07'),
('20032', 'ke', 'save_product', 'Okoa Bidhaa', '2021-02-09 13:54:03', '2021-09-20 13:00:07'),
('20033', 'ke', 'product_has_been_inserted_successfully', 'Bidhaa imeingizwa kwa mafanikio', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20034', 'ke', 'something_went_wrong', 'Hitilafu imetokea!', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20035', 'ke', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Samahani kwa usumbufu, lakini tunashughulikia.', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20036', 'ke', 'error_code', 'Nambari ya hitilafu', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20037', 'ke', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Tafadhali Sanidi Mipangilio ya SMTP ili kufanya kazi kwa utumaji wote wa barua pepe', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20038', 'ke', 'order', 'Agizo', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20039', 'ke', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'Tuna urefu mdogo wa bendera ili kudumisha UI. Tulilazimika kupanda kutoka upande wa kushoto na kulia kwa mtazamo wa vifaa anuwai kuifanya iwe msikivu. Kabla ya kubuni bendera kumbuka vidokezo hivi.', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20040', 'ke', 'home_banner_3_max_3', 'Bango la Nyumba 3 (Upeo 3)', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20041', 'ke', 'add_new_seller', 'Ongeza Muuzaji Mpya', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20042', 'ke', 'filter_by_approval', 'Chuja kwa Idhini', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20043', 'ke', 'nonapproved', 'Isiyoidhinishwa', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20044', 'ke', 'type_name_or_email__enter', 'Andika jina au barua pepe & Enter', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20045', 'ke', 'due_to_seller', 'Kutokana na muuzaji', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20046', 'ke', 'log_in_as_this_seller', 'Ingia kama Muuzaji huyu', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20047', 'ke', 'go_to_payment', 'Nenda kwa Malipo', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20048', 'ke', 'ban_this_seller', 'Piga marufuku muuzaji huyu', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20049', 'ke', 'do_you_really_want_to_ban_this_seller', 'Je! Kweli unataka kupiga marufuku muuzaji huyu?', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20050', 'ke', 'proceed', 'Endelea!', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20051', 'ke', 'approved_sellers_updated_successfully', 'Wauzaji walioidhinishwa walisasishwa kwa mafanikio', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20052', 'ke', 'seller_has_been_deleted_successfully', 'Muuzaji amefutwa kwa mafanikio', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20053', 'ke', 'seller_information', 'Habari za muuzaji', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20054', 'ke', 'seller_has_been_inserted_successfully', 'Muuzaji ameingizwa vizuri', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20055', 'ke', 'email_already_exists', 'Barua pepe tayari ipo!', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20056', 'ke', 'verify_your_email_address', 'Thibitisha Anwani yako ya Barua pepe', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20057', 'ke', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Kabla ya kuendelea, tafadhali angalia barua pepe yako kwa kiunga cha uthibitishaji.', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20058', 'ke', 'if_you_did_not_receive_the_email', 'Ikiwa haukupokea barua pepe.', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20059', 'ke', 'click_here_to_request_another', 'Bonyeza hapa kuomba mwingine', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20060', 'ke', 'email_verification', 'Uthibitishaji wa Barua pepe', '2021-02-09 13:54:03', '2021-09-20 13:00:08'),
('20061', 'ke', 'email_verification__', 'Uthibitishaji wa Barua pepe -', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20062', 'ke', 'https_activation', 'Uanzishaji wa HTTPS', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20063', 'ke', 'maintenance_mode', 'Njia ya Matengenezo', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20064', 'ke', 'maintenance_mode_activation', 'Uanzishaji wa Njia ya Matengenezo', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20065', 'ke', 'classified_product_activate', 'Bidhaa Zilizoainishwa Washa', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20066', 'ke', 'classified_product', 'Bidhaa Iliyoainishwa', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20067', 'ke', 'business_related', 'Biashara Kuhusiana', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20068', 'ke', 'vendor_system_activation', 'Uanzishaji wa Mfumo wa Wauzaji', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20069', 'ke', 'wallet_system_activation', 'Uanzishaji wa Mfumo wa Mkoba', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20070', 'ke', 'coupon_system_activation', 'Uanzishaji wa Mfumo wa Kuponi', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20071', 'ke', 'pickup_point_activation', 'Uanzishaji wa Sehemu ya Kuchukua', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20072', 'ke', 'conversation_activation', 'Uanzishaji wa Mazungumzo', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20073', 'ke', 'guest_checkout_activation', 'Uanzishaji wa Malipo ya Wageni', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20074', 'ke', 'categorybased_commission', 'Tume inayotegemea jamii', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20075', 'ke', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'Baada ya kuamsha chaguo hili maagizo ya muuzaji yatalemazwa na Unahitaji kuweka tume kwa kila kitengo vinginevyo Msimamizi hatapata maagizo yoyote', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20076', 'ke', 'set_commisssion_now', 'Weka Commisssion Sasa', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20077', 'ke', 'payment_related', 'Malipo yanahusiana', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20078', 'ke', 'paypal_payment_activation', 'Uanzishaji wa Malipo ya Paypal', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20079', 'ke', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'Unahitaji kusanidi Paypal kwa usahihi ili kuwezesha huduma hii', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20080', 'ke', 'stripe_payment_activation', 'Uanzishaji wa Malipo ya Mistari', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20081', 'ke', 'sslcommerz_activation', 'Uanzishaji wa SSlCommerz', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20082', 'ke', 'instamojo_payment_activation', 'Uanzishaji wa Malipo ya Instamojo', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20083', 'ke', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'Unahitaji kusanidi Malipo ya Instamojo kwa usahihi ili kuwezesha huduma hii', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20084', 'ke', 'razor_pay_activation', 'Uamilishaji wa Kulipa Razor', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20085', 'ke', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'Unahitaji kusanidi Razor kwa usahihi kuwezesha huduma hii', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20086', 'ke', 'paystack_activation', 'Uanzishaji wa PayStack', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20087', 'ke', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'Unahitaji kusanidi PayStack kwa usahihi ili kuwezesha huduma hii', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20088', 'ke', 'voguepay_activation', 'Uanzishaji wa VoguePay', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20089', 'ke', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'Unahitaji kusanidi VoguePay kwa usahihi ili kuwezesha huduma hii', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20090', 'ke', 'payhere_activation', 'Uamilishaji wa Payhere', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20091', 'ke', 'ngenius_activation', 'Uanzishaji wa Ngenius', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20092', 'ke', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'Unahitaji kusanidi Ngenius kwa usahihi ili kuwezesha huduma hii', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20093', 'ke', 'iyzico_activation', 'Uanzishaji wa Iyzico', '2021-02-09 13:54:04', '2021-09-20 13:00:08'),
('20094', 'ke', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'Unahitaji kusanidi iyzico kwa usahihi ili kuwezesha huduma hii', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20095', 'ke', 'bkash_activation', 'Uanzishaji wa Bkash', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20096', 'ke', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'Unahitaji kusanidi bkash kwa usahihi ili kuwezesha huduma hii', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20097', 'ke', 'nagad_activation', 'Uanzishaji wa Nagad', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20098', 'ke', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'Unahitaji kusanidi nagad kwa usahihi kuwezesha huduma hii', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20099', 'ke', 'cash_payment_activation', 'Uanzishaji wa Malipo ya Fedha', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20100', 'ke', 'social_media_login', 'Ingia Media ya Jamii', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20101', 'ke', 'facebook_login', 'Kuingia kwenye Facebook', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20102', 'ke', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'Unahitaji kusanidi Mteja wa Facebook kwa usahihi ili kuwezesha huduma hii', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20103', 'ke', 'google_login', 'Ingia kwenye Google', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20104', 'ke', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'Unahitaji kusanidi Mteja wa Google kwa usahihi ili kuwezesha huduma hii', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20105', 'ke', 'twitter_login', 'Kuingia kwa Twitter', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20106', 'ke', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'Unahitaji kusanidi Mteja wa Twitter kwa usahihi kuwezesha huduma hii', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20107', 'ke', 'shop_logo', 'Nembo ya Duka', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20108', 'ke', 'shop_address', 'Anwani ya Duka', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20109', 'ke', 'banner_settings', 'Mipangilio ya Bango', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20110', 'ke', 'banners', 'Mabango', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20111', 'ke', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'Tulilazimika kupunguza urefu kwa msimamo thabiti. Katika kifaa fulani pande zote za bendera zinaweza kupunguzwa kwa upeo wa urefu.', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20112', 'ke', 'insert_link_with_https_', 'Ingiza kiunga na https', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20113', 'ke', 'your_shop_has_been_updated_successfully', 'Duka lako limesasishwa kwa mafanikio!', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20114', 'ke', 'search_result_for_', 'Matokeo ya utaftaji wa', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20115', 'ke', 'brand_has_been_inserted_successfully', 'Chapa imeingizwa kwa mafanikio', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20116', 'ke', 'about', 'Kuhusu', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20117', 'ke', 'payout_info', 'Maelezo ya Malipo', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20118', 'ke', 'bank_acc_name', 'Jina la Benki', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20119', 'ke', 'bank_acc_number', 'Nambari ya Acc ya Benki', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20120', 'ke', 'total_products', 'Jumla ya Bidhaa', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20121', 'ke', 'total_sold_amount', 'Jumla ya Kiasi Kilichouzwa', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20122', 'ke', 'wallet_balance', 'Mizani ya Mkoba', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20123', 'ke', 'cookies_agreement', 'Makubaliano ya Vidakuzi', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20124', 'ke', 'cookies_agreement_text', 'Nakala ya Mkataba wa Vidakuzi', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20125', 'ke', 'show_cookies_agreement', 'Onyesha Mkataba wa Vidakuzi?', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20126', 'ke', 'custom_script', 'Hati maalum', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20127', 'ke', 'header_custom_script__before_head', 'Hati ya desturi ya kichwa - kabla ya </head>', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20128', 'ke', 'write_script_with_script_tag', 'Andika hati na lebo ya <script>', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20129', 'ke', 'footer_custom_script__before_body', 'Hati maalum ya kijachini - kabla ya </body>', '2021-02-09 13:54:05', '2021-09-20 13:00:08'),
('20130', 'ke', 'category_has_been_inserted_successfully', 'Jamii imeingizwa kwa mafanikio', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20131', 'ke', 'all_flash_deals', 'Ofa Zote za Kiwango', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20132', 'ke', 'create_new_flash_deal', 'Unda Mpango Mpya wa Kiwango', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20133', 'ke', 'ffffff', '#MAFANIKIO', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20134', 'ke', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Picha hii inaonyeshwa kama bango la kufunika kwenye ukurasa wa maelezo ya mpango wa flash.', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20135', 'ke', 'flash_deal_has_been_inserted_successfully', 'Mpango wa Flash umeingizwa kwa mafanikio', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20136', 'ke', 'flash_deal_status_updated_successfully', 'Hali ya mpango wa Flash imesasishwa vizuri', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20137', 'ke', 'flash_deal_has_been_updated_successfully', 'Mpango wa Flash umesasishwa kwa mafanikio', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20138', 'ke', 'update_language_info', 'sasisha Maelezo ya Lugha', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20139', 'ke', 'language_has_been_updated_successfully', 'Lugha imesasishwa kwa mafanikio', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20140', 'ke', 'type_key__enter', 'Andika kitufe & Ingiza', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20141', 'ke', 'translations_updated_for_', 'Tafsiri zimesasishwa kwa', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20142', 'ke', 'language_has_been_inserted_successfully', 'Lugha imeingizwa kwa mafanikio', '2021-02-09 13:54:06', '2021-09-20 13:00:08'),
('20143', 'th', 'all_category', 'หมวดหมู่ทั้งหมด', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20144', 'th', 'all', 'ทั้งหมด', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20145', 'th', 'flash_sale', 'ขายแฟลช', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20146', 'th', 'view_more', 'ดูเพิ่มเติม', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20147', 'th', 'add_to_wishlist', 'เพิ่มในรายการที่ต้องการ', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20148', 'th', 'add_to_compare', 'เพิ่มเพื่อเปรียบเทียบ', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20149', 'th', 'add_to_cart', 'หยิบใส่ตะกร้า', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20150', 'th', 'club_point', 'คลับพอยต์', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20151', 'th', 'classified_ads', 'โฆษณาแยกประเภท', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20152', 'th', 'used', 'ใช้แล้ว', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20153', 'th', 'top_10_categories', '10 หมวดหมู่ยอดนิยม', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20154', 'th', 'view_all_categories', 'ดูหมวดหมู่ทั้งหมด', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20155', 'th', 'top_10_brands', '10 อันดับแบรนด์', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20156', 'th', 'view_all_brands', 'ดูแบรนด์ทั้งหมด', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20157', 'th', 'terms__conditions', 'ข้อตกลงและเงื่อนไข', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20158', 'th', 'best_selling', 'ขายดีที่สุด', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20159', 'th', 'top_20', '20 อันดับแรก', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20160', 'th', 'featured_products', 'สินค้าแนะนำ', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20161', 'th', 'best_sellers', 'ขายดี', '2021-02-09 13:56:15', '2021-09-20 13:00:08'),
('20162', 'th', 'visit_store', 'เยี่ยมชมร้านค้า', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20163', 'th', 'popular_suggestions', 'คำแนะนำยอดนิยม', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20164', 'th', 'category_suggestions', 'คำแนะนำหมวดหมู่', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20165', 'th', 'automobile__motorcycle', 'รถยนต์และรถจักรยานยนต์', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20166', 'th', 'price_range', 'ช่วงราคา', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20167', 'th', 'filter_by_color', 'กรองตามสี', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20168', 'th', 'home', 'บ้าน', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20169', 'th', 'newest', 'ใหม่ล่าสุด', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20170', 'th', 'oldest', 'เก่าที่สุด', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20171', 'th', 'price_low_to_high', 'ราคาต่ำไปสูง', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20172', 'th', 'price_high_to_low', 'ราคาสูงไปต่ำ', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20173', 'th', 'brands', 'แบรนด์', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20174', 'th', 'all_brands', 'ทุกยี่ห้อ', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20175', 'th', 'all_sellers', 'ผู้ขายทั้งหมด', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20176', 'th', 'inhouse_product', 'สินค้าในบ้าน', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20177', 'th', 'message_seller', 'ผู้ขายข้อความ', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20178', 'th', 'price', 'ราคา', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20179', 'th', 'discount_price', 'ลดราคา', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20180', 'th', 'color', 'สี', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20181', 'th', 'quantity', 'ปริมาณ', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20182', 'th', 'available', 'ใช้ได้', '2021-02-09 13:56:16', '2021-02-09 13:56:16'),
('20183', 'th', 'total_price', 'ราคารวม', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20184', 'th', 'out_of_stock', 'สินค้าหมด', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20185', 'th', 'refund', 'คืนเงิน', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20186', 'th', 'share', 'แบ่งปัน', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20187', 'th', 'sold_by', 'ขายโดย', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20188', 'th', 'customer_reviews', 'ความคิดเห็นของลูกค้า', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20189', 'th', 'top_selling_products', 'สินค้าขายดี', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20190', 'th', 'description', 'คำอธิบาย', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20191', 'th', 'video', 'วิดีโอ', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20192', 'th', 'reviews', 'บทวิจารณ์', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20193', 'th', 'download', 'ดาวน์โหลด', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20194', 'th', 'there_have_been_no_reviews_for_this_product_yet', 'ยังไม่มีการรีวิวสำหรับสินค้านี้', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20195', 'th', 'related_products', 'สินค้าที่เกี่ยวข้อง', '2021-02-09 13:56:16', '2021-09-20 13:00:08'),
('20196', 'th', 'any_query_about_this_product', 'คำถามใด ๆ เกี่ยวกับผลิตภัณฑ์นี้', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20197', 'th', 'product_name', 'ชื่อผลิตภัณฑ์', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20198', 'th', 'your_question', 'คำถามของคุณ', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20199', 'th', 'send', 'ส่ง', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20200', 'th', 'use_country_code_before_number', 'ใช้รหัสประเทศก่อนหมายเลข', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20201', 'th', 'remember_me', 'จดจำฉัน', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20202', 'th', 'dont_have_an_account', 'ไม่มีบัญชี?', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20203', 'th', 'register_now', 'สมัครตอนนี้', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20204', 'th', 'or_login_with', 'หรือเข้าสู่ระบบด้วย', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20205', 'th', 'oops', 'โอ๊ะ ..', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20206', 'th', 'this_item_is_out_of_stock', 'รายการนี้หมด!', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20207', 'th', 'back_to_shopping', 'กลับไปช้อปปิ้ง', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20208', 'th', 'login_to_your_account', 'ลงชื่อเข้าใช้บัญชีของคุณ.', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20209', 'th', 'purchase_history', 'ประวัติการซื้อ', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20210', 'th', 'new', 'ใหม่', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20211', 'th', 'downloads', 'ดาวน์โหลด', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20212', 'th', 'sent_refund_request', 'ส่งคำขอคืนเงินแล้ว', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20213', 'th', 'product_bulk_upload', 'อัปโหลดผลิตภัณฑ์จำนวนมาก', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20214', 'th', 'orders', 'คำสั่งซื้อ', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20215', 'th', 'recieved_refund_request', 'ได้รับคำขอคืนเงิน', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20216', 'th', 'shop_setting', 'การตั้งค่าร้านค้า', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20217', 'th', 'payment_history', 'ประวัติการชำระเงิน', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20218', 'th', 'money_withdraw', 'ถอนเงิน', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20219', 'th', 'conversations', 'การสนทนา', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20220', 'th', 'my_wallet', 'กระเป๋าเงินของฉัน', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20221', 'th', 'earning_points', 'รับคะแนน', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20222', 'th', 'support_ticket', 'ตั๋วสนับสนุน', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20223', 'th', 'manage_profile', 'จัดการโปรไฟล์', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20224', 'th', 'sold_amount', 'ขายจำนวน', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20225', 'th', 'your_sold_amount_current_month', 'ยอดขายของคุณ (เดือนปัจจุบัน)', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20226', 'th', 'total_sold', 'ขายทั้งหมด', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20227', 'th', 'last_month_sold', 'ขายเมื่อเดือนที่แล้ว', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20228', 'th', 'total_sale', 'ยอดขายรวม', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20229', 'th', 'total_earnings', 'รายได้ทั้งหมด', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20230', 'th', 'successful_orders', 'คำสั่งซื้อที่ประสบความสำเร็จ', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20231', 'th', 'total_orders', 'คำสั่งซื้อทั้งหมด', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20232', 'th', 'pending_orders', 'คำสั่งซื้อที่รอดำเนินการ', '2021-02-09 13:56:17', '2021-09-20 13:00:08'),
('20233', 'th', 'cancelled_orders', 'คำสั่งซื้อที่ถูกยกเลิก', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20234', 'th', 'product', 'สินค้า', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20235', 'th', 'purchased_package', 'แพ็คเกจที่ซื้อ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20236', 'th', 'package_not_found', 'ไม่พบแพ็คเกจ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20237', 'th', 'upgrade_package', 'อัพเกรดแพ็คเกจ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20238', 'th', 'shop', 'ร้านค้า', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20239', 'th', 'manage__organize_your_shop', 'จัดการและจัดระเบียบร้านค้าของคุณ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20240', 'th', 'go_to_setting', 'ไปที่การตั้งค่า', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20241', 'th', 'payment', 'การชำระเงิน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20242', 'th', 'configure_your_payment_method', 'กำหนดค่าวิธีการชำระเงินของคุณ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20243', 'th', 'my_panel', 'แผงของฉัน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20244', 'th', 'item_has_been_added_to_wishlist', 'เพิ่มรายการในสิ่งที่อยากได้แล้ว', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20245', 'th', 'my_points', 'คะแนนของฉัน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20246', 'th', '_points', 'คะแนน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20247', 'th', 'wallet_money', 'กระเป๋าเงิน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20248', 'th', 'exchange_rate', 'อัตราแลกเปลี่ยน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20249', 'th', 'point_earning_history', 'ประวัติการรับคะแนน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20250', 'th', 'date', 'วันที่', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20251', 'th', 'points', 'คะแนน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20252', 'th', 'converted', 'แปลงแล้ว', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20253', 'th', 'action', 'หนังบู๊', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20254', 'th', 'no_history_found', 'ไม่พบประวัติ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20255', 'th', 'convert_has_been_done_successfully_check_your_wallets', 'การแปลงเสร็จเรียบร้อยแล้วตรวจสอบกระเป๋าเงินของคุณ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20256', 'th', 'something_went_wrong', 'อะไรบางอย่างผิดปกติ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20257', 'th', 'remaining_uploads', 'การอัปโหลดที่เหลือ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20258', 'th', 'no_package_found', 'ไม่พบแพ็คเกจ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20259', 'th', 'search_product', 'ค้นหาสินค้า', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20260', 'th', 'name', 'ชื่อ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20261', 'th', 'current_qty', 'จำนวนปัจจุบัน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20262', 'th', 'base_price', 'ราคาพื้นฐาน', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20263', 'th', 'published', 'เผยแพร่แล้ว', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20264', 'th', 'featured', 'แนะนำ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20265', 'th', 'options', 'ตัวเลือก', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20266', 'th', 'edit', 'แก้ไข', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20267', 'th', 'duplicate', 'ทำซ้ำ', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20268', 'th', '1_download_the_skeleton_file_and_fill_it_with_data', '1. ดาวน์โหลดไฟล์โครงกระดูกและกรอกข้อมูล', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20269', 'th', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. คุณสามารถดาวน์โหลดไฟล์ตัวอย่างเพื่อทำความเข้าใจว่าต้องกรอกข้อมูลอย่างไร', '2021-02-09 13:56:18', '2021-09-20 13:00:08'),
('20270', 'th', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. เมื่อคุณดาวน์โหลดและกรอกไฟล์โครงกระดูกแล้วให้อัปโหลดในแบบฟอร์มด้านล่างและส่ง', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20271', 'th', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. หลังจากอัปโหลดผลิตภัณฑ์คุณจะต้องแก้ไขและกำหนดรูปภาพและตัวเลือกผลิตภัณฑ์', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20272', 'th', 'download_csv', 'ดาวน์โหลด CSV', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20273', 'th', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. หมวดหมู่หมวดหมู่ย่อยหมวดหมู่ย่อยและตราสินค้าควรอยู่ในรหัสตัวเลข', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20274', 'th', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. คุณสามารถดาวน์โหลด pdf เพื่อรับหมวดหมู่หมวดย่อยหมวดย่อยย่อยและรหัสแบรนด์', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20275', 'th', 'download_category', 'ดาวน์โหลดหมวดหมู่', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20276', 'th', 'download_sub_category', 'ดาวน์โหลดหมวดย่อย', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20277', 'th', 'download_sub_sub_category', 'ดาวน์โหลดหมวดย่อยย่อย', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20278', 'th', 'download_brand', 'ดาวน์โหลด Brand', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20279', 'th', 'upload_csv_file', 'อัปโหลดไฟล์ CSV', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20280', 'th', 'csv', 'CSV', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20281', 'th', 'choose_csv_file', 'เลือกไฟล์ CSV', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20282', 'th', 'upload', 'ที่อัพโหลด', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20283', 'th', 'add_new_digital_product', 'เพิ่มผลิตภัณฑ์ดิจิทัลใหม่', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20284', 'th', 'available_status', 'สถานะที่มีอยู่', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20285', 'th', 'admin_status', 'สถานะผู้ดูแลระบบ', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20286', 'th', 'pending_balance', 'ยอดค้างชำระ', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20287', 'th', 'send_withdraw_request', 'ส่งคำขอถอน', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20288', 'th', 'withdraw_request_history', 'ถอนประวัติการร้องขอ', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20289', 'th', 'amount', 'จำนวน', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20290', 'th', 'status', 'สถานะ', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20291', 'th', 'message', 'ข้อความ', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20292', 'th', 'send_a_withdraw_request', 'ส่งคำขอถอน', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20293', 'th', 'basic_info', 'ข้อมูลพื้นฐาน', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20294', 'th', 'your_phone', 'โทรศัพท์ของคุณ', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20295', 'th', 'photo', 'ภาพถ่าย', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20296', 'th', 'browse', 'เรียกดู', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20297', 'th', 'your_password', 'รหัสผ่านของคุณ', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20298', 'th', 'new_password', 'รหัสผ่านใหม่', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20299', 'th', 'confirm_password', 'ยืนยันรหัสผ่าน', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20300', 'th', 'add_new_address', 'เพิ่มที่อยู่ใหม่', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20301', 'th', 'payment_setting', 'การตั้งค่าการชำระเงิน', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20302', 'th', 'cash_payment', 'การจ่ายเงินสด', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20303', 'th', 'bank_payment', 'การชำระเงินผ่านธนาคาร', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20304', 'th', 'bank_name', 'ชื่อธนาคาร', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20305', 'th', 'bank_account_name', 'ชื่อบัญชีธนาคาร', '2021-02-09 13:56:19', '2021-09-20 13:00:08'),
('20306', 'th', 'bank_account_number', 'หมายเลขบัญชีธนาคาร', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20307', 'th', 'bank_routing_number', 'หมายเลขเส้นทางธนาคาร', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20308', 'th', 'update_profile', 'อัปเดตโปรไฟล์', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20309', 'th', 'change_your_email', 'เปลี่ยนอีเมลของคุณ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20310', 'th', 'your_email', 'อีเมลของคุณ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20311', 'th', 'sending_email', 'การส่งอีเมล ...', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20312', 'th', 'verify', 'ยืนยัน', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20313', 'th', 'update_email', 'อัปเดตอีเมล', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20314', 'th', 'new_address', 'ที่อยู่ใหม่', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20315', 'th', 'your_address', 'ที่อยู่ของคุณ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20316', 'th', 'country', 'ประเทศ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20317', 'th', 'select_your_country', 'เลือกประเทศของคุณ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20318', 'th', 'city', 'เมือง', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20319', 'th', 'your_city', 'เมืองของคุณ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20320', 'th', 'your_postal_code', 'รหัสไปรษณีย์ของคุณ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20321', 'th', '880', '+880', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20322', 'th', 'save', 'บันทึก', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20323', 'th', 'received_refund_request', 'ได้รับคำขอคืนเงิน', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20324', 'th', 'delete_confirmation', 'ลบการยืนยัน', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20325', 'th', 'are_you_sure_to_delete_this', 'แน่ใจไหมว่าจะลบสิ่งนี้', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20326', 'th', 'premium_packages_for_sellers', 'แพ็คเกจพรีเมียมสำหรับผู้ขาย', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20327', 'th', 'product_upload', 'อัปโหลดผลิตภัณฑ์', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20328', 'th', 'digital_product_upload', 'การอัปโหลดผลิตภัณฑ์ดิจิทัล', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20329', 'th', 'purchase_package', 'ซื้อแพ็คเกจ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20330', 'th', 'select_payment_type', 'เลือกประเภทการชำระเงิน', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20331', 'th', 'payment_type', 'ประเภทการชำระเงิน', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20332', 'th', 'select_one', 'เลือกหนึ่งอัน', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20333', 'th', 'online_payment', 'การชำระเงินออนไลน์', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20334', 'th', 'offline_payment', 'การชำระเงินแบบออฟไลน์', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20335', 'th', 'purchase_your_package', 'ซื้อแพ็คเกจของคุณ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20336', 'th', 'paypal', 'Paypal', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20337', 'th', 'stripe', 'ลาย', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20338', 'th', 'sslcommerz', 'sslcommerz', '2021-02-09 13:56:20', '2021-02-09 13:56:20'),
('20339', 'th', 'confirm', 'ยืนยัน', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20340', 'th', 'offline_package_payment', 'การชำระเงินแบบออฟไลน์', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20341', 'th', 'transaction_id', 'รหัสธุรกรรม', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20342', 'th', 'choose_image', 'เลือกภาพ', '2021-02-09 13:56:20', '2021-09-20 13:00:08'),
('20343', 'th', 'code', 'รหัส', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20344', 'th', 'delivery_status', 'สถานะการจัดส่ง', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20345', 'th', 'payment_status', 'สถานะการชำระเงิน', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20346', 'th', 'paid', 'จ่าย', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20347', 'th', 'order_details', 'รายละเอียดการสั่งซื้อ', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20348', 'th', 'download_invoice', 'ดาวน์โหลดใบแจ้งหนี้', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20349', 'th', 'unpaid', 'ยังไม่ได้ชำระ', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20350', 'th', 'order_placed', 'สั่งซื้อแล้ว', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20351', 'th', 'confirmed', 'ได้รับการยืนยัน', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20352', 'th', 'on_delivery', 'กำลังจัดส่ง', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20353', 'th', 'delivered', 'ส่ง', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20354', 'th', 'order_summary', 'สรุปคำสั่งซื้อ', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20355', 'th', 'order_code', 'รหัสการสั่งซื้อ', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20356', 'th', 'customer', 'ลูกค้า', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20357', 'th', 'total_order_amount', 'ยอดสั่งซื้อทั้งหมด', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20358', 'th', 'shipping_metdod', 'การจัดส่ง metdod', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20359', 'th', 'flat_shipping_rate', 'อัตราค่าขนส่งคงที่', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20360', 'th', 'payment_metdod', 'วิธีการชำระเงิน', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20361', 'th', 'variation', 'รูปแบบ', '2021-02-09 13:56:21', '2021-09-20 13:00:08'),
('20362', 'th', 'delivery_type', 'ประเภทการจัดส่ง', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20363', 'th', 'home_delivery', 'ส่งถึงบ้าน', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20364', 'th', 'order_ammount', 'สั่งซื้อจำนวน', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20365', 'th', 'subtotal', 'ผลรวมย่อย', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20366', 'th', 'shipping', 'การส่งสินค้า', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20367', 'th', 'coupon_discount', 'ส่วนลดคูปอง', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20368', 'th', 'na', 'ไม่มี', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20369', 'th', 'in_stock', 'มีสินค้า', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20370', 'th', 'buy_now', 'ซื้อเลย', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20371', 'th', 'item_added_to_your_cart', 'เพิ่มสินค้าในรถเข็นของคุณแล้ว!', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20372', 'th', 'proceed_to_checkout', 'ดำเนินการชำระเงิน', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20373', 'th', 'cart_items', 'รายการรถเข็น', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20374', 'th', '1_my_cart', '1. รถเข็นของฉัน', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20375', 'th', 'view_cart', 'ดูรถเข็น', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20376', 'th', '2_shipping_info', '2. ข้อมูลการจัดส่ง', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20377', 'th', 'checkout', 'เช็คเอาท์', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20378', 'th', '3_delivery_info', '3. ข้อมูลการจัดส่ง', '2021-02-09 13:56:21', '2021-09-20 13:00:09'),
('20379', 'th', '4_payment', '4. การชำระเงิน', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20380', 'th', '5_confirmation', '5. การยืนยัน', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20381', 'th', 'remove', 'ลบ', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20382', 'th', 'return_to_shop', 'กลับไปที่ร้านค้า', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20383', 'th', 'continue_to_shipping', 'ดำเนินการจัดส่งต่อ', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20384', 'th', 'or', 'หรือ', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20385', 'th', 'guest_checkout', 'แขกชำระเงิน', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20386', 'th', 'continue_to_delivery_info', 'ไปที่ข้อมูลการจัดส่ง', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20387', 'th', 'postal_code', 'รหัสไปรษณีย์', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20388', 'th', 'choose_delivery_type', 'เลือกประเภทการจัดส่ง', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20389', 'th', 'local_pickup', 'รถกระบะท้องถิ่น', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20390', 'th', 'select_your_nearest_pickup_point', 'เลือกจุดรับที่ใกล้ที่สุด', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20391', 'th', 'continue_to_payment', 'ดำเนินการต่อเพื่อชำระเงิน', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20392', 'th', 'select_a_payment_option', 'เลือกตัวเลือกการชำระเงิน', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20393', 'th', 'razorpay', 'ราโซเพย์', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20394', 'th', 'paystack', 'Paystack', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20395', 'th', 'voguepay', 'โว้กเพย์', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20396', 'th', 'payhere', 'จ่ายที่นี่', '2021-02-09 13:56:22', '2021-02-09 13:56:22'),
('20397', 'th', 'ngenius', 'ngenius', '2021-02-09 13:56:22', '2021-02-09 13:56:22'),
('20398', 'th', 'paytm', 'Paytm', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20399', 'th', 'cash_on_delivery', 'เก็บเงินปลายทาง', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20400', 'th', 'your_wallet_balance_', 'ยอดเงินในกระเป๋าของคุณ:', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20401', 'th', 'insufficient_balance', 'ยอดคงเหลือไม่เพียงพอ', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20402', 'th', 'i_agree_to_the', 'ฉันเห็นด้วยกับ', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20403', 'th', 'complete_order', 'คำสั่งซื้อที่สมบูรณ์', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20404', 'th', 'summary', 'สรุป', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20405', 'th', 'items', 'รายการ', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20406', 'th', 'total_club_point', 'คะแนนรวมคลับ', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20407', 'th', 'total_shipping', 'รวมค่าจัดส่ง', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20408', 'th', 'have_coupon_code_enter_here', 'มีรหัสคูปอง? เข้าที่นี่', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20409', 'th', 'apply', 'สมัคร', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20410', 'th', 'you_need_to_agree_with_our_policies', 'คุณต้องเห็นด้วยกับนโยบายของเรา', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20411', 'th', 'forgot_password', 'ลืมรหัสผ่าน', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20412', 'th', 'seo_setting', 'การตั้งค่า SEO', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20413', 'th', 'system_update', 'การอัปเดตระบบ', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20414', 'th', 'add_new_payment_method', 'เพิ่มวิธีการชำระเงินใหม่', '2021-02-09 13:56:22', '2021-09-20 13:00:09'),
('20415', 'th', 'manual_payment_method', 'วิธีการชำระเงินด้วยตนเอง', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20416', 'th', 'heading', 'หัวเรื่อง', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20417', 'th', 'logo', 'โลโก้', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20418', 'th', 'manual_payment_information', 'ข้อมูลการชำระเงินด้วยตนเอง', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20419', 'th', 'type', 'ประเภท', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20420', 'th', 'custom_payment', 'การชำระเงินที่กำหนดเอง', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20421', 'th', 'check_payment', 'ตรวจสอบการชำระเงิน', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20422', 'th', 'checkout_thumbnail', 'ภาพขนาดย่อของการชำระเงิน', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20423', 'th', 'payment_instruction', 'คำแนะนำการชำระเงิน', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20424', 'th', 'bank_information', 'ข้อมูลธนาคาร', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20425', 'th', 'select_file', 'เลือกไฟล์', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20426', 'th', 'upload_new', 'อัปโหลดใหม่', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20427', 'th', 'sort_by_newest', 'เรียงตามใหม่ล่าสุด', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20428', 'th', 'sort_by_oldest', 'เรียงตามเก่าที่สุด', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20429', 'th', 'sort_by_smallest', 'เรียงตามน้อยที่สุด', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20430', 'th', 'sort_by_largest', 'เรียงตามมากที่สุด', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20431', 'th', 'selected_only', 'เลือกเท่านั้น', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20432', 'th', 'no_files_found', 'ไม่พบไฟล์', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20433', 'th', '0_file_selected', '0 ไฟล์ที่เลือก', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20434', 'th', 'clear', 'ชัดเจน', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20435', 'th', 'prev', 'ก่อนหน้า', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20436', 'th', 'next', 'ต่อไป', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20437', 'th', 'add_files', 'เพิ่มไฟล์', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20438', 'th', 'method_has_been_inserted_successfully', 'ใส่วิธีสำเร็จแล้ว', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20439', 'th', 'order_date', 'วันสั่ง', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20440', 'th', 'bill_to', 'ส่งเบิกไปที่', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20441', 'th', 'sub_total', 'ผลรวมย่อย', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20442', 'th', 'total_tax', 'รวมภาษี', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20443', 'th', 'grand_total', 'ผลรวมทั้งสิ้น', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20444', 'th', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'ส่งคำสั่งซื้อของคุณเรียบร้อยแล้ว กรุณาส่งข้อมูลการชำระเงินจากประวัติการซื้อ', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20445', 'th', 'thank_you_for_your_order', 'ขอขอบคุณสำหรับการสั่งซื้อของคุณ!', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20446', 'th', 'order_code', 'รหัสสั่งซื้อ:', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20447', 'th', 'a_copy_or_your_order_summary_has_been_sent_to', 'สำเนาหรือสรุปคำสั่งซื้อของคุณถูกส่งไปที่', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20448', 'th', 'make_payment', 'ชำระเงิน', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20449', 'th', 'payment_screenshot', 'ภาพหน้าจอการชำระเงิน', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20450', 'th', 'paypal_credential', 'ข้อมูลรับรอง Paypal', '2021-02-09 13:56:23', '2021-09-20 13:00:09'),
('20451', 'th', 'paypal_client_id', 'รหัสลูกค้า Paypal', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20452', 'th', 'paypal_client_secret', 'ความลับของลูกค้า Paypal', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20453', 'th', 'paypal_sandbox_mode', 'โหมด Paypal Sandbox', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20454', 'th', 'sslcommerz_credential', 'Sslcommerz Credential', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20455', 'th', 'sslcz_store_id', 'รหัสร้านค้า Sslcz', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20456', 'th', 'sslcz_store_password', 'รหัสผ่านร้านค้า Sslcz', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20457', 'th', 'sslcommerz_sandbox_mode', 'โหมด Sslcommerz Sandbox', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20458', 'th', 'stripe_credential', 'Stripe Credential', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20459', 'th', 'stripe_key', 'STRIPE KEY', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20460', 'th', 'stripe_secret', 'STRIPE SECRET', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20461', 'th', 'razorpay_credential', 'ข้อมูลรับรอง RazorPay', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20462', 'th', 'razor_key', 'กุญแจมีดโกน', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20463', 'th', 'razor_secret', 'ความลับของมีดโกน', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20464', 'th', 'instamojo_credential', 'ข้อมูลประจำตัว Instamojo', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20465', 'th', 'api_key', 'คีย์ API', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20466', 'th', 'im_api_key', 'คีย์ IM API', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20467', 'th', 'auth_token', 'โทเค็น AUTH', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20468', 'th', 'im_auth_token', 'IM AUTH TOKEN', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20469', 'th', 'instamojo_sandbox_mode', 'Instamojo โหมด Sandbox', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20470', 'th', 'paystack_credential', 'ข้อมูลรับรอง PayStack', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20471', 'th', 'public_key', 'คีย์สาธารณะ', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20472', 'th', 'secret_key', 'คีย์ลับ', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20473', 'th', 'merchant_email', 'อีเมลผู้ขาย', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20474', 'th', 'voguepay_credential', 'ข้อมูลรับรอง VoguePay', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20475', 'th', 'merchant_id', 'รหัสผู้ขาย', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20476', 'th', 'sandbox_mode', 'โหมด Sandbox', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20477', 'th', 'payhere_credential', 'ข้อมูลรับรอง Payhere', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20478', 'th', 'payhere_merchant_id', 'รหัสผู้ขายของ PayHERE', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20479', 'th', 'payhere_secret', 'จ่ายเงินเป็นความลับ', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20480', 'th', 'payhere_currency', 'สกุลเงินที่จ่าย', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20481', 'th', 'payhere_sandbox_mode', 'โหมด Payhere Sandbox', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20482', 'th', 'ngenius_credential', 'ข้อมูลรับรอง Ngenius', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20483', 'th', 'ngenius_outlet_id', 'รหัส OUTLET NGENIUS', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20484', 'th', 'ngenius_api_key', 'คีย์ API ของ NGENIUS', '2021-02-09 13:56:24', '2021-09-20 13:00:09'),
('20485', 'th', 'ngenius_currency', 'สกุลเงิน NGENIUS', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20486', 'th', 'mpesa_credential', 'Mpesa Credential', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20487', 'th', 'mpesa_consumer_key', 'คีย์ผู้บริโภค MPESA', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20488', 'th', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20489', 'th', 'mpesa_consumer_secret', 'ความลับของผู้บริโภค MPESA', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20490', 'th', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20491', 'th', 'mpesa_short_code', 'รหัสสั้น MPESA', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20492', 'th', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20493', 'th', 'mpesa_sandbox_activation', 'การเปิดใช้งาน MPESA SANDBOX', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20494', 'th', 'flutterwave_credential', 'ข้อมูลรับรอง Flutterwave', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20495', 'th', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20496', 'th', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20497', 'th', 'rave_title', 'RAVE_TITLE', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20498', 'th', 'stagin_activation', 'STAGIN เปิดใช้งาน', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20499', 'th', 'all_product', 'สินค้าทั้งหมด', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20500', 'th', 'sort_by', 'เรียงตาม', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20501', 'th', 'rating_high__low', 'คะแนน (สูง> ต่ำ)', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20502', 'th', 'rating_low__high', 'คะแนน (ต่ำ> สูง)', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20503', 'th', 'num_of_sale_high__low', 'จำนวนขาย (สูง> ต่ำ)', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20504', 'th', 'num_of_sale_low__high', 'จำนวนขาย (ต่ำ> สูง)', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20505', 'th', 'base_price_high__low', 'ราคาพื้นฐาน (สูง> ต่ำ)', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20506', 'th', 'base_price_low__high', 'ราคาพื้นฐาน (ต่ำ> สูง)', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20507', 'th', 'type__enter', 'พิมพ์ & Enter', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20508', 'th', 'added_by', 'เพิ่มโดย', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20509', 'th', 'num_of_sale', 'จำนวนขาย', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20510', 'th', 'total_stock', 'หุ้นทั้งหมด', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20511', 'th', 'todays_deal', 'ข้อตกลงวันนี้', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20512', 'th', 'rating', 'คะแนน', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20513', 'th', 'times', 'ครั้ง', '2021-02-09 13:56:25', '2021-02-09 13:56:25'),
('20514', 'th', 'add_nerw_product', 'เพิ่ม Nerw Product', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20515', 'th', 'product_information', 'ข้อมูลผลิตภัณฑ์', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20516', 'th', 'unit', 'หน่วย', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20517', 'th', 'unit_eg_kg_pc_etc', 'หน่วย (เช่น KG, Pc เป็นต้น)', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20518', 'th', 'minimum_qty', 'จำนวนขั้นต่ำ', '2021-02-09 13:56:25', '2021-09-20 13:00:09'),
('20519', 'th', 'tags', 'แท็ก', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20520', 'th', 'type_and_hit_enter_to_add_a_tag', 'พิมพ์และกด Enter เพื่อเพิ่มแท็ก', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20521', 'th', 'barcode', 'บาร์โค้ด', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20522', 'th', 'refundable', 'คืนเงินได้', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20523', 'th', 'product_images', 'รูปภาพสินค้า', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20524', 'th', 'gallery_images', 'รูปภาพแกลเลอรี', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20525', 'th', 'todays_deal_updated_successfully', 'อัปเดตดีลวันนี้เรียบร้อยแล้ว', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20526', 'th', 'published_products_updated_successfully', 'อัปเดตผลิตภัณฑ์ที่เผยแพร่เรียบร้อยแล้ว', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20527', 'th', 'thumbnail_image', 'ภาพขนาดย่อ', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20528', 'th', 'featured_products_updated_successfully', 'อัปเดตผลิตภัณฑ์ที่โดดเด่นเรียบร้อยแล้ว', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20529', 'th', 'product_videos', 'วิดีโอสินค้า', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20530', 'th', 'video_provider', 'ผู้ให้บริการวิดีโอ', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20531', 'th', 'youtube', 'Youtube', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20532', 'th', 'dailymotion', 'Dailymotion', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20533', 'th', 'vimeo', 'Vimeo', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20534', 'th', 'video_link', 'ลิงค์วิดีโอ', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20535', 'th', 'product_variation', 'รูปแบบผลิตภัณฑ์', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20536', 'th', 'colors', 'สี', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20537', 'th', 'attributes', 'คุณลักษณะ', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20538', 'th', 'choose_attributes', 'เลือกคุณสมบัติ', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20539', 'th', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'เลือกแอตทริบิวต์ของผลิตภัณฑ์นี้จากนั้นป้อนค่าของแต่ละแอตทริบิวต์', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20540', 'th', 'product_price__stock', 'ราคาสินค้า + สต๊อก', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20541', 'th', 'unit_price', 'ราคาต่อหน่วย', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20542', 'th', 'purchase_price', 'ราคาซื้อ', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20543', 'th', 'flat', 'แบน', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20544', 'th', 'percent', 'เปอร์เซ็นต์', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20545', 'th', 'discount', 'ส่วนลด', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20546', 'th', 'product_description', 'รายละเอียดสินค้า', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20547', 'th', 'product_shipping_cost', 'ค่าขนส่งสินค้า', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20548', 'th', 'free_shipping', 'จัดส่งฟรี', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20549', 'th', 'flat_rate', 'อัตราคงที่', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20550', 'th', 'shipping_cost', 'ค่าใช้จ่ายในการจัดส่งสินค้า', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20551', 'th', 'pdf_specification', 'ข้อกำหนด PDF', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20552', 'th', 'seo_meta_tags', 'เมตาแท็ก SEO', '2021-02-09 13:56:26', '2021-09-20 13:00:09'),
('20553', 'th', 'meta_title', 'ชื่อเมตา', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20554', 'th', 'meta_image', 'ภาพ Meta', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20555', 'th', 'choice_title', 'ชื่อตัวเลือก', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20556', 'th', 'enter_choice_values', 'ป้อนค่าตัวเลือก', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20557', 'th', 'all_categories', 'ทุกหมวดหมู่', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20558', 'th', 'add_new_category', 'เพิ่มหมวดหมู่ใหม่', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20559', 'th', 'type_name__enter', 'พิมพ์ชื่อ & Enter', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20560', 'th', 'banner', 'แบนเนอร์', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20561', 'th', 'commission', 'ค่าคอมมิชชั่น', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20562', 'th', 'icon', 'ไอคอน', '2021-02-09 13:56:27', '2021-02-09 13:56:27'),
('20563', 'th', 'featured_categories_updated_successfully', 'อัปเดตหมวดหมู่เด่นเรียบร้อยแล้ว', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20564', 'th', 'hot', 'ร้อน', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20565', 'th', 'filter_by_payment_status', 'กรองตามสถานะการชำระเงิน', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20566', 'th', 'unpaid', 'ยังไม่ได้ชำระเงิน', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20567', 'th', 'filter_by_deliver_status', 'กรองตามสถานะการส่ง', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20568', 'th', 'pending', 'รอดำเนินการ', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20569', 'th', 'type_order_code__hit_enter', 'พิมพ์รหัสคำสั่งซื้อและกด Enter', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20570', 'th', 'num_of_products', 'Num. ของผลิตภัณฑ์', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20571', 'th', 'walk_in_customer', 'เดินเข้าไปหาลูกค้า', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20572', 'th', 'qty', 'จำนวน', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20573', 'th', 'without_shipping_charge', 'ไม่มีค่าจัดส่ง', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20574', 'th', 'with_shipping_charge', 'พร้อมค่าจัดส่ง', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20575', 'th', 'pay_with_cash', 'ชำระด้วยเงินสด', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20576', 'th', 'shipping_address', 'ที่อยู่จัดส่ง', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20577', 'th', 'close', 'ปิด', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20578', 'th', 'select_country', 'เลือกประเทศ', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20579', 'th', 'order_confirmation', 'ยืนยันการสั่งซื้อ', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20580', 'th', 'are_you_sure_to_confirm_this_order', 'คุณแน่ใจหรือไม่ว่าจะยืนยันคำสั่งซื้อนี้', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20581', 'th', 'comfirm_order', 'ยืนยันการสั่งซื้อ', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20582', 'th', 'personal_info', 'ข้อมูลส่วนตัว', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20583', 'th', 'repeat_password', 'ใส่รหัสผ่านซ้ำ', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20584', 'th', 'shop_name', 'ชื่อร้าน', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20585', 'th', 'register_your_shop', 'ลงทะเบียนร้านค้าของคุณ', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20586', 'th', 'affiliate_informations', 'ข้อมูลพันธมิตร', '2021-02-09 13:56:27', '2021-09-20 13:00:09'),
('20587', 'th', 'affiliate', 'พันธมิตร', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20588', 'th', 'user_info', 'ข้อมูลผู้ใช้', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20589', 'th', 'installed_addon', 'ติดตั้ง Addon แล้ว', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20590', 'th', 'available_addon', 'Addon ที่มีจำหน่าย', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20591', 'th', 'install_new_addon', 'ติดตั้ง Addon ใหม่', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20592', 'th', 'version', 'เวอร์ชัน', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20593', 'th', 'activated', 'เปิดใช้งานแล้ว', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20594', 'th', 'deactivated', 'ปิดใช้งานแล้ว', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20595', 'th', 'activate_otp', 'เปิดใช้งาน OTP', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20596', 'th', 'otp_will_be_used_for', 'OTP จะใช้สำหรับ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20597', 'th', 'settings_updated_successfully', 'อัปเดตการตั้งค่าสำเร็จแล้ว', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20598', 'th', 'product_owner', 'เจ้าของผลิตภัณฑ์', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20599', 'th', 'point', 'จุด', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20600', 'th', 'set_point_for_product_within_a_range', 'กำหนดจุดสำหรับผลิตภัณฑ์ภายในช่วง', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20601', 'th', 'set_point_for_multiple_products', 'กำหนดจุดสำหรับผลิตภัณฑ์หลายรายการ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20602', 'th', 'min_price', 'ราคาขั้นต่ำ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20603', 'th', 'max_price', 'ราคาสูงสุด', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20604', 'th', 'set_point_for_all_products', 'กำหนดจุดสำหรับผลิตภัณฑ์ทั้งหมด', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20605', 'th', 'set_point_for_', 'กำหนดจุดสำหรับ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20606', 'th', 'convert_status', 'แปลงสถานะ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20607', 'th', 'earned_at', 'รับที่', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20608', 'th', 'seller_based_selling_report', 'รายงานการขายตามผู้ขาย', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20609', 'th', 'sort_by_verificarion_status', 'เรียงตามสถานะการยืนยัน', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20610', 'th', 'approved', 'ได้รับการอนุมัติ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20611', 'th', 'non_approved', 'ไม่ได้รับการอนุมัติ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20612', 'th', 'filter', 'กรอง', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20613', 'th', 'seller_name', 'ชื่อผู้ขาย', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20614', 'th', 'number_of_product_sale', 'จำนวนสินค้าที่ขาย', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20615', 'th', 'order_amount', 'จำนวนสั่งซื้อ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20616', 'th', 'facebook_chat_setting', 'การตั้งค่าการแชทบน Facebook', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20617', 'th', 'facebook_page_id', 'ID เพจ Facebook', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20618', 'th', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'โปรดระมัดระวังเมื่อคุณกำหนดค่าการแชทบน Facebook สำหรับการกำหนดค่าที่ไม่ถูกต้องคุณจะไม่ได้รับไอคอน Messenger บนไซต์ผู้ใช้ของคุณ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20619', 'th', 'login_into_your_facebook_page', 'เข้าสู่หน้า Facebook ของคุณ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20620', 'th', 'find_the_about_option_of_your_facebook_page', 'ค้นหาตัวเลือกเกี่ยวกับหน้า Facebook ของคุณ', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20621', 'th', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'ที่ด้านล่างสุดคุณจะพบ \\“ ID เพจ Facebook \\”', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20622', 'th', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'ไปที่การตั้งค่าของเพจของคุณและค้นหาตัวเลือกของ \\ \"Advance Messaging \\\"', '2021-02-09 13:56:28', '2021-09-20 13:00:09'),
('20623', 'th', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'เลื่อนลงไปหน้านั้นและคุณจะได้รับ \\ \"โดเมนจดทะเบียนสีขาว \\\"', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20624', 'th', 'set_your_website_domain_name', 'ตั้งชื่อโดเมนเว็บไซต์ของคุณ', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20625', 'th', 'google_recaptcha_setting', 'การตั้งค่า reCAPTCHA ของ Google', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20626', 'th', 'site_key', 'คีย์ไซต์', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20627', 'th', 'select_shipping_method', 'เลือกวิธีการจัดส่ง', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20628', 'th', 'product_wise_shipping_cost', 'ค่าขนส่งสินค้าที่ชาญฉลาด', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20629', 'th', 'flat_rate_shipping_cost', 'ค่าขนส่งในอัตราคงที่', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20630', 'th', 'seller_wise_flat_shipping_cost', 'ผู้ขาย Wise Flat ค่าขนส่ง', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20631', 'th', 'note', 'บันทึก', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20632', 'th', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'การคำนวณต้นทุนการจัดส่งสินค้าที่ชาญฉลาด: ต้นทุนการจัดส่งคำนวณโดยการบวกค่าขนส่งสินค้าแต่ละรายการ', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20633', 'th', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'การคำนวณต้นทุนการจัดส่งแบบอัตราคงที่: จำนวนผลิตภัณฑ์ที่ลูกค้าซื้อไม่สำคัญ ค่าขนส่งคงที่', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20634', 'th', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'การคำนวณต้นทุนการจัดส่งแบบคงที่ของผู้ขาย: อัตราคงที่สำหรับผู้ขายแต่ละราย หากลูกค้าซื้อสินค้า 2 ชิ้นจากค่าขนส่งของผู้ขาย 2 รายจะคำนวณโดยบวกจากค่าขนส่งแบบคงที่ของผู้ขายแต่ละราย', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20635', 'th', 'flat_rate_cost', 'ต้นทุนอัตราคงที่', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20636', 'th', 'shipping_cost_for_admin_products', 'ค่าขนส่งสำหรับผลิตภัณฑ์ของผู้ดูแลระบบ', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20637', 'th', 'countries', 'ประเทศ', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20638', 'th', 'showhide', 'แสดงซ่อน', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20639', 'th', 'country_status_updated_successfully', 'อัปเดตสถานะประเทศเรียบร้อยแล้ว', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20640', 'th', 'all_subcategories', 'หมวดหมู่ย่อยทั้งหมด', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20641', 'th', 'add_new_subcategory', 'เพิ่มหมวดหมู่ย่อยใหม่', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20642', 'th', 'subcategories', 'หมวดหมู่ย่อย', '2021-02-09 13:56:29', '2021-09-20 13:00:09'),
('20643', 'th', 'sub_category_information', 'ข้อมูลหมวดหมู่ย่อย', '2021-02-09 13:57:11', '2021-09-20 13:00:09'),
('20644', 'th', 'slug', 'กระสุน', '2021-02-09 13:57:11', '2021-09-20 13:00:09'),
('20645', 'th', 'all_sub_subcategories', 'หมวดหมู่ย่อยทั้งหมด', '2021-02-09 13:57:11', '2021-09-20 13:00:09'),
('20646', 'th', 'add_new_sub_subcategory', 'เพิ่มหมวดหมู่ย่อยใหม่', '2021-02-09 13:57:11', '2021-09-20 13:00:09'),
('20647', 'th', 'subsubcategories', 'หมวดย่อยย่อย', '2021-02-09 13:57:11', '2021-09-20 13:00:09'),
('20648', 'th', 'make_this_default', 'ทำให้เป็นค่าเริ่มต้น', '2021-02-09 13:57:11', '2021-09-20 13:00:09'),
('20649', 'th', 'shops', 'ร้านค้า', '2021-02-09 13:57:11', '2021-09-20 13:00:09'),
('20650', 'th', 'women_clothing__fashion', 'เสื้อผ้าและแฟชั่นผู้หญิง', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20651', 'th', 'cellphones__tabs', 'โทรศัพท์มือถือและแท็บ', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20652', 'th', 'welcome_to', 'ยินดีต้อนรับสู่', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20653', 'th', 'create_a_new_account', 'สร้างบัญชีใหม่', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20654', 'th', 'full_name', 'ชื่อเต็ม', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20655', 'th', 'password', 'รหัสผ่าน', '2021-02-09 13:57:12', '2021-02-09 13:57:12'),
('20656', 'th', 'confrim_password', 'Confrim รหัสผ่าน', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20657', 'th', 'i_agree_with_the', 'ฉันเห็นด้วยกับ', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20658', 'th', 'terms_and_conditions', 'ข้อกำหนดและเงื่อนไข', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20659', 'th', 'register', 'ลงทะเบียน', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20660', 'th', 'already_have_an_account', 'มีบัญชีอยู่แล้ว', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20661', 'th', 'sign_up_with', 'สมัครด้วย', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20662', 'th', 'i_agree_with_the_terms_and_conditions', 'ฉันเห็นด้วยกับข้อกำหนดและเงื่อนไข', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20663', 'th', 'all_role', 'บทบาททั้งหมด', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20664', 'th', 'add_new_role', 'เพิ่มบทบาทใหม่', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20665', 'th', 'roles', 'บทบาท', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20666', 'th', 'add_new_staffs', 'เพิ่มพนักงานใหม่', '2021-02-09 13:57:12', '2021-09-20 13:00:09'),
('20667', 'th', 'role', 'บทบาท', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20668', 'th', 'frontend_website_name', 'ชื่อเว็บไซต์ส่วนหน้า', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20669', 'th', 'website_name', 'ชื่อเว็บไซต์', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20670', 'th', 'site_motto', 'คำขวัญของไซต์', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20671', 'th', 'best_ecommerce_website', 'เว็บไซต์อีคอมเมิร์ซที่ดีที่สุด', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20672', 'th', 'site_icon', 'ไอคอนไซต์', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20673', 'th', 'website_favicon_32x32_png', 'Favicon เว็บไซต์ 32x32 .png', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20674', 'th', 'website_base_color', 'สีฐานของเว็บไซต์', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20675', 'th', 'hex_color_code', 'รหัสสี Hex', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20676', 'th', 'website_base_hover_color', 'สีฐานโฮเวอร์ของเว็บไซต์', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20677', 'th', 'update', 'อัปเดต', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20678', 'th', 'global_seo', 'Global Seo', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20679', 'th', 'meta_description', 'คำอธิบายเมตา', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20680', 'th', 'keywords', 'คำหลัก', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20681', 'th', 'separate_with_coma', 'แยกกับโคม่า', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20682', 'th', 'website_pages', 'หน้าเว็บไซต์', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20683', 'th', 'all_pages', 'ทุกหน้า', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20684', 'th', 'add_new_page', 'เพิ่มหน้าใหม่', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20685', 'th', 'url', 'URL', '2021-02-09 13:57:12', '2021-09-20 13:00:10'),
('20686', 'th', 'actions', 'การดำเนินการ', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20687', 'th', 'edit_page_information', 'แก้ไขข้อมูลเพจ', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20688', 'th', 'page_content', 'เนื้อหาของหน้า', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20689', 'th', 'title', 'หัวข้อ', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20690', 'th', 'link', 'ลิงค์', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20691', 'th', 'use_character_number_hypen_only', 'ใช้อักขระตัวเลขขีดกลางเท่านั้น', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20692', 'th', 'add_content', 'เพิ่มเนื้อหา', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20693', 'th', 'seo_fields', 'เขตข้อมูล Seo', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20694', 'th', 'update_page', 'อัปเดตหน้า', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20695', 'th', 'default_language', 'ภาษาเริ่มต้น', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20696', 'th', 'add_new_language', 'เพิ่มภาษาใหม่', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20697', 'th', 'rtl', 'RTL', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20698', 'th', 'translation', 'การแปล', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20699', 'th', 'language_information', 'ข้อมูลภาษา', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20700', 'th', 'save_page', 'บันทึกหน้า', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20701', 'th', 'home_page_settings', 'การตั้งค่าหน้าแรก', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20702', 'th', 'home_slider', 'บ้านเลื่อน', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20703', 'th', 'photos__links', 'รูปภาพและลิงค์', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20704', 'th', 'add_new', 'เพิ่มใหม่', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20705', 'th', 'home_categories', 'หมวดหมู่บ้าน', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20706', 'th', 'home_banner_1_max_3', 'แบนเนอร์หน้าแรก 1 (สูงสุด 3)', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20707', 'th', 'banner__links', 'แบนเนอร์และลิงค์', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20708', 'th', 'home_banner_2_max_3', 'แบนเนอร์หน้าแรก 2 (สูงสุด 3)', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20709', 'th', 'top_10', '10 อันดับแรก', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20710', 'th', 'top_categories_max_10', 'หมวดหมู่ยอดนิยม (สูงสุด 10)', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20711', 'th', 'top_brands_max_10', 'แบรนด์ชั้นนำ (สูงสุด 10)', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20712', 'th', 'system_name', 'ชื่อระบบ', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20713', 'th', 'system_logo__white', 'โลโก้ระบบ - สีขาว', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20714', 'th', 'choose_files', 'เลือกไฟล์', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20715', 'th', 'will_be_used_in_admin_panel_side_menu', 'จะใช้ในเมนูด้านข้างแผงการดูแลระบบ', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20716', 'th', 'system_logo__black', 'โลโก้ระบบ - สีดำ', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20717', 'th', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'จะถูกใช้ในแถบด้านบนของแผงผู้ดูแลระบบในหน้าเข้าสู่ระบบมือถือ + ผู้ดูแลระบบ', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20718', 'th', 'system_timezone', 'เขตเวลาของระบบ', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20719', 'th', 'admin_login_page_background', 'พื้นหลังหน้าเข้าสู่ระบบของผู้ดูแลระบบ', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20720', 'th', 'website_header', 'ส่วนหัวของเว็บไซต์', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20721', 'th', 'header_setting', 'การตั้งค่าส่วนหัว', '2021-02-09 13:57:13', '2021-09-20 13:00:10'),
('20722', 'th', 'header_logo', 'โลโก้ส่วนหัว', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20723', 'th', 'show_language_switcher', 'แสดงตัวสลับภาษา?', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20724', 'th', 'show_currency_switcher', 'แสดงตัวสลับสกุลเงิน?', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20725', 'th', 'enable_stikcy_header', 'เปิดใช้งานส่วนหัว stikcy ไหม', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20726', 'th', 'website_footer', 'ส่วนท้ายของเว็บไซต์', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20727', 'th', 'footer_widget', 'วิดเจ็ตส่วนท้าย', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20728', 'th', 'about_widget', 'เกี่ยวกับ Widget', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20729', 'th', 'footer_logo', 'โลโก้ส่วนท้าย', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20730', 'th', 'about_description', 'เกี่ยวกับคำอธิบาย', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20731', 'th', 'contact_info_widget', 'วิดเจ็ตข้อมูลการติดต่อ', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20732', 'th', 'footer_contact_address', 'ที่อยู่ติดต่อส่วนท้าย', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20733', 'th', 'footer_contact_phone', 'โทรศัพท์ติดต่อส่วนท้าย', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20734', 'th', 'footer_contact_email', 'อีเมลติดต่อส่วนท้าย', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20735', 'th', 'link_widget_one', 'ลิงค์วิดเจ็ตหนึ่ง', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20736', 'th', 'links', 'ลิงค์', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20737', 'th', 'footer_bottom', 'ส่วนท้ายด้านล่าง', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20738', 'th', 'copyright_widget_', 'วิดเจ็ตลิขสิทธิ์', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20739', 'th', 'copyright_text', 'ข้อความลิขสิทธิ์', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20740', 'th', 'social_link_widget_', 'วิดเจ็ตลิงค์โซเชียล', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20741', 'th', 'show_social_links', 'แสดงลิงค์ทางสังคม?', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20742', 'th', 'social_links', 'ลิงค์ทางสังคม', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20743', 'th', 'payment_methods_widget_', 'วิดเจ็ตวิธีการชำระเงิน', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20744', 'th', 'rtl_status_updated_successfully', 'อัปเดตสถานะ RTL เรียบร้อยแล้ว', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20745', 'th', 'language_changed_to_', 'เปลี่ยนภาษาเป็น', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20746', 'th', 'inhouse_product_sale_report', 'รายงานการขายสินค้าภายใน', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20747', 'th', 'sort_by_category', 'จัดเรียงตามหมวดหมู่', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20748', 'th', 'product_wise_stock_report', 'รายงานสต็อกสินค้าที่ชาญฉลาด', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20749', 'th', 'currency_changed_to_', 'เปลี่ยนสกุลเงินเป็น', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20750', 'th', 'avatar', 'สัญลักษณ์', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20751', 'th', 'copy', 'สำเนา', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20752', 'th', 'variant', 'ตัวแปร', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20753', 'th', 'variant_price', 'ราคาที่แตกต่างกัน', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20754', 'th', 'sku', 'SKU', '2021-02-09 13:57:14', '2021-09-20 13:00:10'),
('20755', 'th', 'key', 'สำคัญ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20756', 'th', 'value', 'มูลค่า', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20757', 'th', 'copy_translations', 'คัดลอกการแปล', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20758', 'th', 'all_pickup_points', 'จุดรับทั้งหมด', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20759', 'th', 'add_new_pickup_point', 'เพิ่มจุดรับใหม่', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20760', 'th', 'manager', 'ผู้จัดการ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20761', 'th', 'location', 'สถานที่', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20762', 'th', 'pickup_station_contact', 'ติดต่อสถานีรถกระบะ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20763', 'th', 'open', 'เปิด', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20764', 'th', 'pos_activation_for_seller', 'การเปิดใช้งาน POS สำหรับผู้ขาย', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20765', 'th', 'order_completed_successfully', 'คำสั่งซื้อเสร็จสมบูรณ์เรียบร้อยแล้ว', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20766', 'th', 'text_input', 'การป้อนข้อความ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20767', 'th', 'select', 'เลือก', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20768', 'th', 'multiple_select', 'เลือกหลายรายการ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20769', 'th', 'radio', 'วิทยุ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20770', 'th', 'file', 'ไฟล์', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20771', 'th', 'email_address', 'ที่อยู่อีเมล', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20772', 'th', 'verification_info', 'ข้อมูลการยืนยัน', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20773', 'th', 'approval', 'การอนุมัติ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20774', 'th', 'due_amount', 'จำนวนเงินที่ครบกำหนด', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20775', 'th', 'show', 'แสดง', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20776', 'th', 'pay_now', 'จ่ายตอนนี้', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20777', 'th', 'affiliate_user_verification', 'การยืนยันผู้ใช้ Affiliate', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20778', 'th', 'reject', 'ปฏิเสธ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20779', 'th', 'accept', 'ยอมรับ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20780', 'th', 'beauty_health__hair', 'ความงามสุขภาพและเส้นผม', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20781', 'th', 'comparison', 'การเปรียบเทียบ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20782', 'th', 'reset_compare_list', 'รีเซ็ตรายการเปรียบเทียบ', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20783', 'th', 'your_comparison_list_is_empty', 'รายการเปรียบเทียบของคุณว่างเปล่า', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20784', 'th', 'convert_point_to_wallet', 'แปลง Point เป็น Wallet', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20785', 'th', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'หมายเหตุ: คุณต้องเปิดใช้งานตัวเลือกกระเป๋าเงินก่อนจึงจะใช้ส่วนเสริมคะแนนคลับได้', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20786', 'th', 'create_an_account', 'สร้างบัญชี.', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20787', 'th', 'use_email_instead', 'ใช้อีเมลแทน', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20788', 'th', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'การลงทะเบียนแสดงว่าคุณยอมรับข้อกำหนดและเงื่อนไขของเรา', '2021-02-09 13:57:15', '2021-09-20 13:00:10'),
('20789', 'th', 'create_account', 'สร้างบัญชี', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20790', 'th', 'or_join_with', 'หรือเข้าร่วมกับ', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20791', 'th', 'already_have_an_account', 'มีบัญชีอยู่แล้ว?', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20792', 'th', 'log_in', 'เข้าสู่ระบบ', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20793', 'th', 'computer__accessories', 'อุปกรณ์คอมพิวเตอร์', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20794', 'th', 'products', 'สินค้า', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20795', 'th', 'in_your_cart', 'ในรถเข็นของคุณ', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20796', 'th', 'in_your_wishlist', 'ในสิ่งที่ปรารถนาของคุณ', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20797', 'th', 'you_ordered', 'คุณสั่งซื้อ', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20798', 'th', 'default_shipping_address', 'ที่อยู่จัดส่งเริ่มต้น', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20799', 'th', 'sports__outdoor', 'กีฬาและกิจกรรมกลางแจ้ง', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20800', 'th', 'copied', 'คัดลอกแล้ว', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20801', 'th', 'copy_the_promote_link', 'คัดลอกลิงค์โปรโมท', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20802', 'th', 'write_a_review', 'แสดงความคิดเห็น', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20803', 'th', 'your_name', 'ชื่อของคุณ', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20804', 'th', 'comment', 'แสดงความคิดเห็น', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20805', 'th', 'your_review', 'บทวิจารณ์ของคุณ', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20806', 'th', 'submit_review', 'ส่งบทวิจารณ์', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20807', 'th', 'claire_willis', 'แคลร์วิลลิส', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20808', 'th', 'germaine_greene', 'Germaine Greene', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20809', 'th', 'product_file', 'ไฟล์ผลิตภัณฑ์', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20810', 'th', 'choose_file', 'เลือกไฟล์', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20811', 'th', 'type_to_add_a_tag', 'พิมพ์เพื่อเพิ่มแท็ก', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20812', 'th', 'images', 'รูปภาพ', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20813', 'th', 'main_images', 'ภาพหลัก', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20814', 'th', 'meta_tags', 'เมตาแท็ก', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20815', 'th', 'digital_product_has_been_inserted_successfully', 'ใส่ผลิตภัณฑ์ดิจิทัลสำเร็จแล้ว', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20816', 'th', 'edit_digital_product', 'แก้ไขผลิตภัณฑ์ดิจิทัล', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20817', 'th', 'select_an_option', 'เลือกตัวเลือก', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20818', 'th', 'tax', 'ภาษี', '2021-02-09 13:57:16', '2021-02-09 13:57:16'),
('20819', 'th', 'any_question_about_this_product', 'คำถามใด ๆ เกี่ยวกับผลิตภัณฑ์นี้?', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20820', 'th', 'sign_in', 'เข้าสู่ระบบ', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20821', 'th', 'login_with_google', 'เข้าสู่ระบบด้วย Google', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20822', 'th', 'login_with_facebook', 'เข้าสู่ระบบด้วย Facebook', '2021-02-09 13:57:16', '2021-09-20 13:00:10'),
('20823', 'th', 'login_with_twitter', 'เข้าสู่ระบบด้วย Twitter', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20824', 'th', 'click_to_show_phone_number', 'คลิกเพื่อแสดงหมายเลขโทรศัพท์', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20825', 'th', 'other_ads_of', 'โฆษณาอื่น ๆ ของ', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20826', 'th', 'store_home', 'จัดเก็บหน้าแรก', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20827', 'th', 'top_selling', 'มียอดขายสูงสุด', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20828', 'th', 'shop_settings', 'การตั้งค่าร้านค้า', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20829', 'th', 'visit_shop', 'เยี่ยมชมร้านค้า', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20830', 'th', 'pickup_points', 'จุดรับ', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20831', 'th', 'select_pickup_point', 'เลือกจุดรับสินค้า', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20832', 'th', 'slider_settings', 'การตั้งค่าตัวเลื่อน', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20833', 'th', 'social_media_link', 'ลิงค์โซเชียลมีเดีย', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20834', 'th', 'facebook', 'เฟสบุ๊ค', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20835', 'th', 'twitter', 'ทวิตเตอร์', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20836', 'th', 'google', 'Google', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20837', 'th', 'new_arrival_products', 'สินค้ามาใหม่', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20838', 'th', 'check_your_order_status', 'ตรวจสอบสถานะการสั่งซื้อของคุณ', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20839', 'th', 'shipping_method', 'วิธีการส่ง', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20840', 'th', 'shipped_by', 'จัดส่งโดย', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20841', 'th', 'image', 'ภาพ', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20842', 'th', 'sub_sub_category', 'หมวดย่อยย่อย', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20843', 'th', 'inhouse_products', 'ผลิตภัณฑ์ในบ้าน', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20844', 'th', 'forgot_password', 'ลืมรหัสผ่าน?', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20845', 'th', 'enter_your_email_address_to_recover_your_password', 'ป้อนที่อยู่อีเมลของคุณเพื่อกู้คืนรหัสผ่านของคุณ', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20846', 'th', 'email_or_phone', 'อีเมลหรือโทรศัพท์', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20847', 'th', 'send_password_reset_link', 'ส่งลิงค์รีเซ็ตรหัสผ่าน', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20848', 'th', 'back_to_login', 'กลับไปที่การเข้าสู่ระบบ', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20849', 'th', 'index', 'ดัชนี', '2021-02-09 13:57:17', '2021-02-09 13:57:17'),
('20850', 'th', 'download_your_product', 'ดาวน์โหลดผลิตภัณฑ์ของคุณ', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20851', 'th', 'option', 'ตัวเลือก', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20852', 'th', 'applied_refund_request', 'ใช้คำขอคืนเงิน', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20853', 'th', 'item_has_been_renoved_from_wishlist', 'รายการถูกยกเลิกจากสิ่งที่อยากได้', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20854', 'th', 'bulk_products_upload', 'อัปโหลดผลิตภัณฑ์จำนวนมาก', '2021-02-09 13:57:17', '2021-09-20 13:00:10'),
('20855', 'th', 'upload_csv', 'อัปโหลด CSV', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20856', 'th', 'create_a_ticket', 'สร้างตั๋ว', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20857', 'th', 'tickets', 'ตั๋ว', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20858', 'th', 'ticket_id', 'รหัสตั๋ว', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20859', 'th', 'sending_date', 'วันที่ส่ง', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20860', 'th', 'subject', 'เรื่อง', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20861', 'th', 'view_details', 'ดูรายละเอียด', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20862', 'th', 'provide_a_detailed_description', 'ให้คำอธิบายโดยละเอียด', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20863', 'th', 'type_your_reply', 'พิมพ์คำตอบของคุณ', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20864', 'th', 'send_ticket', 'ส่งตั๋ว', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20865', 'th', 'load_more', 'โหลดเพิ่มเติม', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20866', 'th', 'jewelry__watches', 'เครื่องประดับและนาฬิกา', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20867', 'th', 'filters', 'ฟิลเตอร์', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20868', 'th', 'contact_address', 'ที่อยู่ติดต่อ', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20869', 'th', 'contact_phone', 'โทรศัพท์ติดต่อ', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20870', 'th', 'contact_email', 'อีเมลติดต่อ', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20871', 'th', 'filter_by', 'กรองตาม', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20872', 'th', 'condition', 'เงื่อนไข', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20873', 'th', 'all_type', 'ทุกประเภท', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20874', 'th', 'pay_with_wallet', 'ชำระเงินด้วยกระเป๋าสตางค์', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20875', 'th', 'select_variation', 'เลือกรูปแบบ', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20876', 'th', 'no_product_added', 'ไม่มีการเพิ่มผลิตภัณฑ์', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20877', 'th', 'status_has_been_updated_successfully', 'อัปเดตสถานะเรียบร้อยแล้ว', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20878', 'th', 'all_seller_packages', 'แพ็คเกจผู้ขายทั้งหมด', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20879', 'th', 'add_new_package', 'เพิ่มแพ็คเกจใหม่', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20880', 'th', 'package_logo', 'โลโก้แพ็คเกจ', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20881', 'th', 'days', 'วัน', '2021-02-09 13:57:18', '2021-02-09 13:57:18'),
('20882', 'th', 'create_new_seller_package', 'สร้างแพ็คเกจผู้ขายใหม่', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20883', 'th', 'package_name', 'ชื่อแพ็กเกจ', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20884', 'th', 'duration', 'ระยะเวลา', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20885', 'th', 'validity_in_number_of_days', 'อายุการใช้งานเป็นจำนวนวัน', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20886', 'th', 'update_package_information', 'อัปเดตข้อมูลแพ็คเกจ', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20887', 'th', 'package_has_been_inserted_successfully', 'ใส่แพ็กเกจสำเร็จแล้ว', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20888', 'th', 'refund_request', 'ขอคืนเงิน', '2021-02-09 13:57:18', '2021-09-20 13:00:10'),
('20889', 'th', 'reason', 'เหตุผล', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20890', 'th', 'label', 'ฉลาก', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20891', 'th', 'select_label', 'เลือกป้ายกำกับ', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20892', 'th', 'multiple_select_label', 'หลายป้ายเลือก', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20893', 'th', 'radio_label', 'ป้ายวิทยุ', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20894', 'th', 'pickup_point_orders', 'คำสั่งซื้อจุดรับสินค้า', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20895', 'th', 'view', 'ดู', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20896', 'th', 'order_', 'คำสั่งซื้อ #', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20897', 'th', 'order_status', 'สถานะการสั่งซื้อ', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20898', 'th', 'total_amount', 'จำนวนเงินทั้งหมด', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20899', 'th', 'total', 'รวม', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20900', 'th', 'delivery_status_has_been_updated', 'อัปเดตสถานะการจัดส่งแล้ว', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20901', 'th', 'payment_status_has_been_updated', 'อัปเดตสถานะการชำระเงินแล้ว', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20902', 'th', 'invoice', 'ใบแจ้งหนี้', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20903', 'th', 'set_refund_time', 'กำหนดเวลาคืนเงิน', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20904', 'th', 'set_time_for_sending_refund_request', 'กำหนดเวลาในการส่งคำขอคืนเงิน', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20905', 'th', 'set_refund_sticker', 'ตั้งสติกเกอร์คืนเงิน', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20906', 'th', 'sticker', 'สติ๊กเกอร์', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20907', 'th', 'refund_request_all', 'ขอคืนเงินทั้งหมด', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20908', 'th', 'order_id', 'รหัสคำสั่งซื้อ', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20909', 'th', 'seller_approval', 'การอนุมัติผู้ขาย', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20910', 'th', 'admin_approval', 'การอนุมัติของผู้ดูแลระบบ', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20911', 'th', 'refund_status', 'สถานะการคืนเงิน', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20912', 'th', 'no_refund', 'ไม่มีการคืนเงิน', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20913', 'th', 'status_updated_successfully', 'อัปเดตสถานะเรียบร้อยแล้ว', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20914', 'th', 'user_search_report', 'รายงานการค้นหาผู้ใช้', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20915', 'th', 'search_by', 'ค้นหาโดย', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20916', 'th', 'number_searches', 'การค้นหาหมายเลข', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20917', 'th', 'sender', 'ผู้ส่ง', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20918', 'th', 'receiver', 'ผู้รับ', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20919', 'th', 'verification_form_updated_successfully', 'อัปเดตแบบฟอร์มการยืนยันเรียบร้อยแล้ว', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20920', 'th', 'invalid_email_or_password', 'อีเมลหรือรหัสผ่านไม่ถูกต้อง', '2021-02-09 13:57:19', '2021-09-20 13:00:10'),
('20921', 'th', 'all_coupons', 'คูปองทั้งหมด', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20922', 'th', 'add_new_coupon', 'เพิ่มคูปองใหม่', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20923', 'th', 'coupon_information', 'ข้อมูลคูปอง', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20924', 'th', 'start_date', 'วันที่เริ่มต้น', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20925', 'th', 'end_date', 'วันที่สิ้นสุด', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20926', 'th', 'product_base', 'ฐานผลิตภัณฑ์', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20927', 'th', 'send_newsletter', 'ส่งจดหมายข่าว', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20928', 'th', 'mobile_users', 'ผู้ใช้มือถือ', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20929', 'th', 'sms_subject', 'เรื่อง SMS', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20930', 'th', 'sms_content', 'เนื้อหา SMS', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20931', 'th', 'all_flash_delas', 'Flash Delas ทั้งหมด', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20932', 'th', 'create_new_flash_dela', 'สร้าง Flash Dela ใหม่', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20933', 'th', 'page_link', 'ลิงค์หน้า', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20934', 'th', 'flash_deal_information', 'Flash Deal Information', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20935', 'th', 'background_color', 'Background Color', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20936', 'th', '0000ff', '#0000ff', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20937', 'th', 'text_color', 'Text Color', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20938', 'th', 'white', 'White', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20939', 'th', 'dark', 'Dark', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20940', 'th', 'choose_products', 'Choose Products', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20941', 'th', 'discounts', 'Discounts', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20942', 'th', 'discount_type', 'Discount Type', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20943', 'th', 'twillo_credential', 'Twillo Credential', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20944', 'th', 'twilio_sid', 'TWILIO SID', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20945', 'th', 'twilio_auth_token', 'TWILIO AUTH TOKEN', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20946', 'th', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20947', 'th', 'valid_twillo_number', 'VALID TWILLO NUMBER', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20948', 'th', 'nexmo_credential', 'Nexmo Credential', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20949', 'th', 'nexmo_key', 'NEXMO KEY', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20950', 'th', 'nexmo_secret', 'NEXMO SECRET', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20951', 'th', 'ssl_wireless_credential', 'SSL Wireless Credential', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20952', 'th', 'ssl_sms_api_token', 'SSL SMS API TOKEN', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20953', 'th', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20954', 'th', 'ssl_sms_url', 'SSL SMS URL', '2021-02-09 13:57:20', '2021-09-20 13:00:10'),
('20955', 'th', 'fast2sms_credential', 'Fast2SMS Credential', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20956', 'th', 'auth_key', 'AUTH KEY', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20957', 'th', 'route', 'ROUTE', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20958', 'th', 'promotional_use', 'Promotional Use', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20959', 'th', 'transactional_use', 'Transactional Use', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20960', 'th', 'sender_id', 'SENDER ID', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20961', 'th', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20962', 'th', 'twillo_otp', 'Twillo OTP', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20963', 'th', 'ssl_wireless_otp', 'SSL Wireless OTP', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20964', 'th', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20965', 'th', 'order_placement', 'Order Placement', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20966', 'th', 'delivery_status_changing_time', 'Delivery Status Changing Time', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20967', 'th', 'paid_status_changing_time', 'Paid Status Changing Time', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20968', 'th', 'send_bulk_sms', 'Send Bulk SMS', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20969', 'th', 'all_subscribers', 'All Subscribers', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20970', 'th', 'coupon_information_adding', 'Coupon Information Adding', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20971', 'th', 'coupon_type', 'Coupon Type', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20972', 'th', 'for_products', 'For Products', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20973', 'th', 'for_total_orders', 'For Total Orders', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20974', 'th', 'add_your_product_base_coupon', 'Add Your Product Base Coupon', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20975', 'th', 'coupon_code', 'Coupon code', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20976', 'th', 'sub_category', 'Sub Category', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20977', 'th', 'add_more', 'Add More', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20978', 'th', 'add_your_cart_base_coupon', 'Add Your Cart Base Coupon', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20979', 'th', 'minimum_shopping', 'Minimum Shopping', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20980', 'th', 'maximum_discount_amount', 'Maximum Discount Amount', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20981', 'th', 'coupon_information_update', 'Coupon Information Update', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20982', 'th', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'โปรดกำหนดการตั้งค่า SMTP เพื่อให้สามารถใช้งานฟังก์ชันการส่งอีเมลทั้งหมดได้', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20983', 'th', 'configure_now', 'กำหนดค่าทันที', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20984', 'th', 'total_published_products', 'ผลิตภัณฑ์ที่เผยแพร่ทั้งหมด', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20985', 'th', 'total_sellers_products', 'ผลิตภัณฑ์ของผู้ขายทั้งหมด', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20986', 'th', 'total_admin_products', 'ผลิตภัณฑ์สำหรับผู้ดูแลระบบทั้งหมด', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20987', 'th', 'manage_products', 'จัดการสินค้า', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20988', 'th', 'total_product_category', 'หมวดหมู่ผลิตภัณฑ์ทั้งหมด', '2021-02-09 13:57:21', '2021-09-20 13:00:10'),
('20989', 'th', 'create_category', 'สร้างหมวดหมู่', '2021-02-09 13:57:22', '2021-09-20 13:00:10'),
('20990', 'th', 'total_product_sub_sub_category', 'หมวดย่อยผลิตภัณฑ์ทั้งหมด', '2021-02-09 13:57:22', '2021-09-20 13:00:10'),
('20991', 'th', 'create_sub_sub_category', 'สร้างหมวดย่อยย่อย', '2021-02-09 13:57:22', '2021-09-20 13:00:10'),
('20992', 'th', 'total_product_sub_category', 'หมวดย่อยผลิตภัณฑ์ทั้งหมด', '2021-02-09 13:57:22', '2021-09-20 13:00:10'),
('20993', 'th', 'create_sub_category', 'สร้างหมวดหมู่ย่อย', '2021-02-09 13:57:22', '2021-09-20 13:00:10'),
('20994', 'th', 'total_product_brand', 'แบรนด์ผลิตภัณฑ์ทั้งหมด', '2021-02-09 13:57:22', '2021-09-20 13:00:10'),
('20995', 'th', 'create_brand', 'สร้างแบรนด์', '2021-02-09 13:57:22', '2021-09-20 13:00:10'),
('20996', 'th', 'total_sellers', 'ผู้ขายทั้งหมด', '2021-02-09 13:57:22', '2021-09-20 13:00:10'),
('20997', 'th', 'total_approved_sellers', 'ผู้ขายที่ได้รับอนุมัติทั้งหมด', '2021-02-09 13:57:22', '2021-09-20 13:00:10'),
('20998', 'th', 'total_pending_sellers', 'ผู้ขายที่รอดำเนินการทั้งหมด', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('20999', 'th', 'manage_sellers', 'จัดการผู้ขาย', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21000', 'th', 'category_wise_product_sale', 'หมวดหมู่การขายสินค้าที่ชาญฉลาด', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21001', 'th', 'sale', 'ขาย', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21002', 'th', 'category_wise_product_stock', 'หมวดหมู่สต็อกสินค้าที่ชาญฉลาด', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21003', 'th', 'category_name', 'ชื่อหมวดหมู่', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21004', 'th', 'stock', 'คลังสินค้า', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21005', 'th', 'frontend', 'ส่วนหน้า', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21006', 'th', 'home_page', 'หน้าแรก', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21007', 'th', 'setting', 'การตั้งค่า', '2021-02-09 13:57:22', '2021-02-09 13:57:22'),
('21008', 'th', 'policy_page', 'หน้านโยบาย', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21009', 'th', 'general', 'ทั่วไป', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21010', 'th', 'click_here', 'คลิกที่นี่', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21011', 'th', 'useful_link', 'ลิงค์ที่เป็นประโยชน์', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21012', 'th', 'activation', 'การเปิดใช้งาน', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21013', 'th', 'smtp', 'SMTP', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21014', 'th', 'payment_method', 'วิธีการชำระเงิน', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21015', 'th', 'social_media', 'สื่อสังคม', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21016', 'th', 'business', 'ธุรกิจ', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21017', 'th', 'seller_verification', 'การยืนยันผู้ขาย', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21018', 'th', 'form_setting', 'การตั้งค่าแบบฟอร์ม', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21019', 'th', 'language', 'ภาษา', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21020', 'th', 'dashboard', 'แผงควบคุม', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21021', 'th', 'pos_system', 'ระบบ POS', '2021-02-09 13:57:22', '2021-09-20 13:00:11'),
('21022', 'th', 'pos_manager', 'ผู้จัดการ POS', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21023', 'th', 'pos_configuration', 'การกำหนดค่า POS', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21024', 'th', 'products', 'ผลิตภัณฑ์', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21025', 'th', 'add_new_product', 'เพิ่มผลิตภัณฑ์ใหม่', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21026', 'th', 'all_products', 'สินค้าทั้งหมด', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21027', 'th', 'in_house_products', 'ผลิตภัณฑ์ในบ้าน', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21028', 'th', 'seller_products', 'ผู้ขายสินค้า', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21029', 'th', 'digital_products', 'ผลิตภัณฑ์ดิจิทัล', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21030', 'th', 'bulk_import', 'นำเข้าจำนวนมาก', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21031', 'th', 'bulk_export', 'ส่งออกจำนวนมาก', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21032', 'th', 'category', 'ประเภท', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21033', 'th', 'subcategory', 'หมวดหมู่ย่อย', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21034', 'th', 'sub_subcategory', 'หมวดหมู่ย่อย', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21035', 'th', 'brand', 'ยี่ห้อ', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21036', 'th', 'attribute', 'แอตทริบิวต์', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21037', 'th', 'product_reviews', 'บทวิจารณ์สินค้า', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21038', 'th', 'sales', 'ฝ่ายขาย', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21039', 'th', 'all_orders', 'คำสั่งซื้อทั้งหมด', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21040', 'th', 'inhouse_orders', 'คำสั่งซื้อภายใน', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21041', 'th', 'seller_orders', 'คำสั่งซื้อของผู้ขาย', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21042', 'th', 'pickup_point_order', 'จุดรับสินค้า', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21043', 'th', 'refunds', 'การคืนเงิน', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21044', 'th', 'refund_requests', 'คำขอคืนเงิน', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21045', 'th', 'approved_refund', 'อนุมัติการคืนเงิน', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21046', 'th', 'refund_configuration', 'การกำหนดค่าการคืนเงิน', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21047', 'th', 'customers', 'ลูกค้า', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21048', 'th', 'customer_list', 'รายชื่อลูกค้า', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21049', 'th', 'classified_products', 'ผลิตภัณฑ์แยกประเภท', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21050', 'th', 'classified_packages', 'แพ็คเกจแยกประเภท', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21051', 'th', 'sellers', 'ผู้ขาย', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21052', 'th', 'all_seller', 'ผู้ขายทั้งหมด', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21053', 'th', 'payouts', 'การจ่ายเงิน', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21054', 'th', 'payout_requests', 'คำขอการจ่ายเงิน', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21055', 'th', 'seller_commission', 'ค่าคอมมิชชั่นผู้ขาย', '2021-02-09 13:57:23', '2021-09-20 13:00:11'),
('21056', 'th', 'seller_packages', 'แพ็คเกจผู้ขาย', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21057', 'th', 'seller_verification_form', 'แบบฟอร์มยืนยันผู้ขาย', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21058', 'th', 'reports', 'รายงาน', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21059', 'th', 'in_house_product_sale', 'ขายสินค้าในบ้าน', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21060', 'th', 'seller_products_sale', 'ผู้ขายสินค้าขาย', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21061', 'th', 'products_stock', 'สต็อกสินค้า', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21062', 'th', 'products_wishlist', 'รายการสินค้าที่ต้องการ', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21063', 'th', 'user_searches', 'การค้นหาผู้ใช้', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21064', 'th', 'marketing', 'การตลาด', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21065', 'th', 'flash_deals', 'ข้อเสนอแฟลช', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21066', 'th', 'newsletters', 'จดหมายข่าว', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21067', 'th', 'bulk_sms', 'SMS จำนวนมาก', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21068', 'th', 'subscribers', 'สมาชิก', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21069', 'th', 'coupon', 'คูปอง', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21070', 'th', 'support', 'สนับสนุน', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21071', 'th', 'ticket', 'ตั๋ว', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21072', 'th', 'product_queries', 'คำถามเกี่ยวกับผลิตภัณฑ์', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21073', 'th', 'website_setup', 'การตั้งค่าเว็บไซต์', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21074', 'th', 'header', 'หัวข้อ', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21075', 'th', 'footer', 'ส่วนท้าย', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21076', 'th', 'pages', 'หน้า', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21077', 'th', 'appearance', 'ลักษณะ', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21078', 'th', 'setup__configurations', 'การตั้งค่าและการกำหนดค่า', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21079', 'th', 'general_settings', 'การตั้งค่าทั่วไป', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21080', 'th', 'features_activation', 'การเปิดใช้งานคุณสมบัติ', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21081', 'th', 'languages', 'ภาษา', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21082', 'th', 'currency', 'สกุลเงิน', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21083', 'th', 'pickup_point', 'จุดรับของ', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21084', 'th', 'smtp_settings', 'การตั้งค่า SMTP', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21085', 'th', 'payment_methods', 'วิธีการชำระเงิน', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21086', 'th', 'file_system_configuration', 'การกำหนดค่าระบบไฟล์', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21087', 'th', 'social_media_logins', 'การเข้าสู่ระบบโซเชียลมีเดีย', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21088', 'th', 'analytics_tools', 'เครื่องมือวิเคราะห์', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21089', 'th', 'facebook_chat', 'แชท Facebook', '2021-02-09 13:57:24', '2021-09-20 13:00:11'),
('21090', 'th', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21091', 'th', 'shipping_configuration', 'การกำหนดค่าการจัดส่ง', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21092', 'th', 'shipping_countries', 'ประเทศที่จัดส่ง', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21093', 'th', 'affiliate_system', 'ระบบพันธมิตร', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21094', 'th', 'affiliate_registration_form', 'แบบฟอร์มการลงทะเบียนพันธมิตร', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21095', 'th', 'affiliate_configurations', 'การกำหนดค่าพันธมิตร', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21096', 'th', 'affiliate_users', 'ผู้ใช้พันธมิตร', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21097', 'th', 'referral_users', 'ผู้ใช้อ้างอิง', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21098', 'th', 'affiliate_withdraw_requests', 'พันธมิตรถอนคำขอ', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21099', 'th', 'offline_payment_system', 'ระบบการชำระเงินออฟไลน์', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21100', 'th', 'manual_payment_methods', 'วิธีการชำระเงินด้วยตนเอง', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21101', 'th', 'offline_wallet_recharge', 'เติมเงิน Wallet แบบออฟไลน์', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21102', 'th', 'offline_customer_package_payments', 'การชำระเงินแพคเกจลูกค้าออฟไลน์', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21103', 'th', 'offline_seller_package_payments', 'การชำระเงินแพ็คเกจผู้ขายออฟไลน์', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21104', 'th', 'paytm_payment_gateway', 'Paytm Payment Gateway', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21105', 'th', 'set_paytm_credentials', 'ตั้งค่าข้อมูลรับรอง Paytm', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21106', 'th', 'club_point_system', 'ระบบ Club Point', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21107', 'th', 'club_point_configurations', 'การกำหนดค่า Club Point', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21108', 'th', 'set_product_point', 'กำหนดจุดผลิตภัณฑ์', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21109', 'th', 'user_points', 'คะแนนของผู้ใช้', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21110', 'th', 'otp_system', 'ระบบ OTP', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21111', 'th', 'otp_configurations', 'การกำหนดค่า OTP', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21112', 'th', 'set_otp_credentials', 'ตั้งค่าข้อมูลรับรอง OTP', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21113', 'th', 'staffs', 'พนักงาน', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21114', 'th', 'all_staffs', 'พนักงานทุกคน', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21115', 'th', 'staff_permissions', 'สิทธิ์ของเจ้าหน้าที่', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21116', 'th', 'addon_manager', 'ผู้จัดการ Addon', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21117', 'th', 'browse_website', 'เรียกดูเว็บไซต์', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21118', 'th', 'pos', 'POS', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21119', 'th', 'notifications', 'การแจ้งเตือน', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21120', 'th', 'new_orders', 'คำสั่งซื้อใหม่', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21121', 'th', 'userimage', 'ภาพผู้ใช้', '2021-02-09 13:57:25', '2021-09-20 13:00:11'),
('21122', 'th', 'profile', 'ข้อมูลส่วนตัว', '2021-02-09 13:57:26', '2021-09-20 13:00:11'),
('21123', 'th', 'logout', 'ออกจากระบบ', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21124', 'th', 'page_not_found', 'ไม่พบหน้านี้!', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21125', 'th', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'ไม่พบหน้าที่คุณกำลังค้นหาบนเซิร์ฟเวอร์ของเรา', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21126', 'th', 'registration', 'การลงทะเบียน', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21127', 'th', 'i_am_shopping_for', 'ฉันกำลังซื้อของ ...', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21128', 'th', 'compare', 'เปรียบเทียบ', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21129', 'th', 'wishlist', 'Wishlist', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21130', 'th', 'cart', 'รถเข็น', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21131', 'th', 'your_cart_is_empty', 'รถเข็นของคุณว่างเปล่า', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21132', 'th', 'categories', 'หมวดหมู่', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21133', 'th', 'see_all', 'ดูทั้งหมด', '2021-02-09 13:58:01', '2021-09-20 13:00:11'),
('21134', 'th', 'seller_policy', 'นโยบายผู้ขาย', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21135', 'th', 'return_policy', 'นโยบายการคืนสินค้า', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21136', 'th', 'support_policy', 'นโยบายการสนับสนุน', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21137', 'th', 'privacy_policy', 'นโยบายความเป็นส่วนตัว', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21138', 'th', 'your_email_address', 'ที่อยู่อีเมลของคุณ', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21139', 'th', 'subscribe', 'ติดตาม', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21140', 'th', 'contact_info', 'ข้อมูลติดต่อ', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21141', 'th', 'address', 'ที่อยู่', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21142', 'th', 'phone', 'โทรศัพท์', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21143', 'th', 'email', 'อีเมล์', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21144', 'th', 'login', 'เข้าสู่ระบบ', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21145', 'th', 'my_account', 'บัญชีของฉัน', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21146', 'th', 'order_history', 'ประวัติการสั่งซื้อ', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21147', 'th', 'my_wishlist', 'สิ่งที่อยากได้ของฉัน', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21148', 'th', 'track_order', 'ติดตามการสั่งซื้อ', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21149', 'th', 'be_an_affiliate_partner', 'เป็นพันธมิตรในเครือ', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21150', 'th', 'be_a_seller', 'เป็นผู้ขาย', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21151', 'th', 'apply_now', 'สมัครตอนนี้', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21152', 'th', 'confirmation', 'การยืนยัน', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21153', 'th', 'delete_confirmation_message', 'ลบข้อความยืนยัน', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21154', 'th', 'cancel', 'ยกเลิก', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21155', 'th', 'delete', 'ลบ', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21156', 'th', 'item_has_been_added_to_compare_list', 'เพิ่มรายการเพื่อเปรียบเทียบรายการ', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21157', 'th', 'please_login_first', 'กรุณาเข้าสู่ระบบก่อน', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21158', 'th', 'total_earnings_from', 'รายได้รวมจาก', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21159', 'th', 'client_subscription', 'การสมัครสมาชิก', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21160', 'th', 'product_category', 'ประเภทสินค้า', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21161', 'th', 'product_sub_sub_category', 'หมวดย่อยผลิตภัณฑ์', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21162', 'th', 'product_sub_category', 'หมวดหมู่ย่อยของผลิตภัณฑ์', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21163', 'th', 'product_brand', 'แบรนด์สินค้า', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21164', 'th', 'top_client_packages', 'แพ็คเกจไคลเอนต์ยอดนิยม', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21165', 'th', 'top_freelancer_packages', 'แพ็คเกจ Freelancer ยอดนิยม', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21166', 'th', 'number_of_sale', 'จำนวนขาย', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21167', 'th', 'number_of_stock', 'จำนวนสต็อก', '2021-02-09 13:58:02', '2021-09-20 13:00:11'),
('21168', 'th', 'top_10_products', 'ผลิตภัณฑ์ 10 อันดับแรก', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21169', 'th', 'top_12_products', 'ผลิตภัณฑ์ 12 อันดับแรก', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21170', 'th', 'admin_can_not_be_a_seller', 'แอดมินไม่สามารถเป็นผู้ขายได้', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21171', 'th', 'filter_by_rating', 'กรองตามคะแนน', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21172', 'th', 'published_reviews_updated_successfully', 'อัปเดตบทวิจารณ์ที่เผยแพร่เรียบร้อยแล้ว', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21173', 'th', 'refund_sticker_has_been_updated_successfully', 'อัปเดตสติกเกอร์การคืนเงินเรียบร้อยแล้ว', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21174', 'th', 'edit_product', 'แก้ไขผลิตภัณฑ์', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21175', 'th', 'meta_images', 'รูปภาพ Meta', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21176', 'th', 'update_product', 'อัปเดตผลิตภัณฑ์', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21177', 'th', 'product_has_been_deleted_successfully', 'ลบสินค้าเรียบร้อยแล้ว', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21178', 'th', 'your_profile_has_been_updated_successfully', 'อัปเดตโปรไฟล์ของคุณเรียบร้อยแล้ว!', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21179', 'th', 'upload_limit_has_been_reached_please_upgrade_your_package', 'ถึงขีด จำกัด การอัปโหลดแล้ว โปรดอัปเกรดแพ็คเกจของคุณ', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21180', 'th', 'add_your_product', 'เพิ่มผลิตภัณฑ์ของคุณ', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21181', 'th', 'select_a_category', 'เลือกหมวดหมู่', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21182', 'th', 'select_a_brand', 'เลือกแบรนด์', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21183', 'th', 'product_unit', 'หน่วยผลิตภัณฑ์', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21184', 'th', 'minimum_qty', 'จำนวนขั้นต่ำ', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21185', 'th', 'product_tag', 'แท็กสินค้า', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21186', 'th', 'type__hit_enter', 'พิมพ์และกด Enter', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21187', 'th', 'videos', 'วิดีโอ', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21188', 'th', 'video_from', 'วิดีโอจาก', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21189', 'th', 'video_url', 'URL ของวิดีโอ', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21190', 'th', 'customer_choice', 'ทางเลือกของลูกค้า', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21191', 'th', 'pdf', 'ไฟล์ PDF', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21192', 'th', 'choose_pdf', 'เลือก PDF', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21193', 'th', 'select_category', 'เลือกหมวดหมู่', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21194', 'th', 'target_category', 'หมวดหมู่เป้าหมาย', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21195', 'th', 'subsubcategory', 'หมวดหมู่ย่อย', '2021-02-09 13:58:03', '2021-02-09 13:58:03'),
('21196', 'th', 'search_category', 'ค้นหาหมวดหมู่', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21197', 'th', 'search_subcategory', 'ค้นหาหมวดหมู่ย่อย', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21198', 'th', 'search_subsubcategory', 'ค้นหา SubSubCategory', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21199', 'th', 'update_your_product', 'อัปเดตผลิตภัณฑ์ของคุณ', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21200', 'th', 'product_has_been_updated_successfully', 'อัปเดตผลิตภัณฑ์เรียบร้อยแล้ว', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21201', 'th', 'add_your_digital_product', 'เพิ่มผลิตภัณฑ์ดิจิทัลของคุณ', '2021-02-09 13:58:03', '2021-09-20 13:00:11'),
('21202', 'th', 'active_ecommerce_cms_update_process', 'กระบวนการอัปเดต CMS อีคอมเมิร์ซที่ใช้งานอยู่', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21203', 'th', 'codecanyon_purchase_code', 'รหัสซื้อ Codecanyon', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21204', 'th', 'database_name', 'ชื่อฐานข้อมูล', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21205', 'th', 'database_username', 'ชื่อผู้ใช้ฐานข้อมูล', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21206', 'th', 'database_password', 'รหัสผ่านฐานข้อมูล', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21207', 'th', 'database_hostname', 'ชื่อโฮสต์ฐานข้อมูล', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21208', 'th', 'update_now', 'อัปเดตทันที', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21209', 'th', 'congratulations', 'ยินดีด้วย', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21210', 'th', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'คุณเสร็จสิ้นกระบวนการอัปเดตเรียบร้อยแล้ว โปรดเข้าสู่ระบบเพื่อจะดำเนินการต่อ', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21211', 'th', 'go_to_home', 'กลับบ้าน', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21212', 'th', 'login_to_admin_panel', 'เข้าสู่แผงผู้ดูแลระบบ', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21213', 'th', 's3_file_system_credentials', 'ข้อมูลประจำตัวระบบไฟล์ S3', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21214', 'th', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21215', 'th', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21216', 'th', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21217', 'th', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21218', 'th', 'aws_url', 'AWS_URL', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21219', 'th', 's3_file_system_activation', 'การเปิดใช้งานระบบไฟล์ S3', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21220', 'th', 'your_phone_number', 'หมายเลขโทรศัพท์ของคุณ', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21221', 'th', 'zip_file', 'ไฟล์ Zip', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21222', 'th', 'install', 'ติดตั้ง', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21223', 'th', 'this_version_is_not_capable_of_installing_addons_please_update', 'เวอร์ชันนี้ไม่สามารถติดตั้ง Addons ได้โปรดอัปเดต', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21224', 'th', 'search_in_menu', 'ค้นหาในเมนู', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21225', 'th', 'uploaded_files', 'ไฟล์ที่อัปโหลด', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21226', 'th', 'shipping_cities', 'เมืองขนส่ง', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21227', 'th', 'system', 'ระบบ', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21228', 'th', 'server_status', 'สถานะเซิร์ฟเวอร์', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21229', 'th', 'nothing_found', 'ไม่พบสิ่งใด', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21230', 'th', 'parent_category', 'หมวดหมู่ผู้ปกครอง', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21231', 'th', 'level', 'ระดับ', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21232', 'th', 'category_information', 'ข้อมูลหมวดหมู่', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21233', 'th', 'translatable', 'แปลได้', '2021-02-09 13:58:04', '2021-09-20 13:00:11'),
('21234', 'th', 'no_parent', 'ไม่มีผู้ปกครอง', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21235', 'th', 'physical', 'ทางกายภาพ', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21236', 'th', 'digital', 'ดิจิทัล', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21237', 'th', '200x200', '200x200', '2021-02-09 13:58:05', '2021-02-09 13:58:05'),
('21238', 'th', '32x32', '32x32', '2021-02-09 13:58:05', '2021-02-09 13:58:05'),
('21239', 'th', 'search_your_files', 'ค้นหาไฟล์ของคุณ', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21240', 'th', 'category_has_been_updated_successfully', 'อัปเดตหมวดหมู่เรียบร้อยแล้ว', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21241', 'th', 'all_uploaded_files', 'ไฟล์ที่อัปโหลดทั้งหมด', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21242', 'th', 'upload_new_file', 'อัปโหลดไฟล์ใหม่', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21243', 'th', 'all_files', 'เอกสารทั้งหมด', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21244', 'th', 'search', 'ค้นหา', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21245', 'th', 'details_info', 'ข้อมูลรายละเอียด', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21246', 'th', 'copy_link', 'คัดลอกลิงค์', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21247', 'th', 'are_you_sure_to_delete_this_file', 'คุณแน่ใจหรือไม่ว่าจะลบไฟล์นี้', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21248', 'th', 'file_info', 'ข้อมูลไฟล์', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21249', 'th', 'link_copied_to_clipboard', 'คัดลอกลิงก์ไปยังคลิปบอร์ดแล้ว', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21250', 'th', 'oops_unable_to_copy', 'อ๊ะไม่สามารถคัดลอกได้', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21251', 'th', 'file_deleted_successfully', 'ลบไฟล์เรียบร้อยแล้ว', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21252', 'th', 'add_new_brand', 'เพิ่มแบรนด์ใหม่', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21253', 'th', '120x80', '120x80', '2021-02-09 13:58:05', '2021-02-09 13:58:05'),
('21254', 'th', 'brand_information', 'ข้อมูลแบรนด์', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21255', 'th', 'brand_has_been_updated_successfully', 'อัปเดตแบรนด์เรียบร้อยแล้ว', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21256', 'th', 'brand_has_been_deleted_successfully', 'ลบแบรนด์เรียบร้อยแล้ว', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21257', 'th', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'ใช้สำหรับการค้นหา ป้อนคำเหล่านั้นเพื่อให้ cutomer สามารถค้นหาผลิตภัณฑ์นี้ได้', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21258', 'th', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'รูปภาพเหล่านี้สามารถมองเห็นได้ในแกลเลอรีหน้ารายละเอียดผลิตภัณฑ์ ใช้รูปภาพขนาด 600x600', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21259', 'th', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'ภาพนี้มองเห็นได้ในกล่องผลิตภัณฑ์ทั้งหมด ใช้รูปภาพขนาด 300x300 เว้นพื้นที่ว่างไว้รอบ ๆ วัตถุหลักของภาพเนื่องจากเราต้องครอบตัดขอบบางส่วนในอุปกรณ์ต่างๆเพื่อให้ตอบสนอง', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21260', 'th', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'ใช้ลิงก์ที่เหมาะสมโดยไม่มีพารามิเตอร์เพิ่มเติม อย่าใช้ลิงก์แชร์แบบสั้น / โค้ด iframe แบบฝัง', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21261', 'th', 'save_product', 'บันทึกสินค้า', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21262', 'th', 'product_has_been_inserted_successfully', 'ใส่สินค้าเรียบร้อยแล้ว', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21263', 'th', 'something_went_wrong', 'อะไรบางอย่างผิดปกติ!', '2021-02-09 13:58:05', '2021-09-20 13:00:11'),
('21264', 'th', 'sorry_for_the_inconvenience_but_were_working_on_it', 'ขออภัยในความไม่สะดวก แต่เรากำลังดำเนินการแก้ไข', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21265', 'th', 'error_code', 'รหัสข้อผิดพลาด', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21266', 'th', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'โปรดกำหนดการตั้งค่า SMTP เพื่อใช้งานฟังก์ชันการส่งอีเมลทั้งหมด', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21267', 'th', 'order', 'ใบสั่ง', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21268', 'th', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'เรามีความสูงของแบนเนอร์ที่ จำกัด เพื่อรักษา UI เราต้องครอบตัดจากทั้งด้านซ้ายและด้านขวาในมุมมองสำหรับอุปกรณ์ต่างๆเพื่อให้ตอบสนอง ก่อนออกแบบแบนเนอร์ควรคำนึงถึงประเด็นเหล่านี้', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21269', 'th', 'home_banner_3_max_3', 'แบนเนอร์หน้าแรก 3 (สูงสุด 3)', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21270', 'th', 'add_new_seller', 'เพิ่มผู้ขายใหม่', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21271', 'th', 'filter_by_approval', 'กรองตามการอนุมัติ', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21272', 'th', 'nonapproved', 'ไม่ได้รับการอนุมัติ', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21273', 'th', 'type_name_or_email__enter', 'พิมพ์ชื่อหรืออีเมล & Enter', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21274', 'th', 'due_to_seller', 'เนื่องจากผู้ขาย', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21275', 'th', 'log_in_as_this_seller', 'เข้าสู่ระบบเป็นผู้ขายรายนี้', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21276', 'th', 'go_to_payment', 'ไปที่การชำระเงิน', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21277', 'th', 'ban_this_seller', 'แบนผู้ขายรายนี้', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21278', 'th', 'do_you_really_want_to_ban_this_seller', 'คุณต้องการแบนผู้ขายรายนี้หรือไม่?', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21279', 'th', 'proceed', 'ดำเนินดำเนินการต่อ!', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21280', 'th', 'approved_sellers_updated_successfully', 'อัปเดตผู้ขายที่ได้รับอนุมัติเรียบร้อยแล้ว', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21281', 'th', 'seller_has_been_deleted_successfully', 'ลบผู้ขายเรียบร้อยแล้ว', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21282', 'th', 'seller_information', 'ข้อมูลผู้ขาย', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21283', 'th', 'seller_has_been_inserted_successfully', 'ใส่ผู้ขายเรียบร้อยแล้ว', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21284', 'th', 'email_already_exists', 'มีอีเมลแล้ว!', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21285', 'th', 'verify_your_email_address', 'ยืนยันที่อยู่อีเมลของคุณ', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21286', 'th', 'before_proceeding_please_check_your_email_for_a_verification_link', 'ก่อนดำเนินการต่อโปรดตรวจสอบอีเมลของคุณเพื่อดูลิงก์ยืนยัน', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21287', 'th', 'if_you_did_not_receive_the_email', 'หากคุณไม่ได้รับอีเมล', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21288', 'th', 'click_here_to_request_another', 'คลิกที่นี่เพื่อขอใหม่', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21289', 'th', 'email_verification', 'การยืนยันอีเมล', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21290', 'th', 'email_verification__', 'การยืนยันอีเมล -', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21291', 'th', 'https_activation', 'การเปิดใช้งาน HTTPS', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21292', 'th', 'maintenance_mode', 'โหมดการบำรุงรักษา', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21293', 'th', 'maintenance_mode_activation', 'การเปิดใช้งานโหมดการบำรุงรักษา', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21294', 'th', 'classified_product_activate', 'เปิดใช้งานผลิตภัณฑ์แยกประเภท', '2021-02-09 13:58:06', '2021-09-20 13:00:11'),
('21295', 'th', 'classified_product', 'สินค้าแยกประเภท', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21296', 'th', 'business_related', 'ธุรกิจที่เกี่ยวข้อง', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21297', 'th', 'vendor_system_activation', 'การเปิดใช้งานระบบผู้ขาย', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21298', 'th', 'wallet_system_activation', 'การเปิดใช้งานระบบ Wallet', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21299', 'th', 'coupon_system_activation', 'การเปิดใช้งานระบบคูปอง', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21300', 'th', 'pickup_point_activation', 'การเปิดใช้งานจุดรับสินค้า', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21301', 'th', 'conversation_activation', 'การเปิดใช้งานการสนทนา', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21302', 'th', 'guest_checkout_activation', 'การเปิดใช้งานการชำระเงินของแขก', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21303', 'th', 'categorybased_commission', 'ค่าคอมมิชชั่นตามหมวดหมู่', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21304', 'th', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'หลังจากเปิดใช้งานตัวเลือกนี้ค่าคอมมิชชั่นของผู้ขายจะถูกปิดใช้งานและคุณต้องกำหนดค่าคอมมิชชันในแต่ละหมวดหมู่มิฉะนั้นผู้ดูแลระบบจะไม่ได้รับค่าคอมมิชชั่นใด ๆ', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21305', 'th', 'set_commisssion_now', 'ตั้งค่า Commisssion ทันที', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21306', 'th', 'payment_related', 'การชำระเงินที่เกี่ยวข้อง', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21307', 'th', 'paypal_payment_activation', 'การเปิดใช้งานการชำระเงิน Paypal', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21308', 'th', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า Paypal ให้ถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21309', 'th', 'stripe_payment_activation', 'การเปิดใช้งานการชำระเงินแบบ Stripe', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21310', 'th', 'sslcommerz_activation', 'การเปิดใช้งาน SSlCommerz', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21311', 'th', 'instamojo_payment_activation', 'การเปิดใช้งานการชำระเงิน Instamojo', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21312', 'th', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า Instamojo Payment ให้ถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21313', 'th', 'razor_pay_activation', 'การเปิดใช้งาน Razor Pay', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21314', 'th', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า Razor ให้ถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21315', 'th', 'paystack_activation', 'การเปิดใช้งาน PayStack', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21316', 'th', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า PayStack ให้ถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21317', 'th', 'voguepay_activation', 'การเปิดใช้งาน VoguePay', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21318', 'th', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า VoguePay ให้ถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21319', 'th', 'payhere_activation', 'การเปิดใช้งาน Payhere', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21320', 'th', 'ngenius_activation', 'การเปิดใช้งาน Ngenius', '2021-02-09 13:58:07', '2021-09-20 13:00:11'),
('21321', 'th', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า Ngenius อย่างถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:07', '2021-09-20 13:00:12'),
('21322', 'th', 'iyzico_activation', 'การเปิดใช้งาน Iyzico', '2021-02-09 13:58:07', '2021-09-20 13:00:12'),
('21323', 'th', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า iyzico ให้ถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:07', '2021-09-20 13:00:12'),
('21324', 'th', 'bkash_activation', 'การเปิดใช้งาน Bkash', '2021-02-09 13:58:07', '2021-09-20 13:00:12'),
('21325', 'th', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า bkash ให้ถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:07', '2021-09-20 13:00:12'),
('21326', 'th', 'nagad_activation', 'การเปิดใช้งาน Nagad', '2021-02-09 13:58:07', '2021-09-20 13:00:12'),
('21327', 'th', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า nagad อย่างถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21328', 'th', 'cash_payment_activation', 'การเปิดใช้งานการชำระเงินด้วยเงินสด', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21329', 'th', 'social_media_login', 'เข้าสู่ระบบโซเชียลมีเดีย', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21330', 'th', 'facebook_login', 'เข้าสู่ระบบ Facebook', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21331', 'th', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า Facebook Client ให้ถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21332', 'th', 'google_login', 'เข้าสู่ระบบ Google', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21333', 'th', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่า Google Client ให้ถูกต้องเพื่อเปิดใช้งานคุณลักษณะนี้', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21334', 'th', 'twitter_login', 'เข้าสู่ระบบ Twitter', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21335', 'th', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'คุณต้องกำหนดค่าไคลเอนต์ Twitter ให้ถูกต้องเพื่อเปิดใช้งานคุณสมบัตินี้', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21336', 'th', 'shop_logo', 'โลโก้ร้าน', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21337', 'th', 'shop_address', 'ที่อยู่ร้าน', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21338', 'th', 'banner_settings', 'การตั้งค่าแบนเนอร์', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21339', 'th', 'banners', 'แบนเนอร์', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21340', 'th', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'เราต้องจำกัดความสูงเพื่อความสม่ำเสมอของ maintian ในอุปกรณ์บางเครื่องอาจมีการครอบตัดแบนเนอร์ทั้งสองด้านเพื่อจำกัดความสูง', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21341', 'th', 'insert_link_with_https_', 'แทรกลิงค์ด้วย https', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21342', 'th', 'your_shop_has_been_updated_successfully', 'อัปเดตร้านค้าของคุณเรียบร้อยแล้ว!', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21343', 'th', 'search_result_for_', 'ผลการค้นหาสำหรับ', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21344', 'th', 'brand_has_been_inserted_successfully', 'ใส่ยี่ห้อเรียบร้อยแล้ว', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21345', 'th', 'about', 'เกี่ยวกับ', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21346', 'th', 'payout_info', 'ข้อมูลการจ่ายเงิน', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21347', 'th', 'bank_acc_name', 'ชื่อบัญชีธนาคาร', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21348', 'th', 'bank_acc_number', 'หมายเลขบัญชีธนาคาร', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21349', 'th', 'total_products', 'ผลิตภัณฑ์ทั้งหมด', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21350', 'th', 'total_sold_amount', 'ยอดขายทั้งหมด', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21351', 'th', 'wallet_balance', 'ยอดคงเหลือใน Wallet', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21352', 'th', 'cookies_agreement', 'ข้อตกลงคุกกี้', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21353', 'th', 'cookies_agreement_text', 'ข้อความข้อตกลงคุกกี้', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21354', 'th', 'show_cookies_agreement', 'แสดงข้อตกลงคุกกี้?', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21355', 'th', 'custom_script', 'สคริปต์ที่กำหนดเอง', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21356', 'th', 'header_custom_script__before_head', 'สคริปต์ที่กำหนดเองส่วนหัว - ก่อน </head>', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21357', 'th', 'write_script_with_script_tag', 'เขียนสคริปต์ด้วยแท็ก <script>', '2021-02-09 13:58:08', '2021-09-20 13:00:12'),
('21358', 'th', 'footer_custom_script__before_body', 'สคริปต์ที่กำหนดเองส่วนท้าย - ก่อน </body>', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21359', 'th', 'category_has_been_inserted_successfully', 'แทรกหมวดหมู่เรียบร้อยแล้ว', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21360', 'th', 'all_flash_deals', 'ข้อเสนอแฟลชทั้งหมด', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21361', 'th', 'create_new_flash_deal', 'สร้าง Flash Deal ใหม่', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21362', 'th', 'ffffff', '#FFFFFF', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21363', 'th', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'ภาพนี้แสดงเป็นแบนเนอร์ปกในหน้ารายละเอียดดีลแฟลช', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21364', 'th', 'flash_deal_has_been_inserted_successfully', 'ใส่ Flash Deal เรียบร้อยแล้ว', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21365', 'th', 'flash_deal_status_updated_successfully', 'อัปเดตสถานะข้อตกลง Flash เรียบร้อยแล้ว', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21366', 'th', 'flash_deal_has_been_updated_successfully', 'อัปเดตดีล Flash สำเร็จแล้ว', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21367', 'th', 'update_language_info', 'อัปเดตข้อมูลภาษา', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21368', 'th', 'language_has_been_updated_successfully', 'อัปเดตภาษาเรียบร้อยแล้ว', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21369', 'th', 'type_key__enter', 'พิมพ์ key & Enter', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21370', 'th', 'translations_updated_for_', 'อัปเดตคำแปลสำหรับ', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21371', 'th', 'language_has_been_inserted_successfully', 'แทรกภาษาเรียบร้อยแล้ว', '2021-02-09 13:58:09', '2021-09-20 13:00:12'),
('21372', 'cn', 'all_category', '所有類別', '2021-02-09 13:59:52', '2021-09-20 13:00:12'),
('21373', 'cn', 'all', '所有', '2021-02-09 13:59:52', '2021-09-20 13:00:12'),
('21374', 'cn', 'flash_sale', '閃購', '2021-02-09 13:59:52', '2021-09-20 13:00:12'),
('21375', 'cn', 'view_more', '查看更多', '2021-02-09 13:59:52', '2021-09-20 13:00:12'),
('21376', 'cn', 'add_to_wishlist', '添加到願望清單', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21377', 'cn', 'add_to_compare', '加入對比', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21378', 'cn', 'add_to_cart', '添加到購物車', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21379', 'cn', 'club_point', '俱樂部積分', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21380', 'cn', 'classified_ads', '分類廣告', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21381', 'cn', 'used', '用過的', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21382', 'cn', 'top_10_categories', '十大類別', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21383', 'cn', 'view_all_categories', '查看所有類別', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21384', 'cn', 'top_10_brands', '十大品牌', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21385', 'cn', 'view_all_brands', '查看所有品牌', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21386', 'cn', 'terms__conditions', '條款及細則', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21387', 'cn', 'best_selling', '最暢銷', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21388', 'cn', 'top_20', '前20名', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21389', 'cn', 'featured_products', '特色產品', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21390', 'cn', 'best_sellers', '最暢銷', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21391', 'cn', 'visit_store', '參觀商店', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21392', 'cn', 'popular_suggestions', '熱門建議', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21393', 'cn', 'category_suggestions', '類別建議', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21394', 'cn', 'automobile__motorcycle', '汽車和摩托車', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21395', 'cn', 'price_range', '價格範圍', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21396', 'cn', 'filter_by_color', '按顏色過濾', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21397', 'cn', 'home', '家', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21398', 'cn', 'newest', '最新', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21399', 'cn', 'oldest', '最老的', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21400', 'cn', 'price_low_to_high', '價格從低到高', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21401', 'cn', 'price_high_to_low', '價格從高到低', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21402', 'cn', 'brands', '品牌品牌', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21403', 'cn', 'all_brands', '所有品牌', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21404', 'cn', 'all_sellers', '所有賣家', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21405', 'cn', 'inhouse_product', '內部產品', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21406', 'cn', 'message_seller', '留言賣家', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21407', 'cn', 'price', '價錢', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21408', 'cn', 'discount_price', '折扣價', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21409', 'cn', 'color', '顏色', '2021-02-09 13:59:53', '2021-09-20 13:00:12'),
('21410', 'cn', 'quantity', '數量', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21411', 'cn', 'available', '有空', '2021-02-09 13:59:54', '2021-02-09 13:59:54'),
('21412', 'cn', 'total_price', '總價', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21413', 'cn', 'out_of_stock', '缺貨', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21414', 'cn', 'refund', '退款', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21415', 'cn', 'share', '分享', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21416', 'cn', 'sold_by', '所售', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21417', 'cn', 'customer_reviews', '顧客評論', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21418', 'cn', 'top_selling_products', '暢銷產品', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21419', 'cn', 'description', '描述', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21420', 'cn', 'video', '視頻', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21421', 'cn', 'reviews', '評論', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21422', 'cn', 'download', '下載', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21423', 'cn', 'there_have_been_no_reviews_for_this_product_yet', '此產品暫無評論。', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21424', 'cn', 'related_products', '相關產品', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21425', 'cn', 'any_query_about_this_product', '有關此產品的任何查詢', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21426', 'cn', 'product_name', '產品名稱', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21427', 'cn', 'your_question', '你的問題', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21428', 'cn', 'send', '發送', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21429', 'cn', 'use_country_code_before_number', '在號碼前使用國家/地區代碼', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21430', 'cn', 'remember_me', '記住賬號', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21431', 'cn', 'dont_have_an_account', '還沒有帳號？', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21432', 'cn', 'register_now', '現在註冊', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21433', 'cn', 'or_login_with', '或登錄', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21434', 'cn', 'oops', '哎呀..', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21435', 'cn', 'this_item_is_out_of_stock', '此產品缺貨！', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21436', 'cn', 'back_to_shopping', '回到購物', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21437', 'cn', 'login_to_your_account', '登錄到您的帳戶。', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21438', 'cn', 'purchase_history', '購買記錄', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21439', 'cn', 'new', '新', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21440', 'cn', 'downloads', '資料下載', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21441', 'cn', 'sent_refund_request', '已寄出退款要求', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21442', 'cn', 'product_bulk_upload', '產品批量上傳', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21443', 'cn', 'orders', '命令', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21444', 'cn', 'recieved_refund_request', '收到退款要求', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21445', 'cn', 'shop_setting', '店鋪設置', '2021-02-09 13:59:54', '2021-09-20 13:00:12'),
('21446', 'cn', 'payment_history', '支付歷史', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21447', 'cn', 'money_withdraw', '提款', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21448', 'cn', 'conversations', '對話內容', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21449', 'cn', 'my_wallet', '我的錢包', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21450', 'cn', 'earning_points', '賺取積分', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21451', 'cn', 'support_ticket', '支持票', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21452', 'cn', 'manage_profile', '管理個人資料', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21453', 'cn', 'sold_amount', '售出金額', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21454', 'cn', 'your_sold_amount_current_month', '您的銷售量（當月）', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21455', 'cn', 'total_sold', '總銷售量', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21456', 'cn', 'last_month_sold', '上個月售出', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21457', 'cn', 'total_sale', '總銷售', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21458', 'cn', 'total_earnings', '總收入', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21459', 'cn', 'successful_orders', '成功下單', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21460', 'cn', 'total_orders', '訂單總數', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21461', 'cn', 'pending_orders', '待處理訂單', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21462', 'cn', 'cancelled_orders', '取消訂單', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21463', 'cn', 'product', '產品', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21464', 'cn', 'purchased_package', '購買的套餐', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21465', 'cn', 'package_not_found', '找不到包', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21466', 'cn', 'upgrade_package', '升級包', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21467', 'cn', 'shop', '店', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21468', 'cn', 'manage__organize_your_shop', '管理和組織您的商店', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21469', 'cn', 'go_to_setting', '前往設定', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21470', 'cn', 'payment', '付款', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21471', 'cn', 'configure_your_payment_method', '配置您的付款方式', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21472', 'cn', 'my_panel', '我的面板', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21473', 'cn', 'item_has_been_added_to_wishlist', '項目已添加到願望清單', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21474', 'cn', 'my_points', '我的觀點', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21475', 'cn', '_points', '點數', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21476', 'cn', 'wallet_money', '錢包錢', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21477', 'cn', 'exchange_rate', '匯率', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21478', 'cn', 'point_earning_history', '積分賺取歷史', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21479', 'cn', 'date', '日期', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21480', 'cn', 'points', '點數', '2021-02-09 13:59:55', '2021-09-20 13:00:12'),
('21481', 'cn', 'converted', '已轉換', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21482', 'cn', 'action', '行動', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21483', 'cn', 'no_history_found', '找不到歷史記錄。', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21484', 'cn', 'convert_has_been_done_successfully_check_your_wallets', '轉換已成功完成檢查您的錢包', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21485', 'cn', 'something_went_wrong', '出問題了', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21486', 'cn', 'remaining_uploads', '剩餘上傳', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21487', 'cn', 'no_package_found', '找不到包裹', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21488', 'cn', 'search_product', '搜索商品', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21489', 'cn', 'name', '名稱', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21490', 'cn', 'current_qty', '當前數量', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21491', 'cn', 'base_price', '基本價格', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21492', 'cn', 'published', '已發表', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21493', 'cn', 'featured', '精選', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21494', 'cn', 'options', '選件', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21495', 'cn', 'edit', '編輯', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21496', 'cn', 'duplicate', '重複', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21497', 'cn', '1_download_the_skeleton_file_and_fill_it_with_data', '1.下載框架文件並用數據填充它。', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21498', 'cn', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2.您可以下載示例文件以了解必須如何填充數據。', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21499', 'cn', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3.下載並填充骨架文件後，請在下面的表格中上傳並提交。', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21500', 'cn', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4.上傳產品後，您需要對其進行編輯並設置產品圖像和選擇。', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21501', 'cn', 'download_csv', '下載CSV', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21502', 'cn', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1.類別，子類別，子子類別和品牌應使用數字ID。', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21503', 'cn', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2.您可以下載pdf文件以獲得類別，子類別，子子類別和品牌ID。', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21504', 'cn', 'download_category', '下載類別', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21505', 'cn', 'download_sub_category', '下載子類別', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21506', 'cn', 'download_sub_sub_category', '下載子子類別', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21507', 'cn', 'download_brand', '下載品牌', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21508', 'cn', 'upload_csv_file', '上載CSV文件', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21509', 'cn', 'csv', 'CSV', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21510', 'cn', 'choose_csv_file', '選擇CSV文件', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21511', 'cn', 'upload', '上載', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21512', 'cn', 'add_new_digital_product', '添加新的數字產品', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21513', 'cn', 'available_status', '可用狀態', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21514', 'cn', 'admin_status', '管理員狀態', '2021-02-09 13:59:56', '2021-09-20 13:00:12'),
('21515', 'cn', 'pending_balance', '待處理餘額', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21516', 'cn', 'send_withdraw_request', '發送提款請求', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21517', 'cn', 'withdraw_request_history', '提款歷史', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21518', 'cn', 'amount', '量', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21519', 'cn', 'status', '狀態', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21520', 'cn', 'message', '信息', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21521', 'cn', 'send_a_withdraw_request', '發送提款請求', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21522', 'cn', 'basic_info', '基礎信息', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21523', 'cn', 'your_phone', '您的手機', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21524', 'cn', 'photo', '照片', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21525', 'cn', 'browse', '瀏覽', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21526', 'cn', 'your_password', '你的密碼', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21527', 'cn', 'new_password', '新密碼', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21528', 'cn', 'confirm_password', '確認密碼', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21529', 'cn', 'add_new_address', '添加新地址', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21530', 'cn', 'payment_setting', '付款設定', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21531', 'cn', 'cash_payment', '現金支付', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21532', 'cn', 'bank_payment', '銀行付款', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21533', 'cn', 'bank_name', '銀行名稱', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21534', 'cn', 'bank_account_name', '銀行賬戶名稱', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21535', 'cn', 'bank_account_number', '銀行帳號', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21536', 'cn', 'bank_routing_number', '銀行編號', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21537', 'cn', 'update_profile', '更新配置文件', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21538', 'cn', 'change_your_email', '更改你的電子郵件', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21539', 'cn', 'your_email', '你的郵件', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21540', 'cn', 'sending_email', '正在發送電子郵件...', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21541', 'cn', 'verify', '校驗', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21542', 'cn', 'update_email', '更新電郵', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21543', 'cn', 'new_address', '新地址', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21544', 'cn', 'your_address', '你的地址', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21545', 'cn', 'country', '國家', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21546', 'cn', 'select_your_country', '選擇你的國家', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21547', 'cn', 'city', '市', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21548', 'cn', 'your_city', '您的城市', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21549', 'cn', 'your_postal_code', '您的郵政編碼', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21550', 'cn', '880', '+880', '2021-02-09 13:59:57', '2021-09-20 13:00:12'),
('21551', 'cn', 'save', '保存', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21552', 'cn', 'received_refund_request', '收到退款要求', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21553', 'cn', 'delete_confirmation', '刪除確認', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21554', 'cn', 'are_you_sure_to_delete_this', '您確定要刪除嗎？', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21555', 'cn', 'premium_packages_for_sellers', '賣家專用套餐', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21556', 'cn', 'product_upload', '產品上傳', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21557', 'cn', 'digital_product_upload', '數字產品上傳', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21558', 'cn', 'purchase_package', '購買套餐', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21559', 'cn', 'select_payment_type', '選擇付款方式', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21560', 'cn', 'payment_type', '付款方式', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21561', 'cn', 'select_one', '選擇一個', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21562', 'cn', 'online_payment', '網上支付', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21563', 'cn', 'offline_payment', '離線付款', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21564', 'cn', 'purchase_your_package', '購買套餐', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21565', 'cn', 'paypal', '貝寶', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21566', 'cn', 'stripe', '條紋', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21567', 'cn', 'sslcommerz', 'sslcommerz', '2021-02-09 13:59:58', '2021-02-09 13:59:58'),
('21568', 'cn', 'confirm', '確認', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21569', 'cn', 'offline_package_payment', '離線套餐付款', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21570', 'cn', 'transaction_id', '交易編號', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21571', 'cn', 'choose_image', '選擇圖片', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21572', 'cn', 'code', '碼', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21573', 'cn', 'delivery_status', '郵寄狀態', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21574', 'cn', 'payment_status', '支付狀態', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21575', 'cn', 'paid', '已付費', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21576', 'cn', 'order_details', '訂單詳細信息', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21577', 'cn', 'download_invoice', '下載發票', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21578', 'cn', 'unpaid', '未付', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21579', 'cn', 'order_placed', '訂單已下', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21580', 'cn', 'confirmed', '已確認', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21581', 'cn', 'on_delivery', '投遞中', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21582', 'cn', 'delivered', '已交付', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21583', 'cn', 'order_summary', '訂單摘要', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21584', 'cn', 'order_code', '訂購代碼', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21585', 'cn', 'customer', '顧客', '2021-02-09 13:59:58', '2021-09-20 13:00:12'),
('21586', 'cn', 'total_order_amount', '訂單總額', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21587', 'cn', 'shipping_metdod', '運輸方式', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21588', 'cn', 'flat_shipping_rate', '固定運費', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21589', 'cn', 'payment_metdod', '付款方式', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21590', 'cn', 'variation', '變異', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21591', 'cn', 'delivery_type', '交貨類型', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21592', 'cn', 'home_delivery', '送貨上門', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21593', 'cn', 'order_ammount', '訂單金額', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21594', 'cn', 'subtotal', '小計', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21595', 'cn', 'shipping', '運輸', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21596', 'cn', 'coupon_discount', '優惠券折扣', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21597', 'cn', 'na', '不適用', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21598', 'cn', 'in_stock', '有現貨', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21599', 'cn', 'buy_now', '立即購買', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21600', 'cn', 'item_added_to_your_cart', '項目添加到您的購物車！', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21601', 'cn', 'proceed_to_checkout', '進行結算', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21602', 'cn', 'cart_items', '購物車物品', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21603', 'cn', '1_my_cart', '1.我的購物車', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21604', 'cn', 'view_cart', '查看購物車', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21605', 'cn', '2_shipping_info', '2.運送信息', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21606', 'cn', 'checkout', '查看', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21607', 'cn', '3_delivery_info', '3.送貨信息', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21608', 'cn', '4_payment', '4.付款', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21609', 'cn', '5_confirmation', '5.確認', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21610', 'cn', 'remove', '去掉', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21611', 'cn', 'return_to_shop', '返回商店', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21612', 'cn', 'continue_to_shipping', '繼續運送', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21613', 'cn', 'or', '要么', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21614', 'cn', 'guest_checkout', '訪客結帳', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21615', 'cn', 'continue_to_delivery_info', '繼續交貨信息', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21616', 'cn', 'postal_code', '郵政編碼', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21617', 'cn', 'choose_delivery_type', '選擇交貨類型', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21618', 'cn', 'local_pickup', '當地取貨', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21619', 'cn', 'select_your_nearest_pickup_point', '選擇最近的接送點', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21620', 'cn', 'continue_to_payment', '繼續付款', '2021-02-09 13:59:59', '2021-09-20 13:00:12'),
('21621', 'cn', 'select_a_payment_option', '選擇付款方式', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21622', 'cn', 'razorpay', '剃刀寶', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21623', 'cn', 'paystack', '工資棧', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21624', 'cn', 'voguepay', 'VoguePay', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21625', 'cn', 'payhere', '這兒付款', '2021-02-09 14:00:00', '2021-02-09 14:00:00'),
('21626', 'cn', 'ngenius', '恩吉尼厄斯', '2021-02-09 14:00:00', '2021-02-09 14:00:00'),
('21627', 'cn', 'paytm', 'Paytm', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21628', 'cn', 'cash_on_delivery', '貨到付款', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21629', 'cn', 'your_wallet_balance_', '您的錢包餘額：', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21630', 'cn', 'insufficient_balance', '餘額不足', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21631', 'cn', 'i_agree_to_the', '我同意', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21632', 'cn', 'complete_order', '完成訂單', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21633', 'cn', 'summary', '概要', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21634', 'cn', 'items', '物品', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21635', 'cn', 'total_club_point', '總積分', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21636', 'cn', 'total_shipping', '總出貨量', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21637', 'cn', 'have_coupon_code_enter_here', '有優惠券代碼？在這裡輸入', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21638', 'cn', 'apply', '應用', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21639', 'cn', 'you_need_to_agree_with_our_policies', '您需要同意我們的政策', '2021-02-09 14:00:00', '2021-09-20 13:00:12'),
('21640', 'cn', 'forgot_password', '忘記密碼', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21641', 'cn', 'seo_setting', 'SEO設置', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21642', 'cn', 'system_update', '系統更新', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21643', 'cn', 'add_new_payment_method', '添加新的付款方式', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21644', 'cn', 'manual_payment_method', '手動付款方式', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21645', 'cn', 'heading', '標題', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21646', 'cn', 'logo', '商標', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21647', 'cn', 'manual_payment_information', '手動付款信息', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21648', 'cn', 'type', '類型', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21649', 'cn', 'custom_payment', '自訂付款', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21650', 'cn', 'check_payment', '支票付款', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21651', 'cn', 'checkout_thumbnail', '結帳縮圖', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21652', 'cn', 'payment_instruction', '付款說明', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21653', 'cn', 'bank_information', '銀行信息', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21654', 'cn', 'select_file', '選擇文件', '2021-02-09 14:00:00', '2021-09-20 13:00:13'),
('21655', 'cn', 'upload_new', '上載新', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21656', 'cn', 'sort_by_newest', '按最新排序', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21657', 'cn', 'sort_by_oldest', '按最舊排序', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21658', 'cn', 'sort_by_smallest', '按最小排序', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21659', 'cn', 'sort_by_largest', '按最大排序', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21660', 'cn', 'selected_only', '僅選擇', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21661', 'cn', 'no_files_found', '找不到文件', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21662', 'cn', '0_file_selected', '0文件已選擇', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21663', 'cn', 'clear', '明確', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21664', 'cn', 'prev', '上一個', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21665', 'cn', 'next', '下一個', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21666', 'cn', 'add_files', '新增檔案', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21667', 'cn', 'method_has_been_inserted_successfully', '方法已成功插入', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21668', 'cn', 'order_date', '訂購日期', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21669', 'cn', 'bill_to', '記賬到', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21670', 'cn', 'sub_total', '小計', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21671', 'cn', 'total_tax', '總稅', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21672', 'cn', 'grand_total', '累計', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21673', 'cn', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', '您的訂單已成功下達。請提交購買記錄中的付款信息', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21674', 'cn', 'thank_you_for_your_order', '謝謝您的訂單！', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21675', 'cn', 'order_code', '訂購代碼：', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21676', 'cn', 'a_copy_or_your_order_summary_has_been_sent_to', '副本或您的訂單摘要已發送至', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21677', 'cn', 'make_payment', '付款', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21678', 'cn', 'payment_screenshot', '付款截圖', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21679', 'cn', 'paypal_credential', '貝寶憑證', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21680', 'cn', 'paypal_client_id', '貝寶客戶ID', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21681', 'cn', 'paypal_client_secret', '貝寶客戶秘密', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21682', 'cn', 'paypal_sandbox_mode', '貝寶沙盒模式', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21683', 'cn', 'sslcommerz_credential', 'Sslcommerz憑證', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21684', 'cn', 'sslcz_store_id', 'Sslcz商店編號', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21685', 'cn', 'sslcz_store_password', 'Sslcz商店密碼', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21686', 'cn', 'sslcommerz_sandbox_mode', 'Sslcommerz沙盒模式', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21687', 'cn', 'stripe_credential', '條帶憑證', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21688', 'cn', 'stripe_key', '條紋鍵', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21689', 'cn', 'stripe_secret', '條紋秘密', '2021-02-09 14:00:01', '2021-09-20 13:00:13'),
('21690', 'cn', 'razorpay_credential', 'RazorPay憑證', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21691', 'cn', 'razor_key', '剃刀鑰匙', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21692', 'cn', 'razor_secret', '剃刀秘密', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21693', 'cn', 'instamojo_credential', 'Instamojo憑證', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21694', 'cn', 'api_key', 'API密鑰', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21695', 'cn', 'im_api_key', 'IM API密鑰', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21696', 'cn', 'auth_token', '認證令牌', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21697', 'cn', 'im_auth_token', 'IM AUTH令牌', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21698', 'cn', 'instamojo_sandbox_mode', 'Instamojo沙盒模式', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21699', 'cn', 'paystack_credential', 'PayStack憑證', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21700', 'cn', 'public_key', '公鑰', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21701', 'cn', 'secret_key', '密鑰', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21702', 'cn', 'merchant_email', '商家電子郵件', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21703', 'cn', 'voguepay_credential', 'VoguePay憑證', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21704', 'cn', 'merchant_id', '商戶編號', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21705', 'cn', 'sandbox_mode', '沙盒模式', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21706', 'cn', 'payhere_credential', '支付憑證', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21707', 'cn', 'payhere_merchant_id', '收款人商家編號', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21708', 'cn', 'payhere_secret', '支付寶機密', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21709', 'cn', 'payhere_currency', '支付貨幣', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21710', 'cn', 'payhere_sandbox_mode', 'Payhere沙盒模式', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21711', 'cn', 'ngenius_credential', 'Ngenius憑證', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21712', 'cn', 'ngenius_outlet_id', 'NGENIUS出口編號', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21713', 'cn', 'ngenius_api_key', 'NGENIUS API密鑰', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21714', 'cn', 'ngenius_currency', 'NGENIUS貨幣', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21715', 'cn', 'mpesa_credential', 'Mpesa憑證', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21716', 'cn', 'mpesa_consumer_key', 'MPESA消費者密鑰', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21717', 'cn', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21718', 'cn', 'mpesa_consumer_secret', 'MPESA消費者秘密', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21719', 'cn', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21720', 'cn', 'mpesa_short_code', 'MPESA短代碼', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21721', 'cn', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21722', 'cn', 'mpesa_sandbox_activation', 'MPESA沙盒激活', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21723', 'cn', 'flutterwave_credential', 'Flutterwave憑證', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21724', 'cn', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 14:00:02', '2021-09-20 13:00:13'),
('21725', 'cn', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21726', 'cn', 'rave_title', 'RAVE_TITLE', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21727', 'cn', 'stagin_activation', '雄激素激活', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21728', 'cn', 'all_product', '全部商品', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21729', 'cn', 'sort_by', '排序方式', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21730', 'cn', 'rating_high__low', '評分（高>低）', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21731', 'cn', 'rating_low__high', '評分（低>高）', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21732', 'cn', 'num_of_sale_high__low', '銷售數量（高>低）', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21733', 'cn', 'num_of_sale_low__high', '銷售數量（低>高）', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21734', 'cn', 'base_price_high__low', '基本價格（高>低）', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21735', 'cn', 'base_price_low__high', '基本價格（低>高）', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21736', 'cn', 'type__enter', '輸入並輸入', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21737', 'cn', 'added_by', '添加人', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21738', 'cn', 'num_of_sale', '銷售數量', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21739', 'cn', 'total_stock', '總存貨', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21740', 'cn', 'todays_deal', '今天的交易', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21741', 'cn', 'rating', '評分', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21742', 'cn', 'times', '次', '2021-02-09 14:00:03', '2021-02-09 14:00:03'),
('21743', 'cn', 'add_nerw_product', '添加產品', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21744', 'cn', 'product_information', '產品信息', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21745', 'cn', 'unit', '單元', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21746', 'cn', 'unit_eg_kg_pc_etc', '單位（例如，KG，Pc等）', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21747', 'cn', 'minimum_qty', '最小數量', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21748', 'cn', 'tags', '標籤', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21749', 'cn', 'type_and_hit_enter_to_add_a_tag', '輸入並按Enter以添加標籤', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21750', 'cn', 'barcode', '條碼', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21751', 'cn', 'refundable', '可退還', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21752', 'cn', 'product_images', '產品圖片', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21753', 'cn', 'gallery_images', '畫廊圖片', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21754', 'cn', 'todays_deal_updated_successfully', '今日交易已成功更新', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21755', 'cn', 'published_products_updated_successfully', '已發布產品已成功更新', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21756', 'cn', 'thumbnail_image', '縮圖圖片', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21757', 'cn', 'featured_products_updated_successfully', '特色產品更新成功', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21758', 'cn', 'product_videos', '產品視頻', '2021-02-09 14:00:03', '2021-09-20 13:00:13'),
('21759', 'cn', 'video_provider', '視頻提供商', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21760', 'cn', 'youtube', '優酷', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21761', 'cn', 'dailymotion', 'Dailymotion', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21762', 'cn', 'vimeo', 'Vimeo', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21763', 'cn', 'video_link', '影片連結', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21764', 'cn', 'product_variation', '產品變化', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21765', 'cn', 'colors', '色彩', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21766', 'cn', 'attributes', '屬性', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21767', 'cn', 'choose_attributes', '選擇屬性', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21768', 'cn', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', '選擇該產品的屬性，然後輸入每個屬性的值', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21769', 'cn', 'product_price__stock', '產品價格+庫存', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21770', 'cn', 'unit_price', '單價', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21771', 'cn', 'purchase_price', '購買價格', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21772', 'cn', 'flat', '平面', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21773', 'cn', 'percent', '百分', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21774', 'cn', 'discount', '折扣', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21775', 'cn', 'product_description', '產品描述', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21776', 'cn', 'product_shipping_cost', '產品運輸成本', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21777', 'cn', 'free_shipping', '免費送貨', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21778', 'cn', 'flat_rate', '扁平率', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21779', 'cn', 'shipping_cost', '運輸費', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21780', 'cn', 'pdf_specification', 'PDF規範', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21781', 'cn', 'seo_meta_tags', 'SEO元標記', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21782', 'cn', 'meta_title', '元標題', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21783', 'cn', 'meta_image', '元圖像', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21784', 'cn', 'choice_title', '選擇標題', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21785', 'cn', 'enter_choice_values', '輸入選擇值', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21786', 'cn', 'all_categories', '所有類別', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21787', 'cn', 'add_new_category', '新增類別', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21788', 'cn', 'type_name__enter', '輸入名稱並輸入', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21789', 'cn', 'banner', '旗幟', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21790', 'cn', 'commission', '佣金', '2021-02-09 14:00:04', '2021-09-20 13:00:13'),
('21791', 'cn', 'icon', '圖標', '2021-02-09 14:00:04', '2021-02-09 14:00:04'),
('21792', 'cn', 'featured_categories_updated_successfully', '精選類別已成功更新', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21793', 'cn', 'hot', '熱', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21794', 'cn', 'filter_by_payment_status', '按付款狀態過濾', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21795', 'cn', 'unpaid', '未付', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21796', 'cn', 'filter_by_deliver_status', '按交貨狀態過濾', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21797', 'cn', 'pending', '待定', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21798', 'cn', 'type_order_code__hit_enter', '輸入訂購代碼並按Enter', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21799', 'cn', 'num_of_products', '嗯 產品類別', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21800', 'cn', 'walk_in_customer', '走進客戶', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21801', 'cn', 'qty', '數量', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21802', 'cn', 'without_shipping_charge', '免收運費', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21803', 'cn', 'with_shipping_charge', '含運費', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21804', 'cn', 'pay_with_cash', '現金付款', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21805', 'cn', 'shipping_address', '收件地址', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21806', 'cn', 'close', '關', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21807', 'cn', 'select_country', '選擇國家', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21808', 'cn', 'order_confirmation', '訂單確認', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21809', 'cn', 'are_you_sure_to_confirm_this_order', '您確定要確認此訂單嗎？', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21810', 'cn', 'comfirm_order', '確認訂單', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21811', 'cn', 'personal_info', '個人信息', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21812', 'cn', 'repeat_password', '重複輸入密碼', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21813', 'cn', 'shop_name', '店鋪名稱', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21814', 'cn', 'register_your_shop', '註冊您的商店', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21815', 'cn', 'affiliate_informations', '會員信息', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21816', 'cn', 'affiliate', '會員關係', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21817', 'cn', 'user_info', '用戶信息', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21818', 'cn', 'installed_addon', '已安裝的插件', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21819', 'cn', 'available_addon', '可用插件', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21820', 'cn', 'install_new_addon', '安裝新的插件', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21821', 'cn', 'version', '版', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21822', 'cn', 'activated', '活性', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21823', 'cn', 'deactivated', '已停用', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21824', 'cn', 'activate_otp', '激活OTP', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21825', 'cn', 'otp_will_be_used_for', 'OTP將用於', '2021-02-09 14:00:05', '2021-09-20 13:00:13'),
('21826', 'cn', 'settings_updated_successfully', '設置更新成功', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21827', 'cn', 'product_owner', '產品擁有者', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21828', 'cn', 'point', '點', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21829', 'cn', 'set_point_for_product_within_a_range', '範圍內產品的設定點', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21830', 'cn', 'set_point_for_multiple_products', '多種產品的設定點', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21831', 'cn', 'min_price', '最低價', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21832', 'cn', 'max_price', '最高價格', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21833', 'cn', 'set_point_for_all_products', '所有產品的設定點', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21834', 'cn', 'set_point_for_', '設定點', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21835', 'cn', 'convert_status', '轉換狀態', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21836', 'cn', 'earned_at', '在賺取', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21837', 'cn', 'seller_based_selling_report', '賣方銷售報告', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21838', 'cn', 'sort_by_verificarion_status', '按驗證狀態排序', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21839', 'cn', 'approved', '已批准', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21840', 'cn', 'non_approved', '未批准', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21841', 'cn', 'filter', '過濾', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21842', 'cn', 'seller_name', '賣方名稱', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21843', 'cn', 'number_of_product_sale', '產品銷售數量', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21844', 'cn', 'order_amount', '訂單金額', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21845', 'cn', 'facebook_chat_setting', 'Facebook聊天設置', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21846', 'cn', 'facebook_page_id', 'Facebook頁面ID', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21847', 'cn', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', '在配置Facebook聊天時，請小心。如果配置不正確，則在用戶端站點上不會顯示Messenger圖標。', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21848', 'cn', 'login_into_your_facebook_page', '登錄到您的Facebook頁面', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21849', 'cn', 'find_the_about_option_of_your_facebook_page', '在您的Facebook頁面中找到About選項', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21850', 'cn', 'at_the_very_bottom_you_can_find_the_facebook_page_id', '在最底部，您可以找到“ Facebook頁面ID”', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21851', 'cn', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', '轉到頁面的設置，然後找到“高級消息”選項', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21852', 'cn', 'scroll_down_that_page_and_you_will_get_white_listed_domain', '向下滾動該頁面，您將獲得“白名單域”', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21853', 'cn', 'set_your_website_domain_name', '設置您的網站域名', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21854', 'cn', 'google_recaptcha_setting', 'Google reCAPTCHA設置', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21855', 'cn', 'site_key', '網站金鑰', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21856', 'cn', 'select_shipping_method', '選擇運送方式', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21857', 'cn', 'product_wise_shipping_cost', '產品明智的運輸成本', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21858', 'cn', 'flat_rate_shipping_cost', '統一運費', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21859', 'cn', 'seller_wise_flat_shipping_cost', '賣方明智的固定運輸成本', '2021-02-09 14:00:06', '2021-09-20 13:00:13'),
('21860', 'cn', 'note', '注意', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21861', 'cn', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', '產品明智的運輸成本計算：運輸成本是通過將每個產品運輸成本相加得出的', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21862', 'cn', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', '固定費率運費計算：客戶購買多少產品無關緊要。運費固定', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21863', 'cn', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', '賣方明智的固定運費計算：每個賣方的固定費率。如果客戶從兩個賣方的運輸成本中購買2種產品，是通過將每個賣方的固定運輸成本相加來計算的', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21864', 'cn', 'flat_rate_cost', '統一費用成本', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21865', 'cn', 'shipping_cost_for_admin_products', '管理產品的運輸成本', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21866', 'cn', 'countries', '國別', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21867', 'cn', 'showhide', '顯示隱藏', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21868', 'cn', 'country_status_updated_successfully', '國家/地區狀態已成功更新', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21869', 'cn', 'all_subcategories', '所有子類別', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21870', 'cn', 'add_new_subcategory', '添加新的子類別', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21871', 'cn', 'subcategories', '子類別', '2021-02-09 14:00:07', '2021-09-20 13:00:13'),
('21872', 'cn', 'sub_category_information', '子類別信息', '2021-02-09 14:00:56', '2021-09-20 13:00:13'),
('21873', 'cn', 'slug', 'ug', '2021-02-09 14:00:56', '2021-09-20 13:00:13'),
('21874', 'cn', 'all_sub_subcategories', '所有子類別', '2021-02-09 14:00:56', '2021-09-20 13:00:13'),
('21875', 'cn', 'add_new_sub_subcategory', '添加新的子子類別', '2021-02-09 14:00:56', '2021-09-20 13:00:13'),
('21876', 'cn', 'subsubcategories', '子子類別', '2021-02-09 14:00:56', '2021-09-20 13:00:13'),
('21877', 'cn', 'make_this_default', '設為默認', '2021-02-09 14:00:56', '2021-09-20 13:00:13'),
('21878', 'cn', 'shops', '商店', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21879', 'cn', 'women_clothing__fashion', '女裝和時尚', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21880', 'cn', 'cellphones__tabs', '手機和標籤頁', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21881', 'cn', 'welcome_to', '歡迎來到', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21882', 'cn', 'create_a_new_account', '創建一個新賬戶', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21883', 'cn', 'full_name', '全名', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21884', 'cn', 'password', '密碼', '2021-02-09 14:00:57', '2021-02-09 14:00:57'),
('21885', 'cn', 'confrim_password', '密碼', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21886', 'cn', 'i_agree_with_the', '我同意', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21887', 'cn', 'terms_and_conditions', '條款和條件', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21888', 'cn', 'register', '寄存器', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21889', 'cn', 'already_have_an_account', '已經有一個帳號', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21890', 'cn', 'sign_up_with', '註冊', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21891', 'cn', 'i_agree_with_the_terms_and_conditions', '我同意條款和條件', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21892', 'cn', 'all_role', '所有角色', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21893', 'cn', 'add_new_role', '添加新角色', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21894', 'cn', 'roles', '的角色', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21895', 'cn', 'add_new_staffs', '添加新員工', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21896', 'cn', 'role', '角色', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21897', 'cn', 'frontend_website_name', '前端網站名稱', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21898', 'cn', 'website_name', '網站名稱', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21899', 'cn', 'site_motto', '網站座右銘', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21900', 'cn', 'best_ecommerce_website', '最佳電子商務網站', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21901', 'cn', 'site_icon', '網站圖標', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21902', 'cn', 'website_favicon_32x32_png', '網站圖標。32x32 .png', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21903', 'cn', 'website_base_color', '網站基礎顏色', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21904', 'cn', 'hex_color_code', '十六進制顏色代碼', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21905', 'cn', 'website_base_hover_color', '網站基本懸停顏色', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21906', 'cn', 'update', '更新資料', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21907', 'cn', 'global_seo', '全球搜索引擎優化', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21908', 'cn', 'meta_description', '元描述', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21909', 'cn', 'keywords', '關鍵詞', '2021-02-09 14:00:57', '2021-09-20 13:00:13'),
('21910', 'cn', 'separate_with_coma', '與昏迷分開', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21911', 'cn', 'website_pages', '網站頁面', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21912', 'cn', 'all_pages', '所有頁面', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21913', 'cn', 'add_new_page', '新增頁面', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21914', 'cn', 'url', '網址', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21915', 'cn', 'actions', '動作', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21916', 'cn', 'edit_page_information', '編輯頁面信息', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21917', 'cn', 'page_content', '頁面內容', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21918', 'cn', 'title', '標題', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21919', 'cn', 'link', '鏈接', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21920', 'cn', 'use_character_number_hypen_only', '僅使用字符，數字，連字符', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21921', 'cn', 'add_content', '添加內容', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21922', 'cn', 'seo_fields', '徐域', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21923', 'cn', 'update_page', '更新頁面', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21924', 'cn', 'default_language', '預設語言', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21925', 'cn', 'add_new_language', '新增語言', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21926', 'cn', 'rtl', 'RTL', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21927', 'cn', 'translation', '翻譯', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21928', 'cn', 'language_information', '語言信息', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21929', 'cn', 'save_page', '保存頁面', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21930', 'cn', 'home_page_settings', '主頁設置', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21931', 'cn', 'home_slider', '家用滑塊', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21932', 'cn', 'photos__links', '照片和鏈接', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21933', 'cn', 'add_new', '添新', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21934', 'cn', 'home_categories', '首頁分類', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21935', 'cn', 'home_banner_1_max_3', '首頁橫幅1（最多3個）', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21936', 'cn', 'banner__links', '橫幅和鏈接', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21937', 'cn', 'home_banner_2_max_3', '首頁橫幅2（最多3個）', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21938', 'cn', 'top_10', '前10名', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21939', 'cn', 'top_categories_max_10', '熱門類別（最多10個）', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21940', 'cn', 'top_brands_max_10', '頂級品牌（最多10個）', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21941', 'cn', 'system_name', '系統名稱', '2021-02-09 14:00:58', '2021-09-20 13:00:13'),
('21942', 'cn', 'system_logo__white', '系統徽標-白色', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21943', 'cn', 'choose_files', '選擇文件', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21944', 'cn', 'will_be_used_in_admin_panel_side_menu', '將在管理面板側面菜單中使用', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21945', 'cn', 'system_logo__black', '系統徽標-黑色', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21946', 'cn', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', '將在手機+管理員登錄頁面的管理面板頂部欄中使用', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21947', 'cn', 'system_timezone', '系統時區', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21948', 'cn', 'admin_login_page_background', '管理員登錄頁面背景', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21949', 'cn', 'website_header', '網站標題', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21950', 'cn', 'header_setting', '標題設定', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21951', 'cn', 'header_logo', '標頭徽標', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21952', 'cn', 'show_language_switcher', '顯示語言切換器？', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21953', 'cn', 'show_currency_switcher', '顯示貨幣切換器？', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21954', 'cn', 'enable_stikcy_header', '啟用stikcy標頭？', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21955', 'cn', 'website_footer', '網站頁腳', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21956', 'cn', 'footer_widget', '頁腳小部件', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21957', 'cn', 'about_widget', '關於小部件', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21958', 'cn', 'footer_logo', '頁腳徽標', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21959', 'cn', 'about_description', '關於說明', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21960', 'cn', 'contact_info_widget', '聯繫信息小部件', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21961', 'cn', 'footer_contact_address', '頁腳聯繫地址', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21962', 'cn', 'footer_contact_phone', '頁腳聯繫電話', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21963', 'cn', 'footer_contact_email', '頁腳聯繫電子郵件', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21964', 'cn', 'link_widget_one', '鏈接小部件一', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21965', 'cn', 'links', '鏈接', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21966', 'cn', 'footer_bottom', '頁腳底部', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21967', 'cn', 'copyright_widget_', '版權小工具', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21968', 'cn', 'copyright_text', '版權文字', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21969', 'cn', 'social_link_widget_', '社交鏈接小部件', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21970', 'cn', 'show_social_links', '顯示社交鏈接？', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21971', 'cn', 'social_links', '社交連結', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21972', 'cn', 'payment_methods_widget_', '付款方式小工具', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21973', 'cn', 'rtl_status_updated_successfully', 'RTL狀態已成功更新', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21974', 'cn', 'language_changed_to_', '語言更改為', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21975', 'cn', 'inhouse_product_sale_report', '內部產品銷售報告', '2021-02-09 14:00:59', '2021-09-20 13:00:13'),
('21976', 'cn', 'sort_by_category', '按類別排序', '2021-02-09 14:00:59', '2021-09-20 13:00:14'),
('21977', 'cn', 'product_wise_stock_report', '產品明智的庫存報告', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21978', 'cn', 'currency_changed_to_', '幣種更改為', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21979', 'cn', 'avatar', '頭像', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21980', 'cn', 'copy', '複製', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21981', 'cn', 'variant', '變體', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21982', 'cn', 'variant_price', '變動價格', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21983', 'cn', 'sku', 'SKU', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21984', 'cn', 'key', '鍵', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21985', 'cn', 'value', '值', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21986', 'cn', 'copy_translations', '複製翻譯', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21987', 'cn', 'all_pickup_points', '所有接載點', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21988', 'cn', 'add_new_pickup_point', '添加新的接送點', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21989', 'cn', 'manager', '經理', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21990', 'cn', 'location', '地點', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21991', 'cn', 'pickup_station_contact', '接送站聯繫', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21992', 'cn', 'open', '打開', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21993', 'cn', 'pos_activation_for_seller', '賣方的POS激活', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21994', 'cn', 'order_completed_successfully', '訂單成功完成。', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21995', 'cn', 'text_input', '文字輸入', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21996', 'cn', 'select', '選擇', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21997', 'cn', 'multiple_select', '多選', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21998', 'cn', 'radio', '無線電', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('21999', 'cn', 'file', '文件', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22000', 'cn', 'email_address', '電子郵件地址', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22001', 'cn', 'verification_info', '驗證信息', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22002', 'cn', 'approval', '批准書', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22003', 'cn', 'due_amount', '到期金額', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22004', 'cn', 'show', '顯示', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22005', 'cn', 'pay_now', '現在付款', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22006', 'cn', 'affiliate_user_verification', '會員驗證', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22007', 'cn', 'reject', '拒絕', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22008', 'cn', 'accept', '接受', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22009', 'cn', 'beauty_health__hair', '美容，健康與頭髮', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22010', 'cn', 'comparison', '比較方式', '2021-02-09 14:01:00', '2021-09-20 13:00:14'),
('22011', 'cn', 'reset_compare_list', '重置比較列表', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22012', 'cn', 'your_comparison_list_is_empty', '您的比較列表為空', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22013', 'cn', 'convert_point_to_wallet', '將點轉換為錢包', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22014', 'cn', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', '注意：使用俱樂部積分插件之前，您需要先激活錢包選項。', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22015', 'cn', 'create_an_account', '創建一個帳戶。', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22016', 'cn', 'use_email_instead', '改用電子郵件', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22017', 'cn', 'by_signing_up_you_agree_to_our_terms_and_conditions', '通過註冊，您同意我們的條款和條件。', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22018', 'cn', 'create_account', '創建賬戶', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22019', 'cn', 'or_join_with', '或加入', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22020', 'cn', 'already_have_an_account', '已經有帳號了？', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22021', 'cn', 'log_in', '登錄', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22022', 'cn', 'computer__accessories', '電腦及配件', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22023', 'cn', 'products', '產品', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22024', 'cn', 'in_your_cart', '在您的購物車中', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22025', 'cn', 'in_your_wishlist', '在您的願望清單中', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22026', 'cn', 'you_ordered', '你點了', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22027', 'cn', 'default_shipping_address', '默認送貨地址', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22028', 'cn', 'sports__outdoor', '運動與戶外', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22029', 'cn', 'copied', '複製的', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22030', 'cn', 'copy_the_promote_link', '複製促銷鏈接', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22031', 'cn', 'write_a_review', '寫評論', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22032', 'cn', 'your_name', '你的名字', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22033', 'cn', 'comment', '評論', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22034', 'cn', 'your_review', '你的意見', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22035', 'cn', 'submit_review', '提交評論', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22036', 'cn', 'claire_willis', '克萊爾·威利斯（Claire Willis）', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22037', 'cn', 'germaine_greene', '傑曼·格林（Germaine Greene）', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22038', 'cn', 'product_file', '產品檔案', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22039', 'cn', 'choose_file', '選擇文件', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22040', 'cn', 'type_to_add_a_tag', '鍵入以添加標籤', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22041', 'cn', 'images', '圖片', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22042', 'cn', 'main_images', '主要影像', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22043', 'cn', 'meta_tags', '元標記', '2021-02-09 14:01:01', '2021-09-20 13:00:14'),
('22044', 'cn', 'digital_product_has_been_inserted_successfully', '數字產品已成功插入', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22045', 'cn', 'edit_digital_product', '編輯數字產品', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22046', 'cn', 'select_an_option', '選擇一個選項', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22047', 'cn', 'tax', '稅', '2021-02-09 14:01:02', '2021-02-09 14:01:02'),
('22048', 'cn', 'any_question_about_this_product', '對這個產品有問題嗎？', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22049', 'cn', 'sign_in', '登入', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22050', 'cn', 'login_with_google', '用谷歌登錄', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22051', 'cn', 'login_with_facebook', '用Facebook登錄', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22052', 'cn', 'login_with_twitter', '用Twitter登錄', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22053', 'cn', 'click_to_show_phone_number', '點擊顯示電話號碼', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22054', 'cn', 'other_ads_of', '的其他廣告', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22055', 'cn', 'store_home', '店舖首頁', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22056', 'cn', 'top_selling', '最暢銷', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22057', 'cn', 'shop_settings', '店鋪設置', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22058', 'cn', 'visit_shop', '參觀商店', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22059', 'cn', 'pickup_points', '接送點', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22060', 'cn', 'select_pickup_point', '選擇接送點', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22061', 'cn', 'slider_settings', '滑塊設置', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22062', 'cn', 'social_media_link', '社交媒體鏈接', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22063', 'cn', 'facebook', '臉書', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22064', 'cn', 'twitter', '推特', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22065', 'cn', 'google', '谷歌', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22066', 'cn', 'new_arrival_products', '新到產品', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22067', 'cn', 'check_your_order_status', '檢查您的訂單狀態', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22068', 'cn', 'shipping_method', '郵寄方式', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22069', 'cn', 'shipped_by', '被...運送', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22070', 'cn', 'image', '圖片', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22071', 'cn', 'sub_sub_category', '子子類別', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22072', 'cn', 'inhouse_products', '內部產品', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22073', 'cn', 'forgot_password', '忘記密碼？', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22074', 'cn', 'enter_your_email_address_to_recover_your_password', '輸入您的電子郵件地址以恢復您的密碼。', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22075', 'cn', 'email_or_phone', '郵件或者電話', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22076', 'cn', 'send_password_reset_link', '發送密碼重置鏈接', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22077', 'cn', 'back_to_login', '回到登入', '2021-02-09 14:01:02', '2021-09-20 13:00:14'),
('22078', 'cn', 'index', '指數', '2021-02-09 14:01:03', '2021-02-09 14:01:03'),
('22079', 'cn', 'download_your_product', '下載產品', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22080', 'cn', 'option', '選項', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22081', 'cn', 'applied_refund_request', '申請退款申請', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22082', 'cn', 'item_has_been_renoved_from_wishlist', '物品已從願望清單中進行了裝修', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22083', 'cn', 'bulk_products_upload', '批量產品上傳', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22084', 'cn', 'upload_csv', '上載CSV', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22085', 'cn', 'create_a_ticket', '創建工單', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22086', 'cn', 'tickets', '門票', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22087', 'cn', 'ticket_id', '票證編號', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22088', 'cn', 'sending_date', '發送日期', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22089', 'cn', 'subject', '學科', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22090', 'cn', 'view_details', '查看詳情', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22091', 'cn', 'provide_a_detailed_description', '提供詳細說明', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22092', 'cn', 'type_your_reply', '輸入您的回复', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22093', 'cn', 'send_ticket', '發送門票', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22094', 'cn', 'load_more', '裝載更多', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22095', 'cn', 'jewelry__watches', '珠寶鐘錶', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22096', 'cn', 'filters', '篩選器', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22097', 'cn', 'contact_address', '聯繫地址', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22098', 'cn', 'contact_phone', '聯繫電話', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22099', 'cn', 'contact_email', '聯繫電子郵件', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22100', 'cn', 'filter_by', '過濾', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22101', 'cn', 'condition', '健康）狀況', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22102', 'cn', 'all_type', '所有類型', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22103', 'cn', 'pay_with_wallet', '用錢包付款', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22104', 'cn', 'select_variation', '選擇變化', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22105', 'cn', 'no_product_added', '未添加產品', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22106', 'cn', 'status_has_been_updated_successfully', '狀態已成功更新', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22107', 'cn', 'all_seller_packages', '所有賣家套餐', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22108', 'cn', 'add_new_package', '添加新包裹', '2021-02-09 14:01:03', '2021-09-20 13:00:14'),
('22109', 'cn', 'package_logo', '包裝標誌', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22110', 'cn', 'days', '天', '2021-02-09 14:01:04', '2021-02-09 14:01:04'),
('22111', 'cn', 'create_new_seller_package', '創建新賣家套餐', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22112', 'cn', 'package_name', '包裹名字', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22113', 'cn', 'duration', '持續時間', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22114', 'cn', 'validity_in_number_of_days', '有效天數', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22115', 'cn', 'update_package_information', '更新包裝信息', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22116', 'cn', 'package_has_been_inserted_successfully', '包已成功插入', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22117', 'cn', 'refund_request', '退款要求', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22118', 'cn', 'reason', '原因', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22119', 'cn', 'label', '標籤', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22120', 'cn', 'select_label', '選擇標籤', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22121', 'cn', 'multiple_select_label', '多選標籤', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22122', 'cn', 'radio_label', '無線電標籤', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22123', 'cn', 'pickup_point_orders', '接送點訂單', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22124', 'cn', 'view', '視圖', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22125', 'cn', 'order_', '訂單號', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22126', 'cn', 'order_status', '訂單狀態', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22127', 'cn', 'total_amount', '總金額', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22128', 'cn', 'total', '總', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22129', 'cn', 'delivery_status_has_been_updated', '交貨狀態已更新', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22130', 'cn', 'payment_status_has_been_updated', '付款狀態已更新', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22131', 'cn', 'invoice', '發票', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22132', 'cn', 'set_refund_time', '設定退款時間', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22133', 'cn', 'set_time_for_sending_refund_request', '設置發送退款請求的時間', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22134', 'cn', 'set_refund_sticker', '設置退款貼紙', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22135', 'cn', 'sticker', '貼圖', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22136', 'cn', 'refund_request_all', '退款要求全部', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22137', 'cn', 'order_id', '訂單編號', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22138', 'cn', 'seller_approval', '賣方批准', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22139', 'cn', 'admin_approval', '管理員批准', '2021-02-09 14:01:04', '2021-09-20 13:00:14'),
('22140', 'cn', 'refund_status', '退款狀態', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22141', 'cn', 'no_refund', '無法退款', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22142', 'cn', 'status_updated_successfully', '狀態更新成功', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22143', 'cn', 'user_search_report', '用戶搜索報告', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22144', 'cn', 'search_by', '搜索依據', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22145', 'cn', 'number_searches', '號碼搜索', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22146', 'cn', 'sender', '發件人', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22147', 'cn', 'receiver', '接收者', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22148', 'cn', 'verification_form_updated_successfully', '驗證表格已成功更新', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22149', 'cn', 'invalid_email_or_password', '無效的電子郵件或密碼', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22150', 'cn', 'all_coupons', '所有優惠券', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22151', 'cn', 'add_new_coupon', '添加新優惠券', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22152', 'cn', 'coupon_information', '優惠券信息', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22153', 'cn', 'start_date', '開始日期', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22154', 'cn', 'end_date', '結束日期', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22155', 'cn', 'product_base', '產品基礎', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22156', 'cn', 'send_newsletter', '發送時事通訊', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22157', 'cn', 'mobile_users', '移動用戶', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22158', 'cn', 'sms_subject', '短信主題', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22159', 'cn', 'sms_content', '短信內容', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22160', 'cn', 'all_flash_delas', '所有Flash Delas', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22161', 'cn', 'create_new_flash_dela', '創建新的Flash Dela', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22162', 'cn', 'page_link', '頁面鏈接', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22163', 'cn', 'flash_deal_information', '即時交易信息', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22164', 'cn', 'background_color', '背景顏色', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22165', 'cn', '0000ff', '＃0000ff', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22166', 'cn', 'text_color', '文字顏色', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22167', 'cn', 'white', '白色', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22168', 'cn', 'dark', '黑暗', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22169', 'cn', 'choose_products', '選擇產品', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22170', 'cn', 'discounts', '打折', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22171', 'cn', 'discount_type', '優惠類型', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22172', 'cn', 'twillo_credential', 'Twillo憑證', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22173', 'cn', 'twilio_sid', 'TWILIO SID', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22174', 'cn', 'twilio_auth_token', 'TWILIO AUTH令牌', '2021-02-09 14:01:05', '2021-09-20 13:00:14'),
('22175', 'cn', 'twilio_verify_sid', 'TWILIO驗證SID', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22176', 'cn', 'valid_twillo_number', '有效的斜線號碼', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22177', 'cn', 'nexmo_credential', 'Nexmo憑證', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22178', 'cn', 'nexmo_key', 'NEXMO KEY', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22179', 'cn', 'nexmo_secret', 'NEXMO秘密', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22180', 'cn', 'ssl_wireless_credential', 'SSL無線憑證', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22181', 'cn', 'ssl_sms_api_token', 'SSL SMS API令牌', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22182', 'cn', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22183', 'cn', 'ssl_sms_url', 'SSL SMS URL', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22184', 'cn', 'fast2sms_credential', 'Fast2SMS憑證', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22185', 'cn', 'auth_key', '授權鍵', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22186', 'cn', 'route', '路線', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22187', 'cn', 'promotional_use', '促銷用途', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22188', 'cn', 'transactional_use', '交易用途', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22189', 'cn', 'sender_id', '發件人ID', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22190', 'cn', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22191', 'cn', 'twillo_otp', 'Twillo OTP', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22192', 'cn', 'ssl_wireless_otp', 'SSL無線OTP', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22193', 'cn', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22194', 'cn', 'order_placement', '下訂單', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22195', 'cn', 'delivery_status_changing_time', '交貨狀態變更時間', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22196', 'cn', 'paid_status_changing_time', '付費狀態更改時間', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22197', 'cn', 'send_bulk_sms', '發送批量短信', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22198', 'cn', 'all_subscribers', '所有訂閱者', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22199', 'cn', 'coupon_information_adding', '優惠券信息添加', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22200', 'cn', 'coupon_type', '優惠券類型', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22201', 'cn', 'for_products', '對於產品', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22202', 'cn', 'for_total_orders', '對於總訂單', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22203', 'cn', 'add_your_product_base_coupon', '添加您的產品基礎優惠券', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22204', 'cn', 'coupon_code', '優惠卷號碼', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22205', 'cn', 'sub_category', '子類別', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22206', 'cn', 'add_more', '添加更多', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22207', 'cn', 'add_your_cart_base_coupon', '添加您的購物車基本優惠券', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22208', 'cn', 'minimum_shopping', '最低購物', '2021-02-09 14:01:06', '2021-09-20 13:00:14'),
('22209', 'cn', 'maximum_discount_amount', '最高折扣金額', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22210', 'cn', 'coupon_information_update', '優惠券信息更新', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22211', 'cn', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', '請配置SMTP設置以使用所有電子郵件發送功能', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22212', 'cn', 'configure_now', '立即配置', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22213', 'cn', 'total_published_products', '出版的產品總數', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22214', 'cn', 'total_sellers_products', '賣家商品總數', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22215', 'cn', 'total_admin_products', '管理員產品總數', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22216', 'cn', 'manage_products', '管理產品', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22217', 'cn', 'total_product_category', '總產品類別', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22218', 'cn', 'create_category', '創建類別', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22219', 'cn', 'total_product_sub_sub_category', '總產品子類別', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22220', 'cn', 'create_sub_sub_category', '創建子子類別', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22221', 'cn', 'total_product_sub_category', '總產品子類別', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22222', 'cn', 'create_sub_category', '創建子類別', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22223', 'cn', 'total_product_brand', '產品總品牌', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22224', 'cn', 'create_brand', '建立品牌', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22225', 'cn', 'total_sellers', '賣家總數', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22226', 'cn', 'total_approved_sellers', '核准賣家總數', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22227', 'cn', 'total_pending_sellers', '未決賣家總數', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22228', 'cn', 'manage_sellers', '管理賣家', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22229', 'cn', 'category_wise_product_sale', '類別明智的產品銷售', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22230', 'cn', 'sale', '特賣', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22231', 'cn', 'category_wise_product_stock', '類別明智的產品庫存', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22232', 'cn', 'category_name', '分類名稱', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22233', 'cn', 'stock', '股票', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22234', 'cn', 'frontend', '前端', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22235', 'cn', 'home_page', '主頁', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22236', 'cn', 'setting', '設置', '2021-02-09 14:01:07', '2021-02-09 14:01:07'),
('22237', 'cn', 'policy_page', '政策頁面', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22238', 'cn', 'general', '一般', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22239', 'cn', 'click_here', '點擊這裡', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22240', 'cn', 'useful_link', '有用的鏈接', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22241', 'cn', 'activation', '激活', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22242', 'cn', 'smtp', 'SMTP', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22243', 'cn', 'payment_method', '付款方法', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22244', 'cn', 'social_media', '社交媒體', '2021-02-09 14:01:07', '2021-09-20 13:00:14'),
('22245', 'cn', 'business', '商業', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22246', 'cn', 'seller_verification', '賣家驗證', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22247', 'cn', 'form_setting', '表格設定', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22248', 'cn', 'language', '語言', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22249', 'cn', 'dashboard', '儀表板', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22250', 'cn', 'pos_system', 'POS系統', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22251', 'cn', 'pos_manager', 'POS管理器', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22252', 'cn', 'pos_configuration', 'POS配置', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22253', 'cn', 'products', '產品展示', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22254', 'cn', 'add_new_product', '添加新產品', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22255', 'cn', 'all_products', '所有產品', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22256', 'cn', 'in_house_products', '內部產品', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22257', 'cn', 'seller_products', '賣方產品', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22258', 'cn', 'digital_products', '數碼產品', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22259', 'cn', 'bulk_import', '批量導入', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22260', 'cn', 'bulk_export', '批量出口', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22261', 'cn', 'category', '類別', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22262', 'cn', 'subcategory', '子類別', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22263', 'cn', 'sub_subcategory', '子子類別', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22264', 'cn', 'brand', '牌', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22265', 'cn', 'attribute', '屬性', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22266', 'cn', 'product_reviews', '產品評論', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22267', 'cn', 'sales', '營業額', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22268', 'cn', 'all_orders', '所有訂單', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22269', 'cn', 'inhouse_orders', '內部訂單', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22270', 'cn', 'seller_orders', '賣方訂單', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22271', 'cn', 'pickup_point_order', '接送點順序', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22272', 'cn', 'refunds', '退款', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22273', 'cn', 'refund_requests', '退款要求', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22274', 'cn', 'approved_refund', '批准退款', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22275', 'cn', 'refund_configuration', '退款配置', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22276', 'cn', 'customers', '顧客', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22277', 'cn', 'customer_list', '客戶名單', '2021-02-09 14:01:08', '2021-09-20 13:00:14'),
('22278', 'cn', 'classified_products', '分類產品', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22279', 'cn', 'classified_packages', '分類包裹', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22280', 'cn', 'sellers', '賣家', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22281', 'cn', 'all_seller', '所有賣家', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22282', 'cn', 'payouts', '支出', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22283', 'cn', 'payout_requests', '付款要求', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22284', 'cn', 'seller_commission', '賣方佣金', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22285', 'cn', 'seller_packages', '賣家套餐', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22286', 'cn', 'seller_verification_form', '賣方驗證表', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22287', 'cn', 'reports', '報告書', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22288', 'cn', 'in_house_product_sale', '內部產品銷售', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22289', 'cn', 'seller_products_sale', '賣方產品銷售', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22290', 'cn', 'products_stock', '產品庫存', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22291', 'cn', 'products_wishlist', '產品願望清單', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22292', 'cn', 'user_searches', '用戶搜索', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22293', 'cn', 'marketing', '營銷學', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22294', 'cn', 'flash_deals', 'Flash交易', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22295', 'cn', 'newsletters', '時事通訊', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22296', 'cn', 'bulk_sms', '批量短信', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22297', 'cn', 'subscribers', '訂戶', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22298', 'cn', 'coupon', '優惠券', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22299', 'cn', 'support', '支持', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22300', 'cn', 'ticket', '票', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22301', 'cn', 'product_queries', '產品查詢', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22302', 'cn', 'website_setup', '網站設置', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22303', 'cn', 'header', '標頭', '2021-02-09 14:01:09', '2021-09-20 13:00:14'),
('22304', 'cn', 'footer', '頁腳', '2021-02-09 14:01:09', '2021-09-20 13:00:15'),
('22305', 'cn', 'pages', '頁數', '2021-02-09 14:01:09', '2021-09-20 13:00:15'),
('22306', 'cn', 'appearance', '出現', '2021-02-09 14:01:09', '2021-09-20 13:00:15'),
('22307', 'cn', 'setup__configurations', '設置和配置', '2021-02-09 14:01:09', '2021-09-20 13:00:15'),
('22308', 'cn', 'general_settings', '通用設置', '2021-02-09 14:01:09', '2021-09-20 13:00:15'),
('22309', 'cn', 'features_activation', '功能激活', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22310', 'cn', 'languages', '語言能力', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22311', 'cn', 'currency', '貨幣', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22312', 'cn', 'pickup_point', '接送點', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22313', 'cn', 'smtp_settings', 'SMTP設置', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22314', 'cn', 'payment_methods', '支付方式', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22315', 'cn', 'file_system_configuration', '文件系統配置', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22316', 'cn', 'social_media_logins', '社交媒體登錄', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22317', 'cn', 'analytics_tools', '分析工具', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22318', 'cn', 'facebook_chat', '臉書聊天', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22319', 'cn', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22320', 'cn', 'shipping_configuration', '運輸配置', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22321', 'cn', 'shipping_countries', '運輸國家', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22322', 'cn', 'affiliate_system', '會員系統', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22323', 'cn', 'affiliate_registration_form', '會員註冊表格', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22324', 'cn', 'affiliate_configurations', '會員配置', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22325', 'cn', 'affiliate_users', '會員用戶', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22326', 'cn', 'referral_users', '推薦用戶', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22327', 'cn', 'affiliate_withdraw_requests', '會員提現要求', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22328', 'cn', 'offline_payment_system', '離線支付系統', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22329', 'cn', 'manual_payment_methods', '手動付款方式', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22330', 'cn', 'offline_wallet_recharge', '離線錢包充值', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22331', 'cn', 'offline_customer_package_payments', '離線客戶套餐付款', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22332', 'cn', 'offline_seller_package_payments', '離線賣家套餐付款', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22333', 'cn', 'paytm_payment_gateway', 'Paytm付款網關', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22334', 'cn', 'set_paytm_credentials', '設置Paytm憑證', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22335', 'cn', 'club_point_system', '俱樂部積分系統', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22336', 'cn', 'club_point_configurations', '俱樂部積分配置', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22337', 'cn', 'set_product_point', '設定產品點', '2021-02-09 14:01:10', '2021-09-20 13:00:15'),
('22338', 'cn', 'user_points', '用戶點數', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22339', 'cn', 'otp_system', 'OTP系統', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22340', 'cn', 'otp_configurations', 'OTP配置', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22341', 'cn', 'set_otp_credentials', '設置OTP憑證', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22342', 'cn', 'staffs', '員工', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22343', 'cn', 'all_staffs', '所有員工', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22344', 'cn', 'staff_permissions', '員工權限', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22345', 'cn', 'addon_manager', '插件管理器', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22346', 'cn', 'browse_website', '瀏覽網站', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22347', 'cn', 'pos', '銷售點', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22348', 'cn', 'notifications', '通知事項', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22349', 'cn', 'new_orders', '新訂單', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22350', 'cn', 'userimage', '用戶圖像', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22351', 'cn', 'profile', '個人資料', '2021-02-09 14:01:11', '2021-09-20 13:00:15'),
('22352', 'cn', 'logout', '登出', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22353', 'cn', 'page_not_found', '找不到網頁！', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22354', 'cn', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', '在我們的服務器上找不到您要查找的頁面。', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22355', 'cn', 'registration', '註冊', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22356', 'cn', 'i_am_shopping_for', '我是來買什麼的...', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22357', 'cn', 'compare', '相比', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22358', 'cn', 'wishlist', '心願單', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22359', 'cn', 'cart', '大車', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22360', 'cn', 'your_cart_is_empty', '您的購物車是空的', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22361', 'cn', 'categories', '分類目錄', '2021-02-09 14:01:51', '2021-09-20 13:00:15'),
('22362', 'cn', 'see_all', '查看全部', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22363', 'cn', 'seller_policy', '賣方政策', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22364', 'cn', 'return_policy', '退貨政策', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22365', 'cn', 'support_policy', '支援政策', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22366', 'cn', 'privacy_policy', '隱私政策', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22367', 'cn', 'your_email_address', '您的電子郵件地址', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22368', 'cn', 'subscribe', '訂閱', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22369', 'cn', 'contact_info', '聯絡資料', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22370', 'cn', 'address', '地址', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22371', 'cn', 'phone', '電話', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22372', 'cn', 'email', '電子郵件', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22373', 'cn', 'login', '登錄', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22374', 'cn', 'my_account', '我的賬戶', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22375', 'cn', 'order_history', '訂單歷史', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22376', 'cn', 'my_wishlist', '我的收藏', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22377', 'cn', 'track_order', '追踪訂單', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22378', 'cn', 'be_an_affiliate_partner', '成為會員夥伴', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22379', 'cn', 'be_a_seller', '成為賣家', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22380', 'cn', 'apply_now', '現在申請', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22381', 'cn', 'confirmation', '確認書', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22382', 'cn', 'delete_confirmation_message', '刪除確認信息', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22383', 'cn', 'cancel', '取消', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22384', 'cn', 'delete', '刪除', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22385', 'cn', 'item_has_been_added_to_compare_list', '項目已添加到比較列表', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22386', 'cn', 'please_login_first', '請先登錄', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22387', 'cn', 'total_earnings_from', '來自的總收入', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22388', 'cn', 'client_subscription', '客戶訂閱', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22389', 'cn', 'product_category', '產品分類', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22390', 'cn', 'product_sub_sub_category', '產品子類別', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22391', 'cn', 'product_sub_category', '產品子類別', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22392', 'cn', 'product_brand', '產品品牌', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22393', 'cn', 'top_client_packages', '頂級客戶套餐', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22394', 'cn', 'top_freelancer_packages', '頂級自由職業者套餐', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22395', 'cn', 'number_of_sale', '銷售數量', '2021-02-09 14:01:52', '2021-09-20 13:00:15'),
('22396', 'cn', 'number_of_stock', '庫存數量', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22397', 'cn', 'top_10_products', '十大產品', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22398', 'cn', 'top_12_products', '排名前12位的產品', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22399', 'cn', 'admin_can_not_be_a_seller', '管理員不能成為賣家', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22400', 'cn', 'filter_by_rating', '按評分篩選', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22401', 'cn', 'published_reviews_updated_successfully', '發布的評論已成功更新', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22402', 'cn', 'refund_sticker_has_been_updated_successfully', '退款貼紙已成功更新', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22403', 'cn', 'edit_product', '編輯產品', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22404', 'cn', 'meta_images', '元圖像', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22405', 'cn', 'update_product', '更新產品', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22406', 'cn', 'product_has_been_deleted_successfully', '產品已成功刪除', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22407', 'cn', 'your_profile_has_been_updated_successfully', '您的個人資料已成功更新！', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22408', 'cn', 'upload_limit_has_been_reached_please_upgrade_your_package', '已達到上傳限制。請升級您的軟件包。', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22409', 'cn', 'add_your_product', '添加您的產品', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22410', 'cn', 'select_a_category', '選擇一個類別', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22411', 'cn', 'select_a_brand', '選擇一個品牌', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22412', 'cn', 'product_unit', '產品單位', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22413', 'cn', 'minimum_qty', '最小數量', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22414', 'cn', 'product_tag', '產品標籤', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22415', 'cn', 'type__hit_enter', '輸入並按Enter', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22416', 'cn', 'videos', '影片', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22417', 'cn', 'video_from', '影片來源', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22418', 'cn', 'video_url', '影片網址', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22419', 'cn', 'customer_choice', '客戶選擇', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22420', 'cn', 'pdf', 'PDF格式', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22421', 'cn', 'choose_pdf', '選擇PDF', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22422', 'cn', 'select_category', '選擇類別', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22423', 'cn', 'target_category', '目標類別', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22424', 'cn', 'subsubcategory', '子類別', '2021-02-09 14:01:53', '2021-02-09 14:01:53'),
('22425', 'cn', 'search_category', '搜索類別', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22426', 'cn', 'search_subcategory', '搜索子類別', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22427', 'cn', 'search_subsubcategory', '搜索子類別', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22428', 'cn', 'update_your_product', '更新您的產品', '2021-02-09 14:01:53', '2021-09-20 13:00:15'),
('22429', 'cn', 'product_has_been_updated_successfully', '產品已成功更新', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22430', 'cn', 'add_your_digital_product', '添加您的數字產品', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22431', 'cn', 'active_ecommerce_cms_update_process', '活躍的電子商務CMS更新過程', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22432', 'cn', 'codecanyon_purchase_code', 'Codecanyon購買代碼', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22433', 'cn', 'database_name', '數據庫名稱', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22434', 'cn', 'database_username', '數據庫用戶名', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22435', 'cn', 'database_password', '數據庫密碼', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22436', 'cn', 'database_hostname', '數據庫主機名', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22437', 'cn', 'update_now', '現在更新', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22438', 'cn', 'congratulations', '恭喜啦', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22439', 'cn', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', '您已成功完成更新過程。請登錄訪問更多內容', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22440', 'cn', 'go_to_home', '回家', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22441', 'cn', 'login_to_admin_panel', '登錄到管理面板', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22442', 'cn', 's3_file_system_credentials', 'S3文件系統憑證', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22443', 'cn', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22444', 'cn', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22445', 'cn', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22446', 'cn', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22447', 'cn', 'aws_url', 'AWS_URL', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22448', 'cn', 's3_file_system_activation', 'S3文件系統激活', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22449', 'cn', 'your_phone_number', '你的電話號碼', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22450', 'cn', 'zip_file', '壓縮文件', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22451', 'cn', 'install', '安裝', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22452', 'cn', 'this_version_is_not_capable_of_installing_addons_please_update', '此版本無法安裝插件，請更新。', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22453', 'cn', 'search_in_menu', '在菜單中搜索', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22454', 'cn', 'uploaded_files', '上傳的文件', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22455', 'cn', 'shipping_cities', '船運城市', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22456', 'cn', 'system', '系統', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22457', 'cn', 'server_status', '服務器狀態', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22458', 'cn', 'nothing_found', '什麼都沒找到', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22459', 'cn', 'parent_category', '父類別', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22460', 'cn', 'level', '水平', '2021-02-09 14:01:54', '2021-09-20 13:00:15'),
('22461', 'cn', 'category_information', '分類信息', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22462', 'cn', 'translatable', '可翻譯的', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22463', 'cn', 'no_parent', '沒有父母', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22464', 'cn', 'physical', '物理', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22465', 'cn', 'digital', '數字', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22466', 'cn', '200x200', '200x200', '2021-02-09 14:01:55', '2021-02-09 14:01:55'),
('22467', 'cn', '32x32', '32x32', '2021-02-09 14:01:55', '2021-02-09 14:01:55'),
('22468', 'cn', 'search_your_files', '搜索文件', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22469', 'cn', 'category_has_been_updated_successfully', '類別已成功更新', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22470', 'cn', 'all_uploaded_files', '所有上傳的文件', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22471', 'cn', 'upload_new_file', '上載新文件', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22472', 'cn', 'all_files', '所有的文件', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22473', 'cn', 'search', '搜索', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22474', 'cn', 'details_info', '詳細信息', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22475', 'cn', 'copy_link', '複製鏈接', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22476', 'cn', 'are_you_sure_to_delete_this_file', '您確定要刪除此文件嗎？', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22477', 'cn', 'file_info', '文件信息', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22478', 'cn', 'link_copied_to_clipboard', '鏈接已復製到剪貼板', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22479', 'cn', 'oops_unable_to_copy', '糟糕，無法複製', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22480', 'cn', 'file_deleted_successfully', '文件已成功刪除', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22481', 'cn', 'add_new_brand', '新增品牌', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22482', 'cn', '120x80', '120x80', '2021-02-09 14:01:55', '2021-02-09 14:01:55'),
('22483', 'cn', 'brand_information', '品牌資訊', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22484', 'cn', 'brand_has_been_updated_successfully', '品牌已成功更新', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22485', 'cn', 'brand_has_been_deleted_successfully', '品牌已成功刪除', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22486', 'cn', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', '這用於搜索。輸入客戶可以通過其找到該產品的單詞。', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22487', 'cn', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', '這些圖像在“產品詳細信息”頁面庫中可見。使用600x600尺寸的圖像。', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22488', 'cn', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', '該圖像在所有產品框中均可見。使用300x300尺寸的圖片。在圖像的主要對象周圍保留一些空白，因為我們必須在不同的設備上裁剪一些邊緣以使其響應。', '2021-02-09 14:01:55', '2021-09-20 13:00:15'),
('22489', 'cn', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', '使用正確的鏈接，無需額外的參數。不要使用短共享鏈接/嵌入的iframe代碼。', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22490', 'cn', 'save_product', '保存產品', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22491', 'cn', 'product_has_been_inserted_successfully', '產品已成功插入', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22492', 'cn', 'something_went_wrong', '出問題了！', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22493', 'cn', 'sorry_for_the_inconvenience_but_were_working_on_it', '不便之處，敬請見諒，但我們正在努力。', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22494', 'cn', 'error_code', '錯誤代碼', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22495', 'cn', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', '請配置SMTP設置以使用所有電子郵件發送功能', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22496', 'cn', 'order', '訂購', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22497', 'cn', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', '我們限制橫幅高度以維護UI。我們必須從左側和右側進行裁剪，以查看不同的設備以使其響應。在設計橫幅之前，請牢記這些要點。', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22498', 'cn', 'home_banner_3_max_3', '首頁橫幅3（最多3個）', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22499', 'cn', 'add_new_seller', '添加新賣家', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22500', 'cn', 'filter_by_approval', '按批准過濾', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22501', 'cn', 'nonapproved', '未批准', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22502', 'cn', 'type_name_or_email__enter', '輸入名稱或電子郵件並輸入', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22503', 'cn', 'due_to_seller', '由於賣方', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22504', 'cn', 'log_in_as_this_seller', '以該賣家身份登錄', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22505', 'cn', 'go_to_payment', '轉到付款', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22506', 'cn', 'ban_this_seller', '禁止該賣家', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22507', 'cn', 'do_you_really_want_to_ban_this_seller', '您真的要禁止該賣家嗎？', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22508', 'cn', 'proceed', '繼續！', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22509', 'cn', 'approved_sellers_updated_successfully', '批准的賣家已成功更新', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22510', 'cn', 'seller_has_been_deleted_successfully', '賣家已成功刪除', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22511', 'cn', 'seller_information', '賣家信息', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22512', 'cn', 'seller_has_been_inserted_successfully', '賣家已成功插入', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22513', 'cn', 'email_already_exists', '電子郵件已經存在！', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22514', 'cn', 'verify_your_email_address', '確認你的郵件地址', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22515', 'cn', 'before_proceeding_please_check_your_email_for_a_verification_link', '在繼續之前，請檢查您的電子郵件以獲取驗證鏈接。', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22516', 'cn', 'if_you_did_not_receive_the_email', '如果您沒有收到電子郵件。', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22517', 'cn', 'click_here_to_request_another', '點擊此處請求其他', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22518', 'cn', 'email_verification', '電子郵件驗證', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22519', 'cn', 'email_verification__', '電子郵件驗證 -', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22520', 'cn', 'https_activation', 'HTTPS激活', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22521', 'cn', 'maintenance_mode', '維護模式', '2021-02-09 14:01:56', '2021-09-20 13:00:15'),
('22522', 'cn', 'maintenance_mode_activation', '維護模式激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22523', 'cn', 'classified_product_activate', '分類產品激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22524', 'cn', 'classified_product', '分類產品', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22525', 'cn', 'business_related', '業務相關', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22526', 'cn', 'vendor_system_activation', '供應商系統激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22527', 'cn', 'wallet_system_activation', '錢包系統激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22528', 'cn', 'coupon_system_activation', '優惠券系統激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22529', 'cn', 'pickup_point_activation', '接送點激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22530', 'cn', 'conversation_activation', '對話激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22531', 'cn', 'guest_checkout_activation', '訪客結帳激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22532', 'cn', 'categorybased_commission', '基於類別的佣金', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22533', 'cn', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', '激活此選項後，賣方佣金將被禁用，您需要在每個類別上設置佣金，否則管理員將不會獲得任何佣金', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22534', 'cn', 'set_commisssion_now', '立即設置佣金', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22535', 'cn', 'payment_related', '付款相關', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22536', 'cn', 'paypal_payment_activation', '貝寶付款激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22537', 'cn', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', '您需要正確配置Paypal才能啟用此功能', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22538', 'cn', 'stripe_payment_activation', '條紋付款激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22539', 'cn', 'sslcommerz_activation', 'SSlCommerz激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22540', 'cn', 'instamojo_payment_activation', 'Instamojo付款激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22541', 'cn', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', '您需要正確配置Instamojo Payment才能啟用此功能', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22542', 'cn', 'razor_pay_activation', '剃刀支付激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22543', 'cn', 'you_need_to_configure_razor_correctly_to_enable_this_feature', '您需要正確配置Razor才能啟用此功能', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22544', 'cn', 'paystack_activation', 'PayStack激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22545', 'cn', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', '您需要正確配置PayStack才能啟用此功能', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22546', 'cn', 'voguepay_activation', 'VoguePay激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22547', 'cn', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', '您需要正確配置VoguePay才能啟用此功能', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22548', 'cn', 'payhere_activation', '支付激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22549', 'cn', 'ngenius_activation', 'Ngenius激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22550', 'cn', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', '您需要正確配置Ngen​​ius才能啟用此功能', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22551', 'cn', 'iyzico_activation', '伊齊科活化', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22552', 'cn', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', '您需要正確配置iyzico才能啟用此功能', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22553', 'cn', 'bkash_activation', 'Bkash激活', '2021-02-09 14:01:57', '2021-09-20 13:00:15'),
('22554', 'cn', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', '您需要正確配置bkash才能啟用此功能', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22555', 'cn', 'nagad_activation', 'Nagad激活', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22556', 'cn', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', '您需要正確配置nagad才能啟用此功能', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22557', 'cn', 'cash_payment_activation', '現金支付激活', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22558', 'cn', 'social_media_login', '社交媒體登錄', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22559', 'cn', 'facebook_login', 'Facebook登入', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22560', 'cn', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', '您需要正確配置Facebook Client才能啟用此功能', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22561', 'cn', 'google_login', '谷歌登錄', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22562', 'cn', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', '您需要正確配置Google客戶端才能啟用此功能', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22563', 'cn', 'twitter_login', 'Twitter登錄', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22564', 'cn', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', '您需要正確配置Twitter Client才能啟用此功能', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22565', 'cn', 'shop_logo', '店鋪徽標', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22566', 'cn', 'shop_address', '店鋪地址', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22567', 'cn', 'banner_settings', '橫幅設置', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22568', 'cn', 'banners', '標語', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22569', 'cn', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', '我們必須將高度限制為主要一致性。在某些設備中，橫幅的兩側可能會被裁剪以限制高度。', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22570', 'cn', 'insert_link_with_https_', '用https插入鏈接', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22571', 'cn', 'your_shop_has_been_updated_successfully', '您的商店已成功更新！', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22572', 'cn', 'search_result_for_', '搜尋結果', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22573', 'cn', 'brand_has_been_inserted_successfully', '品牌已成功插入', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22574', 'cn', 'about', '關於', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22575', 'cn', 'payout_info', '付款信息', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22576', 'cn', 'bank_acc_name', '銀行帳戶名稱', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22577', 'cn', 'bank_acc_number', '銀行帳號', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22578', 'cn', 'total_products', '產品總數', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22579', 'cn', 'total_sold_amount', '總銷售金額', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22580', 'cn', 'wallet_balance', '錢包餘額', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22581', 'cn', 'cookies_agreement', 'Cookies協議', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22582', 'cn', 'cookies_agreement_text', 'Cookies協議文本', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22583', 'cn', 'show_cookies_agreement', '顯示Cookies協議？', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22584', 'cn', 'custom_script', '自定義腳本', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22585', 'cn', 'header_custom_script__before_head', '標頭自定義腳本-</ head>之前', '2021-02-09 14:01:58', '2021-09-20 13:00:15'),
('22586', 'cn', 'write_script_with_script_tag', '用<script>標籤編寫腳本', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22587', 'cn', 'footer_custom_script__before_body', '頁腳自定義腳本-</ body>之前', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22588', 'cn', 'category_has_been_inserted_successfully', '類別已成功插入', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22589', 'cn', 'all_flash_deals', '所有即時優惠', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22590', 'cn', 'create_new_flash_deal', '創建新的快速交易', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22591', 'cn', 'ffffff', '#FFFFFF', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22592', 'cn', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', '該圖像在閃存交易詳細信息頁面中顯示為封面橫幅。', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22593', 'cn', 'flash_deal_has_been_inserted_successfully', 'Flash Deal已成功插入', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22594', 'cn', 'flash_deal_status_updated_successfully', '即時交易狀態已成功更新', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22595', 'cn', 'flash_deal_has_been_updated_successfully', 'Flash Deal已成功更新', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22596', 'cn', 'update_language_info', '更新語言信息', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22597', 'cn', 'language_has_been_updated_successfully', '語言已成功更新', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22598', 'cn', 'type_key__enter', '輸入鍵並輸入', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22599', 'cn', 'translations_updated_for_', '更新於', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22600', 'cn', 'language_has_been_inserted_successfully', '語言已成功插入', '2021-02-09 14:01:59', '2021-09-20 13:00:15'),
('22601', 'zw', 'all_category', 'All Chikamu', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22602', 'zw', 'all', 'Zvese', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22603', 'zw', 'flash_sale', 'Flash Kutengesa', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22604', 'zw', 'view_more', 'Ona Zvimwe', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22605', 'zw', 'add_to_wishlist', 'Wedzera kune wishlist', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22606', 'zw', 'add_to_compare', 'Wedzera kuenzanisa', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22607', 'zw', 'add_to_cart', 'Wedzera kungoro', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22608', 'zw', 'club_point', 'Kirabhu Point', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22609', 'zw', 'classified_ads', 'Classified Ads', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22610', 'zw', 'used', 'Yakashandiswa', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22611', 'zw', 'top_10_categories', 'Wepamusoro gumi Mapoka', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22612', 'zw', 'view_all_categories', 'Wona Zvikamu Zvese', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22613', 'zw', 'top_10_brands', 'Wepamusoro gumi Brands', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22614', 'zw', 'view_all_brands', 'Wona Ese Mhando', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22615', 'zw', 'terms__conditions', 'Mitemo & mamiriro', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22616', 'zw', 'best_selling', 'Kutengesa Kwakanyanya', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22617', 'zw', 'top_20', 'Wepamusoro 20', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22618', 'zw', 'featured_products', 'Zvinowanikwa Zvigadzirwa', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22619', 'zw', 'best_sellers', 'Vatengesi Vakanakisisa', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22620', 'zw', 'visit_store', 'Shanyira Chitoro', '2021-02-09 14:04:38', '2021-09-20 13:00:15'),
('22621', 'zw', 'popular_suggestions', 'Mazano Akakurumbira', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22622', 'zw', 'category_suggestions', 'Chikamu Mazano', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22623', 'zw', 'automobile__motorcycle', 'Motokari & Mudhudhudhu', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22624', 'zw', 'price_range', 'Mutengo wepakati', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22625', 'zw', 'filter_by_color', 'Sefa nekara', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22626', 'zw', 'home', 'Kumba', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22627', 'zw', 'newest', 'Zvitsva', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22628', 'zw', 'oldest', 'Yakare', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22629', 'zw', 'price_low_to_high', 'Mutengo wakaderera kusvika kumusoro', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22630', 'zw', 'price_high_to_low', 'Mutengo wakakwira kuderera', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22631', 'zw', 'brands', 'Zvigadzirwa', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22632', 'zw', 'all_brands', 'Zvese Brands', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22633', 'zw', 'all_sellers', 'Vatengesi vese', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22634', 'zw', 'inhouse_product', 'Inhouse chigadzirwa', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22635', 'zw', 'message_seller', 'Meseji Mutengesi', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22636', 'zw', 'price', 'Mutengo', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22637', 'zw', 'discount_price', 'Mutengo Wechipo', '2021-02-09 14:04:39', '2021-09-20 13:00:15'),
('22638', 'zw', 'color', 'Ruvara', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22639', 'zw', 'quantity', 'Zvakawanda', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22640', 'zw', 'available', 'inowanikwa', '2021-02-09 14:04:39', '2021-02-09 14:04:39'),
('22641', 'zw', 'total_price', 'Mutengo Wese', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22642', 'zw', 'out_of_stock', 'Kupererwa nedura', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22643', 'zw', 'refund', 'Dzosera', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22644', 'zw', 'share', 'Goverana', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22645', 'zw', 'sold_by', 'Kutengeswa Na', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22646', 'zw', 'customer_reviews', 'ongororo yevatengi', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22647', 'zw', 'top_selling_products', 'Pamusoro Kutengesa Zvigadzirwa', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22648', 'zw', 'description', 'Tsananguro', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22649', 'zw', 'video', 'Vhidhiyo', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22650', 'zw', 'reviews', 'Ongororo', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22651', 'zw', 'download', 'Download', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22652', 'zw', 'there_have_been_no_reviews_for_this_product_yet', 'Pakave pasina kuongororwa kweichi chigadzirwa parizvino.', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22653', 'zw', 'related_products', 'Zvigadzirwa zvinoenderana', '2021-02-09 14:04:39', '2021-09-20 13:00:16'),
('22654', 'zw', 'any_query_about_this_product', 'Chero mubvunzo nezve ichi chigadzirwa', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22655', 'zw', 'product_name', 'Chigadzirwa Chigadzirwa', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22656', 'zw', 'your_question', 'Mubvunzo Wako', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22657', 'zw', 'send', 'Tumira', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22658', 'zw', 'use_country_code_before_number', 'Shandisa kodhi yenyika pamberi pehamba', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22659', 'zw', 'remember_me', 'Ndirangarire', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22660', 'zw', 'dont_have_an_account', 'Hauna account here?', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22661', 'zw', 'register_now', 'Bhalisa Zvino', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22662', 'zw', 'or_login_with', 'Kana Kupinda Na', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22663', 'zw', 'oops', 'oops ..', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22664', 'zw', 'this_item_is_out_of_stock', 'Chinhu ichi hachina kudhara!', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22665', 'zw', 'back_to_shopping', 'Kudzokera kunotenga', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22666', 'zw', 'login_to_your_account', 'Pinda kuaccount yako.', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22667', 'zw', 'purchase_history', 'Nhoroondo yekutenga', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22668', 'zw', 'new', 'Nyowani', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22669', 'zw', 'downloads', 'Downloads', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22670', 'zw', 'sent_refund_request', 'Yakatumirwa Refund Chikumbiro', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22671', 'zw', 'product_bulk_upload', 'Chigadzirwa Bulk Upload', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22672', 'zw', 'orders', 'Mirairo', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22673', 'zw', 'recieved_refund_request', 'Yakagamuchirwa Refund Chikumbiro', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22674', 'zw', 'shop_setting', 'Shop Setting', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22675', 'zw', 'payment_history', 'Kubhadhara Nhoroondo', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22676', 'zw', 'money_withdraw', 'Mari Bvisa', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22677', 'zw', 'conversations', 'Kukurukurirana', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22678', 'zw', 'my_wallet', 'Chikwama Changu', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22679', 'zw', 'earning_points', 'Kuwana Points', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22680', 'zw', 'support_ticket', 'Tsigira Tiketi', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22681', 'zw', 'manage_profile', 'Manage Mbiri', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22682', 'zw', 'sold_amount', 'Kutengeswa Mari', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22683', 'zw', 'your_sold_amount_current_month', 'Mari yako yakatengeswa (ikozvino mwedzi)', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22684', 'zw', 'total_sold', 'Yese Yakatengeswa', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22685', 'zw', 'last_month_sold', 'Mwedzi Wapera Kutengeswa', '2021-02-09 14:04:40', '2021-09-20 13:00:16'),
('22686', 'zw', 'total_sale', 'Yese kutengesa', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22687', 'zw', 'total_earnings', 'Yese mibairo', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22688', 'zw', 'successful_orders', 'Akabudirira mirairo', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22689', 'zw', 'total_orders', 'Yakazara maodha', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22690', 'zw', 'pending_orders', 'Dzakamirira kuodha', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22691', 'zw', 'cancelled_orders', 'Kukanzurwa maodha', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22692', 'zw', 'product', 'Chigadzirwa', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22693', 'zw', 'purchased_package', 'Yakatengwa Pasuru', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22694', 'zw', 'package_not_found', 'Pasuru Haina Kuwanikwa', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22695', 'zw', 'upgrade_package', 'Ndiwedzere Package', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22696', 'zw', 'shop', 'Shop', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22697', 'zw', 'manage__organize_your_shop', 'Manage & ronga shopu yako', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22698', 'zw', 'go_to_setting', 'Enda pakuisa', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22699', 'zw', 'payment', 'Kubhadhara', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22700', 'zw', 'configure_your_payment_method', 'Gadzira yako nzira yekubhadhara', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22701', 'zw', 'my_panel', 'Yangu Panel', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22702', 'zw', 'item_has_been_added_to_wishlist', 'Chinhu chakawedzerwa kune wishlist', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22703', 'zw', 'my_points', 'Pfungwa Dzangu', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22704', 'zw', '_points', 'Points', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22705', 'zw', 'wallet_money', 'Wallet Mari', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22706', 'zw', 'exchange_rate', 'Exchange Rate', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22707', 'zw', 'point_earning_history', 'Pfungwa Kuwana nhoroondo', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22708', 'zw', 'date', 'Zuva', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22709', 'zw', 'points', 'Points', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22710', 'zw', 'converted', 'Shandurwa', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22711', 'zw', 'action', 'Chiito', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22712', 'zw', 'no_history_found', 'Hapana nhoroondo yakawanikwa.', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22713', 'zw', 'convert_has_been_done_successfully_check_your_wallets', 'Shanduko yaitwa zvinobudirira Tarisa maWallet ako', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22714', 'zw', 'something_went_wrong', 'Chinhu chakatadza kufamba', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22715', 'zw', 'remaining_uploads', 'Kuramba Kwakaiswa', '2021-02-09 14:04:41', '2021-09-20 13:00:16'),
('22716', 'zw', 'no_package_found', 'Hapana Pasuru Yakawanikwa', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22717', 'zw', 'search_product', 'Tsvaga chigadzirwa', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22718', 'zw', 'name', 'Zita', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22719', 'zw', 'current_qty', 'Yazvino Qty', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22720', 'zw', 'base_price', 'Base Mutengo', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22721', 'zw', 'published', 'Yakabudiswa', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22722', 'zw', 'featured', 'Featured', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22723', 'zw', 'options', 'Sarudzo', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22724', 'zw', 'edit', 'Hora', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22725', 'zw', 'duplicate', 'Dzokorora', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22726', 'zw', '1_download_the_skeleton_file_and_fill_it_with_data', '1.Dhawunirodha skeleton faira wozadza ne data', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22727', 'zw', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Unogona kudhawunirodha muenzaniso faira kuti unzwisise kuti data rinofanira kuzadzwa sei.', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22728', 'zw', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. Kana uchinge watora pasi uye wazadza iwo skeleton faira, riise mune fomu pazasi uye tumira.', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22729', 'zw', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Mushure mekuisa zvigadzirwa unofanirwa kuzvigadzirisa uye nekuisa zvigadzirwa mifananidzo uye sarudzo.', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22730', 'zw', 'download_csv', 'Dhawunirodha CSV', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22731', 'zw', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Chikamu, Sub chikamu, Sub Sub chikamu uye Brand inofanirwa kunge iri mumadhi ids.', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22732', 'zw', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Unogona kudhawunirodha iyo pdf kuti utore Chikamu, Sub chikamu, Sub Sub chikamu uye Brand id.', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22733', 'zw', 'download_category', 'Dhaunirodha Chikamu', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22734', 'zw', 'download_sub_category', 'Dhawunirodha Sub chikamu', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22735', 'zw', 'download_sub_sub_category', 'Dhawunirodha Sub Sub chikamu', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22736', 'zw', 'download_brand', 'Dhawunorodha Brand', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22737', 'zw', 'upload_csv_file', 'Isa CSV Faira', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22738', 'zw', 'csv', 'CSV', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22739', 'zw', 'choose_csv_file', 'Sarudza CSV Faira', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22740', 'zw', 'upload', 'Isa', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22741', 'zw', 'add_new_digital_product', 'Wedzera Nyowani Dhijitari Chigadzirwa', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22742', 'zw', 'available_status', 'Mamiriro Anowanikwa', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22743', 'zw', 'admin_status', 'Nzvimbo Yekutonga', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22744', 'zw', 'pending_balance', 'Kumirira Balance', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22745', 'zw', 'send_withdraw_request', 'Tumira Regedza Chikumbiro', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22746', 'zw', 'withdraw_request_history', 'Regedza Kumbira nhoroondo', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22747', 'zw', 'amount', 'Mari', '2021-02-09 14:04:42', '2021-09-20 13:00:16'),
('22748', 'zw', 'status', 'Chinzvimbo', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22749', 'zw', 'message', 'Meseji', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22750', 'zw', 'send_a_withdraw_request', 'Tumira Chikumbiro Chekubvisa', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22751', 'zw', 'basic_info', 'Basic Info', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22752', 'zw', 'your_phone', 'Foni Yako', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22753', 'zw', 'photo', 'Mufananidzo', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22754', 'zw', 'browse', 'Bhurawuza', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22755', 'zw', 'your_password', 'Your Password', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22756', 'zw', 'new_password', 'Nyowani Nyowani', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22757', 'zw', 'confirm_password', 'Tsigira pasiwedhi', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22758', 'zw', 'add_new_address', 'Wedzera New Kero', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22759', 'zw', 'payment_setting', 'Kuisa Maripo', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22760', 'zw', 'cash_payment', 'Cash Kubhadhara', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22761', 'zw', 'bank_payment', 'Kubhadhara kweBhangi', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22762', 'zw', 'bank_name', 'Zita reBhangi', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22763', 'zw', 'bank_account_name', 'Zita reBhangi reBhangi', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22764', 'zw', 'bank_account_number', 'Nhamba yeAkaundi yeBhangi', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22765', 'zw', 'bank_routing_number', 'Bank Routing Nhamba', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22766', 'zw', 'update_profile', 'Gadziridza Mbiri', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22767', 'zw', 'change_your_email', 'Chinja yako email', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22768', 'zw', 'your_email', 'Yako Email', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22769', 'zw', 'sending_email', 'Kutumira Email ...', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22770', 'zw', 'verify', 'Tarisa', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22771', 'zw', 'update_email', 'Gadziridza Email', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22772', 'zw', 'new_address', 'New Kero', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22773', 'zw', 'your_address', 'Kero Yako', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22774', 'zw', 'country', 'Nyika', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22775', 'zw', 'select_your_country', 'Sarudza nyika yako', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22776', 'zw', 'city', 'Guta', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22777', 'zw', 'your_city', 'Guta Rako', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22778', 'zw', 'your_postal_code', 'Yako Kodhi Kodhi', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22779', 'zw', '880', '+880', '2021-02-09 14:04:43', '2021-09-20 13:00:16'),
('22780', 'zw', 'save', 'Sevha', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22781', 'zw', 'received_refund_request', 'Yakagamuchirwa Refund Chikumbiro', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22782', 'zw', 'delete_confirmation', 'Delete Kusimbiswa', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22783', 'zw', 'are_you_sure_to_delete_this', 'Une chokwadi chekudzima izvi?', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22784', 'zw', 'premium_packages_for_sellers', 'Premium Mapakeji eVatengesi', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22785', 'zw', 'product_upload', 'Chigadzirwa Isa', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22786', 'zw', 'digital_product_upload', 'Dhijitari Chigadzirwa Rodha', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22787', 'zw', 'purchase_package', 'Tenga Pasuru', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22788', 'zw', 'select_payment_type', 'Sarudza Rudzi rwekubhadhara', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22789', 'zw', 'payment_type', 'Rudzi rwekubhadhara', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22790', 'zw', 'select_one', 'Sarudza Rimwe', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22791', 'zw', 'online_payment', 'Kubhadhara pamhepo', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22792', 'zw', 'offline_payment', 'Kubhadhara kwepamhepo', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22793', 'zw', 'purchase_your_package', 'Tenga Pasuru Yako', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22794', 'zw', 'paypal', 'Paypal', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22795', 'zw', 'stripe', 'Mutsetse', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22796', 'zw', 'sslcommerz', 'sslcommerz', '2021-02-09 14:04:44', '2021-02-09 14:04:44'),
('22797', 'zw', 'confirm', 'Simbisa', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22798', 'zw', 'offline_package_payment', 'Offline Pasuru Kubhadhara', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22799', 'zw', 'transaction_id', 'Chiitiko ID', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22800', 'zw', 'choose_image', 'Sarudza mufananidzo', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22801', 'zw', 'code', 'Code', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22802', 'zw', 'delivery_status', 'Mamiriro Ekutumira', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22803', 'zw', 'payment_status', 'Mamiriro ekubhadhara', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22804', 'zw', 'paid', 'Kubhadharwa', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22805', 'zw', 'order_details', 'Hodha Dzemashoko', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22806', 'zw', 'download_invoice', 'Dhawunirodha Invoice', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22807', 'zw', 'unpaid', 'Kusabhadharwa', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22808', 'zw', 'order_placed', 'Order yakaiswa', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22809', 'zw', 'confirmed', 'Yakasimbiswa', '2021-02-09 14:04:44', '2021-09-20 13:00:16'),
('22810', 'zw', 'on_delivery', 'Pakukurukura', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22811', 'zw', 'delivered', 'Kununurwa', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22812', 'zw', 'order_summary', 'Order Summary', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22813', 'zw', 'order_code', 'Kodhi Code', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22814', 'zw', 'customer', 'Mutengi', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22815', 'zw', 'total_order_amount', 'Yese odha huwandu', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22816', 'zw', 'shipping_metdod', 'Kutumira metdod', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22817', 'zw', 'flat_shipping_rate', 'Flat kutumira chiyero', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22818', 'zw', 'payment_metdod', 'Kubhadhara metdod', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22819', 'zw', 'variation', 'Kusiyana', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22820', 'zw', 'delivery_type', 'Dhirivhari Rudzi', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22821', 'zw', 'home_delivery', 'Kuendesa Kumba', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22822', 'zw', 'order_ammount', 'Raira Mari', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22823', 'zw', 'subtotal', 'Subtotal', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22824', 'zw', 'shipping', 'Kutumira', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22825', 'zw', 'coupon_discount', 'Coupon Discount', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22826', 'zw', 'na', 'N / A.', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22827', 'zw', 'in_stock', 'Mudura', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22828', 'zw', 'buy_now', 'Tenga izvozvi', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22829', 'zw', 'item_added_to_your_cart', 'Chinhu chakawedzerwa kungoro yako!', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22830', 'zw', 'proceed_to_checkout', 'Enderera ku Checkout', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22831', 'zw', 'cart_items', 'Ngoro Zvinhu', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22832', 'zw', '1_my_cart', '1. Ngoro Yangu', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22833', 'zw', 'view_cart', 'Wona ngoro', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22834', 'zw', '2_shipping_info', '2. Kutumira info', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22835', 'zw', 'checkout', 'Buda', '2021-02-09 14:04:45', '2021-09-20 13:00:16'),
('22836', 'zw', '3_delivery_info', '3. Kuendesa info', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22837', 'zw', '4_payment', '4. Kubhadhara', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22838', 'zw', '5_confirmation', '5. Kusimbiswa', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22839', 'zw', 'remove', 'Bvisa', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22840', 'zw', 'return_to_shop', 'Dzokera kuchitoro', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22841', 'zw', 'continue_to_shipping', 'Enderera kune Kutumira', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22842', 'zw', 'or', 'Kana', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22843', 'zw', 'guest_checkout', 'Guest Checkout', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22844', 'zw', 'continue_to_delivery_info', 'Ramba uchienderera Kuendesa Info', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22845', 'zw', 'postal_code', 'Kodhi yepositi', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22846', 'zw', 'choose_delivery_type', 'Sarudza Dhirivhari Type', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22847', 'zw', 'local_pickup', 'Yemunharaunda yekutora', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22848', 'zw', 'select_your_nearest_pickup_point', 'Sarudza nzvimbo yako yekutora iripedyo', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22849', 'zw', 'continue_to_payment', 'Enderera Kumubhadharo', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22850', 'zw', 'select_a_payment_option', 'Sarudza nzira yekubhadhara', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22851', 'zw', 'razorpay', 'Razorpay', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22852', 'zw', 'paystack', 'Kubhadhara', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22853', 'zw', 'voguepay', 'VoguePay', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22854', 'zw', 'payhere', 'payhere', '2021-02-09 14:04:46', '2021-02-09 14:04:46'),
('22855', 'zw', 'ngenius', 'ngenius', '2021-02-09 14:04:46', '2021-02-09 14:04:46'),
('22856', 'zw', 'paytm', 'Paytm', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22857', 'zw', 'cash_on_delivery', 'Mari pane Dhirivhari', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22858', 'zw', 'your_wallet_balance_', 'Chikwama chako chikero:', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22859', 'zw', 'insufficient_balance', 'Kukwana kukwana', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22860', 'zw', 'i_agree_to_the', 'Ini ndinobvumirana neiyo', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22861', 'zw', 'complete_order', 'Zadza Order', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22862', 'zw', 'summary', 'Pfupiso', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22863', 'zw', 'items', 'Zvinhu', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22864', 'zw', 'total_club_point', 'Yakazara Club poindi', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22865', 'zw', 'total_shipping', 'Yese Kutumira', '2021-02-09 14:04:46', '2021-09-20 13:00:16'),
('22866', 'zw', 'have_coupon_code_enter_here', 'Une kopani kodhi? Pinda pano', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22867', 'zw', 'apply', 'Nyorera', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22868', 'zw', 'you_need_to_agree_with_our_policies', 'Iwe unofanirwa kubvumirana nemitemo yedu', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22869', 'zw', 'forgot_password', 'Wakanganwa password', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22870', 'zw', 'seo_setting', 'Kuisa SEO', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22871', 'zw', 'system_update', 'Gadziriso yeSystem', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22872', 'zw', 'add_new_payment_method', 'Wedzera Nyowani Yekubhadhara Nzira', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22873', 'zw', 'manual_payment_method', 'Chinyorwa Kubhadhara Maitiro', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22874', 'zw', 'heading', 'Musoro', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22875', 'zw', 'logo', 'Logo', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22876', 'zw', 'manual_payment_information', 'Chinyorwa Chekubhadhara Ruzivo', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22877', 'zw', 'type', 'Type', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22878', 'zw', 'custom_payment', 'Tsika Kubhadhara', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22879', 'zw', 'check_payment', 'Tarisa Kubhadhara', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22880', 'zw', 'checkout_thumbnail', 'Checkout Thumbnail', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22881', 'zw', 'payment_instruction', 'Kubhadhara Kuraira', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22882', 'zw', 'bank_information', 'Ruzivo rweBhangi', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22883', 'zw', 'select_file', 'Sarudza Faira', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22884', 'zw', 'upload_new', 'Isa Nyowani', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22885', 'zw', 'sort_by_newest', 'Ronga newest', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22886', 'zw', 'sort_by_oldest', 'Sort by older', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22887', 'zw', 'sort_by_smallest', 'Ronga nediki', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22888', 'zw', 'sort_by_largest', 'Ronga nehukuru', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22889', 'zw', 'selected_only', 'Selected Only', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22890', 'zw', 'no_files_found', 'Hapana mafaira awanikwa', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22891', 'zw', '0_file_selected', '0 Faira rakasarudzwa', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22892', 'zw', 'clear', 'Zvakajeka', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22893', 'zw', 'prev', 'Prev', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22894', 'zw', 'next', 'Inotevera', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22895', 'zw', 'add_files', 'Wedzera Mafaira', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22896', 'zw', 'method_has_been_inserted_successfully', 'Maitiro akaiswa zvinobudirira', '2021-02-09 14:04:47', '2021-09-20 13:00:16'),
('22897', 'zw', 'order_date', 'Order Zuva', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22898', 'zw', 'bill_to', 'Bhiri ku', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22899', 'zw', 'sub_total', 'Sub Yese', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22900', 'zw', 'total_tax', 'Yese Mutero', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22901', 'zw', 'grand_total', 'Yese Yakakura', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22902', 'zw', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Yako odha yakaiswa zvinobudirira. Ndokumbira utumire ruzivo rwekubhadhara kubva munhoroondo yekutenga', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22903', 'zw', 'thank_you_for_your_order', 'Ndatenda Nekuda Kwako!', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22904', 'zw', 'order_code', 'Order Code:', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22905', 'zw', 'a_copy_or_your_order_summary_has_been_sent_to', 'Kopi kana yako odzo pfupiso yatumirwa', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22906', 'zw', 'make_payment', 'Ita Kubhadhara', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22907', 'zw', 'payment_screenshot', 'Kubhadhara skrini', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22908', 'zw', 'paypal_credential', 'Paypal Kuzivikanwa', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22909', 'zw', 'paypal_client_id', 'Paypal Mutengi ID', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22910', 'zw', 'paypal_client_secret', 'Chakavanzika chePaypal Client', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22911', 'zw', 'paypal_sandbox_mode', 'Paypal Sandbox Mamiriro', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22912', 'zw', 'sslcommerz_credential', 'Sslcommerz Kuzivikanwa', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22913', 'zw', 'sslcz_store_id', 'Sslcz Chitoro Id', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22914', 'zw', 'sslcz_store_password', 'Sslcz chitoro password', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22915', 'zw', 'sslcommerz_sandbox_mode', 'Sslcommerz Sandbox Mamiriro', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22916', 'zw', 'stripe_credential', 'Stripe Credential', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22917', 'zw', 'stripe_key', 'STRIPE KEY', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22918', 'zw', 'stripe_secret', 'STRIPE CHAKAVANZIKA', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22919', 'zw', 'razorpay_credential', 'RazorPay Kuzivikanwa', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22920', 'zw', 'razor_key', 'RAZOR KEY', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22921', 'zw', 'razor_secret', 'RAZOR CHAKAVANZIKA', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22922', 'zw', 'instamojo_credential', 'Instamojo Credential', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22923', 'zw', 'api_key', 'API CHINOKOSHA', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22924', 'zw', 'im_api_key', 'IM API CHINOKOSHA', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22925', 'zw', 'auth_token', 'AUTH TOKEN', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22926', 'zw', 'im_auth_token', 'IM AUTH TOKEN', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22927', 'zw', 'instamojo_sandbox_mode', 'Instamojo Sandbox Mamiriro', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22928', 'zw', 'paystack_credential', 'PayStack Kwakavimbika', '2021-02-09 14:04:48', '2021-09-20 13:00:16'),
('22929', 'zw', 'public_key', 'CHINANGWA CHERuzhinji', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22930', 'zw', 'secret_key', 'CHAKAVANZIKA CHINOKOSHA', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22931', 'zw', 'merchant_email', 'EMERILANT EMAIL', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22932', 'zw', 'voguepay_credential', 'VoguePay Kuvimbika', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22933', 'zw', 'merchant_id', 'ID YOMUTENGESI', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22934', 'zw', 'sandbox_mode', 'Sandbox Mamiriro', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22935', 'zw', 'payhere_credential', 'Kubhadhara Credential', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22936', 'zw', 'payhere_merchant_id', 'PAYHERE MERCHANT ID', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22937', 'zw', 'payhere_secret', 'PAYHERE CHAKAVANZIKA', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22938', 'zw', 'payhere_currency', 'PAYHERE CURRENCY', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22939', 'zw', 'payhere_sandbox_mode', 'Payhere Sandbox Mamiriro', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22940', 'zw', 'ngenius_credential', 'Ngenius Kwakavimbika', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22941', 'zw', 'ngenius_outlet_id', 'NGENIUS OUTLET ID', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22942', 'zw', 'ngenius_api_key', 'NGENIUS API CHINOKOSHA', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22943', 'zw', 'ngenius_currency', 'NGENIUS CURRENCY', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22944', 'zw', 'mpesa_credential', 'Mpesa Kiredhiti', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22945', 'zw', 'mpesa_consumer_key', 'MPESA KUSVIRA ZVINOKOSHA', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22946', 'zw', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22947', 'zw', 'mpesa_consumer_secret', 'MPESA KUSVIRA KWAKAITIKA', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22948', 'zw', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22949', 'zw', 'mpesa_short_code', 'MPESA SHORT CODE', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22950', 'zw', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22951', 'zw', 'mpesa_sandbox_activation', 'MPESA SANDBOX KUSIMBISA', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22952', 'zw', 'flutterwave_credential', 'Flutterwave Kuzivikanwa', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22953', 'zw', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22954', 'zw', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22955', 'zw', 'rave_title', 'RAVE_TITLE', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22956', 'zw', 'stagin_activation', 'STAGIN KUSVIRA', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22957', 'zw', 'all_product', 'Zvese Chigadzirwa', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22958', 'zw', 'sort_by', 'Sort By', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22959', 'zw', 'rating_high__low', 'Kuyera (Kumusoro> Kuderera)', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22960', 'zw', 'rating_low__high', 'Kuyera (Kwakadzika> Kumusoro)', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22961', 'zw', 'num_of_sale_high__low', 'Num yekutengesa (Yakakwira> Yakadzika)', '2021-02-09 14:04:49', '2021-09-20 13:00:16'),
('22962', 'zw', 'num_of_sale_low__high', 'Num yekutengesa (Yakaderera> Yakakwira)', '2021-02-09 14:04:50', '2021-09-20 13:00:16'),
('22963', 'zw', 'base_price_high__low', 'Base Mutengo (Kumusoro> Kuderera)', '2021-02-09 14:04:50', '2021-09-20 13:00:16'),
('22964', 'zw', 'base_price_low__high', 'Base Mutengo (Yakadzika> Yakakwira)', '2021-02-09 14:04:50', '2021-09-20 13:00:16'),
('22965', 'zw', 'type__enter', 'Tora & Pinda', '2021-02-09 14:04:50', '2021-09-20 13:00:16'),
('22966', 'zw', 'added_by', 'Yakawedzerwa Na', '2021-02-09 14:04:50', '2021-09-20 13:00:16'),
('22967', 'zw', 'num_of_sale', 'Num yekutengesa', '2021-02-09 14:04:50', '2021-09-20 13:00:16'),
('22968', 'zw', 'total_stock', 'Yese Stock', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22969', 'zw', 'todays_deal', 'Todays Deal', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22970', 'zw', 'rating', 'Kuyera', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22971', 'zw', 'times', 'nguva', '2021-02-09 14:04:50', '2021-02-09 14:04:50'),
('22972', 'zw', 'add_nerw_product', 'Wedzera Nerw Chigadzirwa', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22973', 'zw', 'product_information', 'Chigadzirwa Ruzivo', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22974', 'zw', 'unit', 'Chikwata', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22975', 'zw', 'unit_eg_kg_pc_etc', 'Chidimbu (semuenzaniso KG, PC nezvimwewo)', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22976', 'zw', 'minimum_qty', 'Minimum Qty', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22977', 'zw', 'tags', 'Matagi', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22978', 'zw', 'type_and_hit_enter_to_add_a_tag', 'Nyora uye rova ​​kupinda kuti uwedzere tag', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22979', 'zw', 'barcode', 'Barcode', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22980', 'zw', 'refundable', 'Dzosera mari', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22981', 'zw', 'product_images', 'Chigadzirwa Mifananidzo', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22982', 'zw', 'gallery_images', 'Garari Mifananidzo', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22983', 'zw', 'todays_deal_updated_successfully', 'Todays Deal yakagadziridzwa zvinobudirira', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22984', 'zw', 'published_products_updated_successfully', 'Yakabudiswa zvigadzirwa zvakagadziriswa zvinobudirira', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22985', 'zw', 'thumbnail_image', 'Thumbnail Mufananidzo', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22986', 'zw', 'featured_products_updated_successfully', 'Zvinowanikwa zvigadzirwa zvakagadziriswa zvinobudirira', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22987', 'zw', 'product_videos', 'Chigadzirwa Mavhidhiyo', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22988', 'zw', 'video_provider', 'Vhidhiyo Provider', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22989', 'zw', 'youtube', 'Youtube', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22990', 'zw', 'dailymotion', 'Sravana Sameeralu Serial 4th Dailymotion', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22991', 'zw', 'vimeo', 'Vimeo', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22992', 'zw', 'video_link', 'Vhidhiyo Batanidza', '2021-02-09 14:04:50', '2021-09-20 13:00:17'),
('22993', 'zw', 'product_variation', 'Chigadzirwa Chinosiyana', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('22994', 'zw', 'colors', 'Mavara', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('22995', 'zw', 'attributes', 'Hunhu', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('22996', 'zw', 'choose_attributes', 'Sarudza Hunhu', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('22997', 'zw', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Sarudza hunhu hweichi chigadzirwa uye wozopinza hunhu hwehunhu hwese', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('22998', 'zw', 'product_price__stock', 'Mutengo wechigadzirwa + stock', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('22999', 'zw', 'unit_price', 'Mutengo wechikamu', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23000', 'zw', 'purchase_price', 'Mutengo wekutenga', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23001', 'zw', 'flat', 'Flat', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23002', 'zw', 'percent', 'Percent', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23003', 'zw', 'discount', 'Discount', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23004', 'zw', 'product_description', 'Chigadzirwa Chigadzirwa', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23005', 'zw', 'product_shipping_cost', 'Chigadzirwa Kutumira Mutengo', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23006', 'zw', 'free_shipping', 'Kutakurirwa mahara', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23007', 'zw', 'flat_rate', 'Flat Rate', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23008', 'zw', 'shipping_cost', 'Mari yekutumidzira', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23009', 'zw', 'pdf_specification', 'Rondedzero yePDF', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23010', 'zw', 'seo_meta_tags', 'SEO Meta Maki', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23011', 'zw', 'meta_title', 'Meta Musoro', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23012', 'zw', 'meta_image', 'Meta Mufananidzo', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23013', 'zw', 'choice_title', 'Sarudzo Musoro', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23014', 'zw', 'enter_choice_values', 'Pinda sarudzo dzesarudzo', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23015', 'zw', 'all_categories', 'Mapato ese', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23016', 'zw', 'add_new_category', 'Wedzera Chitsva chikamu', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23017', 'zw', 'type_name__enter', 'Tora zita & Pinda', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23018', 'zw', 'banner', 'Mureza', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23019', 'zw', 'commission', 'Commission', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23020', 'zw', 'icon', 'icon', '2021-02-09 14:04:51', '2021-02-09 14:04:51'),
('23021', 'zw', 'featured_categories_updated_successfully', 'Featured zvikamu zvakagadziridzwa zvinobudirira', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23022', 'zw', 'hot', 'Hot', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23023', 'zw', 'filter_by_payment_status', 'Sefa neMamiriro Ekubhadhara', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23024', 'zw', 'unpaid', 'Kusabhadharwa', '2021-02-09 14:04:51', '2021-09-20 13:00:17'),
('23025', 'zw', 'filter_by_deliver_status', 'Sefa neDeliver Chinzvimbo', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23026', 'zw', 'pending', 'Chakamirira', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23027', 'zw', 'type_order_code__hit_enter', 'Type Order kodhi & rova ​​Enter', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23028', 'zw', 'num_of_products', 'Num. of Zvigadzirwa', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23029', 'zw', 'walk_in_customer', 'Famba Mune Mutengi', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23030', 'zw', 'qty', 'QTY', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23031', 'zw', 'without_shipping_charge', 'Pasina Kutumira Charge', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23032', 'zw', 'with_shipping_charge', 'Nekutumira Charge', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23033', 'zw', 'pay_with_cash', 'Bhadhara Nemari', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23034', 'zw', 'shipping_address', 'Kutumira Kero', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23035', 'zw', 'close', 'Vhara', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23036', 'zw', 'select_country', 'Sarudza nyika', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23037', 'zw', 'order_confirmation', 'Order Kusimbisa', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23038', 'zw', 'are_you_sure_to_confirm_this_order', 'Une chokwadi chekusimbisa odha iyi', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23039', 'zw', 'comfirm_order', 'Simbisa Kurongeka', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23040', 'zw', 'personal_info', 'Ruzivo rweMunhu', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23041', 'zw', 'repeat_password', 'Dzokorora Chinyorwa', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23042', 'zw', 'shop_name', 'Zita Rezvitoro', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23043', 'zw', 'register_your_shop', 'Bhalisa Shop yako', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23044', 'zw', 'affiliate_informations', 'Yakabatana Informations', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23045', 'zw', 'affiliate', 'Kushamwaridzana', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23046', 'zw', 'user_info', 'Mushandisi Ruzivo', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23047', 'zw', 'installed_addon', 'Yakaiswa Addon', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23048', 'zw', 'available_addon', 'Inowanikwa Addon', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23049', 'zw', 'install_new_addon', 'Isa Nyowani Addon', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23050', 'zw', 'version', 'Shanduro', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23051', 'zw', 'activated', 'Yakagadzirwa', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23052', 'zw', 'deactivated', 'Yakagadziriswa', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23053', 'zw', 'activate_otp', 'Shandisa OTP', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23054', 'zw', 'otp_will_be_used_for', 'OTP ichashandiswa', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23055', 'zw', 'settings_updated_successfully', 'Zvirongwa zvakagadziridzwa zvinobudirira', '2021-02-09 14:04:52', '2021-09-20 13:00:17'),
('23056', 'zw', 'product_owner', 'Chigadzirwa Muridzi', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23057', 'zw', 'point', 'Nongedzo', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23058', 'zw', 'set_point_for_product_within_a_range', 'Gadza Pfungwa yechigadzirwa Mukati meRange', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23059', 'zw', 'set_point_for_multiple_products', 'Gadza Poindi yezvigadzirwa zvakawanda', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23060', 'zw', 'min_price', 'Min Mutengo', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23061', 'zw', 'max_price', 'Max Mutengo', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23062', 'zw', 'set_point_for_all_products', 'Gadza Pfungwa yezvose Zvigadzirwa', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23063', 'zw', 'set_point_for_', 'Gadza Pfungwa Ye', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23064', 'zw', 'convert_status', 'Chinja Chinzvimbo', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23065', 'zw', 'earned_at', 'Akawana At', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23066', 'zw', 'seller_based_selling_report', 'Mutengesi Akavakirwa Kutengesa Chirevo', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23067', 'zw', 'sort_by_verificarion_status', 'Sort by verificarion chinzvimbo', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23068', 'zw', 'approved', 'Yakatenderwa', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23069', 'zw', 'non_approved', 'Kwete Kubvumidzwa', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23070', 'zw', 'filter', 'Sefa', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23071', 'zw', 'seller_name', 'Mutengesi Zita', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23072', 'zw', 'number_of_product_sale', 'Huwandu hweChigadzirwa Kutengesa', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23073', 'zw', 'order_amount', 'Order Amount', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23074', 'zw', 'facebook_chat_setting', 'Facebook Chat Kuronga', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23075', 'zw', 'facebook_page_id', 'Facebook Peji ID', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23076', 'zw', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Ndokumbirawo uchenjere paunenge uchigadzira Facebook chat. Zvekugadzirisa zvisirizvo haugone kuwana messenger icon pane yako mushandisi-yekupedzisira saiti.', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23077', 'zw', 'login_into_your_facebook_page', 'Pinda mune yako facebook peji', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23078', 'zw', 'find_the_about_option_of_your_facebook_page', 'Tsvaga iyo About sarudzo yeako facebook peji', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23079', 'zw', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'Pazasi chaipo, unogona kuwana iyo \"Facebook Peji ID \\\"', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23080', 'zw', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Enda kuZvirongwa zvepeji rako uye uwane sarudzo ye \\ \"Advance Messaging \\\"', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23081', 'zw', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Bhura pasi pasi iro peji uye iwe unowana \\ \"chena yakanyorwa dura \\\"', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23082', 'zw', 'set_your_website_domain_name', 'Gadza rako rezita rezita rewebhu', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23083', 'zw', 'google_recaptcha_setting', 'Google reCAPTCHA Kumisikidza', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23084', 'zw', 'site_key', 'Saiti KEY', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23085', 'zw', 'select_shipping_method', 'Sarudza Kutumira Nzira', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23086', 'zw', 'product_wise_shipping_cost', 'Chigadzirwa Kuchenjera Kutumira Mutengo', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23087', 'zw', 'flat_rate_shipping_cost', 'Flat Rate Kutumira Mutengo', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23088', 'zw', 'seller_wise_flat_shipping_cost', 'Mutengesi Akangwara Flat Kutumira Mari', '2021-02-09 14:04:53', '2021-09-20 13:00:17'),
('23089', 'zw', 'note', 'Tarira', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23090', 'zw', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Chigadzirwa Kuchenjera Kutumira Mutengo kuverenga: Kutumira mutengo kuverenga nekuwedzera kwega kwega chigadzirwa chigadzirwa mutengo', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23091', 'zw', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Flat Rate Kutumira Mutengo kuverenga: Mangani zvigadzirwa zvigadzirwa mutengi, hazvina basa. Kutumira mutengo kunogadziriswa', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23092', 'zw', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Mutengesi Akangwara Flat Kutumira Mari yekuverenga: Yakagadziriswa mwero kune mumwe mutengesi. Kana mutengi achitenga 2 chigadzirwa kubva kune maviri mutengesi kutumira mutengo kunoverengerwa nekuwedzera kweumwe neumwe mutengesi flat flat shipping mutengo', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23093', 'zw', 'flat_rate_cost', 'Flat Rate Mutengo', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23094', 'zw', 'shipping_cost_for_admin_products', 'Kutumira Mutengo weAdmin Zvigadzirwa', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23095', 'zw', 'countries', 'Nyika', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23096', 'zw', 'showhide', 'Ratidza / Viga', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23097', 'zw', 'country_status_updated_successfully', 'Chimiro chenyika chakavandudzwa zvinobudirira', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23098', 'zw', 'all_subcategories', 'All Subcategories', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23099', 'zw', 'add_new_subcategory', 'Wedzera Mutsva Wechikamu', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23100', 'zw', 'subcategories', 'Sub-Zvikamu', '2021-02-09 14:04:54', '2021-09-20 13:00:17'),
('23101', 'zw', 'sub_category_information', 'Chikamu Chikamu Ruzivo', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23102', 'zw', 'slug', 'Slug', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23103', 'zw', 'all_sub_subcategories', 'All Sub Subcategories', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23104', 'zw', 'add_new_sub_subcategory', 'Wedzera Mutsva Subcategory', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23105', 'zw', 'subsubcategories', 'Sub-Sub-zvikamu', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23106', 'zw', 'make_this_default', 'Ita Izvi Zvakasarudzika', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23107', 'zw', 'shops', 'Zvitoro', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23108', 'zw', 'women_clothing__fashion', 'Vakadzi Mapfekero & Fashoni', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23109', 'zw', 'cellphones__tabs', 'Nharembozha & Tabhu', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23110', 'zw', 'welcome_to', 'Welcome to', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23111', 'zw', 'create_a_new_account', 'Gadzira Akaundi Nyowani', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23112', 'zw', 'full_name', 'Zita rizere', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23113', 'zw', 'password', 'pasiwedhi', '2021-02-09 14:06:21', '2021-02-09 14:06:21'),
('23114', 'zw', 'confrim_password', 'Confrim Password', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23115', 'zw', 'i_agree_with_the', 'Ini ndinobvumirana neiyo', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23116', 'zw', 'terms_and_conditions', 'Mitemo nemamiriro', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23117', 'zw', 'register', 'Bhalisa', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23118', 'zw', 'already_have_an_account', 'Watova neakaundi', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23119', 'zw', 'sign_up_with', 'Sign Up pamwe', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23120', 'zw', 'i_agree_with_the_terms_and_conditions', 'Ini ndinobvumirana neMitemo neMamiriro', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23121', 'zw', 'all_role', 'Basa Rese', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23122', 'zw', 'add_new_role', 'Wedzera Rutsva Basa', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23123', 'zw', 'roles', 'Mabasa', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23124', 'zw', 'add_new_staffs', 'Wedzera Vashandi Vatsva', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23125', 'zw', 'role', 'Basa', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23126', 'zw', 'frontend_website_name', 'Mberi Webhusaiti Zita', '2021-02-09 14:06:21', '2021-09-20 13:00:17'),
('23127', 'zw', 'website_name', 'Webhusaiti Zita', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23128', 'zw', 'site_motto', 'Saiti Motto', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23129', 'zw', 'best_ecommerce_website', 'Yakanakisa eCommerce Webhusaiti', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23130', 'zw', 'site_icon', 'Saiti Icon', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23131', 'zw', 'website_favicon_32x32_png', 'Webhusaiti favicon. 32x32 .png', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23132', 'zw', 'website_base_color', 'Webhusaiti Base Ruvara', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23133', 'zw', 'hex_color_code', 'Hex Ruvara Kodhi', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23134', 'zw', 'website_base_hover_color', 'Webhusaiti Base Hover Ruvara', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23135', 'zw', 'update', 'Kwidziridza', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23136', 'zw', 'global_seo', 'Global Seo', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23137', 'zw', 'meta_description', 'Meta tsananguro', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23138', 'zw', 'keywords', 'Mazwi akakosha', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23139', 'zw', 'separate_with_coma', 'Paradzaniswa nekoma', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23140', 'zw', 'website_pages', 'Mapeji eWebhusaiti', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23141', 'zw', 'all_pages', 'Mapeji ese', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23142', 'zw', 'add_new_page', 'Wedzera Nyowani Peji', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23143', 'zw', 'url', 'URL', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23144', 'zw', 'actions', 'Zviito', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23145', 'zw', 'edit_page_information', 'Hora Peji Ruzivo', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23146', 'zw', 'page_content', 'Peji Zvemukati', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23147', 'zw', 'title', 'Musoro', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23148', 'zw', 'link', 'Batanidzo', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23149', 'zw', 'use_character_number_hypen_only', 'Shandisa hunhu, nhamba, hypen chete', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23150', 'zw', 'add_content', 'Wedzera zvirimo', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23151', 'zw', 'seo_fields', 'Seo Minda', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23152', 'zw', 'update_page', 'Gadziridza Peji', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23153', 'zw', 'default_language', 'Mutauro wakasarudzika', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23154', 'zw', 'add_new_language', 'Wedzera Mutauro Mutsva', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23155', 'zw', 'rtl', 'RTL', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23156', 'zw', 'translation', 'Dudziro', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23157', 'zw', 'language_information', 'Ruzivo rweMutauro', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23158', 'zw', 'save_page', 'Sevha Peji', '2021-02-09 14:06:22', '2021-09-20 13:00:17'),
('23159', 'zw', 'home_page_settings', 'Peji Peji Zvirongwa', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23160', 'zw', 'home_slider', 'Home Slider', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23161', 'zw', 'photos__links', 'Mifananidzo & Zvinongedzo', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23162', 'zw', 'add_new', 'Wedzera Zvitsva', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23163', 'zw', 'home_categories', 'Home Zvikamu', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23164', 'zw', 'home_banner_1_max_3', 'Imba Banner 1 (Max 3)', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23165', 'zw', 'banner__links', 'Banner & Links', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23166', 'zw', 'home_banner_2_max_3', 'Imba Banner 2 (Max 3)', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23167', 'zw', 'top_10', 'Pamusoro gumi', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23168', 'zw', 'top_categories_max_10', 'Wepamusoro Zvikamu (Max 10)', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23169', 'zw', 'top_brands_max_10', 'Wepamusoro Zvikwata (Max 10)', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23170', 'zw', 'system_name', 'System Zita', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23171', 'zw', 'system_logo__white', 'System Logo - Muchena', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23172', 'zw', 'choose_files', 'Sarudza Mafaira', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23173', 'zw', 'will_be_used_in_admin_panel_side_menu', 'Ichashandiswa mune admin paneji padivi menyu', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23174', 'zw', 'system_logo__black', 'System Logo - Nhema', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23175', 'zw', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Ichashandiswa mune admin pani yepamusoro tambo mune nhare + Admin login peji', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23176', 'zw', 'system_timezone', 'Sisitimu Nguva', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23177', 'zw', 'admin_login_page_background', 'Admin login peji kumashure', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23178', 'zw', 'website_header', 'Webhusaiti Musoro', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23179', 'zw', 'header_setting', 'Kugadzika Kwemusoro', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23180', 'zw', 'header_logo', 'Musoro weLogo', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23181', 'zw', 'show_language_switcher', 'Ratidza Shanduro yeMutauro?', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23182', 'zw', 'show_currency_switcher', 'Ratidza Shanduko Yemari?', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23183', 'zw', 'enable_stikcy_header', 'Bvumira stikcy musoro?', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23184', 'zw', 'website_footer', 'Webhusaiti tsoka', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23185', 'zw', 'footer_widget', 'Footer Widget', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23186', 'zw', 'about_widget', 'Nezve Widget', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23187', 'zw', 'footer_logo', 'Footer Logo', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23188', 'zw', 'about_description', 'Nezve tsananguro', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23189', 'zw', 'contact_info_widget', 'Bata Info Widget', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23190', 'zw', 'footer_contact_address', 'Kero yepasi yekubata', '2021-02-09 14:06:23', '2021-09-20 13:00:17'),
('23191', 'zw', 'footer_contact_phone', 'Yepazasi yekubata foni', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23192', 'zw', 'footer_contact_email', 'Yepasi yekubatana email', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23193', 'zw', 'link_widget_one', 'Batanidza Widget Imwe', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23194', 'zw', 'links', 'Zvinongedzo', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23195', 'zw', 'footer_bottom', 'Footer Pazasi', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23196', 'zw', 'copyright_widget_', 'Copyright Widget', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23197', 'zw', 'copyright_text', 'Copyright Rugwaro', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23198', 'zw', 'social_link_widget_', 'Yemagariro Link Widget', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23199', 'zw', 'show_social_links', 'Ratidza Social Links?', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23200', 'zw', 'social_links', 'Zvekudyidzana', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23201', 'zw', 'payment_methods_widget_', 'Maitiro Ekubhadhara Widget', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23202', 'zw', 'rtl_status_updated_successfully', 'Chimiro cheRTL chakagadziriswa zvinobudirira', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23203', 'zw', 'language_changed_to_', 'Mutauro wakashandurwa kuva', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23204', 'zw', 'inhouse_product_sale_report', 'Inhouse Chigadzirwa chekutengesa mushumo', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23205', 'zw', 'sort_by_category', 'Ronga neChikamu', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23206', 'zw', 'product_wise_stock_report', 'Chigadzirwa chakangwara stock ripoti', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23207', 'zw', 'currency_changed_to_', 'Mari yakashandurwa kuita', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23208', 'zw', 'avatar', 'Avatar', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23209', 'zw', 'copy', 'Kopa', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23210', 'zw', 'variant', 'Variant', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23211', 'zw', 'variant_price', 'Mutengo Wakasiyana', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23212', 'zw', 'sku', 'SKU', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23213', 'zw', 'key', 'Kiyi', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23214', 'zw', 'value', 'Kukosha', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23215', 'zw', 'copy_translations', 'Kopa Shanduro', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23216', 'zw', 'all_pickup_points', 'Zvese zvekutora-points', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23217', 'zw', 'add_new_pickup_point', 'Wedzera Nyowani Yekutora-Nyowani', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23218', 'zw', 'manager', 'Manager', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23219', 'zw', 'location', 'Nzvimbo', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23220', 'zw', 'pickup_station_contact', 'Pakatora Chiteshi Kubata', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23221', 'zw', 'open', 'Vhura', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23222', 'zw', 'pos_activation_for_seller', 'POS Kugonesa kweMutengesi', '2021-02-09 14:06:24', '2021-09-20 13:00:17'),
('23223', 'zw', 'order_completed_successfully', 'Order Yakapedzwa Zvakabudirira.', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23224', 'zw', 'text_input', 'Chinyorwa Kuisa', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23225', 'zw', 'select', 'Sarudza', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23226', 'zw', 'multiple_select', 'Akawanda Sarudza', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23227', 'zw', 'radio', 'Radio', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23228', 'zw', 'file', 'Faira', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23229', 'zw', 'email_address', 'Chikero chetsamba yemumhepo', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23230', 'zw', 'verification_info', 'Verification Ruzivo', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23231', 'zw', 'approval', 'Kubvumidzwa', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23232', 'zw', 'due_amount', 'Yakakodzera Mari', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23233', 'zw', 'show', 'Ratidza', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23234', 'zw', 'pay_now', 'Bhadhara izvozvi', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23235', 'zw', 'affiliate_user_verification', 'Sanganisa Mushandisi Verification', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23236', 'zw', 'reject', 'Ramba', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23237', 'zw', 'accept', 'Gamuchira', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23238', 'zw', 'beauty_health__hair', 'Runako, Hutano & Bvudzi', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23239', 'zw', 'comparison', 'Kuenzanisa', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23240', 'zw', 'reset_compare_list', 'Dzorerazve Enzanisa Chinyorwa', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23241', 'zw', 'your_comparison_list_is_empty', 'Chinyorwa chako chekuenzanisa hachina chinhu', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23242', 'zw', 'convert_point_to_wallet', 'Chinja Point Kuti Chikwama', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23243', 'zw', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Ongorora: Unofanirwa kumisikidza chikwama sarudzo kutanga usati washandisa kirabhu poindi addon.', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23244', 'zw', 'create_an_account', 'Gadzira account.', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23245', 'zw', 'use_email_instead', 'Shandisa Email Panzvimbo', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23246', 'zw', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Nokusayina iwe unobvumirana nemitemo nemitemo yedu.', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23247', 'zw', 'create_account', 'Gadzira Akaundi', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23248', 'zw', 'or_join_with', 'Kana Join Na', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23249', 'zw', 'already_have_an_account', 'Watova neakaundi?', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23250', 'zw', 'log_in', 'Pinda', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23251', 'zw', 'computer__accessories', 'Computer & zvishongedzo', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23252', 'zw', 'products', 'Chigadzirwa (s)', '2021-02-09 14:06:25', '2021-09-20 13:00:17'),
('23253', 'zw', 'in_your_cart', 'mungoro yako', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23254', 'zw', 'in_your_wishlist', 'mune yako Wishlist', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23255', 'zw', 'you_ordered', 'wakaraira', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23256', 'zw', 'default_shipping_address', 'Default Kutumira Kero', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23257', 'zw', 'sports__outdoor', 'Mitambo & kunze', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23258', 'zw', 'copied', 'Yakateedzerwa', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23259', 'zw', 'copy_the_promote_link', 'Kopa iyo Inosimudzira Yekubatanidza', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23260', 'zw', 'write_a_review', 'Nyora wongororo', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23261', 'zw', 'your_name', 'Zita renyu', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23262', 'zw', 'comment', 'Komenda', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23263', 'zw', 'your_review', 'Wako wongororo', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23264', 'zw', 'submit_review', 'Endesa ongororo', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23265', 'zw', 'claire_willis', 'Claire Willis', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23266', 'zw', 'germaine_greene', 'Germaine Greene', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23267', 'zw', 'product_file', 'Chigadzirwa Faira', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23268', 'zw', 'choose_file', 'Sarudza faira', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23269', 'zw', 'type_to_add_a_tag', 'Nyora kuwedzera tag', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23270', 'zw', 'images', 'Mifananidzo', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23271', 'zw', 'main_images', 'Main Mifananidzo', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23272', 'zw', 'meta_tags', 'Meta Tags', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23273', 'zw', 'digital_product_has_been_inserted_successfully', 'Dhijitari Chigadzirwa chakaiswa zvinobudirira', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23274', 'zw', 'edit_digital_product', 'Chinja Dhijitari Chigadzirwa', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23275', 'zw', 'select_an_option', 'Sarudza sarudzo', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23276', 'zw', 'tax', 'mutero', '2021-02-09 14:06:26', '2021-02-09 14:06:26'),
('23277', 'zw', 'any_question_about_this_product', 'Chero mubvunzo nezve ichi chigadzirwa?', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23278', 'zw', 'sign_in', 'Nyorera mu', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23279', 'zw', 'login_with_google', 'Pinda neGoogle', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23280', 'zw', 'login_with_facebook', 'Pinda ne Facebook', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23281', 'zw', 'login_with_twitter', 'Pinda ne Twitter', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23282', 'zw', 'click_to_show_phone_number', 'Dzvanya kuratidza nhamba yefoni', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23283', 'zw', 'other_ads_of', 'Mamwe Ads e', '2021-02-09 14:06:26', '2021-09-20 13:00:17'),
('23284', 'zw', 'store_home', 'Chitoro Imba', '2021-02-09 14:06:27', '2021-09-20 13:00:17'),
('23285', 'zw', 'top_selling', 'Kutengesa Kwakakwirira', '2021-02-09 14:06:27', '2021-09-20 13:00:17'),
('23286', 'zw', 'shop_settings', 'Shop Settings', '2021-02-09 14:06:27', '2021-09-20 13:00:17'),
('23287', 'zw', 'visit_shop', 'Shanyira Shop', '2021-02-09 14:06:27', '2021-09-20 13:00:17'),
('23288', 'zw', 'pickup_points', 'Pickup Points', '2021-02-09 14:06:27', '2021-09-20 13:00:17'),
('23289', 'zw', 'select_pickup_point', 'Sarudza Pickup Point', '2021-02-09 14:06:27', '2021-09-20 13:00:17'),
('23290', 'zw', 'slider_settings', 'Slider Zvirongwa', '2021-02-09 14:06:27', '2021-09-20 13:00:17'),
('23291', 'zw', 'social_media_link', 'Zvemagariro Midhiya Link', '2021-02-09 14:06:27', '2021-09-20 13:00:17'),
('23292', 'zw', 'facebook', 'Facebook', '2021-02-09 14:06:27', '2021-09-20 13:00:17'),
('23293', 'zw', 'twitter', 'Twitter', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23294', 'zw', 'google', 'Google', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23295', 'zw', 'new_arrival_products', 'Zvitsva Zvasvika Zvigadzirwa', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23296', 'zw', 'check_your_order_status', 'Tarisa Yako Yemaitiro Mamiriro', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23297', 'zw', 'shipping_method', 'Kutumira nzira', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23298', 'zw', 'shipped_by', 'Kutumirwa Na', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23299', 'zw', 'image', 'Mufananidzo', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23300', 'zw', 'sub_sub_category', 'Sub Sub Chikamu', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23301', 'zw', 'inhouse_products', 'Inhouse Zvigadzirwa', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23302', 'zw', 'forgot_password', 'Forgot Password?', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23303', 'zw', 'enter_your_email_address_to_recover_your_password', 'Isa yako email kero kuti uwane password yako.', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23304', 'zw', 'email_or_phone', 'Email kana Runhare', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23305', 'zw', 'send_password_reset_link', 'Tumira Pasiwedhi Reset Link', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23306', 'zw', 'back_to_login', 'Kudzokera Login', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23307', 'zw', 'index', 'index', '2021-02-09 14:06:27', '2021-02-09 14:06:27'),
('23308', 'zw', 'download_your_product', 'Dhawunirodha Chigadzirwa chako', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23309', 'zw', 'option', 'Sarudzo', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23310', 'zw', 'applied_refund_request', 'Zvakakodzera Dzosera Chikumbiro', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23311', 'zw', 'item_has_been_renoved_from_wishlist', 'Chinhu chakatorerwazve kubva kuhuchenjeri', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23312', 'zw', 'bulk_products_upload', 'Zvakawanda Zvigadzirwa Isa', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23313', 'zw', 'upload_csv', 'Isa CSV', '2021-02-09 14:06:27', '2021-09-20 13:00:18'),
('23314', 'zw', 'create_a_ticket', 'Gadzira Tiketi', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23315', 'zw', 'tickets', 'Mitikiti', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23316', 'zw', 'ticket_id', 'Tikiti ID', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23317', 'zw', 'sending_date', 'Kutumira Zuva', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23318', 'zw', 'subject', 'Musoro', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23319', 'zw', 'view_details', 'View Details', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23320', 'zw', 'provide_a_detailed_description', 'Ipa tsananguro yakadzama', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23321', 'zw', 'type_your_reply', 'Nyora mhinduro yako', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23322', 'zw', 'send_ticket', 'Tumira Tiketi', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23323', 'zw', 'load_more', 'Isa zvimwe', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23324', 'zw', 'jewelry__watches', 'Zvishongo nezvishongo', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23325', 'zw', 'filters', 'Mafirita', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23326', 'zw', 'contact_address', 'Kero yekubata', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23327', 'zw', 'contact_phone', 'Bata foni', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23328', 'zw', 'contact_email', 'Bata email', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23329', 'zw', 'filter_by', 'Sefa ne', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23330', 'zw', 'condition', 'Mamiriro', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23331', 'zw', 'all_type', 'Yese Rudzi', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23332', 'zw', 'pay_with_wallet', 'Bhadhara nechikwama', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23333', 'zw', 'select_variation', 'Sarudza musiyano', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23334', 'zw', 'no_product_added', 'Hapana Chigadzirwa Chakawedzerwa', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23335', 'zw', 'status_has_been_updated_successfully', 'Chimiro chakagadziridzwa zvinobudirira', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23336', 'zw', 'all_seller_packages', 'Zvese zveMutengesi Mapakeji', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23337', 'zw', 'add_new_package', 'Wedzera Nyowani Pasuru', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23338', 'zw', 'package_logo', 'Pasuru Logo', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23339', 'zw', 'days', 'mazuva', '2021-02-09 14:06:28', '2021-02-09 14:06:28'),
('23340', 'zw', 'create_new_seller_package', 'Gadzira Nyowani Mutengesi Package', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23341', 'zw', 'package_name', 'Pasuru Zita', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23342', 'zw', 'duration', 'Nguva', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23343', 'zw', 'validity_in_number_of_days', 'Ukoshi muhuwandu hwemazuva', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23344', 'zw', 'update_package_information', 'Gadziridza Ruzivo rwePakeji', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23345', 'zw', 'package_has_been_inserted_successfully', 'Pasuru yakaiswa zvinobudirira', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23346', 'zw', 'refund_request', 'Refund Chikumbiro', '2021-02-09 14:06:28', '2021-09-20 13:00:18'),
('23347', 'zw', 'reason', 'Chikonzero', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23348', 'zw', 'label', 'Chitaera', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23349', 'zw', 'select_label', 'Sarudza Chinyorwa', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23350', 'zw', 'multiple_select_label', 'Akawanda Sarudza Chitauro', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23351', 'zw', 'radio_label', 'Radio Label', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23352', 'zw', 'pickup_point_orders', 'Pickup Point Orders', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23353', 'zw', 'view', 'Ona', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23354', 'zw', 'order_', 'Order #', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23355', 'zw', 'order_status', 'Mamiriro Ekuraira', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23356', 'zw', 'total_amount', 'Yese huwandu', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23357', 'zw', 'total', 'CHETE', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23358', 'zw', 'delivery_status_has_been_updated', 'Nzvimbo yekuendesa yakagadziridzwa', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23359', 'zw', 'payment_status_has_been_updated', 'Mamiriro ekubhadhara akagadziridzwa', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23360', 'zw', 'invoice', 'INVOICE', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23361', 'zw', 'set_refund_time', 'Set Nguva Yekudzorera', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23362', 'zw', 'set_time_for_sending_refund_request', 'Gadza Nguva yekutumira Refund Chikumbiro', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23363', 'zw', 'set_refund_sticker', 'Gadza Refund Sticker', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23364', 'zw', 'sticker', 'Sticker', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23365', 'zw', 'refund_request_all', 'Refund Chikumbiro Zvese', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23366', 'zw', 'order_id', 'Order Id', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23367', 'zw', 'seller_approval', 'Mutengesi Kubvumidzwa', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23368', 'zw', 'admin_approval', 'Admin Kubvumidzwa', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23369', 'zw', 'refund_status', 'Kudzoreredza Mamiriro', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23370', 'zw', 'no_refund', 'Kwete Kudzorerwa', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23371', 'zw', 'status_updated_successfully', 'Mamiriro akagadziridzwa zvinobudirira', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23372', 'zw', 'user_search_report', 'Mushumo Wekutsvaga Mushandisi', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23373', 'zw', 'search_by', 'Tsvaga Na', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23374', 'zw', 'number_searches', 'Nhamba dzekutsvaga', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23375', 'zw', 'sender', 'Sender', '2021-02-09 14:06:29', '2021-09-20 13:00:18'),
('23376', 'zw', 'receiver', 'Mugashiri', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23377', 'zw', 'verification_form_updated_successfully', 'Yekuongorora fomu yakagadziridzwa zvinobudirira', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23378', 'zw', 'invalid_email_or_password', 'Email isiriyo kana password', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23379', 'zw', 'all_coupons', 'All Coupons', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23380', 'zw', 'add_new_coupon', 'Wedzera Mutsva Coupon', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23381', 'zw', 'coupon_information', 'Coupon Ruzivo', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23382', 'zw', 'start_date', 'Kutanga Zuva', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23383', 'zw', 'end_date', 'Zuva Rokuguma', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23384', 'zw', 'product_base', 'Chigadzirwa Base', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23385', 'zw', 'send_newsletter', 'Tumira Tsamba', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23386', 'zw', 'mobile_users', 'Vanoshandisa Nhare', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23387', 'zw', 'sms_subject', 'Nyaya yeSMS', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23388', 'zw', 'sms_content', 'SMS zvemukati', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23389', 'zw', 'all_flash_delas', 'Zvese Flash Delas', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23390', 'zw', 'create_new_flash_dela', 'Gadzira Nyowani Flash Dela', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23391', 'zw', 'page_link', 'Peji Batanidza', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23392', 'zw', 'flash_deal_information', 'Flash Deal Ruzivo', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23393', 'zw', 'background_color', 'Ruvara rwekumashure', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23394', 'zw', '0000ff', '# 0000ff', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23395', 'zw', 'text_color', 'Rugwaro Ruvara', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23396', 'zw', 'white', 'chena', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23397', 'zw', 'dark', 'Kusviba', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23398', 'zw', 'choose_products', 'Sarudza Zvigadzirwa', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23399', 'zw', 'discounts', 'Discounts', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23400', 'zw', 'discount_type', 'Rudzi rweDiscount', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23401', 'zw', 'twillo_credential', 'Twillo Kuzivikanwa', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23402', 'zw', 'twilio_sid', 'TWILIO SID', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23403', 'zw', 'twilio_auth_token', 'TWILIO AUTH TOKEN', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23404', 'zw', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 14:06:30', '2021-09-20 13:00:18'),
('23405', 'zw', 'valid_twillo_number', 'BHAIBHERI TWILLO NUMBER', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23406', 'zw', 'nexmo_credential', 'Nexmo Kuzivikanwa', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23407', 'zw', 'nexmo_key', 'NEXMO CHINOKOSHA', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23408', 'zw', 'nexmo_secret', 'NEXMO CHAKAVANZIKA', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23409', 'zw', 'ssl_wireless_credential', 'SSL Wireless Kiredhiti', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23410', 'zw', 'ssl_sms_api_token', 'SSL SMS API YAKADZIDZWA', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23411', 'zw', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23412', 'zw', 'ssl_sms_url', 'SSL SMS URL', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23413', 'zw', 'fast2sms_credential', 'Fast2SMS Kuzivikanwa', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23414', 'zw', 'auth_key', 'AUTH KEY', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23415', 'zw', 'route', 'ROUTE', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23416', 'zw', 'promotional_use', 'Kukwidziridzwa Kushandisa', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23417', 'zw', 'transactional_use', 'Kushandisa Kushandisa', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23418', 'zw', 'sender_id', 'SENDER ID', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23419', 'zw', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23420', 'zw', 'twillo_otp', 'Twillo OTP', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23421', 'zw', 'ssl_wireless_otp', 'SSL Wireless OTP', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23422', 'zw', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23423', 'zw', 'order_placement', 'Order Kuiswa', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23424', 'zw', 'delivery_status_changing_time', 'Dhirivhari Mamiriro Ekuchinja Nguva', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23425', 'zw', 'paid_status_changing_time', 'Mamiriro Ekubhadharwa Kuchinja Nguva', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23426', 'zw', 'send_bulk_sms', 'Tumira Bulk SMS', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23427', 'zw', 'all_subscribers', 'Vese Vanyoreri', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23428', 'zw', 'coupon_information_adding', 'Coupon Ruzivo Kuwedzera', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23429', 'zw', 'coupon_type', 'Coupon Rudzi', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23430', 'zw', 'for_products', 'Zvezvigadzirwa', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23431', 'zw', 'for_total_orders', 'Yese maOodha', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23432', 'zw', 'add_your_product_base_coupon', 'Wedzera Chako Chigadzirwa Base Coupon', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23433', 'zw', 'coupon_code', 'Kodhi yekodhi', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23434', 'zw', 'sub_category', 'Sub Chikamu', '2021-02-09 14:06:31', '2021-09-20 13:00:18'),
('23435', 'zw', 'add_more', 'Wedzera Zvimwe', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23436', 'zw', 'add_your_cart_base_coupon', 'Wedzera Yako yekutengera Base Coupon', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23437', 'zw', 'minimum_shopping', 'Minimum Shopping', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23438', 'zw', 'maximum_discount_amount', 'Kunonyanyisa Discount Amount', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23439', 'zw', 'coupon_information_update', 'Coupon Ruzivo Ruzivo', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23440', 'zw', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Ndokumbirawo Gadzirise SMTP Setting kuti ishandise ese email kutumira humhizha', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23441', 'zw', 'configure_now', 'Gadzira Izvozvi', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23442', 'zw', 'total_published_products', 'Yese yakaburitswa zvigadzirwa', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23443', 'zw', 'total_sellers_products', 'Yese vatengesi zvigadzirwa', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23444', 'zw', 'total_admin_products', 'Yese admin zvigadzirwa', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23445', 'zw', 'manage_products', 'Manage Zvigadzirwa', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23446', 'zw', 'total_product_category', 'Yese chigadzirwa chikamu', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23447', 'zw', 'create_category', 'Gadzira Chikamu', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23448', 'zw', 'total_product_sub_sub_category', 'Yese chigadzirwa sub chikamu', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23449', 'zw', 'create_sub_sub_category', 'Gadzira Sub Sub Chikamu', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23450', 'zw', 'total_product_sub_category', 'Yese chigadzirwa chigadzirwa chikamu', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23451', 'zw', 'create_sub_category', 'Gadzira Sub Chikamu', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23452', 'zw', 'total_product_brand', 'Yese chigadzirwa chigadzirwa', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23453', 'zw', 'create_brand', 'Gadzira Brand', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23454', 'zw', 'total_sellers', 'Vatengesi vese', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23455', 'zw', 'total_approved_sellers', 'Vese vatengesi vanobvumidzwa', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23456', 'zw', 'total_pending_sellers', 'Vese vakamirira vatengesi', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23457', 'zw', 'manage_sellers', 'Manage Sellers', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23458', 'zw', 'category_wise_product_sale', 'Chikamu chakangwara chigadzirwa kutengeswa', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23459', 'zw', 'sale', 'Kutengesa', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23460', 'zw', 'category_wise_product_stock', 'Chikamu chakangwara chigadzirwa stock', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23461', 'zw', 'category_name', 'Chikamu Zita', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23462', 'zw', 'stock', 'Stock', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23463', 'zw', 'frontend', 'Mberi', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23464', 'zw', 'home_page', 'Peji peji', '2021-02-09 14:06:32', '2021-09-20 13:00:18'),
('23465', 'zw', 'setting', 'kuseta', '2021-02-09 14:06:33', '2021-02-09 14:06:33'),
('23466', 'zw', 'policy_page', 'Peji yemutemo', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23467', 'zw', 'general', 'General', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23468', 'zw', 'click_here', 'Dzvanya Pano', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23469', 'zw', 'useful_link', 'Inobatsira chinongedzo', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23470', 'zw', 'activation', 'Kushanda', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23471', 'zw', 'smtp', 'SMTP', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23472', 'zw', 'payment_method', 'Nzira yekubhadhara', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23473', 'zw', 'social_media', 'Zvemagariro venhau', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23474', 'zw', 'business', 'Bhizinesi', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23475', 'zw', 'seller_verification', 'Kuongorora kweMutengesi', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23476', 'zw', 'form_setting', 'fomu yekumisikidza', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23477', 'zw', 'language', 'Mutauro', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23478', 'zw', 'dashboard', 'Dashboard', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23479', 'zw', 'pos_system', 'Pos System', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23480', 'zw', 'pos_manager', 'Pos Mutariri', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23481', 'zw', 'pos_configuration', 'POS Kugadziriswa', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23482', 'zw', 'products', 'Zvigadzirwa', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23483', 'zw', 'add_new_product', 'Wedzera Chitsva chigadzirwa', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23484', 'zw', 'all_products', 'Zvese Zvigadzirwa', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23485', 'zw', 'in_house_products', 'Mune Dzimba Zvigadzirwa', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23486', 'zw', 'seller_products', 'Mutengesi Zvigadzirwa', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23487', 'zw', 'digital_products', 'Dhijitari Zvigadzirwa', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23488', 'zw', 'bulk_import', 'Bulk Kunze', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23489', 'zw', 'bulk_export', 'Bulk Export', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23490', 'zw', 'category', 'Chikamu', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23491', 'zw', 'subcategory', 'Subcategory', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23492', 'zw', 'sub_subcategory', 'Sub Subcategory', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23493', 'zw', 'brand', 'Brand', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23494', 'zw', 'attribute', 'Ipa', '2021-02-09 14:06:33', '2021-09-20 13:00:18'),
('23495', 'zw', 'product_reviews', 'Chigadzirwa Ongororo', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23496', 'zw', 'sales', 'Kutengesa', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23497', 'zw', 'all_orders', 'Yese Mirairo', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23498', 'zw', 'inhouse_orders', 'Inhouse odha', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23499', 'zw', 'seller_orders', 'Mutengesi Orders', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23500', 'zw', 'pickup_point_order', 'Sarudza-Point Point Order', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23501', 'zw', 'refunds', 'Kudzorerwa', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23502', 'zw', 'refund_requests', 'Dzosera Zvikumbiro', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23503', 'zw', 'approved_refund', 'Yakagamuchirwa Kudzoserwa', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23504', 'zw', 'refund_configuration', 'Kudzorera Kugadziriswa', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23505', 'zw', 'customers', 'Vatengi', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23506', 'zw', 'customer_list', 'Rondedzero yevatengi', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23507', 'zw', 'classified_products', 'Classified Zvigadzirwa', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23508', 'zw', 'classified_packages', 'Classified Packages', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23509', 'zw', 'sellers', 'Vatengesi', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23510', 'zw', 'all_seller', 'Mutengesi Wese', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23511', 'zw', 'payouts', 'Kubhadhara', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23512', 'zw', 'payout_requests', 'Kubhadhara Kunokumbira', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23513', 'zw', 'seller_commission', 'Seller Commission', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23514', 'zw', 'seller_packages', 'Mutengesi Mapakeji', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23515', 'zw', 'seller_verification_form', 'Mutengesi Verification Fomu', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23516', 'zw', 'reports', 'Mishumo', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23517', 'zw', 'in_house_product_sale', 'MuImba Chigadzirwa Kutengesa', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23518', 'zw', 'seller_products_sale', 'Mutengesi Zvigadzirwa Kutengesa', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23519', 'zw', 'products_stock', 'Zvigadzirwa Stock', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23520', 'zw', 'products_wishlist', 'Zvigadzirwa Wishlist', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23521', 'zw', 'user_searches', 'Kutsvaga Kwevashandisi', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23522', 'zw', 'marketing', 'Kushambadzira', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23523', 'zw', 'flash_deals', 'Flash inobata', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23524', 'zw', 'newsletters', 'Tsamba dzemashoko', '2021-02-09 14:06:34', '2021-09-20 13:00:18'),
('23525', 'zw', 'bulk_sms', 'Bulk SMS', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23526', 'zw', 'subscribers', 'Vanyoreri', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23527', 'zw', 'coupon', 'Coupon', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23528', 'zw', 'support', 'Tsigiro', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23529', 'zw', 'ticket', 'Tikiti', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23530', 'zw', 'product_queries', 'Chigadzirwa Mibvunzo', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23531', 'zw', 'website_setup', 'Kugadziridza Webhusaiti', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23532', 'zw', 'header', 'Musoro', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23533', 'zw', 'footer', 'Footer', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23534', 'zw', 'pages', 'Mapeji', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23535', 'zw', 'appearance', 'Chitarisiko', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23536', 'zw', 'setup__configurations', 'Setup & Kugadziridza', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23537', 'zw', 'general_settings', 'General Zvirongwa', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23538', 'zw', 'features_activation', 'Inosanganisira activation', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23539', 'zw', 'languages', 'Mitauro', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23540', 'zw', 'currency', 'Mari', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23541', 'zw', 'pickup_point', 'Nzvimbo yekutora', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23542', 'zw', 'smtp_settings', 'SMTP Zvirongwa', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23543', 'zw', 'payment_methods', 'Maitiro Ekubhadhara', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23544', 'zw', 'file_system_configuration', 'Faira Sisitimu yekugadzirisa', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23545', 'zw', 'social_media_logins', 'Zvemagariro midhiya Logins', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23546', 'zw', 'analytics_tools', 'Zvishandiso zveAnalytics', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23547', 'zw', 'facebook_chat', 'Facebook Chat', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23548', 'zw', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23549', 'zw', 'shipping_configuration', 'Kutumira Kugadziridza', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23550', 'zw', 'shipping_countries', 'Kutumira Nyika', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23551', 'zw', 'affiliate_system', 'Yakabatana Sisitimu', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23552', 'zw', 'affiliate_registration_form', 'Inobatanidza Kunyoresa Fomu', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23553', 'zw', 'affiliate_configurations', 'Kushamwaridzana Kugadziriswa', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23554', 'zw', 'affiliate_users', 'Vabatsiri Vashandisi', '2021-02-09 14:06:35', '2021-09-20 13:00:18'),
('23555', 'zw', 'referral_users', 'Vanotumira Vanoshandisa', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23556', 'zw', 'affiliate_withdraw_requests', 'Yakabatana Regedza Zvikumbiro', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23557', 'zw', 'offline_payment_system', 'Offline Kubhadhara Sisitimu', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23558', 'zw', 'manual_payment_methods', 'Chinyorwa Kubhadhara Maitiro', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23559', 'zw', 'offline_wallet_recharge', 'Offline Wallet Recharge', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23560', 'zw', 'offline_customer_package_payments', 'Zvepamhepo Mutengi Package Kubhadhara', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23561', 'zw', 'offline_seller_package_payments', 'Offline Mutengesi Package Kubhadhara', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23562', 'zw', 'paytm_payment_gateway', 'Paytm Kubhadhara Gateway', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23563', 'zw', 'set_paytm_credentials', 'Gadza Paytm Kodhi', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23564', 'zw', 'club_point_system', 'Kirabhu Point Sisitimu', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23565', 'zw', 'club_point_configurations', 'Kirabhu Point Kugadziriswa', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23566', 'zw', 'set_product_point', 'Gadza Chigadzirwa Poindi', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23567', 'zw', 'user_points', 'Points Yevashandisi', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23568', 'zw', 'otp_system', 'OTP Sisitimu', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23569', 'zw', 'otp_configurations', 'OTP Kugadziriswa', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23570', 'zw', 'set_otp_credentials', 'Gadza OTP Kodhi', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23571', 'zw', 'staffs', 'Vashandi', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23572', 'zw', 'all_staffs', 'Yese tsvimbo', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23573', 'zw', 'staff_permissions', 'Mvumo yevashandi', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23574', 'zw', 'addon_manager', 'Addon Maneja', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23575', 'zw', 'browse_website', 'Bhurawuza Webhusaiti', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23576', 'zw', 'pos', 'Pos', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23577', 'zw', 'notifications', 'Notifications', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23578', 'zw', 'new_orders', 'mirairo mitsva', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23579', 'zw', 'userimage', 'mushandisi-mufananidzo', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23580', 'zw', 'profile', 'Nhoroondo', '2021-02-09 14:06:36', '2021-09-20 13:00:18'),
('23581', 'zw', 'logout', 'Kubuda', '2021-02-09 14:07:22', '2021-09-20 13:00:18'),
('23582', 'zw', 'page_not_found', 'Peji Haina Kuwanikwa!', '2021-02-09 14:07:23', '2021-09-20 13:00:18'),
('23583', 'zw', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'Peji rauri kutsvaga harina kuwanikwa pane yedu server.', '2021-02-09 14:07:23', '2021-09-20 13:00:18'),
('23584', 'zw', 'registration', 'Kunyoresa', '2021-02-09 14:07:23', '2021-09-20 13:00:18'),
('23585', 'zw', 'i_am_shopping_for', 'Ndiri kutsvaga ...', '2021-02-09 14:07:23', '2021-09-20 13:00:18'),
('23586', 'zw', 'compare', 'Enzanisa', '2021-02-09 14:07:23', '2021-09-20 13:00:18'),
('23587', 'zw', 'wishlist', 'Wishlist', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23588', 'zw', 'cart', 'Ngoro', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23589', 'zw', 'your_cart_is_empty', 'Ngoro yako haina chinhu', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23590', 'zw', 'categories', 'Zvikamu', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23591', 'zw', 'see_all', 'Ona zvese', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23592', 'zw', 'seller_policy', 'Mutengesi Policy', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23593', 'zw', 'return_policy', 'Dzosera Policy', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23594', 'zw', 'support_policy', 'Kutsigira Mutemo', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23595', 'zw', 'privacy_policy', 'Yakavanzika Mutemo', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23596', 'zw', 'your_email_address', 'Yako Email Kero', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23597', 'zw', 'subscribe', 'Nyorera', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23598', 'zw', 'contact_info', 'Contact Info', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23599', 'zw', 'address', 'Kero', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23600', 'zw', 'phone', 'Runhare', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23601', 'zw', 'email', 'Email', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23602', 'zw', 'login', 'Login', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23603', 'zw', 'my_account', 'Akaundi Yangu', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23604', 'zw', 'order_history', 'Order Nhoroondo', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23605', 'zw', 'my_wishlist', 'Yangu Wishlist', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23606', 'zw', 'track_order', 'Track Order', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23607', 'zw', 'be_an_affiliate_partner', 'Iva wekudyidzana naye', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23608', 'zw', 'be_a_seller', 'Iva Mutengesi', '2021-02-09 14:07:23', '2021-09-20 13:00:19'),
('23609', 'zw', 'apply_now', 'Nyorera Izvozvi', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23610', 'zw', 'confirmation', 'Chivimbiso', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23611', 'zw', 'delete_confirmation_message', 'Delete yekusimbisa meseji', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23612', 'zw', 'cancel', 'Kanzura', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23613', 'zw', 'delete', 'Delete', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23614', 'zw', 'item_has_been_added_to_compare_list', 'Chinhu chakawedzerwa kuenzanisa rondedzero', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23615', 'zw', 'please_login_first', 'Ndokumbira utore kutanga', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23616', 'zw', 'total_earnings_from', 'Yese Mibairo Kubva', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23617', 'zw', 'client_subscription', 'Mutengi Kunyorera', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23618', 'zw', 'product_category', 'Chigadzirwa chigadzirwa', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23619', 'zw', 'product_sub_sub_category', 'Chigadzirwa chikamu chidiki chikamu', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23620', 'zw', 'product_sub_category', 'Chigadzirwa chikamu chikamu', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23621', 'zw', 'product_brand', 'Chigadzirwa chigadzirwa', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23622', 'zw', 'top_client_packages', 'Wepamusoro Mutengi Mapakeji', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23623', 'zw', 'top_freelancer_packages', 'Wepamusoro Freelancer Mapakeji', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23624', 'zw', 'number_of_sale', 'Nhamba yekutengesa', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23625', 'zw', 'number_of_stock', 'Nhamba yeStock', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23626', 'zw', 'top_10_products', 'Wepamusoro Zvigadzirwa gumi', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23627', 'zw', 'top_12_products', 'Top 12 Zvigadzirwa', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23628', 'zw', 'admin_can_not_be_a_seller', 'Admin haigone kuve mutengesi', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23629', 'zw', 'filter_by_rating', 'Sefa nekuverenga', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23630', 'zw', 'published_reviews_updated_successfully', 'Yakaburitswa wongororo yakagadziridzwa zvinobudirira', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23631', 'zw', 'refund_sticker_has_been_updated_successfully', 'Refund Sticker yakagadziridzwa zvinobudirira', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23632', 'zw', 'edit_product', 'Rongedza Chigadzirwa', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23633', 'zw', 'meta_images', 'Meta Mifananidzo', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23634', 'zw', 'update_product', 'Gadziridza Chigadzirwa', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23635', 'zw', 'product_has_been_deleted_successfully', 'Chigadzirwa chakabviswa zvinobudirira', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23636', 'zw', 'your_profile_has_been_updated_successfully', 'Mbiri yako yakagadziridzwa zvinobudirira!', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23637', 'zw', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Yekuisa muganho wasvika. Ndokumbira uvandudze pasuru yako.', '2021-02-09 14:07:24', '2021-09-20 13:00:19'),
('23638', 'zw', 'add_your_product', 'Wedzera Chigadzirwa chako', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23639', 'zw', 'select_a_category', 'Sarudza chikamu', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23640', 'zw', 'select_a_brand', 'Sarudza chiratidzo', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23641', 'zw', 'product_unit', 'Chigadzirwa Chigadzirwa', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23642', 'zw', 'minimum_qty', 'Minimum Qty.', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23643', 'zw', 'product_tag', 'Chigadzirwa Tag', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23644', 'zw', 'type__hit_enter', 'Type & rova ​​pinda', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23645', 'zw', 'videos', 'Mavhidhiyo', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23646', 'zw', 'video_from', 'Vhidhiyo Kubva', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23647', 'zw', 'video_url', 'Vhidhiyo URL', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23648', 'zw', 'customer_choice', 'Mutengi Sarudzo', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23649', 'zw', 'pdf', 'PDF', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23650', 'zw', 'choose_pdf', 'Sarudza PDF', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23651', 'zw', 'select_category', 'Sarudza Chikamu', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23652', 'zw', 'target_category', 'Target Chikamu', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23653', 'zw', 'subsubcategory', 'sububcategory', '2021-02-09 14:07:25', '2021-02-09 14:07:25'),
('23654', 'zw', 'search_category', 'Tsvaga Chikamu', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23655', 'zw', 'search_subcategory', 'Tsvaga SubCategory', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23656', 'zw', 'search_subsubcategory', 'Tsvaga SubSubCategory', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23657', 'zw', 'update_your_product', 'Gadziridza chigadzirwa chako', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23658', 'zw', 'product_has_been_updated_successfully', 'Chigadzirwa chakagadziriswa zvinobudirira', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23659', 'zw', 'add_your_digital_product', 'Wedzera Chako Dhijitari Chigadzirwa', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23660', 'zw', 'active_ecommerce_cms_update_process', 'Inoshanda eCommerce CMS Kugadziridza Maitiro', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23661', 'zw', 'codecanyon_purchase_code', 'Codecanyon kutenga kodhi', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23662', 'zw', 'database_name', 'Dhatabhesi Zita', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23663', 'zw', 'database_username', 'Dhatabhesi Username', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23664', 'zw', 'database_password', 'Dhatabhesi password', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23665', 'zw', 'database_hostname', 'Dhatabhesi Hostname', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23666', 'zw', 'update_now', 'Gadziridza Izvozvi', '2021-02-09 14:07:25', '2021-09-20 13:00:19'),
('23667', 'zw', 'congratulations', 'Makorokoto', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23668', 'zw', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'Iwe wakabudirira kupedza iyo yekuvandudza maitiro. Ndapota Pinda kuti uenderere mberi', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23669', 'zw', 'go_to_home', 'Enda Kumusha', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23670', 'zw', 'login_to_admin_panel', 'Kupinda kune Admin pani', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23671', 'zw', 's3_file_system_credentials', 'S3 File System Zvivimbiso', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23672', 'zw', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23673', 'zw', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23674', 'zw', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23675', 'zw', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23676', 'zw', 'aws_url', 'AWS_URL', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23677', 'zw', 's3_file_system_activation', 'S3 Faira Sisitimu Inoshanda', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23678', 'zw', 'your_phone_number', 'Yako nhamba yefoni', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23679', 'zw', 'zip_file', 'Zip File', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23680', 'zw', 'install', 'Isa', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23681', 'zw', 'this_version_is_not_capable_of_installing_addons_please_update', 'Iyi vhezheni haigone kuisa maAddons, Ndokumbira uvandudze.', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23682', 'zw', 'search_in_menu', 'Tsvaga mumenyu', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23683', 'zw', 'uploaded_files', 'Akaiswa Mafaira', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23684', 'zw', 'shipping_cities', 'Kutumira Maguta', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23685', 'zw', 'system', 'System', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23686', 'zw', 'server_status', 'Nzvimbo yeSeva', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23687', 'zw', 'nothing_found', 'Hapana Chakawanikwa', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23688', 'zw', 'parent_category', 'Chikamu chevabereki', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23689', 'zw', 'level', 'Chikamu', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23690', 'zw', 'category_information', 'Chikamu Ruzivo', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23691', 'zw', 'translatable', 'Inodudzirwa', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23692', 'zw', 'no_parent', 'Kwete Mubereki', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23693', 'zw', 'physical', 'Panyama', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23694', 'zw', 'digital', 'Dhijitari', '2021-02-09 14:07:26', '2021-09-20 13:00:19'),
('23695', 'zw', '200x200', '200x200', '2021-02-09 14:07:26', '2021-02-09 14:07:26'),
('23696', 'zw', '32x32', '32x32', '2021-02-09 14:07:26', '2021-02-09 14:07:26'),
('23697', 'zw', 'search_your_files', 'Tsvaga mafaera ako', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23698', 'zw', 'category_has_been_updated_successfully', 'Chikamu chakagadziridzwa zvinobudirira', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23699', 'zw', 'all_uploaded_files', 'Ese mafaera akaiswa', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23700', 'zw', 'upload_new_file', 'Isa Nyowani File', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23701', 'zw', 'all_files', 'Mafaira ese', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23702', 'zw', 'search', 'Tsvaga', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23703', 'zw', 'details_info', 'Nhoroondo Info', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23704', 'zw', 'copy_link', 'Kopa Unganidzo', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23705', 'zw', 'are_you_sure_to_delete_this_file', 'Une chokwadi chekudzima iyi faira?', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23706', 'zw', 'file_info', 'Faira Info', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23707', 'zw', 'link_copied_to_clipboard', 'Chinongedzo chakateedzerwa kubhodhibhodhi', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23708', 'zw', 'oops_unable_to_copy', 'Oops, haikwanisi kutevedzera', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23709', 'zw', 'file_deleted_successfully', 'Faira rakabviswa zvinobudirira', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23710', 'zw', 'add_new_brand', 'Wedzera Nyowani Brand', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23711', 'zw', '120x80', '120x80', '2021-02-09 14:07:27', '2021-02-09 14:07:27'),
('23712', 'zw', 'brand_information', 'Ruzivo rweBrand', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23713', 'zw', 'brand_has_been_updated_successfully', 'Brand yakagadziridzwa zvinobudirira', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23714', 'zw', 'brand_has_been_deleted_successfully', 'Brand yakabviswa zvinobudirira', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23715', 'zw', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'Izvi zvinoshandiswa pakutsvaga. Isa iwo mazwi ayo mucheki anogona kuwana ichi chigadzirwa.', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23716', 'zw', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'Iyi mifananidzo inoonekwa mune zvigadzirwa zvemapeji peji gallery. Shandisa mazana matanhatu emazana matanhatu emifananidzo.', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23717', 'zw', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'Ichi chifananidzo chinoonekwa mune zvese zvigadzirwa bhokisi. Shandisa 300x300 saizi mufananidzo. Chengetedza imwe isina chinhu nzvimbo yakatenderedza chinhu chikuru chemufananidzo wako sezvo taifanirwa kurima kumucheto mumadhizaini akasiyana kuti riite.', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23718', 'zw', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Shandisa zvakakodzera chinongedzo pasina imwe paramende. Usashandise pfupi kugovera chinongedzo / yakamisikidzwa iframe kodhi.', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23719', 'zw', 'save_product', 'Sevha Chigadzirwa', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23720', 'zw', 'product_has_been_inserted_successfully', 'Chigadzirwa chakaiswa zvinobudirira', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23721', 'zw', 'something_went_wrong', 'Chinhu chakatadza kufamba!', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23722', 'zw', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Tine urombo nekukanganisa, asi tiri kuzvigadzirisa.', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23723', 'zw', 'error_code', 'Kodhi yekodhi', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23724', 'zw', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Ndokumbirawo Gadzirise SMTP Kumisikidza kushanda ese email kutumira kushanda', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23725', 'zw', 'order', 'Order', '2021-02-09 14:07:27', '2021-09-20 13:00:19'),
('23726', 'zw', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'Tine mashoma mabhanari kukwirira kuchengetedza UI. Isu taifanira kurima kubva kune ese kuruboshwe & kurudyi kudivi tichitarisa zvakasiyana zvishandiso kuti iite kuteerera. Usati wagadzira banner chengeta aya mapoinzi mupfungwa.', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23727', 'zw', 'home_banner_3_max_3', 'Imba Banner 3 (Max 3)', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23728', 'zw', 'add_new_seller', 'Wedzera Mutsva Mutengesi', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23729', 'zw', 'filter_by_approval', 'Sefa nekutenderwa', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23730', 'zw', 'nonapproved', 'Asina-Kubvumidzwa', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23731', 'zw', 'type_name_or_email__enter', 'Nyora zita kana email & Enter', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23732', 'zw', 'due_to_seller', 'Nekuda kwemutengesi', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23733', 'zw', 'log_in_as_this_seller', 'Pinda seMutengesi uyu', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23734', 'zw', 'go_to_payment', 'Enda Kubhadharo', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23735', 'zw', 'ban_this_seller', 'Rambidza mutengesi uyu', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23736', 'zw', 'do_you_really_want_to_ban_this_seller', 'Iwe unonyatsoda kurambidza uyu mutengesi?', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23737', 'zw', 'proceed', 'Enderera!', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23738', 'zw', 'approved_sellers_updated_successfully', 'Vatengesi vanobvumidzwa vakagadziridzwa zvinobudirira', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23739', 'zw', 'seller_has_been_deleted_successfully', 'Mutengesi akabviswa zvinobudirira', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23740', 'zw', 'seller_information', 'Mutengesi Ruzivo', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23741', 'zw', 'seller_has_been_inserted_successfully', 'Mutengesi akaiswa zvinobudirira', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23742', 'zw', 'email_already_exists', 'Email yatovepo!', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23743', 'zw', 'verify_your_email_address', 'Simbisa Yako Email Kero', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23744', 'zw', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Usati waenderera mberi, ndapota tarisa email yako kuti ubvumirwe link.', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23745', 'zw', 'if_you_did_not_receive_the_email', 'Kana iwe usina kugamuchira iyo email.', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23746', 'zw', 'click_here_to_request_another', 'Dzvanya apa kukumbira imwe', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23747', 'zw', 'email_verification', 'Kuongorora Email', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23748', 'zw', 'email_verification__', 'Email Verification -', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23749', 'zw', 'https_activation', 'Kumisikidza kweHTTPS', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23750', 'zw', 'maintenance_mode', 'Maitiro ekugadzirisa', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23751', 'zw', 'maintenance_mode_activation', 'Maintenance Mode Kushanda', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23752', 'zw', 'classified_product_activate', 'Classified Chigadzirwa Activate', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23753', 'zw', 'classified_product', 'Classified Chigadzirwa', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23754', 'zw', 'business_related', 'Bhizinesi Rakaenderana', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23755', 'zw', 'vendor_system_activation', 'Vatengesi Sisitimu Inoshanda', '2021-02-09 14:07:28', '2021-09-20 13:00:19'),
('23756', 'zw', 'wallet_system_activation', 'Wallet Sisitimu Inoshanda', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23757', 'zw', 'coupon_system_activation', 'Coupon System Inoshanda', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23758', 'zw', 'pickup_point_activation', 'Pikicha Poindi Kumisikidza', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23759', 'zw', 'conversation_activation', 'Kuita Kukurukurirana', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23760', 'zw', 'guest_checkout_activation', 'Guest Checkout Kushanda', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23761', 'zw', 'categorybased_commission', 'Chikamu-chakavakirwa Commission', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23762', 'zw', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'Mushure mekumisikidza iyi sarudzo Mutengesi commision icharemara uye Unofanirwa kuseta Commission pane yega yega chikamu Admin haizowana chero commision', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23763', 'zw', 'set_commisssion_now', 'Gadza Commisssion Izvozvi', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23764', 'zw', 'payment_related', 'Kubhadhara Kwakabatana', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23765', 'zw', 'paypal_payment_activation', 'Paypal Kubhadhara Kubata', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23766', 'zw', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza Paypal nenzira kwayo kuti uwane ichi chinhu', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23767', 'zw', 'stripe_payment_activation', 'Stripe Kubhadhara Kushanda', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23768', 'zw', 'sslcommerz_activation', 'SSlCommerz Kumisikidza', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23769', 'zw', 'instamojo_payment_activation', 'Instamojo Kubhadhara Kushanda', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23770', 'zw', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza Instamojo Kubhadhara nenzira kwayo kuti ugone kuita ichi chinhu', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23771', 'zw', 'razor_pay_activation', 'Razor Kubhadhara Kushanda', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23772', 'zw', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza Razor nenzira kwayo kuti uwane ichi chiitiko', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23773', 'zw', 'paystack_activation', 'Kubhadhara kweStack', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23774', 'zw', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza PayStack nenzira kwayo kuti uwane ichi chinhu', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23775', 'zw', 'voguepay_activation', 'VoguePay Kubata', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23776', 'zw', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza VoguePay nenzira kwayo kuti uwane ichi chinhu', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23777', 'zw', 'payhere_activation', 'Kubhadhara Kuita', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23778', 'zw', 'ngenius_activation', 'Ngenius Kushanda', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23779', 'zw', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza Ngenius nenzira kwayo kuti uwane ichi chinhu', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23780', 'zw', 'iyzico_activation', 'Iyzico Kumisikidza', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23781', 'zw', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisa iyzico nemazvo kuti ugone kuita ichi chinhu', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23782', 'zw', 'bkash_activation', 'Bkash Kushanda', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23783', 'zw', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza bkash nenzira kwayo kuti uwane ichi chinhu', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23784', 'zw', 'nagad_activation', 'Nagad Kushanda', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23785', 'zw', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza nagad nenzira kwayo kuti uwane ichi chinhu', '2021-02-09 14:07:29', '2021-09-20 13:00:19'),
('23786', 'zw', 'cash_payment_activation', 'Cash Kubhadhara Kushanda', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23787', 'zw', 'social_media_login', 'Yemagariro Media Kupinda', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23788', 'zw', 'facebook_login', 'Facebook login', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23789', 'zw', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza Facebook Mutengi nenzira kwayo kuti ugone kuita ichi chinhu', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23790', 'zw', 'google_login', 'Google login', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23791', 'zw', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza Google Mutengi nenzira kwayo kuti ugone kuita ichi chinhu', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23792', 'zw', 'twitter_login', 'Twitter kupinda', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23793', 'zw', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'Iwe unofanirwa kumisikidza Twitter Mutengi nenzira kwayo kuti ugone kuita ichi chinhu', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23794', 'zw', 'shop_logo', 'Shop Logo', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23795', 'zw', 'shop_address', 'Kero Kero', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23796', 'zw', 'banner_settings', 'Zvirongwa zveBanner', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23797', 'zw', 'banners', 'Mabhanhire', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23798', 'zw', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'Isu taifanirwa kudzikamisa kukwirira kusvika kusisitani kuenderana Mune chimwe chigadzirwa mativi ese ebhenji anogona kubvamburwa kureba kureba.', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23799', 'zw', 'insert_link_with_https_', 'Isa chinongedzo ne https', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23800', 'zw', 'your_shop_has_been_updated_successfully', 'Shopu yako yakagadziridzwa zvinobudirira!', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23801', 'zw', 'search_result_for_', 'Tsvaga mhedzisiro ye', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23802', 'zw', 'brand_has_been_inserted_successfully', 'Brand yakaiswa zvinobudirira', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23803', 'zw', 'about', 'About', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23804', 'zw', 'payout_info', 'Inobhadhara Info', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23805', 'zw', 'bank_acc_name', 'Bhangi Acc Zita', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23806', 'zw', 'bank_acc_number', 'Bhangi Acc Nhamba', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23807', 'zw', 'total_products', 'Zvigadzirwa Zvese', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23808', 'zw', 'total_sold_amount', 'Yese Yakatengeswa Mari', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23809', 'zw', 'wallet_balance', 'Wallet Balance', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23810', 'zw', 'cookies_agreement', 'Chibvumirano cheKuki', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23811', 'zw', 'cookies_agreement_text', 'Cookies Chibvumirano Chinyorwa', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23812', 'zw', 'show_cookies_agreement', 'Ratidza Cookies Chibvumirano?', '2021-02-09 14:07:30', '2021-09-20 13:00:19'),
('23813', 'zw', 'custom_script', 'Tsika Yenyaya', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23814', 'zw', 'header_custom_script__before_head', 'Musoro wetsika script - pamberi </head>', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23815', 'zw', 'write_script_with_script_tag', 'Nyora script ine <script> tag', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23816', 'zw', 'footer_custom_script__before_body', 'Footer tsika script - pamberi </body>', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23817', 'zw', 'category_has_been_inserted_successfully', 'Chikamu chakaiswa zvinobudirira', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23818', 'zw', 'all_flash_deals', 'Zvese Flash Deals', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23819', 'zw', 'create_new_flash_deal', 'Gadzira Nyowani Flash Deal', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23820', 'zw', 'ffffff', '#FFFFFF', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23821', 'zw', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Ichi chifananidzo chinoratidzwa sevhavha yekuvhara mu flash dhizaini peji peji.', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23822', 'zw', 'flash_deal_has_been_inserted_successfully', 'Flash Deal yakaiswa zvinobudirira', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23823', 'zw', 'flash_deal_status_updated_successfully', 'Flash dhizaini mamiriro akagadziridzwa zvinobudirira', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23824', 'zw', 'flash_deal_has_been_updated_successfully', 'Flash Deal yakagadziridzwa zvinobudirira', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23825', 'zw', 'update_language_info', 'gadziridza Ruzivo rweMutauro', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23826', 'zw', 'language_has_been_updated_successfully', 'Mutauro wakagadziridzwa zvinobudirira', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23827', 'zw', 'type_key__enter', 'Type kiyi & Pinda', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23828', 'zw', 'translations_updated_for_', 'Dudziro dzakagadziridzwa', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23829', 'zw', 'language_has_been_inserted_successfully', 'Mutauro wakaiswa zvinobudirira', '2021-02-09 14:07:31', '2021-09-20 13:00:19'),
('23830', 'pk', 'all_category', 'تمام زمرہ', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23831', 'pk', 'all', 'سب', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23832', 'pk', 'flash_sale', 'فلیش سیل', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23833', 'pk', 'view_more', 'مزید دیکھیں', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23834', 'pk', 'add_to_wishlist', 'خواہشات کی فہرست میں شامل کرنا', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23835', 'pk', 'add_to_compare', 'موازنہ کرنے کے لئے شامل کریں', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23836', 'pk', 'add_to_cart', 'ٹوکری میں شامل کریں', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23837', 'pk', 'club_point', 'کلب پوائنٹ', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23838', 'pk', 'classified_ads', 'درجہ بندی اشتھارات', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23839', 'pk', 'used', 'استعمال کیا جاتا ہے', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23840', 'pk', 'top_10_categories', 'ٹاپ 10 زمرے', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23841', 'pk', 'view_all_categories', 'تمام زمرے دیکھیں', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23842', 'pk', 'top_10_brands', 'سرفہرست 10 برانڈز', '2021-02-09 14:09:20', '2021-09-20 13:00:19'),
('23843', 'pk', 'view_all_brands', 'تمام برانڈز دیکھیں', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23844', 'pk', 'terms__conditions', 'شرائط و ضوابط', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23845', 'pk', 'best_selling', 'بہترین فروخت ہونے والا', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23846', 'pk', 'top_20', 'ٹاپ 20', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23847', 'pk', 'featured_products', 'نمایاں مصنوعات', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23848', 'pk', 'best_sellers', 'بہترین فروخت کنندگان', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23849', 'pk', 'visit_store', 'اسٹور ملاحظہ کریں', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23850', 'pk', 'popular_suggestions', 'مقبول تجاویز', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23851', 'pk', 'category_suggestions', 'زمرہ تجاویز', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23852', 'pk', 'automobile__motorcycle', 'آٹوموبائل اور موٹرسائیکل', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23853', 'pk', 'price_range', 'قیمت کی حد', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23854', 'pk', 'filter_by_color', 'رنگ سے فلٹر کریں', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23855', 'pk', 'home', 'گھر', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23856', 'pk', 'newest', 'تازہ ترین', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23857', 'pk', 'oldest', 'سب سے قدیم', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23858', 'pk', 'price_low_to_high', 'قیمت کم سے زیادہ', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23859', 'pk', 'price_high_to_low', 'قیمت کم سے کم', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23860', 'pk', 'brands', 'برانڈز', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23861', 'pk', 'all_brands', 'تمام برانڈز', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23862', 'pk', 'all_sellers', 'سب بیچنے والے', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23863', 'pk', 'inhouse_product', 'اندرونی مصنوعات', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23864', 'pk', 'message_seller', 'پیغام بیچنے والا', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23865', 'pk', 'price', 'قیمت', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23866', 'pk', 'discount_price', 'رعائیتی قیمت', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23867', 'pk', 'color', 'رنگ', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23868', 'pk', 'quantity', 'مقدار', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23869', 'pk', 'available', 'دستیاب', '2021-02-09 14:09:21', '2021-02-09 14:09:21'),
('23870', 'pk', 'total_price', 'کل قیمت', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23871', 'pk', 'out_of_stock', 'زخیرے سے باہر', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23872', 'pk', 'refund', 'واپس کرنا', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23873', 'pk', 'share', 'بانٹیں', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23874', 'pk', 'sold_by', 'کی طرف سے فروخت', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23875', 'pk', 'customer_reviews', 'گاہک کے جائزے', '2021-02-09 14:09:21', '2021-09-20 13:00:19'),
('23876', 'pk', 'top_selling_products', 'اوپر فروخت ہونے والی مصنوعات', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23877', 'pk', 'description', 'تفصیل', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23878', 'pk', 'video', 'ویڈیو', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23879', 'pk', 'reviews', 'جائزہ', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23880', 'pk', 'download', 'ڈاؤن لوڈ کریں', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23881', 'pk', 'there_have_been_no_reviews_for_this_product_yet', 'ابھی تک اس پروڈکٹ کے لئے کوئی جائزہ نہیں ملا ہے۔', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23882', 'pk', 'related_products', 'متعلقہ مصنوعات', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23883', 'pk', 'any_query_about_this_product', 'اس کی مصنوعات کے بارے میں کوئی سوال', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23884', 'pk', 'product_name', 'پروڈکٹ کا نام', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23885', 'pk', 'your_question', 'آپ کا سوال', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23886', 'pk', 'send', 'بھیجیں', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23887', 'pk', 'use_country_code_before_number', 'نمبر سے پہلے ملک کا کوڈ استعمال کریں', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23888', 'pk', 'remember_me', 'مجھے پہچانتے ہو', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23889', 'pk', 'dont_have_an_account', 'کیا آپ کا اکاؤنٹ نہیں ہے؟', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23890', 'pk', 'register_now', 'ابھی رجسٹر کریں', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23891', 'pk', 'or_login_with', 'یا لاگ ان کے ساتھ', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23892', 'pk', 'oops', 'افوہ ..', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23893', 'pk', 'this_item_is_out_of_stock', 'یہ آئٹم ختم نہیں ہوا!', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23894', 'pk', 'back_to_shopping', 'واپس شاپنگ پر', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23895', 'pk', 'login_to_your_account', 'آپ کے اکاؤنٹ میں لاگ ان کریں.', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23896', 'pk', 'purchase_history', 'تاریخ خریدیں', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23897', 'pk', 'new', 'نئی', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23898', 'pk', 'downloads', 'ڈاؤن لوڈ', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23899', 'pk', 'sent_refund_request', 'رقم کی واپسی کی درخواست بھیجی گئی', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23900', 'pk', 'product_bulk_upload', 'پروڈکٹ کا بلک اپ لوڈ', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23901', 'pk', 'orders', 'احکامات', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23902', 'pk', 'recieved_refund_request', 'موصولہ رقم کی واپسی کی درخواست', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23903', 'pk', 'shop_setting', 'دکان کی ترتیب', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23904', 'pk', 'payment_history', 'ادائیگی کی تاریخ', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23905', 'pk', 'money_withdraw', 'پیسہ نکلوانا', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23906', 'pk', 'conversations', 'گفتگو', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23907', 'pk', 'my_wallet', 'میرا پرس', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23908', 'pk', 'earning_points', 'پوائنٹس حاصل کرنا', '2021-02-09 14:09:22', '2021-09-20 13:00:19'),
('23909', 'pk', 'support_ticket', 'سپورٹ ٹکٹ', '2021-02-09 14:09:23', '2021-09-20 13:00:19'),
('23910', 'pk', 'manage_profile', 'پروفائل کا نظم کریں', '2021-02-09 14:09:23', '2021-09-20 13:00:19'),
('23911', 'pk', 'sold_amount', 'فروخت ہوئی رقم', '2021-02-09 14:09:23', '2021-09-20 13:00:19'),
('23912', 'pk', 'your_sold_amount_current_month', 'آپ کی فروخت شدہ رقم (موجودہ مہینہ)', '2021-02-09 14:09:23', '2021-09-20 13:00:19'),
('23913', 'pk', 'total_sold', 'کل فروخت', '2021-02-09 14:09:23', '2021-09-20 13:00:19'),
('23914', 'pk', 'last_month_sold', 'آخری مہینہ فروخت', '2021-02-09 14:09:23', '2021-09-20 13:00:19'),
('23915', 'pk', 'total_sale', 'کل فروخت', '2021-02-09 14:09:23', '2021-09-20 13:00:19'),
('23916', 'pk', 'total_earnings', 'کل کمائی', '2021-02-09 14:09:23', '2021-09-20 13:00:19'),
('23917', 'pk', 'successful_orders', 'کامیاب احکامات', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23918', 'pk', 'total_orders', 'کل احکامات', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23919', 'pk', 'pending_orders', 'زیر التواء احکامات', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23920', 'pk', 'cancelled_orders', 'منسوخ کردہ احکامات', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23921', 'pk', 'product', 'پروڈکٹ', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23922', 'pk', 'purchased_package', 'خریدا پیکیج', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23923', 'pk', 'package_not_found', 'پیکیج نہیں ملا', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23924', 'pk', 'upgrade_package', 'پیکیج کو اپ گریڈ کریں', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23925', 'pk', 'shop', 'دکان', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23926', 'pk', 'manage__organize_your_shop', 'اپنی دکان کا نظم و نسق کریں', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23927', 'pk', 'go_to_setting', 'ترتیب پر جائیں', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23928', 'pk', 'payment', 'ادائیگی', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23929', 'pk', 'configure_your_payment_method', 'اپنے ادائیگی کا طریقہ تشکیل دیں', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23930', 'pk', 'my_panel', 'میرا پینل', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23931', 'pk', 'item_has_been_added_to_wishlist', 'آئٹم کو خواہش کی فہرست میں شامل کیا گیا ہے', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23932', 'pk', 'my_points', 'میرے پوائنٹس', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23933', 'pk', '_points', 'پوائنٹس', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23934', 'pk', 'wallet_money', 'والیٹ منی', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23935', 'pk', 'exchange_rate', 'زر مبادلہ کی شرح', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23936', 'pk', 'point_earning_history', 'پوائنٹ ارننگ ہسٹری', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23937', 'pk', 'date', 'تاریخ', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23938', 'pk', 'points', 'پوائنٹس', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23939', 'pk', 'converted', 'بدل گیا', '2021-02-09 14:09:23', '2021-09-20 13:00:20'),
('23940', 'pk', 'action', 'عمل', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23941', 'pk', 'no_history_found', 'کوئی تاریخ نہیں ملی۔', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23942', 'pk', 'convert_has_been_done_successfully_check_your_wallets', 'کنورٹ کامیابی کے ساتھ ہوچکا ہے اپنے بٹوے چیک کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23943', 'pk', 'something_went_wrong', 'کچھ غلط ہو گیا', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23944', 'pk', 'remaining_uploads', 'باقی اپ لوڈز', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23945', 'pk', 'no_package_found', 'کوئی پیکیج نہیں ملا', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23946', 'pk', 'search_product', 'مصنوعات تلاش کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23947', 'pk', 'name', 'نام', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23948', 'pk', 'current_qty', 'موجودہ مقدار', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23949', 'pk', 'base_price', 'بنیادی قیمت', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23950', 'pk', 'published', 'شائع ہوا', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23951', 'pk', 'featured', 'نمایاں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23952', 'pk', 'options', 'اختیارات', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23953', 'pk', 'edit', 'ترمیم', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23954', 'pk', 'duplicate', 'ڈپلیکیٹ', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23955', 'pk', '1_download_the_skeleton_file_and_fill_it_with_data', '1. کنکال فائل ڈاؤن لوڈ کریں اور ڈیٹا سے پُر کریں۔', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23956', 'pk', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. آپ یہ سمجھنے کے لئے مثال کے طور پر فائل ڈاؤن لوڈ کرسکتے ہیں کہ اعداد و شمار کو کس طرح پر کرنا چاہئے۔', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23957', 'pk', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', 'ایک بار جب آپ نے کنکال کی فائل کو ڈاؤن لوڈ اور بھر لیا ہے تو ، اسے نیچے دیئے گئے فارم میں اپ لوڈ کریں اور جمع کرائیں۔', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23958', 'pk', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. مصنوعات اپ لوڈ کرنے کے بعد آپ کو ان میں ترمیم کرنے اور مصنوعات کی تصاویر اور انتخاب کو ترتیب دینے کی ضرورت ہوتی ہے۔', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23959', 'pk', 'download_csv', 'CSV ڈاؤن لوڈ کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23960', 'pk', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. زمرہ ، ذیلی زمرہ ، ذیلی ذیلی زمرہ اور برانڈ عددی IDs میں ہونا چاہئے۔', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23961', 'pk', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. آپ زمرہ ، سب زمرہ ، سب سب زمرہ اور برانڈ کی شناخت حاصل کرنے کے لئے پی ڈی ایف ڈاؤن لوڈ کرسکتے ہیں۔', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23962', 'pk', 'download_category', 'زمرہ ڈاؤن لوڈ کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23963', 'pk', 'download_sub_category', 'ذیلی زمرہ ڈاؤن لوڈ کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23964', 'pk', 'download_sub_sub_category', 'سب ذیلی زمرہ ڈاؤن لوڈ کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23965', 'pk', 'download_brand', 'برانڈ ڈاؤن لوڈ کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23966', 'pk', 'upload_csv_file', 'CSV فائل اپ لوڈ کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23967', 'pk', 'csv', 'CSV', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23968', 'pk', 'choose_csv_file', 'CSV فائل کا انتخاب کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23969', 'pk', 'upload', 'اپ لوڈ کریں', '2021-02-09 14:09:24', '2021-09-20 13:00:20'),
('23970', 'pk', 'add_new_digital_product', 'نیا ڈیجیٹل پروڈکٹ شامل کریں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23971', 'pk', 'available_status', 'دستیاب حیثیت', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23972', 'pk', 'admin_status', 'ایڈمن اسٹیٹس', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23973', 'pk', 'pending_balance', 'زیر التوا بیلنس', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23974', 'pk', 'send_withdraw_request', 'واپسی کی درخواست بھیجیں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23975', 'pk', 'withdraw_request_history', 'درخواست کی تاریخ واپس لو', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23976', 'pk', 'amount', 'رقم', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23977', 'pk', 'status', 'حالت', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23978', 'pk', 'message', 'پیغام', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23979', 'pk', 'send_a_withdraw_request', 'واپسی کی درخواست بھیجیں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23980', 'pk', 'basic_info', 'بنیادی معلومات', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23981', 'pk', 'your_phone', 'آپ کا فون', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23982', 'pk', 'photo', 'تصویر', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23983', 'pk', 'browse', 'براؤز کریں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23984', 'pk', 'your_password', 'آپ کا پاس ورڈ', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23985', 'pk', 'new_password', 'نیا پاس ورڈ', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23986', 'pk', 'confirm_password', 'پاس ورڈ کی تصدیق کریں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23987', 'pk', 'add_new_address', 'نیا پتہ شامل کریں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23988', 'pk', 'payment_setting', 'ادائیگی کی ترتیب', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23989', 'pk', 'cash_payment', 'نقد ادائیگی', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23990', 'pk', 'bank_payment', 'بینک ادائیگی', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23991', 'pk', 'bank_name', 'بینک کا نام', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23992', 'pk', 'bank_account_name', 'بینک اکاؤنٹ کا نام', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23993', 'pk', 'bank_account_number', 'بینک اکاؤنٹ نمبر', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23994', 'pk', 'bank_routing_number', 'بینک روٹنگ نمبر', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23995', 'pk', 'update_profile', 'پروفائل کو اپ ڈیٹ کریں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23996', 'pk', 'change_your_email', 'اپنا ای میل تبدیل کریں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23997', 'pk', 'your_email', 'آپ کا ای میل', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23998', 'pk', 'sending_email', 'ای میل بھیج رہا ہے…', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('23999', 'pk', 'verify', 'تصدیق کریں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('24000', 'pk', 'update_email', 'ای میل کو اپ ڈیٹ کریں', '2021-02-09 14:09:25', '2021-09-20 13:00:20'),
('24001', 'pk', 'new_address', 'نیا پتہ', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24002', 'pk', 'your_address', 'آپ کا پتہ', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24003', 'pk', 'country', 'ملک', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24004', 'pk', 'select_your_country', 'اپنے ملک کا انتخاب کریں', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24005', 'pk', 'city', 'شہر', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24006', 'pk', 'your_city', 'آپکا شہر', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24007', 'pk', 'your_postal_code', 'آپ کا پوسٹل کوڈ', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24008', 'pk', '880', '+880', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24009', 'pk', 'save', 'محفوظ کریں', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24010', 'pk', 'received_refund_request', 'رقم کی واپسی کی درخواست موصول ہوئی', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24011', 'pk', 'delete_confirmation', 'تصدیق کو حذف کریں', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24012', 'pk', 'are_you_sure_to_delete_this', 'کیا آپ واقعی اسے حذف کرنا چاہتے ہیں؟', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24013', 'pk', 'premium_packages_for_sellers', 'بیچنے والے کے لئے پریمیم پیکجز', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24014', 'pk', 'product_upload', 'پروڈکٹ اپ لوڈ', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24015', 'pk', 'digital_product_upload', 'ڈیجیٹل پروڈکٹ اپ لوڈ', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24016', 'pk', 'purchase_package', 'خریداری پیکیج', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24017', 'pk', 'select_payment_type', 'ادائیگی کی قسم منتخب کریں', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24018', 'pk', 'payment_type', 'ادائیگی کی قسم', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24019', 'pk', 'select_one', 'ایک منتخب کریں', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24020', 'pk', 'online_payment', 'آن لائن ادائیگی', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24021', 'pk', 'offline_payment', 'آف لائن ادائیگی', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24022', 'pk', 'purchase_your_package', 'اپنا پیکیج خریدیں', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24023', 'pk', 'paypal', 'پے پال', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24024', 'pk', 'stripe', 'پٹی', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24025', 'pk', 'sslcommerz', 'sslcommerz', '2021-02-09 14:09:26', '2021-02-09 14:09:26'),
('24026', 'pk', 'confirm', 'تصدیق کریں', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24027', 'pk', 'offline_package_payment', 'آف لائن پیکیج کی ادائیگی', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24028', 'pk', 'transaction_id', 'ٹرانزیکشن ID', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24029', 'pk', 'choose_image', 'تصویر کا انتخاب کریں', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24030', 'pk', 'code', 'کوڈ', '2021-02-09 14:09:26', '2021-09-20 13:00:20'),
('24031', 'pk', 'delivery_status', 'موصول ہونے کی آگاہی', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24032', 'pk', 'payment_status', 'ادائیگی کی حیثیت', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24033', 'pk', 'paid', 'ادا کیا', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24034', 'pk', 'order_details', 'آرڈر کی تفصیلات', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24035', 'pk', 'download_invoice', 'انوائس ڈاؤن لوڈ کریں', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24036', 'pk', 'unpaid', 'بلا معاوضہ', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24037', 'pk', 'order_placed', 'آرڈر دیا گیا', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24038', 'pk', 'confirmed', 'تصدیق ہوگئی', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24039', 'pk', 'on_delivery', 'پہنچانے پر', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24040', 'pk', 'delivered', 'نجات', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24041', 'pk', 'order_summary', 'حکم کا خلاصہ', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24042', 'pk', 'order_code', 'آرڈر کوڈ', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24043', 'pk', 'customer', 'صارف', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24044', 'pk', 'total_order_amount', 'آرڈر کی کل رقم', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24045', 'pk', 'shipping_metdod', 'شپنگ میٹود', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24046', 'pk', 'flat_shipping_rate', 'فلیٹ شپنگ کی شرح', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24047', 'pk', 'payment_metdod', 'ادائیگی میٹڈوڈ', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24048', 'pk', 'variation', 'تغیر', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24049', 'pk', 'delivery_type', 'ترسیل کی قسم', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24050', 'pk', 'home_delivery', 'گھر تک ترسیل', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24051', 'pk', 'order_ammount', 'آرڈر کی رقم', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24052', 'pk', 'subtotal', 'کل', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24053', 'pk', 'shipping', 'شپنگ', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24054', 'pk', 'coupon_discount', 'کوپن ڈسکاؤنٹ', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24055', 'pk', 'na', 'N / A', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24056', 'pk', 'in_stock', 'اسٹاک میں', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24057', 'pk', 'buy_now', 'ابھی خریدئے', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24058', 'pk', 'item_added_to_your_cart', 'آئٹم آپ کی ٹوکری میں شامل!', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24059', 'pk', 'proceed_to_checkout', 'چیک آؤٹ پر آگے بڑھیں', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24060', 'pk', 'cart_items', 'ٹوکری اشیا', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24061', 'pk', '1_my_cart', '1. میری ٹوکری', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24062', 'pk', 'view_cart', 'ٹوکری دیکھیں', '2021-02-09 14:09:27', '2021-09-20 13:00:20'),
('24063', 'pk', '2_shipping_info', '2. شپنگ معلومات', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24064', 'pk', 'checkout', 'اس کو دیکھو', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24065', 'pk', '3_delivery_info', '3. فراہمی کی معلومات', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24066', 'pk', '4_payment', '4. ادائیگی', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24067', 'pk', '5_confirmation', '5. تصدیق', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24068', 'pk', 'remove', 'دور', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24069', 'pk', 'return_to_shop', 'واپس دکان پر', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24070', 'pk', 'continue_to_shipping', 'شپنگ جاری رکھیں', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24071', 'pk', 'or', 'یا', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24072', 'pk', 'guest_checkout', 'مہمان چیک آؤٹ', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24073', 'pk', 'continue_to_delivery_info', 'فراہمی سے متعلق معلومات تک جاری رکھیں', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24074', 'pk', 'postal_code', 'ڈاک کامخصوص نمبر', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24075', 'pk', 'choose_delivery_type', 'ترسیل کی قسم کا انتخاب کریں', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24076', 'pk', 'local_pickup', 'مقامی اٹھا', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24077', 'pk', 'select_your_nearest_pickup_point', 'اپنا قریبی پک اپ پوائنٹ منتخب کریں', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24078', 'pk', 'continue_to_payment', 'ادائیگی جاری رکھیں', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24079', 'pk', 'select_a_payment_option', 'ادائیگی کا اختیار منتخب کریں', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24080', 'pk', 'razorpay', 'استراپی', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24081', 'pk', 'paystack', 'پے اسٹیک', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24082', 'pk', 'voguepay', 'ووگ پے', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24083', 'pk', 'payhere', 'ادائیگی', '2021-02-09 14:09:28', '2021-02-09 14:09:28'),
('24084', 'pk', 'ngenius', 'ngenius', '2021-02-09 14:09:28', '2021-02-09 14:09:28'),
('24085', 'pk', 'paytm', 'پے ٹی ایم', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24086', 'pk', 'cash_on_delivery', 'ادائیگی وصولی کے وقت', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24087', 'pk', 'your_wallet_balance_', 'آپ کے بٹوے کا بیلنس:', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24088', 'pk', 'insufficient_balance', 'ناکافی توازن', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24089', 'pk', 'i_agree_to_the', 'میں متفق ہوں', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24090', 'pk', 'complete_order', 'مکمل آرڈر', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24091', 'pk', 'summary', 'خلاصہ', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24092', 'pk', 'items', 'اشیاء', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24093', 'pk', 'total_club_point', 'کل کل پوائنٹ', '2021-02-09 14:09:28', '2021-09-20 13:00:20'),
('24094', 'pk', 'total_shipping', 'کل شپنگ', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24095', 'pk', 'have_coupon_code_enter_here', 'کوپن کوڈ ہے؟ یہاں داخل ہوں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24096', 'pk', 'apply', 'درخواست دیں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24097', 'pk', 'you_need_to_agree_with_our_policies', 'آپ کو ہماری پالیسیوں سے اتفاق کرنے کی ضرورت ہے', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24098', 'pk', 'forgot_password', 'پاسورڈ بھول گے', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24099', 'pk', 'seo_setting', 'SEO کی ترتیب', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24100', 'pk', 'system_update', 'سسٹم اپ ڈیٹ', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24101', 'pk', 'add_new_payment_method', 'ادائیگی کا نیا طریقہ شامل کریں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24102', 'pk', 'manual_payment_method', 'دستی ادائیگی کا طریقہ', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24103', 'pk', 'heading', 'سرخی', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24104', 'pk', 'logo', 'لوگو', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24105', 'pk', 'manual_payment_information', 'دستی ادائیگی سے متعلق معلومات', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24106', 'pk', 'type', 'ٹائپ کریں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24107', 'pk', 'custom_payment', 'کسٹم ادائیگی', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24108', 'pk', 'check_payment', 'ادائیگی چیک کریں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24109', 'pk', 'checkout_thumbnail', 'چیک آؤٹ تھمب نیل', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24110', 'pk', 'payment_instruction', 'ادائیگی کی ہدایت', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24111', 'pk', 'bank_information', 'بینک کی معلومات', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24112', 'pk', 'select_file', 'فائل منتخب کریں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24113', 'pk', 'upload_new', 'نیا اپ لوڈ کریں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24114', 'pk', 'sort_by_newest', 'نئے کے لحاظ سے ترتیب دیں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24115', 'pk', 'sort_by_oldest', 'سب سے قدیم کے لحاظ سے ترتیب دیں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24116', 'pk', 'sort_by_smallest', 'چھوٹے سے ترتیب دیں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24117', 'pk', 'sort_by_largest', 'سب سے بڑے کے لحاظ سے ترتیب دیں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24118', 'pk', 'selected_only', 'صرف منتخب', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24119', 'pk', 'no_files_found', 'کوئی فائل نہیں ملی', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24120', 'pk', '0_file_selected', '0 فائل منتخب کی گئی', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24121', 'pk', 'clear', 'صاف', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24122', 'pk', 'prev', 'پچھلا', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24123', 'pk', 'next', 'اگلے', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24124', 'pk', 'add_files', 'فائلیں شامل کریں', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24125', 'pk', 'method_has_been_inserted_successfully', 'طریقہ کامیابی کے ساتھ داخل کردیا گیا ہے', '2021-02-09 14:09:29', '2021-09-20 13:00:20'),
('24126', 'pk', 'order_date', 'آرڈر کی تاریخ', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24127', 'pk', 'bill_to', 'کا بل', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24128', 'pk', 'sub_total', 'سب ٹوٹل', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24129', 'pk', 'total_tax', 'کل ٹیکس', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24130', 'pk', 'grand_total', 'مجموعی عدد', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24131', 'pk', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'آپ کا آرڈر کامیابی کے ساتھ دیا گیا ہے۔ براہ کرم خریداری کی تاریخ سے ادائیگی کی معلومات جمع کروائیں', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24132', 'pk', 'thank_you_for_your_order', 'آپ کے آرڈر کے لئے آپ کا شکریہ!', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24133', 'pk', 'order_code', 'آرڈر کوڈ:', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24134', 'pk', 'a_copy_or_your_order_summary_has_been_sent_to', 'ایک کاپی یا آپ کے آرڈر کا سمری ارسال کردی گئی ہے', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24135', 'pk', 'make_payment', 'ادائیگی کرنا', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24136', 'pk', 'payment_screenshot', 'ادائیگی اسکرین شاٹ', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24137', 'pk', 'paypal_credential', 'پے پال سند', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24138', 'pk', 'paypal_client_id', 'پے پال کلائنٹ کی شناخت', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24139', 'pk', 'paypal_client_secret', 'پے پال کلائنٹ کا خفیہ', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24140', 'pk', 'paypal_sandbox_mode', 'پے پال سینڈ باکس وضع', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24141', 'pk', 'sslcommerz_credential', 'Sslcommerz اسناد', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24142', 'pk', 'sslcz_store_id', 'Sslcz اسٹور کی شناخت', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24143', 'pk', 'sslcz_store_password', 'Sslcz اسٹور پاس ورڈ', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24144', 'pk', 'sslcommerz_sandbox_mode', 'Sslcommerz Sandbox وضع', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24145', 'pk', 'stripe_credential', 'پٹی سند', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24146', 'pk', 'stripe_key', 'سٹرپ کلید', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24147', 'pk', 'stripe_secret', 'سٹرپ سیکریٹ', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24148', 'pk', 'razorpay_credential', 'استراپی اسناد', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24149', 'pk', 'razor_key', 'RAZOR KEY', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24150', 'pk', 'razor_secret', 'RAZOR سیکرٹ', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24151', 'pk', 'instamojo_credential', 'انسٹیموجو اسناد', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24152', 'pk', 'api_key', 'API کلید', '2021-02-09 14:09:30', '2021-09-20 13:00:20'),
('24153', 'pk', 'im_api_key', 'IM API KEY', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24154', 'pk', 'auth_token', 'ایتھ ٹوکن', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24155', 'pk', 'im_auth_token', 'IM اتھک ٹوکن', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24156', 'pk', 'instamojo_sandbox_mode', 'انسٹاموجو سینڈ باکس وضع', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24157', 'pk', 'paystack_credential', 'پے اسٹیک کی سند', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24158', 'pk', 'public_key', 'پبلک کلید', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24159', 'pk', 'secret_key', 'سیکرٹ کلیدی', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24160', 'pk', 'merchant_email', 'مرچنٹ ای میل', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24161', 'pk', 'voguepay_credential', 'ووگ پے کی اسناد', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24162', 'pk', 'merchant_id', 'مرچنٹ ID', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24163', 'pk', 'sandbox_mode', 'سینڈ باکس وضع', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24164', 'pk', 'payhere_credential', 'ادائیگی کی سند', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24165', 'pk', 'payhere_merchant_id', 'براہ کرم مرچنٹ کی شناخت', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24166', 'pk', 'payhere_secret', 'ادا سیکریٹری', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24167', 'pk', 'payhere_currency', 'ادائیگی کی کریسی', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24168', 'pk', 'payhere_sandbox_mode', 'پےہر سینڈ باکس وضع', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24169', 'pk', 'ngenius_credential', 'نگینیوس سند', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24170', 'pk', 'ngenius_outlet_id', 'NGENIUS OUTLET ID', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24171', 'pk', 'ngenius_api_key', 'NGENIUS API کلید', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24172', 'pk', 'ngenius_currency', 'NGENIUS CURRENCY', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24173', 'pk', 'mpesa_credential', 'میپسا سند', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24174', 'pk', 'mpesa_consumer_key', 'MPESA صارفین کی کلید', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24175', 'pk', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24176', 'pk', 'mpesa_consumer_secret', 'MPESA صارفین کا سیکرٹ', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24177', 'pk', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24178', 'pk', 'mpesa_short_code', 'MPESA شارٹ کوڈ', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24179', 'pk', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-09 14:09:31', '2021-09-20 13:00:20'),
('24180', 'pk', 'mpesa_sandbox_activation', 'MPESA سینڈ بوکس ایکٹیویشن', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24181', 'pk', 'flutterwave_credential', 'فلوٹر ویو کی اسناد', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24182', 'pk', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24183', 'pk', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24184', 'pk', 'rave_title', 'RAVE_TITLE', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24185', 'pk', 'stagin_activation', 'سرگرمی', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24186', 'pk', 'all_product', 'تمام پروڈکٹ', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24187', 'pk', 'sort_by', 'کے ذریعہ ترتیب دیں', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24188', 'pk', 'rating_high__low', 'درجہ بندی (اعلی> کم)', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24189', 'pk', 'rating_low__high', 'درجہ بندی (کم> اعلی)', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24190', 'pk', 'num_of_sale_high__low', 'فروخت کی تعداد (اعلی> کم)', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24191', 'pk', 'num_of_sale_low__high', 'فروخت کی تعداد (کم> اعلی)', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24192', 'pk', 'base_price_high__low', 'بنیادی قیمت (اعلی> کم)', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24193', 'pk', 'base_price_low__high', 'بنیادی قیمت (کم> زیادہ)', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24194', 'pk', 'type__enter', 'ٹائپ کریں اور درج کریں', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24195', 'pk', 'added_by', 'نے شامل کیا', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24196', 'pk', 'num_of_sale', 'برائے فروخت', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24197', 'pk', 'total_stock', 'کل اسٹاک', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24198', 'pk', 'todays_deal', 'آج کا سودا', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24199', 'pk', 'rating', 'درجہ بندی', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24200', 'pk', 'times', 'اوقات', '2021-02-09 14:09:32', '2021-02-09 14:09:32'),
('24201', 'pk', 'add_nerw_product', 'اعصابی مصنوعات شامل کریں', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24202', 'pk', 'product_information', 'مصنوعات کی معلومات', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24203', 'pk', 'unit', 'یونٹ', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24204', 'pk', 'unit_eg_kg_pc_etc', 'یونٹ (جیسے کے جی ، پی سی وغیرہ)', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24205', 'pk', 'minimum_qty', 'کم سے کم مقدار', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24206', 'pk', 'tags', 'ٹیگز', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24207', 'pk', 'type_and_hit_enter_to_add_a_tag', 'ٹیگ شامل کرنے کیلئے ٹائپ کریں اور enter کو دبائیں', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24208', 'pk', 'barcode', 'بارکوڈ', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24209', 'pk', 'refundable', 'واپسی', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24210', 'pk', 'product_images', 'پروڈکٹ امیجز', '2021-02-09 14:09:32', '2021-09-20 13:00:20'),
('24211', 'pk', 'gallery_images', 'گیلری ، نگارخانہ کی تصاویر', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24212', 'pk', 'todays_deal_updated_successfully', 'آج کا سودا کامیابی کے ساتھ اپ ڈیٹ ہوا', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24213', 'pk', 'published_products_updated_successfully', 'شائع شدہ مصنوعات کامیابی کے ساتھ اپ ڈیٹ ہوگئیں', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24214', 'pk', 'thumbnail_image', 'تھمب نیل امیج', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24215', 'pk', 'featured_products_updated_successfully', 'نمایاں مصنوعات کامیابی کے ساتھ اپ ڈیٹ ہوگئیں', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24216', 'pk', 'product_videos', 'پروڈکٹ ویڈیوز', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24217', 'pk', 'video_provider', 'ویڈیو فراہم کنندہ', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24218', 'pk', 'youtube', 'یوٹیوب', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24219', 'pk', 'dailymotion', 'ڈیلی موشن', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24220', 'pk', 'vimeo', 'Vimeo', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24221', 'pk', 'video_link', 'ویڈیو لنک', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24222', 'pk', 'product_variation', 'مصنوعات کی تبدیلی', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24223', 'pk', 'colors', 'رنگ', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24224', 'pk', 'attributes', 'اوصاف', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24225', 'pk', 'choose_attributes', 'اوصاف کا انتخاب کریں', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24226', 'pk', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'اس پروڈکٹ کی خصوصیات کو منتخب کریں اور پھر ہر ایک وصف کی قدروں کو ان پٹ کریں', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24227', 'pk', 'product_price__stock', 'مصنوعات کی قیمت + اسٹاک', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24228', 'pk', 'unit_price', 'اکائی قیمت', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24229', 'pk', 'purchase_price', 'قیمت خرید', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24230', 'pk', 'flat', 'فلیٹ', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24231', 'pk', 'percent', 'فیصد', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24232', 'pk', 'discount', 'چھوٹ', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24233', 'pk', 'product_description', 'مصنوعات کی وضاحت', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24234', 'pk', 'product_shipping_cost', 'مصنوعات کی شپنگ لاگت', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24235', 'pk', 'free_shipping', 'مفت ترسیل', '2021-02-09 14:09:33', '2021-09-20 13:00:20'),
('24236', 'pk', 'flat_rate', 'فلیٹ کی شرح', '2021-02-09 14:09:33', '2021-09-20 13:00:21'),
('24237', 'pk', 'shipping_cost', 'شپنگ کی قیمت', '2021-02-09 14:09:33', '2021-09-20 13:00:21'),
('24238', 'pk', 'pdf_specification', 'پی ڈی ایف تفصیلات', '2021-02-09 14:09:33', '2021-09-20 13:00:21'),
('24239', 'pk', 'seo_meta_tags', 'SEO میٹا ٹیگز', '2021-02-09 14:09:33', '2021-09-20 13:00:21'),
('24240', 'pk', 'meta_title', 'میٹا ٹائٹل', '2021-02-09 14:09:33', '2021-09-20 13:00:21'),
('24241', 'pk', 'meta_image', 'میٹا امیج', '2021-02-09 14:09:33', '2021-09-20 13:00:21'),
('24242', 'pk', 'choice_title', 'چوائس کا عنوان', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24243', 'pk', 'enter_choice_values', 'انتخاب کی قدر درج کریں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24244', 'pk', 'all_categories', 'تمام زمرے', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24245', 'pk', 'add_new_category', 'نئی قسم شامل کریں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24246', 'pk', 'type_name__enter', 'نام اور اندراج ٹائپ کریں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24247', 'pk', 'banner', 'بینر', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24248', 'pk', 'commission', 'کمیشن', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24249', 'pk', 'icon', 'آئیکن', '2021-02-09 14:09:34', '2021-02-09 14:09:34'),
('24250', 'pk', 'featured_categories_updated_successfully', 'نمایاں قسمیں کامیابی کے ساتھ اپ ڈیٹ ہوگئیں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24251', 'pk', 'hot', 'گرم', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24252', 'pk', 'filter_by_payment_status', 'ادائیگی کی حیثیت سے فلٹر کریں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24253', 'pk', 'unpaid', 'غیر ادائیگی', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24254', 'pk', 'filter_by_deliver_status', 'فلٹر بذریعہ ترسیل کی حیثیت', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24255', 'pk', 'pending', 'زیر التواء', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24256', 'pk', 'type_order_code__hit_enter', 'آرڈر کوڈ ٹائپ کریں اور انٹر کو دبائیں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24257', 'pk', 'num_of_products', 'نمبر مصنوعات کی', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24258', 'pk', 'walk_in_customer', 'واک ان کسٹمر', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24259', 'pk', 'qty', 'QTY', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24260', 'pk', 'without_shipping_charge', 'شپنگ چارج کے بغیر', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24261', 'pk', 'with_shipping_charge', 'شپنگ چارج کے ساتھ', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24262', 'pk', 'pay_with_cash', 'کیش کے ساتھ ادائیگی کریں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24263', 'pk', 'shipping_address', 'شپنگ ایڈریس', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24264', 'pk', 'close', 'بند کریں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24265', 'pk', 'select_country', 'ملک کا انتخاب کیجئے', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24266', 'pk', 'order_confirmation', 'آرڈر کی تصدیق', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24267', 'pk', 'are_you_sure_to_confirm_this_order', 'کیا آپ واقعی اس آرڈر کی تصدیق کر رہے ہیں؟', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24268', 'pk', 'comfirm_order', 'آرڈر کی تصدیق کریں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24269', 'pk', 'personal_info', 'ذاتی معلومات', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24270', 'pk', 'repeat_password', 'پاس ورڈ دوبارہ لکھیے', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24271', 'pk', 'shop_name', 'دکان کا نام', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24272', 'pk', 'register_your_shop', 'اپنی دکان کا اندراج کروائیں', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24273', 'pk', 'affiliate_informations', 'ملحق معلومات', '2021-02-09 14:09:34', '2021-09-20 13:00:21'),
('24274', 'pk', 'affiliate', 'ملحق', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24275', 'pk', 'user_info', 'صارف کی معلومات', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24276', 'pk', 'installed_addon', 'انسٹال اڈون', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24277', 'pk', 'available_addon', 'دستیاب اڈون', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24278', 'pk', 'install_new_addon', 'نیا اڈون انسٹال کریں', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24279', 'pk', 'version', 'ورژن', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24280', 'pk', 'activated', 'چالو', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24281', 'pk', 'deactivated', 'غیر فعال', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24282', 'pk', 'activate_otp', 'او ٹی پی کو چالو کریں', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24283', 'pk', 'otp_will_be_used_for', 'OTP استعمال کیا جائے گا', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24284', 'pk', 'settings_updated_successfully', 'ترتیبات کامیابی سے اپ ڈیٹ ہو گئی', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24285', 'pk', 'product_owner', 'مصنوع کا مالک', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24286', 'pk', 'point', 'پوائنٹ', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24287', 'pk', 'set_point_for_product_within_a_range', 'ایک حد کے اندر اندر مصنوع کے لئے پوائنٹ مرتب کریں', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24288', 'pk', 'set_point_for_multiple_products', 'متعدد مصنوعات کے لئے پوائنٹ مرتب کریں', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24289', 'pk', 'min_price', 'کم سے کم قیمت', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24290', 'pk', 'max_price', 'زیادہ سے زیادہ قیمت', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24291', 'pk', 'set_point_for_all_products', 'تمام مصنوعات کے لئے پوائنٹ مرتب کریں', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24292', 'pk', 'set_point_for_', 'پوائنٹ پوائنٹ برائے سیٹ کریں', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24293', 'pk', 'convert_status', 'حالت تبدیل کریں', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24294', 'pk', 'earned_at', 'کمائی گئی', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24295', 'pk', 'seller_based_selling_report', 'فروخت کنندہ پر مبنی فروخت کی رپورٹ', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24296', 'pk', 'sort_by_verificarion_status', 'ورکیئرئین حیثیت کے لحاظ سے ترتیب دیں', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24297', 'pk', 'approved', 'منظورشدہ', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24298', 'pk', 'non_approved', 'غیر منظور شدہ', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24299', 'pk', 'filter', 'فلٹر کریں', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24300', 'pk', 'seller_name', 'بیچنے والے کا نام', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24301', 'pk', 'number_of_product_sale', 'مصنوع کی فروخت کی تعداد', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24302', 'pk', 'order_amount', 'آرڈر کی رقم', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24303', 'pk', 'facebook_chat_setting', 'فیس بک چیٹ سیٹنگ', '2021-02-09 14:09:35', '2021-09-20 13:00:21'),
('24304', 'pk', 'facebook_page_id', 'فیس بک پیج آئی ڈی', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24305', 'pk', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'جب آپ فیس بک چیٹ کو تشکیل دے رہے ہیں تو براہ کرم محتاط رہیں۔ غلط کنفیگریشن کے ل you آپ کو صارف کی آخر سائٹ پر میسنجر آئیکن نہیں ملے گا۔', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24306', 'pk', 'login_into_your_facebook_page', 'اپنے فیس بک پیج میں لاگ ان کریں', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24307', 'pk', 'find_the_about_option_of_your_facebook_page', 'اپنے فیس بک پیج کے بارے میں آپشن تلاش کریں', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24308', 'pk', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'بالکل نیچے ، آپ کو \\ \"فیس بک پیج ID \\\" مل سکتا ہے', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24309', 'pk', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'اپنے صفحے کی ترتیبات پر جائیں اور \\ \"ایڈوانس پیغام رسانی \\\" کا آپشن تلاش کریں۔', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24310', 'pk', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'اس صفحے کو نیچے اسکرول کریں اور آپ کو white \"سفید درج شدہ ڈومین \\\" ملے گا', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24311', 'pk', 'set_your_website_domain_name', 'اپنی ویب سائٹ کا ڈومین نام متعین کریں', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24312', 'pk', 'google_recaptcha_setting', 'گوگل ریکاٹا سیٹنگ', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24313', 'pk', 'site_key', 'سائٹ KEY', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24314', 'pk', 'select_shipping_method', 'شپنگ کا طریقہ منتخب کریں', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24315', 'pk', 'product_wise_shipping_cost', 'مصنوعات کے مطابق شپنگ لاگت', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24316', 'pk', 'flat_rate_shipping_cost', 'فلیٹ ریٹ شپنگ لاگت', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24317', 'pk', 'seller_wise_flat_shipping_cost', 'بیچنے والے کے مطابق فلیٹ شپنگ لاگت', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24318', 'pk', 'note', 'نوٹ', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24319', 'pk', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'پروڈکٹ کے حساب سے شپنگ لاگت کا حساب کتاب: ہر سامان کی شپنگ لاگت کے اضافے کے ذریعے شپنگ لاگت کا حساب لگایا جاتا ہے', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24320', 'pk', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'فلیٹ ریٹ شپنگ لاگت کا حساب کتاب: کسٹمر کی کتنی مصنوعات خریداری کرتی ہیں ، اس سے کوئی فرق نہیں پڑتا ہے۔ شپنگ لاگت طے ہے', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24321', 'pk', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'بیچنے والے کے مطابق فلیٹ شپنگ لاگت کا حساب کتاب: ہر فروخت کنندہ کے لئے مقررہ شرح۔ اگر کوئی صارف دو بیچنے والے کی شپنگ لاگت سے 2 مصنوعات خریدتا ہے تو ہر بیچنے والے کے فلیٹ شپنگ لاگت کے اضافے کے حساب سے اس کا حساب کتاب کیا جاتا ہے', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24322', 'pk', 'flat_rate_cost', 'فلیٹ ریٹ لاگت', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24323', 'pk', 'shipping_cost_for_admin_products', 'ایڈمن مصنوعات کے لئے شپنگ لاگت', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24324', 'pk', 'countries', 'ممالک', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24325', 'pk', 'showhide', 'دکھانا چھپانا', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24326', 'pk', 'country_status_updated_successfully', 'ملکی حیثیت کامیابی کے ساتھ اپ ڈیٹ ہوگئی', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24327', 'pk', 'all_subcategories', 'تمام ذیلی زمرے', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24328', 'pk', 'add_new_subcategory', 'نئی ذیلی زمرہ شامل کریں', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24329', 'pk', 'subcategories', 'ذیلی زمرے', '2021-02-09 14:09:36', '2021-09-20 13:00:21'),
('24330', 'pk', 'sub_category_information', 'ذیلی زمرہ کی معلومات', '2021-02-09 14:10:43', '2021-09-20 13:00:21'),
('24331', 'pk', 'slug', 'سلگ', '2021-02-09 14:10:43', '2021-09-20 13:00:21'),
('24332', 'pk', 'all_sub_subcategories', 'سب ذیلی زمرہ جات', '2021-02-09 14:10:43', '2021-09-20 13:00:21'),
('24333', 'pk', 'add_new_sub_subcategory', 'نیا ذیلی ذیلی زمرہ شامل کریں', '2021-02-09 14:10:43', '2021-09-20 13:00:21'),
('24334', 'pk', 'subsubcategories', 'ذیلی ذیلی زمرے', '2021-02-09 14:10:43', '2021-09-20 13:00:21'),
('24335', 'pk', 'make_this_default', 'اس کو پہلے سے طے کریں', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24336', 'pk', 'shops', 'دکانیں', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24337', 'pk', 'women_clothing__fashion', 'خواتین کے لباس اور فیشن', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24338', 'pk', 'cellphones__tabs', 'سیل فونز اور ٹیبز', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24339', 'pk', 'welcome_to', 'میں خوش آمدید', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24340', 'pk', 'create_a_new_account', 'نیا اکاؤنٹ بنائیں', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24341', 'pk', 'full_name', 'پورا نام', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24342', 'pk', 'password', 'پاس ورڈ', '2021-02-09 14:10:44', '2021-02-09 14:10:44'),
('24343', 'pk', 'confrim_password', 'تصدیقی پاس ورڈ', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24344', 'pk', 'i_agree_with_the', 'میں اس سے متفق ہوں', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24345', 'pk', 'terms_and_conditions', 'شرائط و ضوابط', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24346', 'pk', 'register', 'رجسٹر کریں', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24347', 'pk', 'already_have_an_account', 'پہلے سے ہی ایک اکاؤنٹ ہے', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24348', 'pk', 'sign_up_with', 'کے ساتھ سائن اپ کریں', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24349', 'pk', 'i_agree_with_the_terms_and_conditions', 'میں شرائط و ضوابط سے اتفاق کرتا ہوں', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24350', 'pk', 'all_role', 'تمام کردار', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24351', 'pk', 'add_new_role', 'نیا کردار شامل کریں', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24352', 'pk', 'roles', 'کردار', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24353', 'pk', 'add_new_staffs', 'نیا عملہ شامل کریں', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24354', 'pk', 'role', 'کردار', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24355', 'pk', 'frontend_website_name', 'فرنٹ اینڈ ویب سائٹ کا نام', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24356', 'pk', 'website_name', 'ویب سائٹ کا نام', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24357', 'pk', 'site_motto', 'سائٹ کا مقصد', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24358', 'pk', 'best_ecommerce_website', 'ای کامرس کی بہترین ویب سائٹ', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24359', 'pk', 'site_icon', 'سائٹ کا نشان', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24360', 'pk', 'website_favicon_32x32_png', 'ویب سائٹ ویب سائٹ. 32x32 .png', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24361', 'pk', 'website_base_color', 'ویب سائٹ بیس رنگین', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24362', 'pk', 'hex_color_code', 'ہیکس رنگین کوڈ', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24363', 'pk', 'website_base_hover_color', 'ویب سائٹ بیس ہوور رنگین', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24364', 'pk', 'update', 'اپ ڈیٹ', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24365', 'pk', 'global_seo', 'عالمی SEO', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24366', 'pk', 'meta_description', 'میٹا کی تفصیل', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24367', 'pk', 'keywords', 'مطلوبہ الفاظ', '2021-02-09 14:10:44', '2021-09-20 13:00:21'),
('24368', 'pk', 'separate_with_coma', 'کوما کے ساتھ الگ کریں', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24369', 'pk', 'website_pages', 'ویب سائٹ صفحات', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24370', 'pk', 'all_pages', 'تمام صفحات', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24371', 'pk', 'add_new_page', 'نیا صفحہ شامل کریں', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24372', 'pk', 'url', 'یو آر ایل', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24373', 'pk', 'actions', 'عمل', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24374', 'pk', 'edit_page_information', 'صفحے کی معلومات میں ترمیم کریں', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24375', 'pk', 'page_content', 'صفحہ کا مواد', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24376', 'pk', 'title', 'عنوان', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24377', 'pk', 'link', 'لنک', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24378', 'pk', 'use_character_number_hypen_only', 'صرف حرف ، نمبر ، ہائپین استعمال کریں', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24379', 'pk', 'add_content', 'مواد شامل کریں', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24380', 'pk', 'seo_fields', 'SEO کے فیلڈز', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24381', 'pk', 'update_page', 'صفحہ کو اپ ڈیٹ کریں', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24382', 'pk', 'default_language', 'پہلے سے طے شدہ زبان', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24383', 'pk', 'add_new_language', 'نئی زبان شامل کریں', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24384', 'pk', 'rtl', 'آر ٹی ایل', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24385', 'pk', 'translation', 'ترجمہ', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24386', 'pk', 'language_information', 'زبان کی معلومات', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24387', 'pk', 'save_page', 'صفحہ محفوظ کریں', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24388', 'pk', 'home_page_settings', 'ہوم پیج کی ترتیبات', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24389', 'pk', 'home_slider', 'ہوم سلائیڈر', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24390', 'pk', 'photos__links', 'فوٹو اور لنکس', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24391', 'pk', 'add_new', 'نیا شامل کریں', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24392', 'pk', 'home_categories', 'ہوم زمرے', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24393', 'pk', 'home_banner_1_max_3', 'ہوم بینر 1 (زیادہ سے زیادہ 3)', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24394', 'pk', 'banner__links', 'بینر اور لنکس', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24395', 'pk', 'home_banner_2_max_3', 'ہوم بینر 2 (زیادہ سے زیادہ 3)', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24396', 'pk', 'top_10', 'ٹاپ 10', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24397', 'pk', 'top_categories_max_10', 'اعلی قسمیں (زیادہ سے زیادہ 10)', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24398', 'pk', 'top_brands_max_10', 'اعلی برانڈز (زیادہ سے زیادہ 10)', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24399', 'pk', 'system_name', 'سسٹم کا نام', '2021-02-09 14:10:45', '2021-09-20 13:00:21'),
('24400', 'pk', 'system_logo__white', 'سسٹم کا لوگو۔ سفید', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24401', 'pk', 'choose_files', 'فائلیں منتخب کریں', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24402', 'pk', 'will_be_used_in_admin_panel_side_menu', 'ایڈمن پینل سائیڈ مینو میں استعمال ہوگا', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24403', 'pk', 'system_logo__black', 'سسٹم لوگو - سیاہ', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24404', 'pk', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'موبائل + ایڈمن لاگ ان صفحے میں ایڈمن پینل ٹاپ بار میں استعمال ہوگا', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24405', 'pk', 'system_timezone', 'سسٹم ٹائم زون', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24406', 'pk', 'admin_login_page_background', 'ایڈمن لاگ ان صفحے کا پس منظر', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24407', 'pk', 'website_header', 'ویب سائٹ ہیڈر', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24408', 'pk', 'header_setting', 'ہیڈر کی ترتیب', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24409', 'pk', 'header_logo', 'ہیڈر لوگو', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24410', 'pk', 'show_language_switcher', 'زبان تبدیل کرنے والا دکھائیں؟', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24411', 'pk', 'show_currency_switcher', 'کرنسی مبدل دکھائیں؟', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24412', 'pk', 'enable_stikcy_header', 'اسٹکی ہیڈر کو فعال کریں؟', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24413', 'pk', 'website_footer', 'ویب سائٹ فوٹر', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24414', 'pk', 'footer_widget', 'فوٹر ویجیٹ', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24415', 'pk', 'about_widget', 'ویجیٹ کے بارے میں', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24416', 'pk', 'footer_logo', 'فوٹر لوگو', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24417', 'pk', 'about_description', 'تفصیل کے بارے میں', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24418', 'pk', 'contact_info_widget', 'رابطہ ویجیٹ سے رابطہ کریں', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24419', 'pk', 'footer_contact_address', 'فوٹر سے رابطہ ایڈریس', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24420', 'pk', 'footer_contact_phone', 'فوٹر رابطہ فون', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24421', 'pk', 'footer_contact_email', 'فوٹر سے رابطہ ای میل', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24422', 'pk', 'link_widget_one', 'لنک ویجیٹ ایک', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24423', 'pk', 'links', 'لنکس', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24424', 'pk', 'footer_bottom', 'فوٹر نیچے', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24425', 'pk', 'copyright_widget_', 'کاپی رائٹ ویجیٹ', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24426', 'pk', 'copyright_text', 'کاپی رائٹ ٹیکسٹ', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24427', 'pk', 'social_link_widget_', 'سوشل لنک ویجیٹ', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24428', 'pk', 'show_social_links', 'سماجی روابط دکھائیں؟', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24429', 'pk', 'social_links', 'سماجی روابط', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24430', 'pk', 'payment_methods_widget_', 'ادائیگی کرنے کے طریقوں ویجیٹ', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24431', 'pk', 'rtl_status_updated_successfully', 'RTL حیثیت کامیابی کے ساتھ اپ ڈیٹ ہوگئی', '2021-02-09 14:10:46', '2021-09-20 13:00:21'),
('24432', 'pk', 'language_changed_to_', 'زبان بدل گئی', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24433', 'pk', 'inhouse_product_sale_report', 'اندرونی مصنوع کی فروخت کی رپورٹ', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24434', 'pk', 'sort_by_category', 'زمرہ کے لحاظ سے ترتیب دیں', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24435', 'pk', 'product_wise_stock_report', 'مصنوع وار وار اسٹاک رپورٹ', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24436', 'pk', 'currency_changed_to_', 'کرنسی بدل گئی', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24437', 'pk', 'avatar', 'اوتار', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24438', 'pk', 'copy', 'کاپی', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24439', 'pk', 'variant', 'متغیر', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24440', 'pk', 'variant_price', 'متغیر قیمت', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24441', 'pk', 'sku', 'ایس کیو', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24442', 'pk', 'key', 'چابی', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24443', 'pk', 'value', 'قدر', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24444', 'pk', 'copy_translations', 'ترجمہ کاپی کریں', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24445', 'pk', 'all_pickup_points', 'تمام اٹھاو پوائنٹس', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24446', 'pk', 'add_new_pickup_point', 'نیا اٹھاو پوائنٹ شامل کریں', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24447', 'pk', 'manager', 'منیجر', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24448', 'pk', 'location', 'مقام', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24449', 'pk', 'pickup_station_contact', 'اٹھاو اسٹیشن رابطہ', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24450', 'pk', 'open', 'کھولو', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24451', 'pk', 'pos_activation_for_seller', 'بیچنے والے کے لئے POS ایکٹیویشن', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24452', 'pk', 'order_completed_successfully', 'آرڈر کامیابی کے ساتھ مکمل ہوا۔', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24453', 'pk', 'text_input', 'متن ان پٹ', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24454', 'pk', 'select', 'منتخب کریں', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24455', 'pk', 'multiple_select', 'ایک سے زیادہ منتخب کریں', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24456', 'pk', 'radio', 'ریڈیو', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24457', 'pk', 'file', 'فائل', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24458', 'pk', 'email_address', 'ای میل اڈریس', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24459', 'pk', 'verification_info', 'تصدیق کی معلومات', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24460', 'pk', 'approval', 'منظوری', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24461', 'pk', 'due_amount', 'باقی رقم', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24462', 'pk', 'show', 'دکھائیں', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24463', 'pk', 'pay_now', 'اب ادا', '2021-02-09 14:10:47', '2021-09-20 13:00:21'),
('24464', 'pk', 'affiliate_user_verification', 'ملحق صارف کی توثیق', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24465', 'pk', 'reject', 'مسترد کریں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24466', 'pk', 'accept', 'قبول کریں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24467', 'pk', 'beauty_health__hair', 'خوبصورتی ، صحت اور بالوں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24468', 'pk', 'comparison', 'موازنہ', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24469', 'pk', 'reset_compare_list', 'فہرست کا موازنہ دوبارہ کریں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24470', 'pk', 'your_comparison_list_is_empty', 'آپ کی موازنہ کی فہرست خالی ہے', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24471', 'pk', 'convert_point_to_wallet', 'کنٹ پوائنٹ پوائنٹ میں والیٹ', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24472', 'pk', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'نوٹ: کلب پوائنٹ ایڈون استعمال کرنے سے پہلے آپ کو پہلے پرس کا اختیار چالو کرنے کی ضرورت ہے۔', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24473', 'pk', 'create_an_account', 'کھاتا کھولیں.', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24474', 'pk', 'use_email_instead', 'اس کے بجائے ای میل کا استعمال کریں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24475', 'pk', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'سائن اپ کرکے آپ ہمارے شرائط و ضوابط سے اتفاق کرتے ہیں۔', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24476', 'pk', 'create_account', 'اکاؤنٹ بنائیں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24477', 'pk', 'or_join_with', 'یا ساتھ شامل ہوں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24478', 'pk', 'already_have_an_account', 'پہلے سے ہی ایک اکاؤنٹ ہے؟', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24479', 'pk', 'log_in', 'لاگ ان کریں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24480', 'pk', 'computer__accessories', 'کمپیوٹر اور لوازمات', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24481', 'pk', 'products', 'مصنوعات)', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24482', 'pk', 'in_your_cart', 'آپ کی ٹوکری میں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24483', 'pk', 'in_your_wishlist', 'آپ کی خواہش کی فہرست میں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24484', 'pk', 'you_ordered', 'آپ نے حکم دیا', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24485', 'pk', 'default_shipping_address', 'طے شدہ شپنگ ایڈریس', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24486', 'pk', 'sports__outdoor', 'کھیل اور بیرونی', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24487', 'pk', 'copied', 'کاپی', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24488', 'pk', 'copy_the_promote_link', 'پروموشن لنک کو کاپی کریں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24489', 'pk', 'write_a_review', 'تجزیہ لکھیں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24490', 'pk', 'your_name', 'تمھارا نام', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24491', 'pk', 'comment', 'تبصرہ', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24492', 'pk', 'your_review', 'آپ کا جائزہ', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24493', 'pk', 'submit_review', 'جائزہ پیش کریں', '2021-02-09 14:10:48', '2021-09-20 13:00:21'),
('24494', 'pk', 'claire_willis', 'کلیئر ولس', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24495', 'pk', 'germaine_greene', 'جرمین گرین', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24496', 'pk', 'product_file', 'پروڈکٹ فائل', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24497', 'pk', 'choose_file', 'فائل منتخب کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24498', 'pk', 'type_to_add_a_tag', 'ٹیگ شامل کرنے کے ل Type ٹائپ کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24499', 'pk', 'images', 'تصاویر', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24500', 'pk', 'main_images', 'اہم تصاویر', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24501', 'pk', 'meta_tags', 'میٹا ٹیگز', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24502', 'pk', 'digital_product_has_been_inserted_successfully', 'ڈیجیٹل پروڈکٹ کامیابی کے ساتھ داخل کیا گیا ہے', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24503', 'pk', 'edit_digital_product', 'ڈیجیٹل پروڈکٹ میں ترمیم کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24504', 'pk', 'select_an_option', 'ایک آپشن منتخب کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24505', 'pk', 'tax', 'ٹیکس', '2021-02-09 14:10:49', '2021-02-09 14:10:49'),
('24506', 'pk', 'any_question_about_this_product', 'اس کی مصنوعات کے بارے میں کوئی سوال ہے؟', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24507', 'pk', 'sign_in', 'سائن ان', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24508', 'pk', 'login_with_google', 'گوگل کے ساتھ لاگ ان کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24509', 'pk', 'login_with_facebook', 'فیس بک لاگ ان کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24510', 'pk', 'login_with_twitter', 'ٹویٹر کے ساتھ لاگ ان کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24511', 'pk', 'click_to_show_phone_number', 'فون نمبر ظاہر کرنے کے لئے کلک کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24512', 'pk', 'other_ads_of', 'کے دوسرے اشتہارات', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24513', 'pk', 'store_home', 'اسٹور ہوم', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24514', 'pk', 'top_selling', 'اوپر فروخت', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24515', 'pk', 'shop_settings', 'دکان کی ترتیبات', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24516', 'pk', 'visit_shop', 'دکان ملاحظہ کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24517', 'pk', 'pickup_points', 'اٹھاو پوائنٹس', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24518', 'pk', 'select_pickup_point', 'پک اپ پوائنٹ منتخب کریں', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24519', 'pk', 'slider_settings', 'سلائیڈر کی ترتیبات', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24520', 'pk', 'social_media_link', 'سوشل میڈیا لنک', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24521', 'pk', 'facebook', 'فیس بک', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24522', 'pk', 'twitter', 'ٹویٹر', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24523', 'pk', 'google', 'گوگل', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24524', 'pk', 'new_arrival_products', 'نئی آمد کی مصنوعات', '2021-02-09 14:10:49', '2021-09-20 13:00:21'),
('24525', 'pk', 'check_your_order_status', 'اپنے آرڈر کی حیثیت کو چیک کریں', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24526', 'pk', 'shipping_method', 'بھیجنے کا طریقہ', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24527', 'pk', 'shipped_by', 'بھیج دیا گیا', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24528', 'pk', 'image', 'تصویر', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24529', 'pk', 'sub_sub_category', 'ذیلی ذیلی زمرہ', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24530', 'pk', 'inhouse_products', 'اندرونی مصنوعات', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24531', 'pk', 'forgot_password', 'پاسورڈ بھول گے؟', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24532', 'pk', 'enter_your_email_address_to_recover_your_password', 'اپنا پاس ورڈ بازیافت کرنے کے لئے اپنا ای میل ایڈریس درج کریں۔', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24533', 'pk', 'email_or_phone', 'ای میل یا فون', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24534', 'pk', 'send_password_reset_link', 'پاس ورڈ ری سیٹ کریں لنک بھیجیں', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24535', 'pk', 'back_to_login', 'لاگ ان پر واپس جائیں', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24536', 'pk', 'index', 'انڈیکس', '2021-02-09 14:10:50', '2021-02-09 14:10:50'),
('24537', 'pk', 'download_your_product', 'اپنی مصنوعات کو ڈاؤن لوڈ کریں', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24538', 'pk', 'option', 'آپشن', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24539', 'pk', 'applied_refund_request', 'درخواست شدہ رقم کی واپسی کی درخواست', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24540', 'pk', 'item_has_been_renoved_from_wishlist', 'آئٹم کو خواہش کی فہرست سے واپس لیا گیا ہے', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24541', 'pk', 'bulk_products_upload', 'بلک مصنوعات اپ لوڈ کریں', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24542', 'pk', 'upload_csv', 'CSV اپ لوڈ کریں', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24543', 'pk', 'create_a_ticket', 'ایک ٹکٹ بنائیں', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24544', 'pk', 'tickets', 'ٹکٹ', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24545', 'pk', 'ticket_id', 'ٹکٹ کی شناخت', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24546', 'pk', 'sending_date', 'تاریخ بھیجنا', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24547', 'pk', 'subject', 'مضمون', '2021-02-09 14:10:50', '2021-09-20 13:00:21'),
('24548', 'pk', 'view_details', 'تفصیلات دیکھیں', '2021-02-09 14:10:50', '2021-09-20 13:00:22'),
('24549', 'pk', 'provide_a_detailed_description', 'تفصیلی تفصیل فراہم کریں', '2021-02-09 14:10:50', '2021-09-20 13:00:22'),
('24550', 'pk', 'type_your_reply', 'اپنا جواب ٹائپ کریں', '2021-02-09 14:10:50', '2021-09-20 13:00:22'),
('24551', 'pk', 'send_ticket', 'ٹکٹ بھیجیں', '2021-02-09 14:10:50', '2021-09-20 13:00:22'),
('24552', 'pk', 'load_more', 'مزید لوڈ کریں', '2021-02-09 14:10:50', '2021-09-20 13:00:22'),
('24553', 'pk', 'jewelry__watches', 'جواہرات اور گھڑیاں', '2021-02-09 14:10:50', '2021-09-20 13:00:22'),
('24554', 'pk', 'filters', 'فلٹرز', '2021-02-09 14:10:50', '2021-09-20 13:00:22'),
('24555', 'pk', 'contact_address', 'رابطہ ایڈریس', '2021-02-09 14:10:50', '2021-09-20 13:00:22'),
('24556', 'pk', 'contact_phone', 'رابطے کا فون', '2021-02-09 14:10:50', '2021-09-20 13:00:22'),
('24557', 'pk', 'contact_email', 'ای میل سے رابطہ کریں', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24558', 'pk', 'filter_by', 'کی طرف سے فلٹر', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24559', 'pk', 'condition', 'حالت', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24560', 'pk', 'all_type', 'تمام قسم', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24561', 'pk', 'pay_with_wallet', 'بٹوے کے ساتھ ادائیگی کریں', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24562', 'pk', 'select_variation', 'مختلف حالت منتخب کریں', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24563', 'pk', 'no_product_added', 'کوئی مصنوع شامل نہیں کیا گیا', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24564', 'pk', 'status_has_been_updated_successfully', 'حیثیت کامیابی کے ساتھ اپ ڈیٹ کردی گئی ہے', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24565', 'pk', 'all_seller_packages', 'تمام بیچنے والے پیکجز', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24566', 'pk', 'add_new_package', 'نیا پیکیج شامل کریں', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24567', 'pk', 'package_logo', 'پیکیج لوگو', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24568', 'pk', 'days', 'دن', '2021-02-09 14:10:51', '2021-02-09 14:10:51'),
('24569', 'pk', 'create_new_seller_package', 'نیا بیچنے والا پیکیج بنائیں', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24570', 'pk', 'package_name', 'پیکیج کا نام', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24571', 'pk', 'duration', 'دورانیہ', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24572', 'pk', 'validity_in_number_of_days', 'دن کی تعداد میں درست', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24573', 'pk', 'update_package_information', 'پیکیج کی معلومات کو اپ ڈیٹ کریں', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24574', 'pk', 'package_has_been_inserted_successfully', 'پیکیج کامیابی کے ساتھ داخل کیا گیا ہے', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24575', 'pk', 'refund_request', 'رقم کی واپسی کی درخواست', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24576', 'pk', 'reason', 'وجہ', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24577', 'pk', 'label', 'لیبل لگائیں', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24578', 'pk', 'select_label', 'لیبل منتخب کریں', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24579', 'pk', 'multiple_select_label', 'ایک سے زیادہ منتخب لیبل', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24580', 'pk', 'radio_label', 'ریڈیو لیبل', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24581', 'pk', 'pickup_point_orders', 'اٹھاو پوائنٹ آرڈرز', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24582', 'pk', 'view', 'دیکھیں', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24583', 'pk', 'order_', 'ترتیب #', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24584', 'pk', 'order_status', 'آرڈر کی حیثیت', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24585', 'pk', 'total_amount', 'کل رقم', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24586', 'pk', 'total', 'کل', '2021-02-09 14:10:51', '2021-09-20 13:00:22'),
('24587', 'pk', 'delivery_status_has_been_updated', 'فراہمی کی حیثیت کو اپ ڈیٹ کر دیا گیا ہے', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24588', 'pk', 'payment_status_has_been_updated', 'ادائیگی کی حیثیت کو اپ ڈیٹ کر دیا گیا ہے', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24589', 'pk', 'invoice', 'انوائس', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24590', 'pk', 'set_refund_time', 'رقم کی واپسی کا وقت طے کریں', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24591', 'pk', 'set_time_for_sending_refund_request', 'رقم کی واپسی کی درخواست بھیجنے کے لئے وقت طے کریں', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24592', 'pk', 'set_refund_sticker', 'رقم کی واپسی اسٹیکر سیٹ کریں', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24593', 'pk', 'sticker', 'اسٹیکر', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24594', 'pk', 'refund_request_all', 'سب کی واپسی کی درخواست', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24595', 'pk', 'order_id', 'آرڈر کی شناخت', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24596', 'pk', 'seller_approval', 'بیچنے والے کی منظوری', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24597', 'pk', 'admin_approval', 'ایڈمن منظوری', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24598', 'pk', 'refund_status', 'رقم کی واپسی کی حیثیت', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24599', 'pk', 'no_refund', 'ناقابل واپسی', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24600', 'pk', 'status_updated_successfully', 'حیثیت کامیابی کے ساتھ اپ ڈیٹ ہوگئی', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24601', 'pk', 'user_search_report', 'صارف کی تلاش کی رپورٹ', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24602', 'pk', 'search_by', 'بہ تلاش', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24603', 'pk', 'number_searches', 'نمبر تلاش', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24604', 'pk', 'sender', 'بھیجنے والا', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24605', 'pk', 'receiver', 'وصول کرنے والا', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24606', 'pk', 'verification_form_updated_successfully', 'توثیق کا فارم کامیابی کے ساتھ اپ ڈیٹ ہوا', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24607', 'pk', 'invalid_email_or_password', 'غلط ای میل یا پاس ورڈ', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24608', 'pk', 'all_coupons', 'تمام کوپن', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24609', 'pk', 'add_new_coupon', 'نیا کوپن شامل کریں', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24610', 'pk', 'coupon_information', 'کوپن سے متعلق معلومات', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24611', 'pk', 'start_date', 'شروع کرنے کی تاریخ', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24612', 'pk', 'end_date', 'آخری تاریخ', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24613', 'pk', 'product_base', 'پروڈکٹ بیس', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24614', 'pk', 'send_newsletter', 'نیوز لیٹر ارسال کریں', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24615', 'pk', 'mobile_users', 'موبائل استعمال کنندہ', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24616', 'pk', 'sms_subject', 'SMS مضمون', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24617', 'pk', 'sms_content', 'SMS مواد', '2021-02-09 14:10:52', '2021-09-20 13:00:22'),
('24618', 'pk', 'all_flash_delas', 'تمام فلیش ڈیلس', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24619', 'pk', 'create_new_flash_dela', 'نیا فلیش ڈیلہ بنائیں', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24620', 'pk', 'page_link', 'صفحہ کا لنک', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24621', 'pk', 'flash_deal_information', 'فلیش ڈیل کی معلومات', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24622', 'pk', 'background_color', 'پس منظر کا رنگ', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24623', 'pk', '0000ff', '# 0000 فف', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24624', 'pk', 'text_color', 'متن کا رنگ', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24625', 'pk', 'white', 'سفید', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24626', 'pk', 'dark', 'گہرا', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24627', 'pk', 'choose_products', 'مصنوعات کا انتخاب کریں', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24628', 'pk', 'discounts', 'چھوٹ', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24629', 'pk', 'discount_type', 'ڈسکاؤنٹ کی قسم', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24630', 'pk', 'twillo_credential', 'ٹوئیلو سند', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24631', 'pk', 'twilio_sid', 'TWILIO SID', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24632', 'pk', 'twilio_auth_token', 'دو ایتھو ٹوکن', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24633', 'pk', 'twilio_verify_sid', 'TWILIO VERIFY SID', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24634', 'pk', 'valid_twillo_number', 'بڑی تعداد میں نمبر', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24635', 'pk', 'nexmo_credential', 'Nexmo اسناد', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24636', 'pk', 'nexmo_key', 'NEXMO KEY', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24637', 'pk', 'nexmo_secret', 'NEXMO سیکریٹ', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24638', 'pk', 'ssl_wireless_credential', 'SSL وائرلیس سند', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24639', 'pk', 'ssl_sms_api_token', 'SSL SMS API ٹوکن', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24640', 'pk', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24641', 'pk', 'ssl_sms_url', 'SSL SMS URL', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24642', 'pk', 'fast2sms_credential', 'فاسٹ 2 ایس ایم ایس سند', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24643', 'pk', 'auth_key', 'اتھ کلید', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24644', 'pk', 'route', 'راسته', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24645', 'pk', 'promotional_use', 'تشہیری استعمال', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24646', 'pk', 'transactional_use', 'لین دین', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24647', 'pk', 'sender_id', 'بھیجنے والے کی شناخت', '2021-02-09 14:10:53', '2021-09-20 13:00:22'),
('24648', 'pk', 'nexmo_otp', 'Nexmo OTP', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24649', 'pk', 'twillo_otp', 'ٹویلو او ٹی پی', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24650', 'pk', 'ssl_wireless_otp', 'SSL وائرلیس OTP', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24651', 'pk', 'fast2sms_otp', 'فاسٹ 2 ایس ایم ایس او ٹی پی', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24652', 'pk', 'order_placement', 'آرڈر پلیسمنٹ', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24653', 'pk', 'delivery_status_changing_time', 'فراہمی کی حیثیت بدلتے وقت', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24654', 'pk', 'paid_status_changing_time', 'ادائیگی کی حیثیت بدلنے کا وقت', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24655', 'pk', 'send_bulk_sms', 'بلک SMS بھیجیں', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24656', 'pk', 'all_subscribers', 'سبھی خریدار', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24657', 'pk', 'coupon_information_adding', 'کوپن میں معلومات شامل کرنا', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24658', 'pk', 'coupon_type', 'کوپن کی قسم', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24659', 'pk', 'for_products', 'مصنوعات کے لئے', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24660', 'pk', 'for_total_orders', 'کل احکامات کیلئے', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24661', 'pk', 'add_your_product_base_coupon', 'اپنے پروڈکٹ بیس کوپن کو شامل کریں', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24662', 'pk', 'coupon_code', 'کوپن کوڈ', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24663', 'pk', 'sub_category', 'ذیلی زمرہ', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24664', 'pk', 'add_more', 'مزید شامل کریں', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24665', 'pk', 'add_your_cart_base_coupon', 'اپنے کارٹ بیس کوپن کو شامل کریں', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24666', 'pk', 'minimum_shopping', 'کم سے کم خریداری', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24667', 'pk', 'maximum_discount_amount', 'زیادہ سے زیادہ چھوٹ کی رقم', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24668', 'pk', 'coupon_information_update', 'کوپن معلومات کی تازہ کاری', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24669', 'pk', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'براہ کرم تمام ای میل بھیجنے والے فنکشنلٹی کو کام کرنے کے لئے ایس ایم ٹی پی سیٹنگ کی تشکیل کریں', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24670', 'pk', 'configure_now', 'ابھی تشکیل دیں', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24671', 'pk', 'total_published_products', 'کل شائع شدہ مصنوعات', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24672', 'pk', 'total_sellers_products', 'کل فروخت کنندگان کی مصنوعات', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24673', 'pk', 'total_admin_products', 'ایڈمن کی کل مصنوعات', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24674', 'pk', 'manage_products', 'مصنوعات کا انتظام کریں', '2021-02-09 14:10:54', '2021-09-20 13:00:22'),
('24675', 'pk', 'total_product_category', 'مصنوعات کی کل قسم', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24676', 'pk', 'create_category', 'زمرہ بنائیں', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24677', 'pk', 'total_product_sub_sub_category', 'کل پروڈکٹ ذیلی ذیلی قسم', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24678', 'pk', 'create_sub_sub_category', 'ذیلی ذیلی زمرہ بنائیں', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24679', 'pk', 'total_product_sub_category', 'کل مصنوع ذیلی قسم', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24680', 'pk', 'create_sub_category', 'ذیلی زمرہ بنائیں', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24681', 'pk', 'total_product_brand', 'کل پروڈکٹ برانڈ', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24682', 'pk', 'create_brand', 'برانڈ بنائیں', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24683', 'pk', 'total_sellers', 'کل فروخت کنندہ', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24684', 'pk', 'total_approved_sellers', 'کل منظور شدہ بیچنے والے', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24685', 'pk', 'total_pending_sellers', 'کل زیر التواء بیچنے والے', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24686', 'pk', 'manage_sellers', 'بیچنے والے کا نظم کریں', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24687', 'pk', 'category_wise_product_sale', 'زمرہ وار مصنوعات کی فروخت', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24688', 'pk', 'sale', 'فروخت', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24689', 'pk', 'category_wise_product_stock', 'زمرہ وار پروڈکٹ اسٹاک', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24690', 'pk', 'category_name', 'قسم کا نام', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24691', 'pk', 'stock', 'اسٹاک', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24692', 'pk', 'frontend', 'فرنٹ اینڈ', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24693', 'pk', 'home_page', 'ہوم پیج', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24694', 'pk', 'setting', 'ترتیب', '2021-02-09 14:10:55', '2021-02-09 14:10:55'),
('24695', 'pk', 'policy_page', 'پالیسی کا صفحہ', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24696', 'pk', 'general', 'جنرل', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24697', 'pk', 'click_here', 'یہاں کلک کریں', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24698', 'pk', 'useful_link', 'مفید لنک', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24699', 'pk', 'activation', 'چالو کرنا', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24700', 'pk', 'smtp', 'ایس ایم ٹی پی', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24701', 'pk', 'payment_method', 'ادائیگی کا طریقہ', '2021-02-09 14:10:55', '2021-09-20 13:00:22'),
('24702', 'pk', 'social_media', 'سوشل میڈیا', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24703', 'pk', 'business', 'کاروبار', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24704', 'pk', 'seller_verification', 'بیچنے والے کی توثیق', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24705', 'pk', 'form_setting', 'فارم کی ترتیب', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24706', 'pk', 'language', 'زبان', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24707', 'pk', 'dashboard', 'ڈیش بورڈ', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24708', 'pk', 'pos_system', 'POS سسٹم', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24709', 'pk', 'pos_manager', 'POS منیجر', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24710', 'pk', 'pos_configuration', 'POS تشکیل', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24711', 'pk', 'products', 'مصنوعات', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24712', 'pk', 'add_new_product', 'نئی مصنوعات شامل کریں', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24713', 'pk', 'all_products', 'تمام مصنوعات', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24714', 'pk', 'in_house_products', 'ہاؤس پروڈکٹ میں', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24715', 'pk', 'seller_products', 'فروخت کنندہ مصنوعات', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24716', 'pk', 'digital_products', 'ڈیجیٹل مصنوعات', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24717', 'pk', 'bulk_import', 'بلک درآمد', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24718', 'pk', 'bulk_export', 'بلک ایکسپورٹ', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24719', 'pk', 'category', 'قسم', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24720', 'pk', 'subcategory', 'ذیلی زمرہ', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24721', 'pk', 'sub_subcategory', 'ذیلی ذیلی زمرہ', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24722', 'pk', 'brand', 'برانڈ', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24723', 'pk', 'attribute', 'وصف', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24724', 'pk', 'product_reviews', 'پروڈکٹ جائزہ', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24725', 'pk', 'sales', 'فروخت', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24726', 'pk', 'all_orders', 'تمام احکامات', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24727', 'pk', 'inhouse_orders', 'گھر کے احکامات', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24728', 'pk', 'seller_orders', 'بیچنے والے کے احکامات', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24729', 'pk', 'pickup_point_order', 'اٹھاو پوائنٹ آرڈر', '2021-02-09 14:10:56', '2021-09-20 13:00:22'),
('24730', 'pk', 'refunds', 'رقم کی واپسی', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24731', 'pk', 'refund_requests', 'رقم کی واپسی کی درخواستیں', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24732', 'pk', 'approved_refund', 'منظور شدہ رقم کی واپسی', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24733', 'pk', 'refund_configuration', 'رقم کی واپسی کی تشکیل', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24734', 'pk', 'customers', 'گاہکوں', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24735', 'pk', 'customer_list', 'گاہک کی فہرست', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24736', 'pk', 'classified_products', 'درجہ بند مصنوعات', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24737', 'pk', 'classified_packages', 'درجہ بند پیکجز', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24738', 'pk', 'sellers', 'بیچنے والے', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24739', 'pk', 'all_seller', 'سب بیچنے والا', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24740', 'pk', 'payouts', 'ادائیگی', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24741', 'pk', 'payout_requests', 'ادائیگی کی درخواستیں', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24742', 'pk', 'seller_commission', 'بیچنے والا کمیشن', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24743', 'pk', 'seller_packages', 'بیچنے والے پیکیجز', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24744', 'pk', 'seller_verification_form', 'بیچنے والے کی توثیق کا فارم', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24745', 'pk', 'reports', 'رپورٹیں', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24746', 'pk', 'in_house_product_sale', 'ہاؤس پروڈکٹ سیل میں', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24747', 'pk', 'seller_products_sale', 'فروخت کنندہ مصنوعات کی فروخت', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24748', 'pk', 'products_stock', 'پروڈکٹ اسٹاک', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24749', 'pk', 'products_wishlist', 'مصنوعات کی خواہش کی فہرست', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24750', 'pk', 'user_searches', 'صارف کی تلاشیں', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24751', 'pk', 'marketing', 'مارکیٹنگ', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24752', 'pk', 'flash_deals', 'فلیش سودے', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24753', 'pk', 'newsletters', 'نیوز لیٹر', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24754', 'pk', 'bulk_sms', 'بلک ایس ایم ایس', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24755', 'pk', 'subscribers', 'خریدار', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24756', 'pk', 'coupon', 'کوپن', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24757', 'pk', 'support', 'مدد کریں', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24758', 'pk', 'ticket', 'ٹکٹ', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24759', 'pk', 'product_queries', 'مصنوع سے متعلق سوالات', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24760', 'pk', 'website_setup', 'ویب سائٹ سیٹ اپ', '2021-02-09 14:10:57', '2021-09-20 13:00:22'),
('24761', 'pk', 'header', 'ہیڈر', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24762', 'pk', 'footer', 'فوٹر', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24763', 'pk', 'pages', 'صفحات', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24764', 'pk', 'appearance', 'ظہور', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24765', 'pk', 'setup__configurations', 'سیٹ اپ اور تشکیلات', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24766', 'pk', 'general_settings', 'عام ترتیبات', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24767', 'pk', 'features_activation', 'خصوصیات ایکٹیویشن', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24768', 'pk', 'languages', 'زبانیں', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24769', 'pk', 'currency', 'کرنسی', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24770', 'pk', 'pickup_point', 'اٹھاو نقطہ', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24771', 'pk', 'smtp_settings', 'ایس ایم ٹی پی کی ترتیبات', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24772', 'pk', 'payment_methods', 'ادائیگی کے طریقے', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24773', 'pk', 'file_system_configuration', 'فائل سسٹم کی تشکیل', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24774', 'pk', 'social_media_logins', 'سوشل میڈیا لاگ ان', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24775', 'pk', 'analytics_tools', 'تجزیاتی ٹولز', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24776', 'pk', 'facebook_chat', 'فیس بک چیٹ', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24777', 'pk', 'google_recaptcha', 'گوگل ریکٹا', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24778', 'pk', 'shipping_configuration', 'شپنگ ترتیب', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24779', 'pk', 'shipping_countries', 'شپنگ ممالک', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24780', 'pk', 'affiliate_system', 'ملحق نظام', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24781', 'pk', 'affiliate_registration_form', 'ملحقہ رجسٹریشن فارم', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24782', 'pk', 'affiliate_configurations', 'ملحقہ تشکیلات', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24783', 'pk', 'affiliate_users', 'وابستہ صارفین', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24784', 'pk', 'referral_users', 'حوالہ دینے والے صارفین', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24785', 'pk', 'affiliate_withdraw_requests', 'ملحق واپسی کی درخواستیں', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24786', 'pk', 'offline_payment_system', 'آف لائن ادائیگی کا نظام', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24787', 'pk', 'manual_payment_methods', 'دستی ادائیگی کے طریقے', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24788', 'pk', 'offline_wallet_recharge', 'آف لائن والیٹ ریچارج', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24789', 'pk', 'offline_customer_package_payments', 'آف لائن کسٹمر پیکیج کی ادائیگی', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24790', 'pk', 'offline_seller_package_payments', 'آف لائن بیچنے والے پیکیج کی ادائیگی', '2021-02-09 14:10:58', '2021-09-20 13:00:22'),
('24791', 'pk', 'paytm_payment_gateway', 'پے ٹی ایم ادائیگی کا گیٹ وے', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24792', 'pk', 'set_paytm_credentials', 'پے ٹی ایم اسناد مرتب کریں', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24793', 'pk', 'club_point_system', 'کلب پوائنٹ سسٹم', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24794', 'pk', 'club_point_configurations', 'کلب پوائنٹ کی تشکیلات', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24795', 'pk', 'set_product_point', 'پروڈکٹ پوائنٹ مقرر کریں', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24796', 'pk', 'user_points', 'صارف پوائنٹس', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24797', 'pk', 'otp_system', 'OTP سسٹم', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24798', 'pk', 'otp_configurations', 'OTP تشکیلات', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24799', 'pk', 'set_otp_credentials', 'او ٹی پی کی سندیں مرتب کریں', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24800', 'pk', 'staffs', 'اسٹاف', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24801', 'pk', 'all_staffs', 'تمام عملہ', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24802', 'pk', 'staff_permissions', 'عملے کی اجازت', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24803', 'pk', 'addon_manager', 'اڈون منیجر', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24804', 'pk', 'browse_website', 'ویب سائٹ کو براؤز کریں', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24805', 'pk', 'pos', 'POS', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24806', 'pk', 'notifications', 'اطلاعات', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24807', 'pk', 'new_orders', 'نئے احکامات', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24808', 'pk', 'userimage', 'صارف کی تصویر', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24809', 'pk', 'profile', 'پروفائل', '2021-02-09 14:10:59', '2021-09-20 13:00:22'),
('24810', 'pk', 'logout', 'لاگ آوٹ', '2021-02-09 14:11:51', '2021-09-20 13:00:22'),
('24811', 'pk', 'page_not_found', 'صفحہ نہیں ملا!', '2021-02-09 14:11:51', '2021-09-20 13:00:22'),
('24812', 'pk', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'آپ جس صفحے کی تلاش کر رہے ہیں وہ ہمارے سرور پر نہیں ملا ہے۔', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24813', 'pk', 'registration', 'اندراج', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24814', 'pk', 'i_am_shopping_for', 'میں خریداری کر رہا ہوں ...', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24815', 'pk', 'compare', 'موازنہ', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24816', 'pk', 'wishlist', 'خواہش کی فہرست', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24817', 'pk', 'cart', 'ٹوکری', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24818', 'pk', 'your_cart_is_empty', 'آپ کی ٹوکری خالی ہے', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24819', 'pk', 'categories', 'اقسام', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24820', 'pk', 'see_all', 'تمام دیکھیں', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24821', 'pk', 'seller_policy', 'بیچنے والی پالیسی', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24822', 'pk', 'return_policy', 'ریٹرن پالیسی', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24823', 'pk', 'support_policy', 'سپورٹ پالیسی', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24824', 'pk', 'privacy_policy', 'رازداری کی پالیسی', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24825', 'pk', 'your_email_address', 'آپ کا ای میل ایڈریس', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24826', 'pk', 'subscribe', 'سبسکرائب', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24827', 'pk', 'contact_info', 'رابطہ کی معلومات', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24828', 'pk', 'address', 'پتہ', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24829', 'pk', 'phone', 'فون', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24830', 'pk', 'email', 'ای میل', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24831', 'pk', 'login', 'لاگ ان کریں', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24832', 'pk', 'my_account', 'میرا اکاونٹ', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24833', 'pk', 'order_history', 'آرڈر کی تاریخ', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24834', 'pk', 'my_wishlist', 'میری خواہشات کی فہرست', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24835', 'pk', 'track_order', 'اپنے آرڈر کا پتا لگائیے', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24836', 'pk', 'be_an_affiliate_partner', 'ایک وابستہ شراکت دار بنیں', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24837', 'pk', 'be_a_seller', 'بیچنے والا ہو', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24838', 'pk', 'apply_now', 'اب لگائیں', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24839', 'pk', 'confirmation', 'تصدیق', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24840', 'pk', 'delete_confirmation_message', 'تصدیقی پیغام کو حذف کریں', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24841', 'pk', 'cancel', 'منسوخ کریں', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24842', 'pk', 'delete', 'حذف کریں', '2021-02-09 14:11:52', '2021-09-20 13:00:22'),
('24843', 'pk', 'item_has_been_added_to_compare_list', 'فہرست کا موازنہ کرنے کے لئے آئٹم شامل کیا گیا ہے', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24844', 'pk', 'please_login_first', 'مہربانی فرما کر پہلے لاگ ان کریں', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24845', 'pk', 'total_earnings_from', 'سے کل آمدنی', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24846', 'pk', 'client_subscription', 'کلائنٹ کی رکنیت', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24847', 'pk', 'product_category', 'مصنوعات کی قسم', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24848', 'pk', 'product_sub_sub_category', 'پروڈکٹ ذیلی ذیلی قسم', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24849', 'pk', 'product_sub_category', 'مصنوع کی ذیلی قسم', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24850', 'pk', 'product_brand', 'پروڈکٹ برانڈ', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24851', 'pk', 'top_client_packages', 'اعلی کلائنٹ پیکجز', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24852', 'pk', 'top_freelancer_packages', 'ٹاپ فری لانس پیکجز', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24853', 'pk', 'number_of_sale', 'فروخت کی تعداد', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24854', 'pk', 'number_of_stock', 'اسٹاک کی تعداد', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24855', 'pk', 'top_10_products', 'اعلی 10 مصنوعات', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24856', 'pk', 'top_12_products', 'سرفہرست 12 مصنوعات', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24857', 'pk', 'admin_can_not_be_a_seller', 'ایڈمن بیچنے والا نہیں ہوسکتا ہے', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24858', 'pk', 'filter_by_rating', 'درجہ بندی کے لحاظ سے فلٹر کریں', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24859', 'pk', 'published_reviews_updated_successfully', 'شائع شدہ جائزے کامیابی کے ساتھ اپ ڈیٹ ہوئے', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24860', 'pk', 'refund_sticker_has_been_updated_successfully', 'رقم کی واپسی اسٹیکر کامیابی کے ساتھ اپ ڈیٹ ہو گیا ہے', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24861', 'pk', 'edit_product', 'پروڈکٹ میں ترمیم کریں', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24862', 'pk', 'meta_images', 'میٹا امیجز', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24863', 'pk', 'update_product', 'پروڈکٹ کو اپ ڈیٹ کریں', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24864', 'pk', 'product_has_been_deleted_successfully', 'مصنوع کامیابی کے ساتھ حذف کردی گئی ہے', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24865', 'pk', 'your_profile_has_been_updated_successfully', 'آپ کے پروفائل کو کامیابی کے ساتھ اپ ڈیٹ کردیا گیا ہے!', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24866', 'pk', 'upload_limit_has_been_reached_please_upgrade_your_package', 'اپ لوڈ کی حد ہوگئی ہے۔ براہ کرم اپنے پیکیج کو اپ گریڈ کریں۔', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24867', 'pk', 'add_your_product', 'آپ کی مصنوعات کو شامل کریں', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24868', 'pk', 'select_a_category', 'ایک زمرہ منتخب کریں', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24869', 'pk', 'select_a_brand', 'ایک برانڈ منتخب کریں', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24870', 'pk', 'product_unit', 'پروڈکٹ یونٹ', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24871', 'pk', 'minimum_qty', 'کم سے کم مقدار', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24872', 'pk', 'product_tag', 'پروڈکٹ ٹیگ', '2021-02-09 14:11:53', '2021-09-20 13:00:22'),
('24873', 'pk', 'type__hit_enter', 'ٹائپ کریں اور enter کو دبائیں', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24874', 'pk', 'videos', 'ویڈیوز', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24875', 'pk', 'video_from', 'ویڈیو منجانب', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24876', 'pk', 'video_url', 'ویڈیو یو آر ایل', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24877', 'pk', 'customer_choice', 'کسٹمر چوائس', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24878', 'pk', 'pdf', 'پی ڈی ایف', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24879', 'pk', 'choose_pdf', 'پی ڈی ایف کا انتخاب کریں', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24880', 'pk', 'select_category', 'زمرہ منتخب کریں', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24881', 'pk', 'target_category', 'ہدف زمرہ', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24882', 'pk', 'subsubcategory', 'سبسکرائب کریں', '2021-02-09 14:11:54', '2021-02-09 14:11:54'),
('24883', 'pk', 'search_category', 'زمرہ تلاش کریں', '2021-02-09 14:11:54', '2021-09-20 13:00:22'),
('24884', 'pk', 'search_subcategory', 'ذیلی زمرہ تلاش کریں', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24885', 'pk', 'search_subsubcategory', 'سب سکب کیٹیگری تلاش کریں', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24886', 'pk', 'update_your_product', 'اپنی مصنوع کی تازہ کاری کریں', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24887', 'pk', 'product_has_been_updated_successfully', 'مصنوع کو کامیابی کے ساتھ اپ ڈیٹ کیا گیا ہے', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24888', 'pk', 'add_your_digital_product', 'اپنا ڈیجیٹل پروڈکٹ شامل کریں', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24889', 'pk', 'active_ecommerce_cms_update_process', 'فعال ای کامرس CMS تازہ کاری کا عمل', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24890', 'pk', 'codecanyon_purchase_code', 'کوڈیکینیون خریداری کا کوڈ', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24891', 'pk', 'database_name', 'ڈیٹا بیس کا نام', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24892', 'pk', 'database_username', 'ڈیٹا بیس صارف نام', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24893', 'pk', 'database_password', 'ڈیٹا بیس پاس ورڈ', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24894', 'pk', 'database_hostname', 'ڈیٹا بیس ہوسٹ نام', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24895', 'pk', 'update_now', 'تازہ ترین کریں. جدید بنایں', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24896', 'pk', 'congratulations', 'مبارک ہو', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24897', 'pk', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'آپ نے تازہ کاری کا عمل کامیابی کے ساتھ مکمل کرلیا ہے۔ جاری رکھنے کے لئے لاگ ان کریں', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24898', 'pk', 'go_to_home', 'گھر جاو', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24899', 'pk', 'login_to_admin_panel', 'ایڈمن پینل میں لاگ ان کریں', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24900', 'pk', 's3_file_system_credentials', 'S3 فائل سسٹم کی اسناد', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24901', 'pk', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24902', 'pk', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-09 14:11:54', '2021-09-20 13:00:23'),
('24903', 'pk', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24904', 'pk', 'aws_bucket', 'AWS_BUCKET', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24905', 'pk', 'aws_url', 'AWS_URL', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24906', 'pk', 's3_file_system_activation', 'S3 فائل سسٹم ایکٹیویشن', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24907', 'pk', 'your_phone_number', 'آپ کا فون نمبر', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24908', 'pk', 'zip_file', 'زپ فائل', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24909', 'pk', 'install', 'انسٹال کریں', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24910', 'pk', 'this_version_is_not_capable_of_installing_addons_please_update', 'یہ ورژن ایڈونز انسٹال کرنے کے قابل نہیں ہے ، براہ کرم تازہ کاری کریں۔', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24911', 'pk', 'search_in_menu', 'مینو میں تلاش کریں', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24912', 'pk', 'uploaded_files', 'اپ لوڈ کردہ فائلیں', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24913', 'pk', 'shipping_cities', 'شپنگ شہر', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24914', 'pk', 'system', 'سسٹم', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24915', 'pk', 'server_status', 'سرور کی حیثیت', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24916', 'pk', 'nothing_found', 'کچھ نہیں ملا', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24917', 'pk', 'parent_category', 'بنیادی زمرہ', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24918', 'pk', 'level', 'سطح', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24919', 'pk', 'category_information', 'زمرہ کی معلومات', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24920', 'pk', 'translatable', 'ٹرانسلیٹیبل', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24921', 'pk', 'no_parent', 'کوئی والدین نہیں', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24922', 'pk', 'physical', 'جسمانی', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24923', 'pk', 'digital', 'ڈیجیٹل', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24924', 'pk', '200x200', '200x200', '2021-02-09 14:11:55', '2021-02-09 14:11:55'),
('24925', 'pk', '32x32', '32x32', '2021-02-09 14:11:55', '2021-02-09 14:11:55'),
('24926', 'pk', 'search_your_files', 'اپنی فائلیں تلاش کریں', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24927', 'pk', 'category_has_been_updated_successfully', 'زمرہ کامیابی کے ساتھ اپ ڈیٹ کیا گیا ہے', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24928', 'pk', 'all_uploaded_files', 'سبھی اپلوڈ فائلیں', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24929', 'pk', 'upload_new_file', 'نئی فائل اپ لوڈ کریں', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24930', 'pk', 'all_files', 'تمام فائلیں', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24931', 'pk', 'search', 'تلاش کریں', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24932', 'pk', 'details_info', 'تفصیلات کی معلومات', '2021-02-09 14:11:55', '2021-09-20 13:00:23'),
('24933', 'pk', 'copy_link', 'لنک کاپی کریں', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24934', 'pk', 'are_you_sure_to_delete_this_file', 'کیا آپ واقعی اس فائل کو حذف کرنا چاہتے ہیں؟', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24935', 'pk', 'file_info', 'فائل کی معلومات', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24936', 'pk', 'link_copied_to_clipboard', 'لنک کاپی کلپ بورڈ میں کیا گیا', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24937', 'pk', 'oops_unable_to_copy', 'افوہ ، کاپی کرنے سے قاصر', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24938', 'pk', 'file_deleted_successfully', 'فائل کامیابی کے ساتھ حذف ہوگئی', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24939', 'pk', 'add_new_brand', 'نیا برانڈ شامل کریں', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24940', 'pk', '120x80', '120x80', '2021-02-09 14:11:56', '2021-02-09 14:11:56'),
('24941', 'pk', 'brand_information', 'برانڈ کی معلومات', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24942', 'pk', 'brand_has_been_updated_successfully', 'برانڈ کامیابی کے ساتھ اپ ڈیٹ ہوگیا ہے', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24943', 'pk', 'brand_has_been_deleted_successfully', 'برانڈ کامیابی کے ساتھ حذف ہوگیا ہے', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24944', 'pk', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'یہ تلاش کے لئے استعمال کیا جاتا ہے۔ ان الفاظ کو ان پٹ کریں جس کے ذریعہ کٹومر اس کی مصنوعات کو تلاش کرسکتا ہے۔', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24945', 'pk', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'یہ تصاویر مصنوعات کی تفصیلات کے صفحے گیلری میں دکھائی دیتی ہیں۔ 600x600 سائز کی تصاویر کا استعمال کریں۔', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24946', 'pk', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'یہ تصویر تمام پروڈکٹ باکس میں مرئی ہے۔ 300x300 سائز کی تصویر کا استعمال کریں۔ اپنی شبیہہ کے مرکزی شے کے آس پاس کچھ خالی جگہ رکھیں کیونکہ ہمیں اس کو جواب دہ بنانے کے ل different مختلف آلات میں کچھ کنارہ کٹانا پڑا۔', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24947', 'pk', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'اضافی پیرامیٹر کے بغیر مناسب لنک استعمال کریں۔ مختصر شیئر لنک / ایمبیڈڈ iframe کوڈ استعمال نہ کریں۔', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24948', 'pk', 'save_product', 'پروڈکٹ کو محفوظ کریں', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24949', 'pk', 'product_has_been_inserted_successfully', 'پروڈکٹ کامیابی کے ساتھ ڈالا گیا ہے', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24950', 'pk', 'something_went_wrong', 'کچھ غلط ہو گیا!', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24951', 'pk', 'sorry_for_the_inconvenience_but_were_working_on_it', 'تکلیف کے لئے معذرت ، لیکن ہم اس پر کام کر رہے ہیں۔', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24952', 'pk', 'error_code', 'غلط کوڈ', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24953', 'pk', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'براہ کرم تمام ای میل بھیجنے کی فعالیت پر کام کرنے کے لئے ایس ایم ٹی پی سیٹنگ کو تشکیل دیں', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24954', 'pk', 'order', 'ترتیب', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24955', 'pk', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'ہمارے پاس UI کو برقرار رکھنے کے لئے بینر کی اونچائی محدود ہے۔ ہمیں جواب دہ بنانے کے ل different مختلف آلات کو دیکھنے کے ل left ہمیں بائیں اور دائیں دونوں طرف سے کٹ جانا پڑا۔ بینر ڈیزائن کرنے سے پہلے ان نکات کو ذہن میں رکھیں۔', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24956', 'pk', 'home_banner_3_max_3', 'ہوم بینر 3 (زیادہ سے زیادہ 3)', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24957', 'pk', 'add_new_seller', 'نیا بیچنے والا شامل کریں', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24958', 'pk', 'filter_by_approval', 'منظوری کے لحاظ سے فلٹر کریں', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24959', 'pk', 'nonapproved', 'غیر منظور شدہ', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24960', 'pk', 'type_name_or_email__enter', 'نام یا ای میل اور اندراج ٹائپ کریں', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24961', 'pk', 'due_to_seller', 'بیچنے والے کی وجہ سے', '2021-02-09 14:11:56', '2021-09-20 13:00:23'),
('24962', 'pk', 'log_in_as_this_seller', 'اس بیچنے والے کے طور پر لاگ ان کریں', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24963', 'pk', 'go_to_payment', 'ادائیگی پر جائیں', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24964', 'pk', 'ban_this_seller', 'اس بیچنے والے پر پابندی لگائیں', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24965', 'pk', 'do_you_really_want_to_ban_this_seller', 'کیا آپ واقعی میں اس بیچنے والے پر پابندی عائد کرنا چاہتے ہیں؟', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24966', 'pk', 'proceed', 'آگے بڑھو!', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24967', 'pk', 'approved_sellers_updated_successfully', 'منظور شدہ بیچنے والے کامیابی کے ساتھ اپ ڈیٹ ہوئے', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24968', 'pk', 'seller_has_been_deleted_successfully', 'بیچنے والے کو کامیابی کے ساتھ حذف کردیا گیا ہے', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24969', 'pk', 'seller_information', 'بیچنے والے سے متعلق معلومات', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24970', 'pk', 'seller_has_been_inserted_successfully', 'بیچنے والے کو کامیابی کے ساتھ داخل کیا گیا ہے', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24971', 'pk', 'email_already_exists', 'ای میل پہلے سے موجود ہے!', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24972', 'pk', 'verify_your_email_address', 'اپنا ای میل ایڈریس کی تصدیق کریں', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24973', 'pk', 'before_proceeding_please_check_your_email_for_a_verification_link', 'آگے بڑھنے سے پہلے ، توثیقی لنک کے لئے اپنا ای میل چیک کریں۔', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24974', 'pk', 'if_you_did_not_receive_the_email', 'اگر آپ کو ای میل موصول نہیں ہوا۔', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24975', 'pk', 'click_here_to_request_another', 'ایک اور درخواست کرنے کے لئے یہاں کلک کریں', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24976', 'pk', 'email_verification', 'ای میل کی توثیق', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24977', 'pk', 'email_verification__', 'ای میل کی توثیق -', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24978', 'pk', 'https_activation', 'HTTPS ایکٹیویشن', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24979', 'pk', 'maintenance_mode', 'مرمت کی حالت میں', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24980', 'pk', 'maintenance_mode_activation', 'مینٹیننس موڈ ایکٹیویشن', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24981', 'pk', 'classified_product_activate', 'درجہ بندی کی مصنوعات کو چالو', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24982', 'pk', 'classified_product', 'درجہ بندی کی مصنوعات', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24983', 'pk', 'business_related', 'بزنس سے متعلق', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24984', 'pk', 'vendor_system_activation', 'وینڈر نظام ایکٹیویشن', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24985', 'pk', 'wallet_system_activation', 'والیٹ سسٹم ایکٹیویشن', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24986', 'pk', 'coupon_system_activation', 'کوپن سسٹم ایکٹیویشن', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24987', 'pk', 'pickup_point_activation', 'پک اپ پوائنٹ ایکٹیویشن', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24988', 'pk', 'conversation_activation', 'گفتگو ایکٹیویشن', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24989', 'pk', 'guest_checkout_activation', 'مہمان چیک آؤٹ ایکٹیویشن', '2021-02-09 14:11:57', '2021-09-20 13:00:23'),
('24990', 'pk', 'categorybased_commission', 'زمرہ پر مبنی کمیشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('24991', 'pk', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'اس آپشن کو چالو کرنے کے بعد بیچنے والے کی کمیونٹی غیر فعال ہوجائے گی اور آپ کو ہر زمرے میں کمیشن قائم کرنے کی ضرورت ہے بصورت دیگر ایڈمن کو کوئی کمشن نہیں ملے گا۔', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('24992', 'pk', 'set_commisssion_now', 'اب کامیسن سیٹ کریں', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('24993', 'pk', 'payment_related', 'ادائیگی سے متعلق', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('24994', 'pk', 'paypal_payment_activation', 'پے پال ادائیگی ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('24995', 'pk', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو پے پال کو صحیح طریقے سے تشکیل کرنے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('24996', 'pk', 'stripe_payment_activation', 'پٹی ادائیگی ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('24997', 'pk', 'sslcommerz_activation', 'ایس ایس ایل کامرس ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('24998', 'pk', 'instamojo_payment_activation', 'انسٹمومو ادائیگی ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('24999', 'pk', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو انسٹامومو ادائیگی کو صحیح طریقے سے تشکیل کرنے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25000', 'pk', 'razor_pay_activation', 'استرا تنخواہ ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25001', 'pk', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو استرا کو صحیح طریقے سے ترتیب دینے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25002', 'pk', 'paystack_activation', 'پے اسٹیک ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25003', 'pk', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو پے اسٹیک کو صحیح طریقے سے تشکیل دینے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25004', 'pk', 'voguepay_activation', 'ووگ پے ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25005', 'pk', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو ووگ پے کو صحیح طریقے سے تشکیل دینے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25006', 'pk', 'payhere_activation', 'پےہر ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25007', 'pk', 'ngenius_activation', 'نگینیوس ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25008', 'pk', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو نگینیس کو درست طریقے سے تشکیل دینے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25009', 'pk', 'iyzico_activation', 'آئزیکو ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25010', 'pk', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو آئزیکو کو درست طریقے سے تشکیل کرنے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25011', 'pk', 'bkash_activation', 'بکیش ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25012', 'pk', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو بخشا کو صحیح طریقے سے تشکیل کرنے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25013', 'pk', 'nagad_activation', 'ناگڈ ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25014', 'pk', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو نگڈ کو صحیح طریقے سے تشکیل کرنے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25015', 'pk', 'cash_payment_activation', 'نقد ادائیگی ایکٹیویشن', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25016', 'pk', 'social_media_login', 'سوشل میڈیا لاگ ان', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25017', 'pk', 'facebook_login', 'فیس بک لاگ ان', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25018', 'pk', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو فیس بک کلائنٹ کو صحیح طریقے سے تشکیل دینے کی ضرورت ہے', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25019', 'pk', 'google_login', 'گوگل لاگ ان', '2021-02-09 14:11:58', '2021-09-20 13:00:23'),
('25020', 'pk', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو گوگل کلائنٹ کو صحیح طریقے سے تشکیل دینے کی ضرورت ہے', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25021', 'pk', 'twitter_login', 'ٹویٹر لاگ ان', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25022', 'pk', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'اس خصوصیت کو فعال کرنے کے ل You آپ کو ٹویٹر کلائنٹ کو صحیح طریقے سے تشکیل کرنے کی ضرورت ہے', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25023', 'pk', 'shop_logo', 'دکان کا لوگو', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25024', 'pk', 'shop_address', 'دکان کا پتہ', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25025', 'pk', 'banner_settings', 'بینر کی ترتیبات', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25026', 'pk', 'banners', 'بینرز', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25027', 'pk', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'ہمیں اونچائی کو مینٹنٹ مستقل مزاجی تک محدود کرنا تھا۔ کچھ آلے میں بینر کے دونوں اطراف اونچائی کی حد کے لped کرپ ہوسکتے ہیں۔', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25028', 'pk', 'insert_link_with_https_', 'https کے ساتھ لنک داخل کریں', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25029', 'pk', 'your_shop_has_been_updated_successfully', 'آپ کی دکان کامیابی کے ساتھ اپ ڈیٹ کردی گئی ہے!', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25030', 'pk', 'search_result_for_', 'کے لئے تلاش کے نتائج', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25031', 'pk', 'brand_has_been_inserted_successfully', 'برانڈ کامیابی کے ساتھ داخل کردیا گیا ہے', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25032', 'pk', 'about', 'کے بارے میں', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25033', 'pk', 'payout_info', 'ادائیگی کی معلومات', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25034', 'pk', 'bank_acc_name', 'بینک ایکسی کا نام', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25035', 'pk', 'bank_acc_number', 'بینک ایکسی نمبر', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25036', 'pk', 'total_products', 'کل مصنوعات', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25037', 'pk', 'total_sold_amount', 'کل فروخت شدہ رقم', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25038', 'pk', 'wallet_balance', 'والیٹ بیلنس', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25039', 'pk', 'cookies_agreement', 'کوکیز کا معاہدہ', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25040', 'pk', 'cookies_agreement_text', 'کوکیز کا معاہدہ متن', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25041', 'pk', 'show_cookies_agreement', 'کوکیز کا معاہدہ دکھائیں؟', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25042', 'pk', 'custom_script', 'کسٹم اسکرپٹ', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25043', 'pk', 'header_custom_script__before_head', 'ہیڈر کسٹم اسکرپٹ', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25044', 'pk', 'write_script_with_script_tag', '<اسکرپٹ> ٹیگ کے ساتھ اسکرپٹ لکھیں', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25045', 'pk', 'footer_custom_script__before_body', 'فوٹر کسٹم اسکرپٹ۔ </body> سے پہلے', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25046', 'pk', 'category_has_been_inserted_successfully', 'زمرہ کامیابی کے ساتھ داخل کیا گیا ہے', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25047', 'pk', 'all_flash_deals', 'تمام فلیش ڈیلز', '2021-02-09 14:11:59', '2021-09-20 13:00:23'),
('25048', 'pk', 'create_new_flash_deal', 'نیا فلیش ڈیل بنائیں', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25049', 'pk', 'ffffff', '#FFFFFF', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25050', 'pk', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'اس تصویر کو فلیش ڈیل کی تفصیلات کے صفحے میں کور بینر کے طور پر دکھایا گیا ہے۔', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25051', 'pk', 'flash_deal_has_been_inserted_successfully', 'فلیش ڈیل کامیابی کے ساتھ داخل کی گئی ہے', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25052', 'pk', 'flash_deal_status_updated_successfully', 'فلیش ڈیل کی صورتحال کامیابی کے ساتھ اپ ڈیٹ ہوگئی', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25053', 'pk', 'flash_deal_has_been_updated_successfully', 'فلیش ڈیل کامیابی کے ساتھ اپ ڈیٹ ہوگئی ہے', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25054', 'pk', 'update_language_info', 'زبان کی معلومات کو اپ ڈیٹ کریں', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25055', 'pk', 'language_has_been_updated_successfully', 'زبان کو کامیابی کے ساتھ اپ ڈیٹ کیا گیا ہے', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25056', 'pk', 'type_key__enter', 'کلید اور اندراج ٹائپ کریں', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25057', 'pk', 'translations_updated_for_', 'کے لئے ترجمہ تازہ کاری', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25058', 'pk', 'language_has_been_inserted_successfully', 'زبان کامیابی کے ساتھ داخل کی گئی ہے', '2021-02-09 14:12:00', '2021-09-20 13:00:23'),
('25059', 'en', 'verify_now', 'Verify Now', '2021-02-11 11:30:02', '2021-09-20 13:00:23'),
('25060', 'en', 'iyzico', 'Iyzico', '2021-02-11 12:20:18', '2021-09-20 13:00:23'),
('25061', 'en', 'bkash_credential', 'Bkash Credential', '2021-02-11 12:20:42', '2021-09-20 13:00:23'),
('25062', 'en', 'bkash_checkout_app_key', 'BKASH CHECKOUT APP KEY', '2021-02-11 12:20:42', '2021-09-20 13:00:23'),
('25063', 'en', 'bkash_checkout_app_secret', 'BKASH CHECKOUT APP SECRET', '2021-02-11 12:20:42', '2021-09-20 13:00:23'),
('25064', 'en', 'bkash_checkout_user_name', 'BKASH CHECKOUT USER NAME', '2021-02-11 12:20:42', '2021-09-20 13:00:23'),
('25065', 'en', 'bkash_checkout_password', 'BKASH CHECKOUT PASSWORD', '2021-02-11 12:20:42', '2021-09-20 13:00:23'),
('25066', 'en', 'bkash_sandbox_mode', 'Bkash Sandbox Mode', '2021-02-11 12:20:42', '2021-09-20 13:00:23'),
('25067', 'en', 'nagad_credential', 'Nagad Credential', '2021-02-11 12:20:42', '2021-09-20 13:00:23'),
('25068', 'en', 'nagad_mode', 'NAGAD MODE', '2021-02-11 12:20:42', '2021-09-20 13:00:23'),
('25069', 'en', 'nagad_merchant_id', 'NAGAD MERCHANT ID', '2021-02-11 12:20:42', '2021-09-20 13:00:23'),
('25070', 'en', 'nagad_merchant_number', 'NAGAD MERCHANT NUMBER', '2021-02-11 12:20:43', '2021-09-20 13:00:23'),
('25071', 'en', 'nagad_pg_public_key', 'NAGAD PG PUBLIC KEY', '2021-02-11 12:20:43', '2021-09-20 13:00:23'),
('25072', 'en', 'nagad_merchant_private_key', 'NAGAD MERCHANT PRIVATE KEY', '2021-02-11 12:20:43', '2021-09-20 13:00:23'),
('25073', 'en', 'iyzico_credential', 'Iyzico Credential', '2021-02-11 12:20:43', '2021-09-20 13:00:23'),
('25074', 'en', 'iyzico_api_key', 'IYZICO_API_KEY', '2021-02-11 12:20:43', '2021-09-20 13:00:23'),
('25075', 'en', 'iyzico_api_key', 'IYZICO API KEY', '2021-02-11 12:20:43', '2021-09-20 13:00:23'),
('25076', 'en', 'iyzico_secret_key', 'IYZICO_SECRET_KEY', '2021-02-11 12:20:43', '2021-09-20 13:00:23'),
('25077', 'en', 'iyzico_secret_key', 'IYZICO SECRET KEY', '2021-02-11 12:20:43', '2021-09-20 13:00:23'),
('25078', 'en', 'iyzico_sandbox_mode', 'IYZICO Sandbox Mode', '2021-02-11 12:20:43', '2021-09-20 13:00:23'),
('25079', 'en', 'instamojo', 'Instamojo', '2021-02-11 12:23:34', '2021-09-20 13:00:23'),
('25080', 'en', 'nagad', 'Nagad', '2021-02-11 12:23:35', '2021-09-20 13:00:23'),
('25081', 'en', 'bkash', 'Bkash', '2021-02-11 12:23:35', '2021-09-20 13:00:23'),
('25082', 'en', 'your_order_has_been_placed', 'Your order has been placed', '2021-02-11 12:25:22', '2021-09-20 13:00:23'),
('25083', 'en', 'your_order_has_been_placed_successfully', 'Your order has been placed successfully', '2021-02-11 12:25:22', '2021-09-20 13:00:23'),
('25084', 'en', 'product_image', 'Product Image', '2021-02-11 12:26:47', '2021-09-20 13:00:23'),
('25085', 'en', 'add_to_compare', 'Add to compare', '2021-02-12 21:12:01', '2021-09-20 13:00:23'),
('25086', 'en', 'step_1', 'Step 1', '2021-02-13 09:04:49', '2021-09-20 13:00:23'),
('25087', 'en', 'download_the_skeleton_file_and_fill_it_with_proper_data', 'Download the skeleton file and fill it with proper data', '2021-02-13 09:04:49', '2021-09-20 13:00:23'),
('25088', 'en', 'you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', 'You can download the example file to understand how the data must be filled', '2021-02-13 09:04:49', '2021-09-20 13:00:23'),
('25089', 'en', 'once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', 'Once you have downloaded and filled the skeleton file, upload it in the form below and submit', '2021-02-13 09:04:49', '2021-09-20 13:00:23'),
('25090', 'en', 'after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', 'After uploading products you need to edit them and set product\'s images and choices', '2021-02-13 09:04:49', '2021-09-20 13:00:23'),
('25091', 'en', 'step_2', 'Step 2', '2021-02-13 09:04:49', '2021-09-20 13:00:23'),
('25092', 'en', 'category_and_brand_should_be_in_numerical_id', 'Category and Brand should be in numerical id', '2021-02-13 09:04:49', '2021-09-20 13:00:23'),
('25093', 'en', 'you_can_download_the_pdf_to_get_category_and_brand_id', 'You can download the pdf to get Category and Brand id', '2021-02-13 09:04:49', '2021-09-20 13:00:23'),
('25094', 'en', 'upload_product_file', 'Upload Product File', '2021-02-13 09:04:49', '2021-09-20 13:00:23'),
('25095', 'en', 'all_attributes', 'All Attributes', '2021-02-13 09:11:19', '2021-09-20 13:00:23'),
('25096', 'en', 'add_new_attribute', 'Add New Attribute', '2021-02-13 09:11:19', '2021-09-20 13:00:23'),
('25097', 'en', 'attribute_has_been_inserted_successfully', 'Attribute has been inserted successfully', '2021-02-13 09:11:48', '2021-09-20 13:00:23'),
('25098', 'en', 'attribute_has_been_deleted_successfully', 'Attribute has been deleted successfully', '2021-02-13 09:11:59', '2021-09-20 13:00:23'),
('25099', 'en', 'product_has_been_duplicated_successfully', 'Product has been duplicated successfully', '2021-02-14 09:54:28', '2021-09-20 13:00:23'),
('25100', 'en', 'filter_by_date', 'Filter by date', '2021-02-14 09:56:26', '2021-09-20 13:00:23'),
('25101', 'en', '1_category_and_brand_should_be_in_numerical_id', '1. Category and Brand should be in numerical id.', '2021-02-14 10:17:38', '2021-09-20 13:00:23'),
('25102', 'en', '2_you_can_download_the_pdf_to_get_category_and_brand_id', '2. You can download the pdf to get Category and Brand id.', '2021-02-14 10:17:38', '2021-09-20 13:00:23'),
('25103', 'en', 'payment_completed', 'Payment completed', '2021-02-14 10:30:40', '2021-09-20 13:00:23'),
('25104', 'en', 'contact', 'Contact', '2021-02-14 10:31:48', '2021-09-20 13:00:23'),
('25105', 'en', 'order_status_has_been_updated', 'Order status has been updated', '2021-02-14 10:31:48', '2021-09-20 13:00:23'),
('25106', 'en', 'review_has_been_submitted_successfully', 'Review has been submitted successfully', '2021-02-14 10:36:58', '2021-09-20 13:00:23'),
('25107', 'en', 'pay_to_seller', 'Pay to seller', '2021-02-14 11:23:05', '2021-09-20 13:00:23'),
('25108', 'en', 'txn_code', 'Txn Code', '2021-02-14 11:23:05', '2021-09-20 13:00:23'),
('25109', 'en', 'clear_due', 'Clear due', '2021-02-14 11:23:05', '2021-09-20 13:00:23'),
('25110', 'en', 'product_wish_report', 'Product Wish Report', '2021-02-14 11:30:21', '2021-09-20 13:00:23'),
('25111', 'en', 'number_of_wish', 'Number of Wish', '2021-02-14 11:30:21', '2021-09-20 13:00:23'),
('25112', 'en', 'all_customers', 'All Customers', '2021-02-14 11:32:18', '2021-09-20 13:00:23'),
('25113', 'en', 'type_email_or_name__enter', 'Type email or name & Enter', '2021-02-14 11:32:18', '2021-09-20 13:00:23'),
('25114', 'en', 'package', 'Package', '2021-02-14 11:32:18', '2021-09-20 13:00:23'),
('25115', 'en', 'log_in_as_this_customer', 'Log in as this Customer', '2021-02-14 11:32:18', '2021-09-20 13:00:23'),
('25116', 'en', 'ban_this_customer', 'Ban this Customer', '2021-02-14 11:32:18', '2021-09-20 13:00:23'),
('25117', 'en', 'do_you_really_want_to_ban_this_customer', 'Do you really want to ban this Customer?', '2021-02-14 11:32:18', '2021-09-20 13:00:23'),
('25118', 'en', 'do_you_really_want_to_unban_this_customer', 'Do you really want to unban this Customer?', '2021-02-14 11:32:19', '2021-09-20 13:00:23'),
('25119', 'en', 'ticket_has_been_sent_successfully', 'Ticket has been sent successfully', '2021-02-14 11:54:25', '2021-09-20 13:00:23'),
('25120', 'en', 'send_reply', 'Send Reply', '2021-02-14 11:54:34', '2021-09-20 13:00:23'),
('25121', 'en', 'recharge_wallet', 'Recharge Wallet', '2021-02-14 12:31:14', '2021-09-20 13:00:23'),
('25122', 'en', 'wallet_recharge_history', 'Wallet recharge history', '2021-02-14 12:31:15', '2021-09-20 13:00:23'),
('25123', 'en', 'offline_recharge_wallet', 'Offline Recharge Wallet', '2021-02-14 12:31:15', '2021-09-20 13:00:23'),
('25124', 'en', 'message_has_been_send_to_seller', 'Message has been send to seller', '2021-02-14 12:45:56', '2021-09-20 13:00:23'),
('25125', 'en', 'your_classified_product_upload_limit_has_been_reached_please_buy_a_package', 'Your classified product upload limit has been reached. Please buy a package.', '2021-02-15 10:33:44', '2021-09-20 13:00:23'),
('25126', 'en', 'premium_packages_for_customers', 'Premium Packages for Customers', '2021-02-15 10:33:44', '2021-09-20 13:00:23'),
('25127', 'en', 'offline_package_purchase_', 'Offline Package Purchase ', '2021-02-15 10:33:45', '2021-09-20 13:00:23'),
('25128', 'en', 'all_classifies_packages', 'All Classifies Packages', '2021-02-15 10:45:40', '2021-09-20 13:00:23'),
('25129', 'en', 'create_new_package', 'Create New Package', '2021-02-15 10:45:42', '2021-09-20 13:00:23'),
('25130', 'en', 'package_purchasing_successful', 'Package purchasing successful', '2021-02-15 10:56:45', '2021-09-20 13:00:23'),
('25131', 'en', 'product_upload_remaining', 'Product Upload Remaining', '2021-02-15 10:56:46', '2021-09-20 13:00:23'),
('25132', 'en', 'current_package', 'Current Package', '2021-02-15 10:56:46', '2021-09-20 13:00:23'),
('25133', 'en', 'select_a_condition', 'Select a condition', '2021-02-15 10:56:55', '2021-09-20 13:00:23'),
('25134', 'en', 'uploaded_by', 'Uploaded By', '2021-02-15 11:10:07', '2021-09-20 13:00:23'),
('25135', 'en', 'customer_status', 'Customer Status', '2021-02-15 11:10:07', '2021-09-20 13:00:23'),
('25136', 'en', 'unpublished', 'UNPUBLISHED', '2021-02-15 11:10:07', '2021-09-20 13:00:23'),
('25137', 'tr', 'all_category', 'Tüm Kategori', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25138', 'tr', 'all', 'Herşey', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25139', 'tr', 'flash_sale', 'Hızlı Satış', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25140', 'tr', 'view_more', 'Daha fazla göster', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25141', 'tr', 'add_to_wishlist', 'İstek listesine ekle', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25142', 'tr', 'add_to_compare', 'Karşılaştırmak için ekle', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25143', 'tr', 'add_to_cart', 'Sepete ekle', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25144', 'tr', 'club_point', 'Kulüp Puanı', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25145', 'tr', 'classified_ads', 'Sınıflandırılmış reklamlar', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25146', 'tr', 'used', 'Kullanılmış', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25147', 'tr', 'top_10_categories', 'İlk 10 Kategori', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25148', 'tr', 'view_all_categories', 'Tüm Kategoriler görüntüle', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25149', 'tr', 'top_10_brands', 'En İyi 10 Marka', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25150', 'tr', 'view_all_brands', 'Tüm Markaları Görüntüle', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25151', 'tr', 'terms__conditions', 'Şartlar ve koşullar', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25152', 'tr', 'best_selling', 'En iyi satış', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25153', 'tr', 'top_20', 'En iyi 20', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25154', 'tr', 'featured_products', 'Özel Ürünler', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25155', 'tr', 'best_sellers', 'En çok satanlar', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25156', 'tr', 'visit_store', 'Mağazayı ziyaret et', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25157', 'tr', 'popular_suggestions', 'Popüler Öneriler', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25158', 'tr', 'category_suggestions', 'Kategori Önerileri', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25159', 'tr', 'automobile__motorcycle', 'Otomobil ve Motosiklet', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25160', 'tr', 'price_range', 'Fiyat aralığı', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25161', 'tr', 'filter_by_color', 'Renge göre filtrele', '2021-02-16 13:11:07', '2021-09-20 13:00:23'),
('25162', 'tr', 'home', 'Ev', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25163', 'tr', 'newest', 'En yeni', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25164', 'tr', 'oldest', 'En eski', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25165', 'tr', 'price_low_to_high', 'Fiyat düşükten yükseğe', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25166', 'tr', 'price_high_to_low', 'Fiyatı yüksekten düşüğe doğru', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25167', 'tr', 'brands', 'Markalar', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25168', 'tr', 'all_brands', 'Tüm markalar', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25169', 'tr', 'all_sellers', 'Tüm Satıcılar', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25170', 'tr', 'inhouse_product', 'Şirket içi ürün', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25171', 'tr', 'message_seller', 'Satıcıya Mesaj Gönder', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25172', 'tr', 'price', 'Fiyat', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25173', 'tr', 'discount_price', 'İndirimli fiyat', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25174', 'tr', 'color', 'Renk', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25175', 'tr', 'quantity', 'Miktar', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25176', 'tr', 'available', 'mevcut', '2021-02-16 13:11:08', '2021-02-16 13:11:08'),
('25177', 'tr', 'total_price', 'Toplam fiyat', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25178', 'tr', 'out_of_stock', 'Stoklar tükendi', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25179', 'tr', 'refund', 'Geri ödeme', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25180', 'tr', 'share', 'Paylaş', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25181', 'tr', 'sold_by', 'Tarafından satılan', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25182', 'tr', 'customer_reviews', 'Musteri degerlendirmeleri', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25183', 'tr', 'top_selling_products', 'En Çok Satan Ürünler', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25184', 'tr', 'description', 'Açıklama', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25185', 'tr', 'video', 'Video', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25186', 'tr', 'reviews', 'Yorumlar', '2021-02-16 13:11:08', '2021-09-20 13:00:23'),
('25187', 'tr', 'download', 'İndir', '2021-02-16 13:11:29', '2021-09-20 13:00:23'),
('25188', 'tr', 'there_have_been_no_reviews_for_this_product_yet', 'Bu ürün için henüz bir inceleme yapılmamıştır.', '2021-02-16 13:11:29', '2021-09-20 13:00:23'),
('25189', 'tr', 'related_products', 'İlgili ürünler', '2021-02-16 13:11:29', '2021-09-20 13:00:23'),
('25190', 'tr', 'any_query_about_this_product', 'Bu ürünle ilgili herhangi bir sorgu', '2021-02-16 13:11:29', '2021-09-20 13:00:23'),
('25191', 'tr', 'product_name', 'Ürün adı', '2021-02-16 13:11:29', '2021-09-20 13:00:23'),
('25192', 'tr', 'your_question', 'Senin sorun', '2021-02-16 13:11:29', '2021-09-20 13:00:23'),
('25193', 'tr', 'send', 'Gönder', '2021-02-16 13:11:29', '2021-09-20 13:00:23'),
('25194', 'tr', 'use_country_code_before_number', 'Numaradan önce ülke kodunu kullanın', '2021-02-16 13:11:29', '2021-09-20 13:00:23'),
('25195', 'tr', 'remember_me', 'Beni hatırla', '2021-02-16 13:11:29', '2021-09-20 13:00:23'),
('25196', 'tr', 'dont_have_an_account', 'Hesabın yok mu?', '2021-02-16 13:11:29', '2021-09-20 13:00:24'),
('25197', 'tr', 'register_now', 'Şimdi üye Ol', '2021-02-16 13:11:29', '2021-09-20 13:00:24'),
('25198', 'tr', 'or_login_with', 'Veya Giriş Yap', '2021-02-16 13:11:29', '2021-09-20 13:00:24'),
('25199', 'tr', 'oops', 'oops ..', '2021-02-16 13:11:29', '2021-09-20 13:00:24'),
('25200', 'tr', 'this_item_is_out_of_stock', 'Bu ürün stokta yok!', '2021-02-16 13:11:29', '2021-09-20 13:00:24'),
('25201', 'tr', 'back_to_shopping', 'Alışverişe geri dön', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25202', 'tr', 'login_to_your_account', 'Hesabınıza giriş yapın.', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25203', 'tr', 'purchase_history', 'Satın alım geçmişi', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25204', 'tr', 'new', 'Yeni', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25205', 'tr', 'downloads', 'İndirilenler', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25206', 'tr', 'sent_refund_request', 'Geri Ödeme İsteği Gönderildi', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25207', 'tr', 'product_bulk_upload', 'Ürün Toplu Yükleme', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25208', 'tr', 'orders', 'Emirler', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25209', 'tr', 'recieved_refund_request', 'Geri Ödeme İsteği Alındı', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25210', 'tr', 'shop_setting', 'Mağaza Ayarı', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25211', 'tr', 'payment_history', 'ödeme geçmişi', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25212', 'tr', 'money_withdraw', 'Para Çekme', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25213', 'tr', 'conversations', 'Konuşmalar', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25214', 'tr', 'my_wallet', 'Cüzdanım', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25215', 'tr', 'earning_points', 'Puan Kazanmak', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25216', 'tr', 'support_ticket', 'Destek bileti', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25217', 'tr', 'manage_profile', 'Profili Yönet', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25218', 'tr', 'sold_amount', 'Satılan Miktar', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25219', 'tr', 'your_sold_amount_current_month', 'Sattığınız miktar (cari ay)', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25220', 'tr', 'total_sold', 'Toplam Satılan', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25221', 'tr', 'last_month_sold', 'Geçen Ay Satıldı', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25222', 'tr', 'total_sale', 'Toplam satış', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25223', 'tr', 'total_earnings', 'Toplam kazanç', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25224', 'tr', 'successful_orders', 'Başarılı siparişler', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25225', 'tr', 'total_orders', 'Toplam sipariş', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25226', 'tr', 'pending_orders', 'Bekleyen siparişler', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25227', 'tr', 'cancelled_orders', 'İptal edilen siparişler', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25228', 'tr', 'product', 'Ürün', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25229', 'tr', 'purchased_package', 'Satın Alınan Paket', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25230', 'tr', 'package_not_found', 'Paket Bulunamadı', '2021-02-16 13:11:30', '2021-09-20 13:00:24'),
('25231', 'tr', 'upgrade_package', 'Yükseltme Paketi', '2021-02-16 13:11:31', '2021-09-20 13:00:24'),
('25232', 'tr', 'shop', 'Dükkan', '2021-02-16 13:11:31', '2021-09-20 13:00:24'),
('25233', 'tr', 'manage__organize_your_shop', 'Mağazanızı yönetin ve organize edin', '2021-02-16 13:11:31', '2021-09-20 13:00:24'),
('25234', 'tr', 'go_to_setting', 'Ayara git', '2021-02-16 13:11:31', '2021-09-20 13:00:24'),
('25235', 'tr', 'payment', 'Ödeme', '2021-02-16 13:11:31', '2021-09-20 13:00:24'),
('25236', 'tr', 'configure_your_payment_method', 'Ödeme yönteminizi yapılandırın', '2021-02-16 13:11:31', '2021-09-20 13:00:24'),
('25237', 'tr', 'my_panel', 'Panelim', '2021-02-16 13:11:52', '2021-09-20 13:00:24'),
('25238', 'tr', 'item_has_been_added_to_wishlist', 'Öğe istek listesine eklendi', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25239', 'tr', 'my_points', 'Puanlarım', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25240', 'tr', '_points', 'Puanlar', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25241', 'tr', 'wallet_money', 'Cüzdan Para', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25242', 'tr', 'exchange_rate', 'Döviz kuru', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25243', 'tr', 'point_earning_history', 'Puan Kazanma geçmişi', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25244', 'tr', 'date', 'Tarih', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25245', 'tr', 'points', 'Puanlar', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25246', 'tr', 'converted', 'Dönüştürüldü', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25247', 'tr', 'action', 'Aksiyon', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25248', 'tr', 'no_history_found', 'Geçmiş bulunamadı.', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25249', 'tr', 'convert_has_been_done_successfully_check_your_wallets', 'Dönüştürme başarıyla yapıldı Cüzdanlarınızı kontrol edin', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25250', 'tr', 'something_went_wrong', 'Bir şeyler yanlış gitti', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25251', 'tr', 'remaining_uploads', 'Kalan Yüklemeler', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25252', 'tr', 'no_package_found', 'Paket Bulunamadı', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25253', 'tr', 'search_product', 'Ürün ara', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25254', 'tr', 'name', 'İsim', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25255', 'tr', 'current_qty', 'Mevcut Adet', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25256', 'tr', 'base_price', 'Taban fiyat', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25257', 'tr', 'published', 'Yayınlanan', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25258', 'tr', 'featured', 'Öne çıkan', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25259', 'tr', 'options', 'Seçenekler', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25260', 'tr', 'edit', 'Düzenle', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25261', 'tr', 'duplicate', 'Çiftleme', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25262', 'tr', '1_download_the_skeleton_file_and_fill_it_with_data', '1. İskelet dosyasını indirin ve verilerle doldurun.', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25263', 'tr', '2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', '2. Verilerin nasıl doldurulması gerektiğini anlamak için örnek dosyayı indirebilirsiniz.', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25264', 'tr', '3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', '3. İskelet dosyasını indirip doldurduktan sonra aşağıdaki forma yükleyin ve gönderin.', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25265', 'tr', '4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', '4. Ürünleri yükledikten sonra onları düzenlemeniz ve ürün resimlerini ve seçeneklerini ayarlamanız gerekir.', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25266', 'tr', 'download_csv', 'CSV\'yi indirin', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25267', 'tr', '1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids', '1. Kategori, Alt Kategori, Alt Alt Kategori ve Marka sayısal kimlikler içinde yer almalıdır.', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25268', 'tr', '2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id', '2. Kategori, Alt kategori, Alt Alt kategori ve Marka kimliğini almak için pdf dosyasını indirebilirsiniz.', '2021-02-16 13:11:53', '2021-09-20 13:00:24'),
('25269', 'tr', 'download_category', 'Kategori İndir', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25270', 'tr', 'download_sub_category', 'Alt kategoriyi indir', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25271', 'tr', 'download_sub_sub_category', 'Alt Alt kategoriyi indirin', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25272', 'tr', 'download_brand', 'Markayı İndir', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25273', 'tr', 'upload_csv_file', 'CSV Dosyası Yükle', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25274', 'tr', 'csv', 'CSV', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25275', 'tr', 'choose_csv_file', 'CSV Dosyası Seçin', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25276', 'tr', 'upload', 'Yükle', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25277', 'tr', 'add_new_digital_product', 'Yeni Dijital Ürün Ekle', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25278', 'tr', 'available_status', 'Mevcut Durum', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25279', 'tr', 'admin_status', 'Yönetici Durumu', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25280', 'tr', 'pending_balance', 'Bekleyen Bakiye', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25281', 'tr', 'send_withdraw_request', 'Para Çekme İsteği Gönder', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25282', 'tr', 'withdraw_request_history', 'Para Çekme İsteği geçmişi', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25283', 'tr', 'amount', 'Miktar', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25284', 'tr', 'status', 'Durum', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25285', 'tr', 'message', 'İleti', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25286', 'tr', 'send_a_withdraw_request', 'Para Çekme İsteği Gönderin', '2021-02-16 13:11:54', '2021-09-20 13:00:24'),
('25287', 'tr', 'basic_info', 'Temel bilgi', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25288', 'tr', 'your_phone', 'Telefonunuz', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25289', 'tr', 'photo', 'Fotoğraf', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25290', 'tr', 'browse', 'Araştır', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25291', 'tr', 'your_password', 'Şifreniz', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25292', 'tr', 'new_password', 'Yeni Şifre', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25293', 'tr', 'confirm_password', 'Şifreyi Onayla', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25294', 'tr', 'add_new_address', 'Yeni adres ekleyin', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25295', 'tr', 'payment_setting', 'Ödeme Ayarı', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25296', 'tr', 'cash_payment', 'Nakit ödeme', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25297', 'tr', 'bank_payment', 'Banka ödemesi', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25298', 'tr', 'bank_name', 'Banka adı', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25299', 'tr', 'bank_account_name', 'Banka Hesabı Adı', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25300', 'tr', 'bank_account_number', 'Banka hesabı numarası', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25301', 'tr', 'bank_routing_number', 'Banka yönlendirme numarası', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25302', 'tr', 'update_profile', 'Profili Güncelle', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25303', 'tr', 'change_your_email', 'E-postanızı değiştirin', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25304', 'tr', 'your_email', 'E-posta adresiniz', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25305', 'tr', 'sending_email', 'E-mail göndermek...', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25306', 'tr', 'verify', 'Doğrulayın', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25307', 'tr', 'update_email', 'E-postayı Güncelle', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25308', 'tr', 'new_address', 'Yeni adres', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25309', 'tr', 'your_address', 'Senin adresin', '2021-02-16 13:12:16', '2021-09-20 13:00:24'),
('25310', 'tr', 'country', 'Ülke', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25311', 'tr', 'select_your_country', 'Ülkeni seç', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25312', 'tr', 'city', 'Kent', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25313', 'tr', 'your_city', 'Senin şehirin', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25314', 'tr', 'your_postal_code', 'Posta Kodunuz', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25315', 'tr', '880', '+880', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25316', 'tr', 'save', 'Kayıt etmek', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25317', 'tr', 'received_refund_request', 'Geri Ödeme İsteği Alındı', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25318', 'tr', 'delete_confirmation', 'Onayı Sil', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25319', 'tr', 'are_you_sure_to_delete_this', 'Bunu silmek istediğine emin misin?', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25320', 'tr', 'premium_packages_for_sellers', 'Satıcılar için Premium Paketler', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25321', 'tr', 'product_upload', 'Ürün Yükleme', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25322', 'tr', 'digital_product_upload', 'Dijital Ürün Yükleme', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25323', 'tr', 'purchase_package', 'Paket Satın Al', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25324', 'tr', 'select_payment_type', 'Ödeme Türünü Seçin', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25325', 'tr', 'payment_type', 'Ödeme şekli', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25326', 'tr', 'select_one', 'Birini seç', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25327', 'tr', 'online_payment', 'Online ödeme', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25328', 'tr', 'offline_payment', 'Çevrimdışı ödeme', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25329', 'tr', 'purchase_your_package', 'Paketinizi Satın Alın', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25330', 'tr', 'paypal', 'Paypal', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25331', 'tr', 'stripe', 'Şerit', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25332', 'tr', 'sslcommerz', 'sslcommerz', '2021-02-16 13:12:17', '2021-02-16 13:12:17'),
('25333', 'tr', 'confirm', 'Onaylamak', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25334', 'tr', 'offline_package_payment', 'Çevrimdışı Paket Ödemesi', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25335', 'tr', 'transaction_id', 'İşlem Kimliği', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25336', 'tr', 'choose_image', 'Resmi seçin', '2021-02-16 13:12:17', '2021-09-20 13:00:24'),
('25337', 'tr', 'code', 'Kodu', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25338', 'tr', 'delivery_status', 'Teslim durumu', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25339', 'tr', 'payment_status', 'Ödeme Durumu', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25340', 'tr', 'paid', 'Ücretli', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25341', 'tr', 'order_details', 'sipariş detayları', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25342', 'tr', 'download_invoice', 'Faturayı İndir', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25343', 'tr', 'unpaid', 'Ödenmemiş', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25344', 'tr', 'order_placed', 'Sipariş verildi', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25345', 'tr', 'confirmed', 'Onaylanmış', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25346', 'tr', 'on_delivery', 'Teslimatta', '2021-02-16 13:12:34', '2021-09-20 13:00:24'),
('25347', 'tr', 'delivered', 'Teslim edildi', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25348', 'tr', 'order_summary', 'sipariş özeti', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25349', 'tr', 'order_code', 'Sipariş Kodu', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25350', 'tr', 'customer', 'Müşteri', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25351', 'tr', 'total_order_amount', 'Toplam sipariş miktarı', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25352', 'tr', 'shipping_metdod', 'Nakliye yöntemi', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25353', 'tr', 'flat_shipping_rate', 'Sabit nakliye oranı', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25354', 'tr', 'payment_metdod', 'Ödeme yöntemi', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25355', 'tr', 'variation', 'varyasyon', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25356', 'tr', 'delivery_type', 'Teslimat Tipi', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25357', 'tr', 'home_delivery', 'Eve teslim', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25358', 'tr', 'order_ammount', 'Sipariş Miktarı', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25359', 'tr', 'subtotal', 'ara toplam', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25360', 'tr', 'shipping', 'Nakliye', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25361', 'tr', 'coupon_discount', 'Kupon İndirimi', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25362', 'tr', 'na', 'Yok', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25363', 'tr', 'in_stock', 'Stokta var', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25364', 'tr', 'buy_now', 'Şimdi al', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25365', 'tr', 'item_added_to_your_cart', 'Ürün sepetinize eklendi!', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25366', 'tr', 'proceed_to_checkout', 'Çıkışa doğru devam et', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25367', 'tr', 'cart_items', 'Sepet Öğeleri', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25368', 'tr', '1_my_cart', '1. Sepetim', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25369', 'tr', 'view_cart', 'Sepeti görüntüle', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25370', 'tr', '2_shipping_info', '2. Nakliye bilgileri', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25371', 'tr', 'checkout', 'Ödeme', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25372', 'tr', '3_delivery_info', '3. Teslimat bilgileri', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25373', 'tr', '4_payment', '4. Ödeme', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25374', 'tr', '5_confirmation', '5. Onay', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25375', 'tr', 'remove', 'Kaldırmak', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25376', 'tr', 'return_to_shop', 'Dükkana dön', '2021-02-16 13:12:35', '2021-09-20 13:00:24'),
('25377', 'tr', 'continue_to_shipping', 'Gönderime Devam Et', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25378', 'tr', 'or', 'Veya', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25379', 'tr', 'guest_checkout', 'Misafir Olarak Ödeme', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25380', 'tr', 'continue_to_delivery_info', 'Teslimat Bilgisine Devam Et', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25381', 'tr', 'postal_code', 'posta kodu', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25382', 'tr', 'choose_delivery_type', 'Teslimat Türünü Seçin', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25383', 'tr', 'local_pickup', 'Yerel Alım', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25384', 'tr', 'select_your_nearest_pickup_point', 'Size en yakın alım noktasını seçin', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25385', 'tr', 'continue_to_payment', 'Ödeme devam', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25386', 'tr', 'select_a_payment_option', 'Bir ödeme seçeneği seçin', '2021-02-16 13:12:36', '2021-09-20 13:00:24'),
('25387', 'tr', 'razorpay', 'Razorpay', '2021-02-16 13:13:04', '2021-09-20 13:00:24'),
('25388', 'tr', 'paystack', 'Paystack', '2021-02-16 13:13:04', '2021-09-20 13:00:24'),
('25389', 'tr', 'voguepay', 'VoguePay', '2021-02-16 13:13:04', '2021-09-20 13:00:24'),
('25390', 'tr', 'payhere', 'burada ödeyin', '2021-02-16 13:13:04', '2021-02-16 13:13:04'),
('25391', 'tr', 'ngenius', 'Ngenius', '2021-02-16 13:13:04', '2021-02-16 13:13:04'),
('25392', 'tr', 'paytm', 'Paytm', '2021-02-16 13:13:04', '2021-09-20 13:00:24'),
('25393', 'tr', 'cash_on_delivery', 'Kapıda ödeme', '2021-02-16 13:13:04', '2021-09-20 13:00:24'),
('25394', 'tr', 'your_wallet_balance_', 'Cüzdan bakiyeniz:', '2021-02-16 13:13:04', '2021-09-20 13:00:24'),
('25395', 'tr', 'insufficient_balance', 'Yetersiz bakiye', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25396', 'tr', 'i_agree_to_the', 'Katılıyorum', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25397', 'tr', 'complete_order', 'Siparişi Tamamla', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25398', 'tr', 'summary', 'Özet', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25399', 'tr', 'items', 'Öğeler', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25400', 'tr', 'total_club_point', 'Toplam Kulüp puanı', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25401', 'tr', 'total_shipping', 'Toplam Nakliye', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25402', 'tr', 'have_coupon_code_enter_here', 'Kupon kodunuz var mı? Buraya girin', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25403', 'tr', 'apply', 'Uygulamak', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25404', 'tr', 'you_need_to_agree_with_our_policies', 'Politikalarımıza katılmanız gerekiyor', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25405', 'tr', 'forgot_password', 'Parolanızı mı unuttunuz', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25406', 'tr', 'seo_setting', 'SEO Ayarı', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25407', 'tr', 'system_update', 'Sistem güncellemesi', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25408', 'tr', 'add_new_payment_method', 'Yeni Ödeme Yöntemi Ekle', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25409', 'tr', 'manual_payment_method', 'Manuel Ödeme Yöntemi', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25410', 'tr', 'heading', 'Başlık', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25411', 'tr', 'logo', 'Logo', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25412', 'tr', 'manual_payment_information', 'Manuel Ödeme Bilgileri', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25413', 'tr', 'type', 'Tür', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25414', 'tr', 'custom_payment', 'Özel Ödeme', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25415', 'tr', 'check_payment', 'Ödemeyi Kontrol Et', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25416', 'tr', 'checkout_thumbnail', 'Ödeme Küçük Resmi', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25417', 'tr', 'payment_instruction', 'Ödeme Talimatı', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25418', 'tr', 'bank_information', 'Banka bilgisi', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25419', 'tr', 'select_file', 'Dosya Seç', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25420', 'tr', 'upload_new', 'Yeni Yükle', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25421', 'tr', 'sort_by_newest', 'En yeniye göre sırala', '2021-02-16 13:13:05', '2021-09-20 13:00:24'),
('25422', 'tr', 'sort_by_oldest', 'En eskiye göre sırala', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25423', 'tr', 'sort_by_smallest', 'En küçüğe göre sırala', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25424', 'tr', 'sort_by_largest', 'En büyüğe göre sırala', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25425', 'tr', 'selected_only', 'Yalnızca Seçildi', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25426', 'tr', 'no_files_found', 'Dosya bulunamadı', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25427', 'tr', '0_file_selected', '0 Dosya seçildi', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25428', 'tr', 'clear', 'Açık', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25429', 'tr', 'prev', 'Önceki', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25430', 'tr', 'next', 'Sonraki', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25431', 'tr', 'add_files', 'Dosya Ekle', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25432', 'tr', 'method_has_been_inserted_successfully', 'Yöntem başarıyla eklendi', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25433', 'tr', 'order_date', 'Sipariş tarihi', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25434', 'tr', 'bill_to', 'ya fatura edilecek', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25435', 'tr', 'sub_total', 'Ara toplam', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25436', 'tr', 'total_tax', 'Toplam vergi', '2021-02-16 13:13:06', '2021-09-20 13:00:24'),
('25437', 'tr', 'grand_total', 'Genel Toplam', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25438', 'tr', 'your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history', 'Siparişiniz başarıyla verildi. Lütfen satın alma geçmişinden ödeme bilgilerini gönderin', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25439', 'tr', 'thank_you_for_your_order', 'Siparişiniz için teşekkür ederiz!', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25440', 'tr', 'order_code', 'Sipariş Kodu:', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25441', 'tr', 'a_copy_or_your_order_summary_has_been_sent_to', 'Bir kopyası veya sipariş özetiniz gönderildi', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25442', 'tr', 'make_payment', 'Ödeme yapmak', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25443', 'tr', 'payment_screenshot', 'Ödeme ekran görüntüsü', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25444', 'tr', 'paypal_credential', 'Paypal Kimlik Bilgileri', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25445', 'tr', 'paypal_client_id', 'Paypal Müşteri Kimliği', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25446', 'tr', 'paypal_client_secret', 'Paypal Müşteri Sırrı', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25447', 'tr', 'paypal_sandbox_mode', 'Paypal Sandbox Modu', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25448', 'tr', 'sslcommerz_credential', 'Sslcommerz Kimlik Bilgisi', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25449', 'tr', 'sslcz_store_id', 'Sslcz Mağaza Kimliği', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25450', 'tr', 'sslcz_store_password', 'Sslcz mağaza şifresi', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25451', 'tr', 'sslcommerz_sandbox_mode', 'Sslcommerz Sandbox Modu', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25452', 'tr', 'stripe_credential', 'Stripe Kimlik Bilgisi', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25453', 'tr', 'stripe_key', 'STRIPE ANAHTAR', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25454', 'tr', 'stripe_secret', 'STRIPE SECRET', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25455', 'tr', 'razorpay_credential', 'RazorPay Kimlik Bilgileri', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25456', 'tr', 'razor_key', 'Jilet anahtarı', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25457', 'tr', 'razor_secret', 'Jilet Sırrı', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25458', 'tr', 'instamojo_credential', 'Instamojo Kimlik Bilgileri', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25459', 'tr', 'api_key', 'API ANAHTARI', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25460', 'tr', 'im_api_key', 'IM API ANAHTARI', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25461', 'tr', 'auth_token', 'AUTH TOKEN', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25462', 'tr', 'im_auth_token', 'IM AUTH TOKEN', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25463', 'tr', 'instamojo_sandbox_mode', 'Instamojo Sandbox Modu', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25464', 'tr', 'paystack_credential', 'PayStack Kimlik Bilgileri', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25465', 'tr', 'public_key', 'GENEL ANAHTAR', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25466', 'tr', 'secret_key', 'GİZLİ ANAHTAR', '2021-02-16 13:13:30', '2021-09-20 13:00:24'),
('25467', 'tr', 'merchant_email', 'MERCHANT EMAIL', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25468', 'tr', 'voguepay_credential', 'VoguePay Kimlik Bilgileri', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25469', 'tr', 'merchant_id', 'TÜCCAR KİMLİĞİ', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25470', 'tr', 'sandbox_mode', 'Korumalı Alan Modu', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25471', 'tr', 'payhere_credential', 'Payhere Kimlik Bilgisi', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25472', 'tr', 'payhere_merchant_id', 'PAYHERE TİCARİ KİMLİĞİ', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25473', 'tr', 'payhere_secret', 'PAYHERE SECRET', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25474', 'tr', 'payhere_currency', 'PAYHERE CURRENCY', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25475', 'tr', 'payhere_sandbox_mode', 'Payhere Korumalı Alan Modu', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25476', 'tr', 'ngenius_credential', 'Ngenius Yeterlilik', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25477', 'tr', 'ngenius_outlet_id', 'NGENIUS OUTLET ID', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25478', 'tr', 'ngenius_api_key', 'NGENIUS API ANAHTARI', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25479', 'tr', 'ngenius_currency', 'NGENIUS PARA BİRİMİ', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25480', 'tr', 'mpesa_credential', 'Mpesa Kimlik Bilgisi', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25481', 'tr', 'mpesa_consumer_key', 'MPESA TÜKETİCİ ANAHTARI', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25482', 'tr', 'mpesa_consumer_key', 'MPESA_CONSUMER_KEY', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25483', 'tr', 'mpesa_consumer_secret', 'MPESA TÜKETİCİ GİZLİ', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25484', 'tr', 'mpesa_consumer_secret', 'MPESA_CONSUMER_SECRET', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25485', 'tr', 'mpesa_short_code', 'MPESA KISA KODU', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25486', 'tr', 'mpesa_short_code', 'MPESA_SHORT_CODE', '2021-02-16 13:13:31', '2021-09-20 13:00:24'),
('25487', 'tr', 'mpesa_sandbox_activation', 'MPESA SANDBOX AKTİVASYONU', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25488', 'tr', 'flutterwave_credential', 'Flutterwave Kimlik Bilgisi', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25489', 'tr', 'rave_public_key', 'RAVE_PUBLIC_KEY', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25490', 'tr', 'rave_secret_key', 'RAVE_SECRET_KEY', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25491', 'tr', 'rave_title', 'RAVE_TITLE', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25492', 'tr', 'stagin_activation', 'STAGIN AKTİVASYONU', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25493', 'tr', 'all_product', 'Tüm Ürün', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25494', 'tr', 'sort_by', 'Göre sırala', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25495', 'tr', 'rating_high__low', 'Derecelendirme (Yüksek> Düşük)', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25496', 'tr', 'rating_low__high', 'Derece (Düşük> Yüksek)', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25497', 'tr', 'num_of_sale_high__low', 'Satış Sayısı (Yüksek> Düşük)', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25498', 'tr', 'num_of_sale_low__high', 'Satış Sayısı (Düşük> Yüksek)', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25499', 'tr', 'base_price_high__low', 'Baz Fiyat (Yüksek> Düşük)', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25500', 'tr', 'base_price_low__high', 'Baz Fiyat (Düşük> Yüksek)', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25501', 'tr', 'type__enter', 'Yazın ve Girin', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25502', 'tr', 'added_by', 'Tarafından eklendi', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25503', 'tr', 'num_of_sale', 'Satış Sayısı', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25504', 'tr', 'total_stock', 'Toplam Stok', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25505', 'tr', 'todays_deal', 'Bugünün Fırsatı', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25506', 'tr', 'rating', 'Değerlendirme', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25507', 'tr', 'times', 'zamanlar', '2021-02-16 13:15:42', '2021-02-16 13:15:42'),
('25508', 'tr', 'add_nerw_product', 'Nerw Ürününü Ekleyin', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25509', 'tr', 'product_information', 'Ürün Bilgisi', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25510', 'tr', 'unit', 'Birim', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25511', 'tr', 'unit_eg_kg_pc_etc', 'Birim (örneğin KG, Pc vb.)', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25512', 'tr', 'minimum_qty', 'Minimum Miktar', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25513', 'tr', 'tags', 'Etiketler', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25514', 'tr', 'type_and_hit_enter_to_add_a_tag', 'Etiket eklemek için yazın ve enter tuşuna basın', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25515', 'tr', 'barcode', 'Barkod', '2021-02-16 13:15:42', '2021-09-20 13:00:24'),
('25516', 'tr', 'refundable', 'Geri ödenebilir', '2021-02-16 13:15:43', '2021-09-20 13:00:24'),
('25517', 'tr', 'product_images', 'Ürün Görselleri', '2021-02-16 13:15:43', '2021-09-20 13:00:24'),
('25518', 'tr', 'gallery_images', 'Galeri Görselleri', '2021-02-16 13:15:43', '2021-09-20 13:00:24'),
('25519', 'tr', 'todays_deal_updated_successfully', 'Bugünün Fırsatı başarıyla güncellendi', '2021-02-16 13:15:43', '2021-09-20 13:00:24'),
('25520', 'tr', 'published_products_updated_successfully', 'Yayınlanan ürünler başarıyla güncellendi', '2021-02-16 13:15:43', '2021-09-20 13:00:24'),
('25521', 'tr', 'thumbnail_image', 'Küçük Resim', '2021-02-16 13:15:43', '2021-09-20 13:00:24'),
('25522', 'tr', 'featured_products_updated_successfully', 'Öne çıkan ürünler başarıyla güncellendi', '2021-02-16 13:15:43', '2021-09-20 13:00:24'),
('25523', 'tr', 'product_videos', 'Ürün Videoları', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25524', 'tr', 'video_provider', 'Video Sağlayıcı', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25525', 'tr', 'youtube', 'Youtube', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25526', 'tr', 'dailymotion', 'Dailymotion', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25527', 'tr', 'vimeo', 'Vimeo', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25528', 'tr', 'video_link', 'Video bağlantısı', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25529', 'tr', 'product_variation', 'Ürün Varyasyonu', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25530', 'tr', 'colors', 'Colors', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25531', 'tr', 'attributes', 'Attributes', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25532', 'tr', 'choose_attributes', 'Choose Attributes', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25533', 'tr', 'choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute', 'Choose the attributes of this product and then input values of each attribute', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25534', 'tr', 'product_price__stock', 'Product price + stock', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25535', 'tr', 'unit_price', 'Unit price', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25536', 'tr', 'purchase_price', 'Purchase price', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25537', 'tr', 'flat', 'Flat', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25538', 'tr', 'percent', 'Percent', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25539', 'tr', 'discount', 'Discount', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25540', 'tr', 'product_description', 'Product Description', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25541', 'tr', 'product_shipping_cost', 'Product Shipping Cost', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25542', 'tr', 'free_shipping', 'Free Shipping', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25543', 'tr', 'flat_rate', 'Flat Rate', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25544', 'tr', 'shipping_cost', 'Shipping cost', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25545', 'tr', 'pdf_specification', 'PDF Specification', '2021-02-16 13:15:43', '2021-09-20 13:00:25'),
('25546', 'tr', 'seo_meta_tags', 'SEO Meta Tags', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25547', 'tr', 'meta_title', 'Meta Title', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25548', 'tr', 'meta_image', 'Meta Image', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25549', 'tr', 'choice_title', 'Choice Title', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25550', 'tr', 'enter_choice_values', 'Enter choice values', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25551', 'tr', 'all_categories', 'All categories', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25552', 'tr', 'add_new_category', 'Add New category', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25553', 'tr', 'type_name__enter', 'Type name & Enter', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25554', 'tr', 'banner', 'Banner', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25555', 'tr', 'commission', 'Commission', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25556', 'tr', 'icon', 'icon', '2021-02-16 13:15:44', '2021-02-16 13:15:44'),
('25557', 'tr', 'featured_categories_updated_successfully', 'Featured categories updated successfully', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25558', 'tr', 'hot', 'Hot', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25559', 'tr', 'filter_by_payment_status', 'Filter by Payment Status', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25560', 'tr', 'unpaid', 'Un-Paid', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25561', 'tr', 'filter_by_deliver_status', 'Filter by Deliver Status', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25562', 'tr', 'pending', 'Pending', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25563', 'tr', 'type_order_code__hit_enter', 'Type Order code & hit Enter', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25564', 'tr', 'num_of_products', 'Num. of Products', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25565', 'tr', 'walk_in_customer', 'Walk In Customer', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25566', 'tr', 'qty', 'QTY', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25567', 'tr', 'without_shipping_charge', 'Without Shipping Charge', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25568', 'tr', 'with_shipping_charge', 'With Shipping Charge', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25569', 'tr', 'pay_with_cash', 'Pay With Cash', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25570', 'tr', 'shipping_address', 'Shipping Address', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25571', 'tr', 'close', 'Close', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25572', 'tr', 'select_country', 'Select country', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25573', 'tr', 'order_confirmation', 'Order Confirmation', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25574', 'tr', 'are_you_sure_to_confirm_this_order', 'Are you sure to confirm this order?', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25575', 'tr', 'comfirm_order', 'Siparişi Onayla', '2021-02-16 13:15:44', '2021-09-20 13:00:25'),
('25576', 'tr', 'personal_info', 'Kişisel bilgi', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25577', 'tr', 'repeat_password', 'Şifreyi tekrar girin', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25578', 'tr', 'shop_name', 'Mağaza ismi', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25579', 'tr', 'register_your_shop', 'Mağazanızı Kaydedin', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25580', 'tr', 'affiliate_informations', 'Ortaklık Bilgileri', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25581', 'tr', 'affiliate', 'Affiliate', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25582', 'tr', 'user_info', 'Kullanıcı bilgisi', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25583', 'tr', 'installed_addon', 'Yüklü Eklenti', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25584', 'tr', 'available_addon', 'Kullanılabilir Eklenti', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25585', 'tr', 'install_new_addon', 'Yeni Eklentiyi Kur', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25586', 'tr', 'version', 'Sürüm', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25587', 'tr', 'activated', 'Aktif', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25588', 'tr', 'deactivated', 'Devre dışı bırakıldı', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25589', 'tr', 'activate_otp', 'OTP\'yi etkinleştirin', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25590', 'tr', 'otp_will_be_used_for', 'OTP Kullanılacak', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25591', 'tr', 'settings_updated_successfully', 'Ayarlar başarıyla güncellendi', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25592', 'tr', 'product_owner', 'Ürün sahibi', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25593', 'tr', 'point', 'Nokta', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25594', 'tr', 'set_point_for_product_within_a_range', 'Bir Aralık İçerisindeki Ürün için Ayar Noktası', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25595', 'tr', 'set_point_for_multiple_products', 'Birden fazla ürün için Ayar Noktası', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25596', 'tr', 'min_price', 'Min Fiyat', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25597', 'tr', 'max_price', 'Maksimum Fiyat', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25598', 'tr', 'set_point_for_all_products', 'Tüm Ürünler için Ayar Noktası', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25599', 'tr', 'set_point_for_', 'Ayar Noktası', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25600', 'tr', 'convert_status', 'Durumu Dönüştür', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25601', 'tr', 'earned_at', 'Kazanılan', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25602', 'tr', 'seller_based_selling_report', 'Satıcı Bazlı Satış Raporu', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25603', 'tr', 'sort_by_verificarion_status', 'Doğrulama durumuna göre sırala', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25604', 'tr', 'approved', 'Onaylandı', '2021-02-16 13:15:45', '2021-09-20 13:00:25'),
('25605', 'tr', 'non_approved', 'Onaylanmamış', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25606', 'tr', 'filter', 'Filtrele', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25607', 'tr', 'seller_name', 'Satıcı Adı', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25608', 'tr', 'number_of_product_sale', 'Ürün Satış Sayısı', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25609', 'tr', 'order_amount', 'Sipariş miktarı', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25610', 'tr', 'facebook_chat_setting', 'Facebook Sohbet Ayarı', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25611', 'tr', 'facebook_page_id', 'Facebook Sayfa Kimliği', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25612', 'tr', 'please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site', 'Facebook sohbetini yapılandırırken lütfen dikkatli olun. Yanlış konfigürasyon için kullanıcı-son sitenizde mesajlaşma simgesi görmeyeceksiniz.', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25613', 'tr', 'login_into_your_facebook_page', 'Facebook sayfanıza giriş yapın', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25614', 'tr', 'find_the_about_option_of_your_facebook_page', 'Facebook sayfanızın Hakkında seçeneğini bulun', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25615', 'tr', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'En altta \\ \"Facebook Sayfa Kimliği \\\" ni bulabilirsiniz', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25616', 'tr', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Sayfanızın Ayarlarına gidin ve \\ \"Gelişmiş Mesajlaşma \\\" seçeneğini bulun', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25617', 'tr', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Sayfayı aşağı kaydırın ve \\ \"beyaz listeli alan \\\" alacaksınız', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25618', 'tr', 'set_your_website_domain_name', 'Web sitenizin alan adını ayarlayın', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25619', 'tr', 'google_recaptcha_setting', 'Google reCAPTCHA Ayarı', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25620', 'tr', 'site_key', 'Site anahtarı', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25621', 'tr', 'select_shipping_method', 'Nakliye Yöntemini Seçin', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25622', 'tr', 'product_wise_shipping_cost', 'Ürün Bilge Nakliye Maliyeti', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25623', 'tr', 'flat_rate_shipping_cost', 'Sabit Ücret Nakliye Maliyeti', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25624', 'tr', 'seller_wise_flat_shipping_cost', 'Satıcı Bilge Düz Nakliye Maliyeti', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25625', 'tr', 'note', 'Not', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25626', 'tr', 'product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Ürüne Yönelik Nakliye Maliyeti hesaplaması: Nakliye maliyeti, her ürün nakliye ücretinin eklenmesiyle hesaplanır', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25627', 'tr', 'flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Sabit Ücretli Nakliye Maliyeti hesaplaması: Bir müşterinin kaç ürün satın aldığı önemli değil. Nakliye maliyeti sabittir', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25628', 'tr', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_a_customer_purchase_2_product_from_two_seller_shipping_cost_is_calculate_by_addition_of_each_seller_flat_shipping_cost', 'Seller Wise Flat Shipping Maliyet hesaplaması: Her satıcı için sabit ücret. Bir müşteri iki satıcıdan 2 ürün satın alırsa kargo bedeli, her satıcının sabit kargo bedelinin eklenmesiyle hesaplanır.', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25629', 'tr', 'flat_rate_cost', 'Sabit Ücret Maliyeti', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25630', 'tr', 'shipping_cost_for_admin_products', 'İdari Ürünler için Nakliye Maliyeti', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25631', 'tr', 'countries', 'Ülkeler', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25632', 'tr', 'showhide', 'Göster / Gizle', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25633', 'tr', 'country_status_updated_successfully', 'Ülke durumu başarıyla güncellendi', '2021-02-16 13:15:46', '2021-09-20 13:00:25'),
('25634', 'tr', 'all_subcategories', 'Tüm Alt Kategoriler', '2021-02-16 13:15:47', '2021-09-20 13:00:25'),
('25635', 'tr', 'add_new_subcategory', 'Yeni Alt Kategori Ekle', '2021-02-16 13:15:47', '2021-09-20 13:00:25'),
('25636', 'tr', 'subcategories', 'Alt Kategoriler', '2021-02-16 13:15:47', '2021-09-20 13:00:25'),
('25637', 'tr', 'sub_category_information', 'Alt Kategori Bilgileri', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25638', 'tr', 'slug', 'Sümüklüböcek', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25639', 'tr', 'all_sub_subcategories', 'Tüm Alt Kategoriler', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25640', 'tr', 'add_new_sub_subcategory', 'Yeni Alt Alt Kategori Ekle', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25641', 'tr', 'subsubcategories', 'Alt-Alt kategoriler', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25642', 'tr', 'make_this_default', 'Bunu Varsayılan Yap', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25643', 'tr', 'shops', 'Mağazalar', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25644', 'tr', 'women_clothing__fashion', 'Kadın Giyim ve Moda', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25645', 'tr', 'cellphones__tabs', 'Cep Telefonları ve Sekmeler', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25646', 'tr', 'welcome_to', 'Hoşgeldiniz', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25647', 'tr', 'create_a_new_account', 'Yeni bir hesap oluştur', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25648', 'tr', 'full_name', 'Ad Soyad', '2021-02-16 13:17:03', '2021-09-20 13:00:25'),
('25649', 'tr', 'password', 'parola', '2021-02-16 13:17:04', '2021-02-16 13:17:04'),
('25650', 'tr', 'confrim_password', 'Şifreyi Onayla', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25651', 'tr', 'i_agree_with_the', 'Katılıyorum', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25652', 'tr', 'terms_and_conditions', 'Şartlar ve koşullar', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25653', 'tr', 'register', 'Kayıt ol', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25654', 'tr', 'already_have_an_account', 'Zaten hesabınız var mı', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25655', 'tr', 'sign_up_with', 'İle kayıt olun', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25656', 'tr', 'i_agree_with_the_terms_and_conditions', 'Kabul ediyorum Şartlar ve Koşullar', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25657', 'tr', 'all_role', 'Tüm Rol', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25658', 'tr', 'add_new_role', 'Yeni Rol Ekle', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25659', 'tr', 'roles', 'Roller', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25660', 'tr', 'add_new_staffs', 'Yeni Personel Ekle', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25661', 'tr', 'role', 'Rol', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25662', 'tr', 'frontend_website_name', 'Ön Uç Web Sitesi Adı', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25663', 'tr', 'website_name', 'Web Sitesi Adı', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25664', 'tr', 'site_motto', 'Site Slogan', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25665', 'tr', 'best_ecommerce_website', 'En İyi e-Ticaret Sitesi', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25666', 'tr', 'site_icon', 'Site Simgesi', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25667', 'tr', 'website_favicon_32x32_png', 'Web sitesi favicon. 32x32 .png', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25668', 'tr', 'website_base_color', 'Web Sitesi Temel Rengi', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25669', 'tr', 'hex_color_code', 'Hex Renk Kodu', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25670', 'tr', 'website_base_hover_color', 'Web Sitesi Temel Vurgu Rengi', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25671', 'tr', 'update', 'Güncelleme', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25672', 'tr', 'global_seo', 'Küresel Seo', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25673', 'tr', 'meta_description', 'Meta Açıklaması', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25674', 'tr', 'keywords', 'Anahtar kelimeler', '2021-02-16 13:17:04', '2021-09-20 13:00:25'),
('25675', 'tr', 'separate_with_coma', 'Komadan ayırın', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25676', 'tr', 'website_pages', 'Web Sitesi Sayfaları', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25677', 'tr', 'all_pages', 'Tüm sayfalar', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25678', 'tr', 'add_new_page', 'Yeni Sayfa Ekle', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25679', 'tr', 'url', 'URL', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25680', 'tr', 'actions', 'Hareketler', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25681', 'tr', 'edit_page_information', 'Sayfa Bilgilerini Düzenle', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25682', 'tr', 'page_content', 'Sayfa içeriği', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25683', 'tr', 'title', 'Başlık', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25684', 'tr', 'link', 'Bağlantı', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25685', 'tr', 'use_character_number_hypen_only', 'Yalnızca karakter, sayı ve tire kullanın', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25686', 'tr', 'add_content', 'İçerik Ekleyin', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25687', 'tr', 'seo_fields', 'Seo Alanları', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25688', 'tr', 'update_page', 'Sayfayı Güncelle', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25689', 'tr', 'default_language', 'Varsayılan dil', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25690', 'tr', 'add_new_language', 'Yeni Dil Ekle', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25691', 'tr', 'rtl', 'RTL', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25692', 'tr', 'translation', 'Tercüme', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25693', 'tr', 'language_information', 'Dil Bilgileri', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25694', 'tr', 'save_page', 'Sayfayı kaydet', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25695', 'tr', 'home_page_settings', 'Ana Sayfa Ayarları', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25696', 'tr', 'home_slider', 'Ana Sayfa Kaydırıcı', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25697', 'tr', 'photos__links', 'Fotoğraflar ve Bağlantılar', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25698', 'tr', 'add_new', 'Yeni ekle', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25699', 'tr', 'home_categories', 'Ana Sayfa Kategoriler', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25700', 'tr', 'home_banner_1_max_3', 'Ana Sayfa Banner 1 (En Fazla 3)', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25701', 'tr', 'banner__links', 'Banner ve Bağlantılar', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25702', 'tr', 'home_banner_2_max_3', 'Ana Sayfa Banner 2 (En Fazla 3)', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25703', 'tr', 'top_10', 'En iyi 10', '2021-02-16 13:17:05', '2021-09-20 13:00:25'),
('25704', 'tr', 'top_categories_max_10', 'En İyi Kategoriler (Maks. 10)', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25705', 'tr', 'top_brands_max_10', 'En İyi Markalar (Maks. 10)', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25706', 'tr', 'system_name', 'Sistem Adı', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25707', 'tr', 'system_logo__white', 'Sistem Logosu - Beyaz', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25708', 'tr', 'choose_files', 'Dosyaları Seçin', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25709', 'tr', 'will_be_used_in_admin_panel_side_menu', 'Yönetici paneli yan menüsünde kullanılacak', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25710', 'tr', 'system_logo__black', 'Sistem Logosu - Siyah', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25711', 'tr', 'will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page', 'Mobil + Yönetici giriş sayfasında yönetici paneli üst çubuğunda kullanılacak', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25712', 'tr', 'system_timezone', 'Sistem Saat Dilimi', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25713', 'tr', 'admin_login_page_background', 'Yönetici oturum açma sayfası arka planı', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25714', 'tr', 'website_header', 'Web Sitesi Başlığı', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25715', 'tr', 'header_setting', 'Üstbilgi Ayarı', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25716', 'tr', 'header_logo', 'Başlık logosu', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25717', 'tr', 'show_language_switcher', 'Dil Değiştirici Gösterilsin mi?', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25718', 'tr', 'show_currency_switcher', 'Para Birimi Değiştirici Gösterilsin mi?', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25719', 'tr', 'enable_stikcy_header', 'Stikcy başlığı etkinleştirilsin mi?', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25720', 'tr', 'website_footer', 'Web Sitesi Altbilgisi', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25721', 'tr', 'footer_widget', 'Altbilgi Widget\'ı', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25722', 'tr', 'about_widget', 'Widget hakkında', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25723', 'tr', 'footer_logo', 'Altbilgi Logosu', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25724', 'tr', 'about_description', 'Açıklama hakkında', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25725', 'tr', 'contact_info_widget', 'İletişim Bilgileri Pencere Öğesi', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25726', 'tr', 'footer_contact_address', 'Altbilgi iletişim adresi', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25727', 'tr', 'footer_contact_phone', 'Altbilgi iletişim telefonu', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25728', 'tr', 'footer_contact_email', 'Altbilgi iletişim e-postası', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25729', 'tr', 'link_widget_one', 'Bağlantı Widget\'ı Bir', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25730', 'tr', 'links', 'Bağlantılar', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25731', 'tr', 'footer_bottom', 'Altbilgi Alt', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25732', 'tr', 'copyright_widget_', 'Telif Hakkı Widget\'ı', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25733', 'tr', 'copyright_text', 'Telif Hakkı Metni', '2021-02-16 13:17:06', '2021-09-20 13:00:25'),
('25734', 'tr', 'social_link_widget_', 'Sosyal Bağlantı Widget\'ı', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25735', 'tr', 'show_social_links', 'Sosyal Bağlantılar Gösterilsin mi?', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25736', 'tr', 'social_links', 'Sosyal Bağlantılar', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25737', 'tr', 'payment_methods_widget_', 'Ödeme Yöntemleri Widget\'ı', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25738', 'tr', 'rtl_status_updated_successfully', 'RTL durumu başarıyla güncellendi', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25739', 'tr', 'language_changed_to_', 'Dil şu şekilde değiştirildi:', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25740', 'tr', 'inhouse_product_sale_report', 'Kurum İçi Ürün satış raporu', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25741', 'tr', 'sort_by_category', 'Kategoriye göre sırala', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25742', 'tr', 'product_wise_stock_report', 'Ürün bilge stok raporu', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25743', 'tr', 'currency_changed_to_', 'Para birimi değiştirildi', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25744', 'tr', 'avatar', 'Avatar', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25745', 'tr', 'copy', 'Kopyala', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25746', 'tr', 'variant', 'Varyant', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25747', 'tr', 'variant_price', 'Varyant Fiyatı', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25748', 'tr', 'sku', 'SKU', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25749', 'tr', 'key', 'Anahtar', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25750', 'tr', 'value', 'Değer', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25751', 'tr', 'copy_translations', 'Çevirileri Kopyala', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25752', 'tr', 'all_pickup_points', 'Tüm Alış Noktaları', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25753', 'tr', 'add_new_pickup_point', 'Yeni Alış Noktası Ekleyin', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25754', 'tr', 'manager', 'Yönetici', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25755', 'tr', 'location', 'yer', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25756', 'tr', 'pickup_station_contact', 'Alım İstasyonu İletişim', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25757', 'tr', 'open', 'Açık', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25758', 'tr', 'pos_activation_for_seller', 'Satıcı için POS Aktivasyonu', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25759', 'tr', 'order_completed_successfully', 'Sipariş Başarıyla Tamamlandı.', '2021-02-16 13:17:07', '2021-09-20 13:00:25'),
('25760', 'tr', 'text_input', 'Metin Girişi', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25761', 'tr', 'select', 'Seçiniz', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25762', 'tr', 'multiple_select', 'Çoklu Seçim', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25763', 'tr', 'radio', 'Radyo', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25764', 'tr', 'file', 'Dosya', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25765', 'tr', 'email_address', 'E', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25766', 'tr', 'verification_info', 'Doğrulama Bilgileri', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25767', 'tr', 'approval', 'Onay', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25768', 'tr', 'due_amount', 'Ödenecek meblağ', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25769', 'tr', 'show', 'Göstermek', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25770', 'tr', 'pay_now', 'Şimdi öde', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25771', 'tr', 'affiliate_user_verification', 'Satış Ortağı Kullanıcı Doğrulaması', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25772', 'tr', 'reject', 'Reddet', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25773', 'tr', 'accept', 'Kabul etmek', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25774', 'tr', 'beauty_health__hair', 'Güzellik, Sağlık ve Saç', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25775', 'tr', 'comparison', 'Karşılaştırma', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25776', 'tr', 'reset_compare_list', 'Karşılaştırma Listesini Sıfırla', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25777', 'tr', 'your_comparison_list_is_empty', 'Karşılaştırma listeniz boş', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25778', 'tr', 'convert_point_to_wallet', 'Noktayı Cüzdana Dönüştür', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25779', 'tr', 'note_you_need_to_activate_wallet_option_first_before_using_club_point_addon', 'Not: Kulüp puanı eklentisini kullanmadan önce cüzdan seçeneğini etkinleştirmeniz gerekir.', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25780', 'tr', 'create_an_account', 'Bir hesap oluşturun.', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25781', 'tr', 'use_email_instead', 'Bunun yerine E-posta Kullanın', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25782', 'tr', 'by_signing_up_you_agree_to_our_terms_and_conditions', 'Kaydolarak hüküm ve koşullarımızı kabul etmiş olursunuz.', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25783', 'tr', 'create_account', 'Hesap oluştur', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25784', 'tr', 'or_join_with', 'Veya Birlikte Katıl', '2021-02-16 13:17:08', '2021-09-20 13:00:25'),
('25785', 'tr', 'already_have_an_account', 'Zaten hesabınız var mı?', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25786', 'tr', 'log_in', 'Oturum aç', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25787', 'tr', 'computer__accessories', 'Bilgisayar Aksesuarları', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25788', 'tr', 'products', 'Ürün:% s)', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25789', 'tr', 'in_your_cart', 'sepetinde', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25790', 'tr', 'in_your_wishlist', 'dilek listende', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25791', 'tr', 'you_ordered', 'sen sipariş ettin', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25792', 'tr', 'default_shipping_address', 'varsayılan kargo adresi', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25793', 'tr', 'sports__outdoor', 'Spor ve açık hava', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25794', 'tr', 'copied', 'Kopyalandı', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25795', 'tr', 'copy_the_promote_link', 'Tanıtım Bağlantısını kopyalayın', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25796', 'tr', 'write_a_review', 'Bir değerlendirme yazın', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25797', 'tr', 'your_name', 'Adınız', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25798', 'tr', 'comment', 'Yorum Yap', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25799', 'tr', 'your_review', 'Yorumun', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25800', 'tr', 'submit_review', 'İnceleme gönder', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25801', 'tr', 'claire_willis', 'Claire Willis', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25802', 'tr', 'germaine_greene', 'Germaine Greene', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25803', 'tr', 'product_file', 'Ürün Dosyası', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25804', 'tr', 'choose_file', 'Dosya seçin', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25805', 'tr', 'type_to_add_a_tag', 'Etiket eklemek için yazın', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25806', 'tr', 'images', 'Görüntüler', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25807', 'tr', 'main_images', 'Ana Görseller', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25808', 'tr', 'meta_tags', 'Meta etiketleri', '2021-02-16 13:17:09', '2021-09-20 13:00:25'),
('25809', 'tr', 'digital_product_has_been_inserted_successfully', 'Dijital Ürün başarıyla eklendi', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25810', 'tr', 'edit_digital_product', 'Dijital Ürünü Düzenleyin', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25811', 'tr', 'select_an_option', 'Bir seçenek seçin', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25812', 'tr', 'tax', 'vergi', '2021-02-16 13:17:10', '2021-02-16 13:17:10'),
('25813', 'tr', 'any_question_about_this_product', 'Bu ürün hakkında herhangi bir sorunuz var mı?', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25814', 'tr', 'sign_in', 'oturum aç', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25815', 'tr', 'login_with_google', 'Google ile giriş yap', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25816', 'tr', 'login_with_facebook', 'Facebook ile giriş', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25817', 'tr', 'login_with_twitter', 'Twitter ile giriş yap', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25818', 'tr', 'click_to_show_phone_number', 'Telefon numarasını göstermek için tıklayın', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25819', 'tr', 'other_ads_of', 'Diğer Reklamlar', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25820', 'tr', 'store_home', 'Dükkan ev', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25821', 'tr', 'top_selling', 'En çok satan', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25822', 'tr', 'shop_settings', 'Mağaza Ayarları', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25823', 'tr', 'visit_shop', 'Mağazayı Ziyaret Et', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25824', 'tr', 'pickup_points', 'Alış Noktaları', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25825', 'tr', 'select_pickup_point', 'Alış Noktasını Seçin', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25826', 'tr', 'slider_settings', 'Kaydırıcı Ayarları', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25827', 'tr', 'social_media_link', 'Sosyal Medya Bağlantısı', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25828', 'tr', 'facebook', 'Facebook', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25829', 'tr', 'twitter', 'Twitter', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25830', 'tr', 'google', 'Google', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25831', 'tr', 'new_arrival_products', 'Yeni Varış Ürünleri', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25832', 'tr', 'check_your_order_status', 'Sipariş Durumunuzu Kontrol Edin', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25833', 'tr', 'shipping_method', 'Nakliye Yöntemi', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25834', 'tr', 'shipped_by', 'Tarafından sevk', '2021-02-16 13:17:10', '2021-09-20 13:00:25'),
('25835', 'tr', 'image', 'Resim', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25836', 'tr', 'sub_sub_category', 'Alt Alt Kategori', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25837', 'tr', 'inhouse_products', 'Şirket İçi Ürünler', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25838', 'tr', 'forgot_password', 'Parolanızı mı unuttunuz?', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25839', 'tr', 'enter_your_email_address_to_recover_your_password', 'Şifrenizi kurtarmak için e-posta adresinizi girin.', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25840', 'tr', 'email_or_phone', 'Eposta ya da telefon', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25841', 'tr', 'send_password_reset_link', 'Şifre Sıfırlama Bağlantısını Gönder', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25842', 'tr', 'back_to_login', 'Giriş Sayfasına Dön', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25843', 'tr', 'index', 'indeks', '2021-02-16 13:17:11', '2021-02-16 13:17:11'),
('25844', 'tr', 'download_your_product', 'Ürününüzü İndirin', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25845', 'tr', 'option', 'Seçenek', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25846', 'tr', 'applied_refund_request', 'Uygulanan Geri Ödeme İsteği', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25847', 'tr', 'item_has_been_renoved_from_wishlist', 'Öğe, istek listesinden yenilendi', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25848', 'tr', 'bulk_products_upload', 'Toplu Ürün Yükleme', '2021-02-16 13:17:11', '2021-09-20 13:00:25'),
('25849', 'tr', 'upload_csv', 'CSV yükle', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25850', 'tr', 'create_a_ticket', 'Bilet Oluştur', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25851', 'tr', 'tickets', 'Biletler', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25852', 'tr', 'ticket_id', 'Bilet Kimliği', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25853', 'tr', 'sending_date', 'Gönderim tarihi', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25854', 'tr', 'subject', 'Konu', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25855', 'tr', 'view_details', 'Detayları göster', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25856', 'tr', 'provide_a_detailed_description', 'Ayrıntılı bir açıklama sağlayın', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25857', 'tr', 'type_your_reply', 'Cevabınızı yazın', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25858', 'tr', 'send_ticket', 'Bilet Gönder', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25859', 'tr', 'load_more', 'Daha fazla yükle', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25860', 'tr', 'jewelry__watches', 'Takı ve Saatler', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25861', 'tr', 'filters', 'Filtreler', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25862', 'tr', 'contact_address', 'İletişim Adresi', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25863', 'tr', 'contact_phone', 'İletişim Telefonu', '2021-02-16 13:17:11', '2021-09-20 13:00:26'),
('25864', 'tr', 'contact_email', 'İletişim E-posta', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25865', 'tr', 'filter_by', 'Tarafından filtre', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25866', 'tr', 'condition', 'Durum', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25867', 'tr', 'all_type', 'Her tip', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25868', 'tr', 'pay_with_wallet', 'Cüzdan ile öde', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25869', 'tr', 'select_variation', 'Varyasyon seçin', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25870', 'tr', 'no_product_added', 'Ürün Eklenmedi', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25871', 'tr', 'status_has_been_updated_successfully', 'Durum başarıyla güncellendi', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25872', 'tr', 'all_seller_packages', 'Tüm Satıcı Paketleri', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25873', 'tr', 'add_new_package', 'Yeni Paket Ekle', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25874', 'tr', 'package_logo', 'Paket Logosu', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25875', 'tr', 'days', 'günler', '2021-02-16 13:17:12', '2021-02-16 13:17:12'),
('25876', 'tr', 'create_new_seller_package', 'Yeni Satıcı Paketi Oluşturun', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25877', 'tr', 'package_name', 'Paket ismi', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25878', 'tr', 'duration', 'Süresi', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25879', 'tr', 'validity_in_number_of_days', 'Gün sayısı olarak geçerlilik', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25880', 'tr', 'update_package_information', 'Paket Bilgilerini Güncelleyin', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25881', 'tr', 'package_has_been_inserted_successfully', 'Paket başarıyla eklendi', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25882', 'tr', 'refund_request', 'İade talebi', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25883', 'tr', 'reason', 'Nedeni', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25884', 'tr', 'label', 'Etiket', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25885', 'tr', 'select_label', 'Etiket Seçin', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25886', 'tr', 'multiple_select_label', 'Çoklu Seçim Etiketi', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25887', 'tr', 'radio_label', 'Radyo Etiketi', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25888', 'tr', 'pickup_point_orders', 'Teslim Alma Noktası Siparişleri', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25889', 'tr', 'view', 'Görünüm', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25890', 'tr', 'order_', 'Sipariş #', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25891', 'tr', 'order_status', 'Sipariş durumu', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25892', 'tr', 'total_amount', 'Toplam tutar', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25893', 'tr', 'total', 'TOPLAM', '2021-02-16 13:17:12', '2021-09-20 13:00:26'),
('25894', 'tr', 'delivery_status_has_been_updated', 'Teslimat durumu güncellendi', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25895', 'tr', 'payment_status_has_been_updated', 'Ödeme durumu güncellendi', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25896', 'tr', 'invoice', 'FATURA', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25897', 'tr', 'set_refund_time', 'Geri Ödeme Zamanını Ayarlayın', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25898', 'tr', 'set_time_for_sending_refund_request', 'Geri Ödeme İsteği Gönderme Zamanı Ayarlayın', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25899', 'tr', 'set_refund_sticker', 'Geri Ödeme Etiketini Ayarla', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25900', 'tr', 'sticker', 'Etiket', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25901', 'tr', 'refund_request_all', 'Geri Ödeme İsteği Tümü', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25902', 'tr', 'order_id', 'Sipariş Kimliği', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25903', 'tr', 'seller_approval', 'Satıcı Onayı', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25904', 'tr', 'admin_approval', 'Yönetici Onayı', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25905', 'tr', 'refund_status', 'Geri Ödeme Durumu', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25906', 'tr', 'no_refund', 'Geri ödeme yok', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25907', 'tr', 'status_updated_successfully', 'Durum başarıyla güncellendi', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25908', 'tr', 'user_search_report', 'Kullanıcı Arama Raporu', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25909', 'tr', 'search_by', 'Arama Ölçütü', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25910', 'tr', 'number_searches', 'Numara aramaları', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25911', 'tr', 'sender', 'Gönderen', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25912', 'tr', 'receiver', 'Alıcı', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25913', 'tr', 'verification_form_updated_successfully', 'Doğrulama formu başarıyla güncellendi', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25914', 'tr', 'invalid_email_or_password', 'Geçersiz e-posta veya şifre', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25915', 'tr', 'all_coupons', 'Tüm Kuponlar', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25916', 'tr', 'add_new_coupon', 'Yeni Kupon Ekle', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25917', 'tr', 'coupon_information', 'Kupon Bilgileri', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25918', 'tr', 'start_date', 'Başlangıç ​​tarihi', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25919', 'tr', 'end_date', 'Bitiş tarihi', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25920', 'tr', 'product_base', 'Ürün Tabanı', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25921', 'tr', 'send_newsletter', 'Bülten Gönder', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25922', 'tr', 'mobile_users', 'Mobil Kullanıcılar', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25923', 'tr', 'sms_subject', 'SMS konusu', '2021-02-16 13:17:13', '2021-09-20 13:00:26'),
('25924', 'tr', 'sms_content', 'SMS içeriği', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25925', 'tr', 'all_flash_delas', 'Tüm Flash Gecikmeleri', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25926', 'tr', 'create_new_flash_dela', 'Yeni Flash Dela Oluştur', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25927', 'tr', 'page_link', 'Sayfa Bağlantısı', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25928', 'tr', 'flash_deal_information', 'Flaş Anlaşma Bilgileri', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25929', 'tr', 'background_color', 'Arka plan rengi', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25930', 'tr', '0000ff', '# 0000ff', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25931', 'tr', 'text_color', 'Metin Rengi', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25932', 'tr', 'white', 'Beyaz', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25933', 'tr', 'dark', 'Karanlık', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25934', 'tr', 'choose_products', 'Ürünleri Seçin', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25935', 'tr', 'discounts', 'İndirimler', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25936', 'tr', 'discount_type', 'İndirim Tipi', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25937', 'tr', 'twillo_credential', 'Twillo Kimlik Bilgisi', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25938', 'tr', 'twilio_sid', 'TWILIO SID', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25939', 'tr', 'twilio_auth_token', 'TWILIO AUTH TOKEN', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25940', 'tr', 'twilio_verify_sid', 'TWILIO SID\'Yİ DOĞRULA', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25941', 'tr', 'valid_twillo_number', 'GEÇERLİ TWILLO NUMARASI', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25942', 'tr', 'nexmo_credential', 'Nexmo Kimlik Bilgisi', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25943', 'tr', 'nexmo_key', 'NEXMO ANAHTARI', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25944', 'tr', 'nexmo_secret', 'NEXMO SECRET', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25945', 'tr', 'ssl_wireless_credential', 'SSL Kablosuz Kimlik Bilgisi', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25946', 'tr', 'ssl_sms_api_token', 'SSL SMS API TOKEN', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25947', 'tr', 'ssl_sms_sid', 'SSL SMS SID', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25948', 'tr', 'ssl_sms_url', 'SSL SMS URL\'si', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25949', 'tr', 'fast2sms_credential', 'Fast2SMS Kimlik Bilgisi', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25950', 'tr', 'auth_key', 'AUTH ANAHTARI', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25951', 'tr', 'route', 'ROTA', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25952', 'tr', 'promotional_use', 'Promosyon Kullanımı', '2021-02-16 13:17:14', '2021-09-20 13:00:26'),
('25953', 'tr', 'transactional_use', 'İşlemsel Kullanım', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25954', 'tr', 'sender_id', 'GÖNDERİCİ KİMLİĞİ', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25955', 'tr', 'nexmo_otp', 'Nexmo OTP', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25956', 'tr', 'twillo_otp', 'Twillo OTP', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25957', 'tr', 'ssl_wireless_otp', 'SSL Kablosuz OTP', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25958', 'tr', 'fast2sms_otp', 'Fast2SMS OTP', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25959', 'tr', 'order_placement', 'Sipariş yerleştirme', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25960', 'tr', 'delivery_status_changing_time', 'Teslimat Durumu Değişen Zaman', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25961', 'tr', 'paid_status_changing_time', 'Ücretli Durum Değiştirme Zamanı', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25962', 'tr', 'send_bulk_sms', 'Toplu SMS Gönder', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25963', 'tr', 'all_subscribers', 'Tüm Aboneler', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25964', 'tr', 'coupon_information_adding', 'Kupon Bilgisi Ekleme', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25965', 'tr', 'coupon_type', 'Kupon Türü', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25966', 'tr', 'for_products', 'Ürünler için', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25967', 'tr', 'for_total_orders', 'Toplam Siparişler için', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25968', 'tr', 'add_your_product_base_coupon', 'Ürün Taban Kuponunuzu Ekleyin', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25969', 'tr', 'coupon_code', 'Kupon Kodu', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25970', 'tr', 'sub_category', 'Alt Kategori', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25971', 'tr', 'add_more', 'Daha ekle', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25972', 'tr', 'add_your_cart_base_coupon', 'Sepetinizin Taban Kuponunu Ekleyin', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25973', 'tr', 'minimum_shopping', 'Minimum Alışveriş', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25974', 'tr', 'maximum_discount_amount', 'Maksimum İndirim Tutarı', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25975', 'tr', 'coupon_information_update', 'Kupon Bilgileri Güncellemesi', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25976', 'tr', 'please_configure_smtp_setting_to_work_all_email_sending_funtionality', 'Lütfen tüm e-posta gönderme işlevini çalıştırmak için SMTP Ayarını Yapılandırın', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25977', 'tr', 'configure_now', 'Şimdi Yapılandırın', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25978', 'tr', 'total_published_products', 'Toplam yayınlanan ürünler', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25979', 'tr', 'total_sellers_products', 'Toplam satıcı ürünleri', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25980', 'tr', 'total_admin_products', 'Toplam yönetici ürünleri', '2021-02-16 13:17:15', '2021-09-20 13:00:26'),
('25981', 'tr', 'manage_products', 'Ürünleri Yönet', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25982', 'tr', 'total_product_category', 'Toplam ürün kategorisi', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25983', 'tr', 'create_category', 'Kategori Oluşturun', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25984', 'tr', 'total_product_sub_sub_category', 'Toplam ürün alt alt kategorisi', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25985', 'tr', 'create_sub_sub_category', 'Alt Alt Kategori Oluştur', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25986', 'tr', 'total_product_sub_category', 'Toplam ürün alt kategorisi', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25987', 'tr', 'create_sub_category', 'Alt Kategori Oluşturun', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25988', 'tr', 'total_product_brand', 'Toplam ürün markası', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25989', 'tr', 'create_brand', 'Marka Yaratın', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25990', 'tr', 'total_sellers', 'Toplam satıcılar', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25991', 'tr', 'total_approved_sellers', 'Toplam onaylanan satıcılar', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25992', 'tr', 'total_pending_sellers', 'Toplam bekleyen satıcılar', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25993', 'tr', 'manage_sellers', 'Satıcıları Yönet', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25994', 'tr', 'category_wise_product_sale', 'Kategori bilge ürün satışı', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25995', 'tr', 'sale', 'Satış', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25996', 'tr', 'category_wise_product_stock', 'Kategori bilge ürün stoku', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25997', 'tr', 'category_name', 'Kategori adı', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25998', 'tr', 'stock', 'Stok', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('25999', 'tr', 'frontend', 'Başlangıç ​​aşaması', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26000', 'tr', 'home_page', 'Ana Sayfa', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26001', 'tr', 'setting', 'ayar', '2021-02-16 13:17:16', '2021-02-16 13:17:16'),
('26002', 'tr', 'policy_page', 'Politika sayfası', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26003', 'tr', 'general', 'Genel', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26004', 'tr', 'click_here', 'Buraya tıklayın', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26005', 'tr', 'useful_link', 'Kullanışlı bağlantı', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26006', 'tr', 'activation', 'Aktivasyon', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26007', 'tr', 'smtp', 'SMTP', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26008', 'tr', 'payment_method', 'Ödeme şekli', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26009', 'tr', 'social_media', 'Sosyal medya', '2021-02-16 13:17:16', '2021-09-20 13:00:26'),
('26010', 'tr', 'business', 'İş', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26011', 'tr', 'seller_verification', 'Satıcı doğrulama', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26012', 'tr', 'form_setting', 'form ayarı', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26013', 'tr', 'language', 'Dil', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26014', 'tr', 'dashboard', 'Gösterge Paneli', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26015', 'tr', 'pos_system', 'POS Sistemi', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26016', 'tr', 'pos_manager', 'POS Müdürü', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26017', 'tr', 'pos_configuration', 'POS Yapılandırması', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26018', 'tr', 'products', 'Ürün:% s', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26019', 'tr', 'add_new_product', 'Yeni ürün ekle', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26020', 'tr', 'all_products', 'Tüm ürünler', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26021', 'tr', 'in_house_products', 'Kurum İçi Ürünler', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26022', 'tr', 'seller_products', 'Satıcı Ürünleri', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26023', 'tr', 'digital_products', 'Dijital Ürünler', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26024', 'tr', 'bulk_import', 'Toplu İçe Aktarma', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26025', 'tr', 'bulk_export', 'Toplu İhracat', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26026', 'tr', 'category', 'Kategori', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26027', 'tr', 'subcategory', 'Alt kategori', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26028', 'tr', 'sub_subcategory', 'Alt Alt Kategori', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26029', 'tr', 'brand', 'Marka', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26030', 'tr', 'attribute', 'Öznitelik', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26031', 'tr', 'product_reviews', 'Ürün İncelemeleri', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26032', 'tr', 'sales', 'Satış', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26033', 'tr', 'all_orders', 'Tüm siparişler', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26034', 'tr', 'inhouse_orders', 'Şirket içi siparişler', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26035', 'tr', 'seller_orders', 'Satıcı Siparişleri', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26036', 'tr', 'pickup_point_order', 'Alış Noktası Sırası', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26037', 'tr', 'refunds', 'Geri ödemeler', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26038', 'tr', 'refund_requests', 'Geri Ödeme Talepleri', '2021-02-16 13:17:17', '2021-09-20 13:00:26'),
('26039', 'tr', 'approved_refund', 'Onaylanmış Geri Ödeme', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26040', 'tr', 'refund_configuration', 'Geri Ödeme Yapılandırması', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26041', 'tr', 'customers', 'Müşteriler', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26042', 'tr', 'customer_list', 'Müşteri listesi', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26043', 'tr', 'classified_products', 'Sınıflandırılmış Ürünler', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26044', 'tr', 'classified_packages', 'Sınıflandırılmış Paketler', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26045', 'tr', 'sellers', 'Satıcılar', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26046', 'tr', 'all_seller', 'Tüm Satıcı', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26047', 'tr', 'payouts', 'Ödemeler', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26048', 'tr', 'payout_requests', 'Ödeme Talepleri', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26049', 'tr', 'seller_commission', 'Satıcı Komisyonu', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26050', 'tr', 'seller_packages', 'Satıcı Paketleri', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26051', 'tr', 'seller_verification_form', 'Satıcı Doğrulama Formu', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26052', 'tr', 'reports', 'Raporlar', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26053', 'tr', 'in_house_product_sale', 'Kurum İçi Ürün Satışı', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26054', 'tr', 'seller_products_sale', 'Satıcı Ürünleri Satışı', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26055', 'tr', 'products_stock', 'Ürünler Stok', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26056', 'tr', 'products_wishlist', 'Ürünler istek listesi', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26057', 'tr', 'user_searches', 'Kullanıcı Aramaları', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26058', 'tr', 'marketing', 'Pazarlama', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26059', 'tr', 'flash_deals', 'Flash anlaşmaları', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26060', 'tr', 'newsletters', 'Bültenler', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26061', 'tr', 'bulk_sms', 'Toplu sms', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26062', 'tr', 'subscribers', 'Aboneler', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26063', 'tr', 'coupon', 'Kupon', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26064', 'tr', 'support', 'Destek', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26065', 'tr', 'ticket', 'Bilet', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26066', 'tr', 'product_queries', 'Ürün Sorguları', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26067', 'tr', 'website_setup', 'Web Sitesi Kurulumu', '2021-02-16 13:17:18', '2021-09-20 13:00:26'),
('26068', 'tr', 'header', 'Üstbilgi', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26069', 'tr', 'footer', 'Alt bilgi', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26070', 'tr', 'pages', 'Sayfalar', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26071', 'tr', 'appearance', 'Görünüm', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26072', 'tr', 'setup__configurations', 'Kurulum ve Yapılandırmalar', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26073', 'tr', 'general_settings', 'Genel Ayarlar', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26074', 'tr', 'features_activation', 'Özellikler aktivasyonu', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26075', 'tr', 'languages', 'Diller', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26076', 'tr', 'currency', 'Para birimi', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26077', 'tr', 'pickup_point', 'Alış noktası', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26078', 'tr', 'smtp_settings', 'SMTP Ayarları', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26079', 'tr', 'payment_methods', 'Ödeme metodları', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26080', 'tr', 'file_system_configuration', 'Dosya Sistemi Yapılandırması', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26081', 'tr', 'social_media_logins', 'Sosyal medya Girişleri', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26082', 'tr', 'analytics_tools', 'Analitik Araçları', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26083', 'tr', 'facebook_chat', 'Facebook sohbet', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26084', 'tr', 'google_recaptcha', 'Google reCAPTCHA', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26085', 'tr', 'shipping_configuration', 'Nakliye Yapılandırması', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26086', 'tr', 'shipping_countries', 'Nakliye Ülkeleri', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26087', 'tr', 'affiliate_system', 'Ortaklık Sistemi', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26088', 'tr', 'affiliate_registration_form', 'Ortaklık Kayıt Formu', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26089', 'tr', 'affiliate_configurations', 'Ortaklık Yapılandırmaları', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26090', 'tr', 'affiliate_users', 'Ortaklık Kullanıcıları', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26091', 'tr', 'referral_users', 'Yönlendirme Kullanıcıları', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26092', 'tr', 'affiliate_withdraw_requests', 'Ortaklık Para Çekme Talepleri', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26093', 'tr', 'offline_payment_system', 'Çevrimdışı Ödeme Sistemi', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26094', 'tr', 'manual_payment_methods', 'Manuel Ödeme Yöntemleri', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26095', 'tr', 'offline_wallet_recharge', 'Çevrimdışı Cüzdan Şarjı', '2021-02-16 13:17:19', '2021-09-20 13:00:26'),
('26096', 'tr', 'offline_customer_package_payments', 'Çevrimdışı Müşteri Paketi Ödemeleri', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26097', 'tr', 'offline_seller_package_payments', 'Çevrimdışı Satıcı Paket Ödemeleri', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26098', 'tr', 'paytm_payment_gateway', 'Paytm Ödeme Ağ Geçidi', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26099', 'tr', 'set_paytm_credentials', 'Paytm Kimlik Bilgilerini Ayarlayın', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26100', 'tr', 'club_point_system', 'Club Puan Sistemi', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26101', 'tr', 'club_point_configurations', 'Club Point Yapılandırmaları', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26102', 'tr', 'set_product_point', 'Ürün Noktasını Ayarla', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26103', 'tr', 'user_points', 'Kullanıcı Puanları', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26104', 'tr', 'otp_system', 'OTP Sistemi', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26105', 'tr', 'otp_configurations', 'OTP Yapılandırmaları', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26106', 'tr', 'set_otp_credentials', 'OTP Kimlik Bilgilerini Ayarlama', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26107', 'tr', 'staffs', 'Değnek', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26108', 'tr', 'all_staffs', 'Tüm personel', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26109', 'tr', 'staff_permissions', 'Personel izinleri', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26110', 'tr', 'addon_manager', 'Eklenti Yöneticisi', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26111', 'tr', 'browse_website', 'Web Sitesine Göz At', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26112', 'tr', 'pos', 'POS', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26113', 'tr', 'notifications', 'Bildirimler', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26114', 'tr', 'new_orders', 'yeni siparişler', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26115', 'tr', 'userimage', 'kullanıcı resmi', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26116', 'tr', 'profile', 'Profil', '2021-02-16 13:17:20', '2021-09-20 13:00:26'),
('26117', 'tr', 'logout', 'Çıkış Yap', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26118', 'tr', 'page_not_found', 'Sayfa bulunamadı!', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26119', 'tr', 'the_page_you_are_looking_for_has_not_been_found_on_our_server', 'Aradığınız sayfa sunucumuzda bulunamadı.', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26120', 'tr', 'registration', 'Kayıt', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26121', 'tr', 'i_am_shopping_for', 'Alışveriş yapıyorum ...', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26122', 'tr', 'compare', 'Karşılaştırmak', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26123', 'tr', 'wishlist', 'İstek Listesi', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26124', 'tr', 'cart', 'Araba', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26125', 'tr', 'your_cart_is_empty', 'Sepetiniz boş', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26126', 'tr', 'categories', 'Kategoriler', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26127', 'tr', 'see_all', 'Hepsini gör', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26128', 'tr', 'seller_policy', 'Satıcı Politikası', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26129', 'tr', 'return_policy', 'İade politikasi', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26130', 'tr', 'support_policy', 'Destek Politikası', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26131', 'tr', 'privacy_policy', 'Gizlilik Politikası', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26132', 'tr', 'your_email_address', 'E', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26133', 'tr', 'subscribe', 'Abone ol', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26134', 'tr', 'contact_info', 'İletişim bilgileri', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26135', 'tr', 'address', 'Adres', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26136', 'tr', 'phone', 'Telefon', '2021-02-16 13:18:19', '2021-09-20 13:00:26'),
('26137', 'tr', 'email', 'Eposta', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26138', 'tr', 'login', 'Oturum aç', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26139', 'tr', 'my_account', 'Hesabım', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26140', 'tr', 'order_history', 'Sipariş Geçmişi', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26141', 'tr', 'my_wishlist', 'Benim dilek listem', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26142', 'tr', 'track_order', 'Parca siparisi', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26143', 'tr', 'be_an_affiliate_partner', 'Satış ortağı olun', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26144', 'tr', 'be_a_seller', 'Satıcı Olun', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26145', 'tr', 'apply_now', 'Şimdi Uygula', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26146', 'tr', 'confirmation', 'Onayla', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26147', 'tr', 'delete_confirmation_message', 'Onay mesajını sil', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26148', 'tr', 'cancel', 'İptal etmek', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26149', 'tr', 'delete', 'Sil', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26150', 'tr', 'item_has_been_added_to_compare_list', 'Öğe, karşılaştırma listesine eklendi', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26151', 'tr', 'please_login_first', 'Lütfen önce giriş yapın', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26152', 'tr', 'total_earnings_from', 'Toplam Kazanç', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26153', 'tr', 'client_subscription', 'Müşteri Aboneliği', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26154', 'tr', 'product_category', 'Ürün Kategorisi', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26155', 'tr', 'product_sub_sub_category', 'Ürün alt alt kategorisi', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26156', 'tr', 'product_sub_category', 'Ürün alt kategorisi', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26157', 'tr', 'product_brand', 'Ürün markası', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26158', 'tr', 'top_client_packages', 'En İyi Müşteri Paketleri', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26159', 'tr', 'top_freelancer_packages', 'En İyi Freelancer Paketleri', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26160', 'tr', 'number_of_sale', 'Satış sayısı', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26161', 'tr', 'number_of_stock', 'Stok Sayısı', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26162', 'tr', 'top_10_products', 'En İyi 10 Ürün', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26163', 'tr', 'top_12_products', 'En İyi 12 Ürün', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26164', 'tr', 'admin_can_not_be_a_seller', 'Yönetici satıcı olamaz', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26165', 'tr', 'filter_by_rating', 'Derecelendirmeye göre filtrele', '2021-02-16 13:18:20', '2021-09-20 13:00:26'),
('26166', 'tr', 'published_reviews_updated_successfully', 'Yayınlanan incelemeler başarıyla güncellendi', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26167', 'tr', 'refund_sticker_has_been_updated_successfully', 'Geri Ödeme Etiketi başarıyla güncellendi', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26168', 'tr', 'edit_product', 'Ürünü Düzenle', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26169', 'tr', 'meta_images', 'Meta Görseller', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26170', 'tr', 'update_product', 'Ürünü Güncelle', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26171', 'tr', 'product_has_been_deleted_successfully', 'Ürün başarıyla silindi', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26172', 'tr', 'your_profile_has_been_updated_successfully', 'Profiliniz başarıyla güncellendi!', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26173', 'tr', 'upload_limit_has_been_reached_please_upgrade_your_package', 'Yükleme sınırına ulaşıldı. Lütfen paketinizi yükseltin.', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26174', 'tr', 'add_your_product', 'Ürününüzü Ekleyin', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26175', 'tr', 'select_a_category', 'bir kategori seç', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26176', 'tr', 'select_a_brand', 'Bir marka seçin', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26177', 'tr', 'product_unit', 'Ürün Birimi', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26178', 'tr', 'minimum_qty', 'Minimum Miktar', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26179', 'tr', 'product_tag', 'Ürün etiketi', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26180', 'tr', 'type__hit_enter', 'Yazın ve enter tuşuna basın', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26181', 'tr', 'videos', 'Videolar', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26182', 'tr', 'video_from', 'Video Gönderen', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26183', 'tr', 'video_url', 'Video linki', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26184', 'tr', 'customer_choice', 'Müşteri Seçimi', '2021-02-16 13:18:21', '2021-09-20 13:00:26'),
('26185', 'tr', 'pdf', 'PDF', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26186', 'tr', 'choose_pdf', 'PDF seçin', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26187', 'tr', 'select_category', 'Kategori seç', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26188', 'tr', 'target_category', 'Hedef Kategori', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26189', 'tr', 'subsubcategory', 'alt kategori', '2021-02-16 13:18:21', '2021-02-16 13:18:32'),
('26190', 'tr', 'search_category', 'Arama Kategorisi', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26191', 'tr', 'search_subcategory', 'Alt Kategori Ara', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26192', 'tr', 'search_subsubcategory', 'Alt Alt Kategoride Ara', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26193', 'tr', 'update_your_product', 'Ürününüzü güncelleyin', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26194', 'tr', 'product_has_been_updated_successfully', 'Ürün başarıyla güncellendi', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26195', 'tr', 'add_your_digital_product', 'Dijital Ürününüzü Ekleyin', '2021-02-16 13:18:21', '2021-09-20 13:00:27'),
('26196', 'tr', 'active_ecommerce_cms_update_process', 'Aktif e-Ticaret CMS Güncelleme Süreci', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26197', 'tr', 'codecanyon_purchase_code', 'Codecanyon satın alma kodu', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26198', 'tr', 'database_name', 'Veri tabanı ismi', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26199', 'tr', 'database_username', 'Veritabanı Kullanıcı Adı', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26200', 'tr', 'database_password', 'Veritabanı Şifresi', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26201', 'tr', 'database_hostname', 'Veritabanı Ana Bilgisayar Adı', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26202', 'tr', 'update_now', 'Şimdi güncelle', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26203', 'tr', 'congratulations', 'Tebrikler', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26204', 'tr', 'you_have_successfully_completed_the_updating_process_please_login_to_continue', 'Güncelleme işlemini başarıyla tamamladınız. Devam etmek için lütfen giriş yapınız', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26205', 'tr', 'go_to_home', 'Eve gitmek', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26206', 'tr', 'login_to_admin_panel', 'Yönetici paneline giriş yapın', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26207', 'tr', 's3_file_system_credentials', 'S3 Dosya Sistemi Kimlik Bilgileri', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26208', 'tr', 'aws_access_key_id', 'AWS_ACCESS_KEY_ID', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26209', 'tr', 'aws_secret_access_key', 'AWS_SECRET_ACCESS_KEY', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26210', 'tr', 'aws_default_region', 'AWS_DEFAULT_REGION', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26211', 'tr', 'aws_bucket', 'AWS_BUCKET', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26212', 'tr', 'aws_url', 'AWS_URL', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26213', 'tr', 's3_file_system_activation', 'S3 Dosya Sistemi Etkinleştirmesi', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26214', 'tr', 'your_phone_number', 'Telefon numaran', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26215', 'tr', 'zip_file', 'Sıkıştırılmış dosya', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26216', 'tr', 'install', 'Yüklemek', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26217', 'tr', 'this_version_is_not_capable_of_installing_addons_please_update', 'Bu sürüm Eklentileri yükleyemez, Lütfen güncelleyin.', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26218', 'tr', 'search_in_menu', 'Menüde ara', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26219', 'tr', 'uploaded_files', 'Yüklenmiş dosyalar', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26220', 'tr', 'shipping_cities', 'Nakliye Şehirleri', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26221', 'tr', 'system', 'Sistem', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26222', 'tr', 'server_status', 'Sunucu durumu', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26223', 'tr', 'nothing_found', 'Hiçbirşey Bulunamadı', '2021-02-16 13:18:22', '2021-09-20 13:00:27'),
('26224', 'tr', 'parent_category', 'aile kategorisi', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26225', 'tr', 'level', 'Seviye', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26226', 'tr', 'category_information', 'Kategori Bilgileri', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26227', 'tr', 'translatable', 'Çevrilebilir', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26228', 'tr', 'no_parent', 'Ebeveyn Yok', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26229', 'tr', 'physical', 'Fiziksel', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26230', 'tr', 'digital', 'Dijital', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26231', 'tr', '200x200', '200x200', '2021-02-16 13:18:23', '2021-02-16 13:18:34'),
('26232', 'tr', '32x32', '32x32', '2021-02-16 13:18:23', '2021-02-16 13:18:34'),
('26233', 'tr', 'search_your_files', 'Dosyalarınızı arayın', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26234', 'tr', 'category_has_been_updated_successfully', 'Kategori başarıyla güncellendi', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26235', 'tr', 'all_uploaded_files', 'Yüklenen tüm dosyalar', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26236', 'tr', 'upload_new_file', 'Yeni Dosya Yükle', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26237', 'tr', 'all_files', 'Tüm dosyalar', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26238', 'tr', 'search', 'Arama', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26239', 'tr', 'details_info', 'Detaylar Bilgi', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26240', 'tr', 'copy_link', 'Bağlantıyı kopyala', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26241', 'tr', 'are_you_sure_to_delete_this_file', 'Bu dosyayı sileceğinizden emin misiniz?', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26242', 'tr', 'file_info', 'Dosya Bilgileri', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26243', 'tr', 'link_copied_to_clipboard', 'link kopyalandı', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26244', 'tr', 'oops_unable_to_copy', 'Maalesef kopyalanamıyor', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26245', 'tr', 'file_deleted_successfully', 'Dosya başarıyla silindi', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26246', 'tr', 'add_new_brand', 'Yeni Marka Ekle', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26247', 'tr', '120x80', '120x80', '2021-02-16 13:18:23', '2021-02-16 13:18:34'),
('26248', 'tr', 'brand_information', 'Marka Bilgileri', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26249', 'tr', 'brand_has_been_updated_successfully', 'Marka başarıyla güncellendi', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26250', 'tr', 'brand_has_been_deleted_successfully', 'Marka başarıyla silindi', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26251', 'tr', 'this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product', 'Bu arama için kullanılır. Müşterinin bu ürünü bulabileceği kelimeleri girin.', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26252', 'tr', 'these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images', 'Bu resimler ürün detayları sayfa galerisinde görülebilir. 600x600 boyutunda resimler kullanın.', '2021-02-16 13:18:23', '2021-09-20 13:00:27'),
('26253', 'tr', 'this_image_is_visible_in_all_product_box_use_300x300_sizes_image_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'Bu resim tüm ürün kutusunda görülebilir. 300x300 boyutunda resim kullanın. Duyarlı hale getirmek için farklı cihazlarda bazı kenarları kırpmamız gerektiğinden, görüntünüzün ana nesnesinin etrafında biraz boşluk bırakın.', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26254', 'tr', 'use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code', 'Ekstra parametre olmadan uygun bağlantıyı kullanın. Kısa paylaşım bağlantısı / gömülü iframe kodu kullanmayın.', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26255', 'tr', 'save_product', 'Ürünü Kaydet', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26256', 'tr', 'product_has_been_inserted_successfully', 'Ürün başarıyla eklendi', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26257', 'tr', 'something_went_wrong', 'Bir şeyler yanlış gitti!', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26258', 'tr', 'sorry_for_the_inconvenience_but_were_working_on_it', 'Verdiğimiz rahatsızlıktan dolayı özür dileriz ama bunun üzerinde çalışıyoruz.', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26259', 'tr', 'error_code', 'Hata kodu', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26260', 'tr', 'please_configure_smtp_setting_to_work_all_email_sending_functionality', 'Tüm e-posta gönderme işlevlerini çalıştırmak için lütfen SMTP Ayarını Yapılandırın', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26261', 'tr', 'order', 'Sipariş', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26262', 'tr', 'we_have_limited_banner_height_to_maintain_ui_we_had_to_crop_from_both_left__right_side_in_view_for_different_devices_to_make_it_responsive_before_designing_banner_keep_these_points_in_mind', 'Kullanıcı arayüzünü korumak için sınırlı banner yüksekliğimiz var. Farklı cihazları duyarlı hale getirmek için hem sol hem de sağ taraftan kırpmamız gerekiyordu. Afiş tasarlamadan önce bu noktaları aklınızda bulundurun.', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26263', 'tr', 'home_banner_3_max_3', 'Ana Sayfa Banner 3 (En Fazla 3)', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26264', 'tr', 'add_new_seller', 'Yeni Satıcı Ekle', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26265', 'tr', 'filter_by_approval', 'Onaya Göre Filtrele', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26266', 'tr', 'nonapproved', 'Onaylanmamış', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26267', 'tr', 'type_name_or_email__enter', 'Adı veya e-postayı yazın ve girin', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26268', 'tr', 'due_to_seller', 'Satıcı nedeniyle', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26269', 'tr', 'log_in_as_this_seller', 'Bu Satıcı olarak giriş yapın', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26270', 'tr', 'go_to_payment', 'Ödemeye Git', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26271', 'tr', 'ban_this_seller', 'Bu satıcıyı yasaklayın', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26272', 'tr', 'do_you_really_want_to_ban_this_seller', 'Bu satıcıyı gerçekten yasaklamak istiyor musun?', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26273', 'tr', 'proceed', 'İlerlemek!', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26274', 'tr', 'approved_sellers_updated_successfully', 'Onaylanan satıcılar başarıyla güncellendi', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26275', 'tr', 'seller_has_been_deleted_successfully', 'Satıcı başarıyla silindi', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26276', 'tr', 'seller_information', 'Satıcı bilgisi', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26277', 'tr', 'seller_has_been_inserted_successfully', 'Satıcı başarıyla eklendi', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26278', 'tr', 'email_already_exists', 'Bu e-posta zaten var!', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26279', 'tr', 'verify_your_email_address', 'Email adresinizi doğrulayın', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26280', 'tr', 'before_proceeding_please_check_your_email_for_a_verification_link', 'Devam etmeden önce, lütfen bir doğrulama bağlantısı için e-postanızı kontrol edin.', '2021-02-16 13:18:24', '2021-09-20 13:00:27'),
('26281', 'tr', 'if_you_did_not_receive_the_email', 'E-postayı almadıysanız.', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26282', 'tr', 'click_here_to_request_another', 'Başka istemek için burayı tıklayın', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26283', 'tr', 'email_verification', 'Eposta Doğrulama', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26284', 'tr', 'email_verification__', 'Eposta Doğrulama -', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26285', 'tr', 'https_activation', 'HTTPS Aktivasyonu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26286', 'tr', 'maintenance_mode', 'Bakım Modu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26287', 'tr', 'maintenance_mode_activation', 'Bakım Modu Aktivasyonu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26288', 'tr', 'classified_product_activate', 'Sınıflandırılmış Ürün Etkinleştir', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26289', 'tr', 'classified_product', 'Sınıflandırılmış Ürün', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26290', 'tr', 'business_related', 'İşle ilgili', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26291', 'tr', 'vendor_system_activation', 'Satıcı Sistem Aktivasyonu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26292', 'tr', 'wallet_system_activation', 'Cüzdan Sistem Aktivasyonu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26293', 'tr', 'coupon_system_activation', 'Kupon Sisteminin Etkinleştirilmesi', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26294', 'tr', 'pickup_point_activation', 'Alış Noktası Aktivasyonu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26295', 'tr', 'conversation_activation', 'Görüşme Aktivasyonu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26296', 'tr', 'guest_checkout_activation', 'Misafir Ödeme Etkinleştirme', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26297', 'tr', 'categorybased_commission', 'Kategori bazlı Komisyon', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26298', 'tr', 'after_activate_this_option_seller_commision_will_be_disabled_and_you_need_to_set_commission_on_each_category_otherwise_admin_will_not_get_any_commision', 'Bu seçeneği etkinleştirdikten sonra Satıcı komisyonu devre dışı bırakılacak ve her kategori için komisyon ayarlamanız gerekecek, aksi takdirde Yönetici komisyon almayacaktır', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26299', 'tr', 'set_commisssion_now', 'Şimdi Komisyon Ayarla', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26300', 'tr', 'payment_related', 'Ödeme ile İlgili', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26301', 'tr', 'paypal_payment_activation', 'Paypal Ödeme Aktivasyonu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26302', 'tr', 'you_need_to_configure_paypal_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için Paypal\'ı doğru şekilde yapılandırmanız gerekir', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26303', 'tr', 'stripe_payment_activation', 'Stripe Ödeme Etkinleştirme', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26304', 'tr', 'sslcommerz_activation', 'SSlCommerz Aktivasyonu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26305', 'tr', 'instamojo_payment_activation', 'Instamojo Ödeme Etkinleştirme', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26306', 'tr', 'you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için Instamojo Ödemesini doğru şekilde yapılandırmanız gerekir', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26307', 'tr', 'razor_pay_activation', 'Razor Pay Aktivasyonu', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26308', 'tr', 'you_need_to_configure_razor_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için Razor\'u doğru şekilde yapılandırmanız gerekir', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26309', 'tr', 'paystack_activation', 'PayStack Etkinleştirme', '2021-02-16 13:18:25', '2021-09-20 13:00:27'),
('26310', 'tr', 'you_need_to_configure_paystack_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için PayStack\'i doğru şekilde yapılandırmanız gerekir', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26311', 'tr', 'voguepay_activation', 'VoguePay Etkinleştirme', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26312', 'tr', 'you_need_to_configure_voguepay_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için VoguePay\'i doğru şekilde yapılandırmanız gerekir', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26313', 'tr', 'payhere_activation', 'Payhere Aktivasyonu', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26314', 'tr', 'ngenius_activation', 'Ngenius Aktivasyonu', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26315', 'tr', 'you_need_to_configure_ngenius_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için Ngenius\'u doğru şekilde yapılandırmanız gerekir', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26316', 'tr', 'iyzico_activation', 'İyzico Aktivasyonu', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26317', 'tr', 'you_need_to_configure_iyzico_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için iyzico\'yu doğru yapılandırmanız gerekiyor', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26318', 'tr', 'bkash_activation', 'Bkash Aktivasyonu', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26319', 'tr', 'you_need_to_configure_bkash_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için bkash\'i doğru şekilde yapılandırmanız gerekir', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26320', 'tr', 'nagad_activation', 'Nagad Aktivasyonu', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26321', 'tr', 'you_need_to_configure_nagad_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için nagad\'ı doğru şekilde yapılandırmanız gerekiyor', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26322', 'tr', 'cash_payment_activation', 'Nakit Ödeme Aktivasyonu', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26323', 'tr', 'social_media_login', 'Sosyal Medya Girişi', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26324', 'tr', 'facebook_login', 'Facebook girişi', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26325', 'tr', 'you_need_to_configure_facebook_client_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için Facebook İstemcisini doğru şekilde yapılandırmanız gerekir', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26326', 'tr', 'google_login', 'Google girişi', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26327', 'tr', 'you_need_to_configure_google_client_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için Google İstemcisini doğru şekilde yapılandırmanız gerekiyor', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26328', 'tr', 'twitter_login', 'Twitter girişi', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26329', 'tr', 'you_need_to_configure_twitter_client_correctly_to_enable_this_feature', 'Bu özelliği etkinleştirmek için Twitter İstemcisini doğru şekilde yapılandırmanız gerekir', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26330', 'tr', 'shop_logo', 'Dükkanı Logosu', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26331', 'tr', 'shop_address', 'Mağaza Adresi', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26332', 'tr', 'banner_settings', 'Banner Ayarları', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26333', 'tr', 'banners', 'Afiş', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26334', 'tr', 'we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation', 'Yüksekliği sürekli tutarlılıkla sınırlamak zorunda kaldık. Bazı cihazlarda, afişin her iki tarafı, yükseklik sınırlaması için kırpılabilir.', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26335', 'tr', 'insert_link_with_https_', 'Https içeren bağlantı ekle', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26336', 'tr', 'your_shop_has_been_updated_successfully', 'Mağazanız başarıyla güncellendi!', '2021-02-16 13:18:26', '2021-09-20 13:00:27'),
('26337', 'tr', 'search_result_for_', 'İçin arama sonucu', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26338', 'tr', 'brand_has_been_inserted_successfully', 'Marka başarıyla eklendi', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26339', 'tr', 'about', 'hakkında', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26340', 'tr', 'payout_info', 'Ödeme Bilgileri', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26341', 'tr', 'bank_acc_name', 'Banka Hesap Adı', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26342', 'tr', 'bank_acc_number', 'Banka Hesap Numarası', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26343', 'tr', 'total_products', 'Toplam Ürünler', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26344', 'tr', 'total_sold_amount', 'Toplam Satılan Tutar', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26345', 'tr', 'wallet_balance', 'Cüzdan Bakiyesi', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26346', 'tr', 'cookies_agreement', 'Çerezler Anlaşması', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26347', 'tr', 'cookies_agreement_text', 'Çerezler Sözleşmesi Metni', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26348', 'tr', 'show_cookies_agreement', 'Çerez Anlaşması Gösterilsin mi?', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26349', 'tr', 'custom_script', 'Özel Komut Dosyası', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26350', 'tr', 'header_custom_script__before_head', 'Üstbilgi özel komut dosyası - </head> öncesinde', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26351', 'tr', 'write_script_with_script_tag', '<script> etiketi ile komut dosyası yazın', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26352', 'tr', 'footer_custom_script__before_body', 'Altbilgi özel komut dosyası - </body> öncesinde', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26353', 'tr', 'category_has_been_inserted_successfully', 'Kategori başarıyla eklendi', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26354', 'tr', 'all_flash_deals', 'Tüm Flash Fırsatları', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26355', 'tr', 'create_new_flash_deal', 'Yeni Flash Anlaşması Oluşturun', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26356', 'tr', 'ffffff', '#FFFFFF', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26357', 'tr', 'this_image_is_shown_as_cover_banner_in_flash_deal_details_page', 'Bu resim, flash fırsat ayrıntıları sayfasında kapak başlığı olarak gösterilir.', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26358', 'tr', 'flash_deal_has_been_inserted_successfully', 'Flash Deal başarıyla eklendi', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26359', 'tr', 'flash_deal_status_updated_successfully', 'Flash anlaşma durumu başarıyla güncellendi', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26360', 'tr', 'flash_deal_has_been_updated_successfully', 'Flash Anlaşma başarıyla güncellendi', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26361', 'tr', 'update_language_info', 'Dil Bilgilerini güncelle', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26362', 'tr', 'language_has_been_updated_successfully', 'Dil başarıyla güncellendi', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26363', 'tr', 'type_key__enter', 'Anahtarı yazın ve girin', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26364', 'tr', 'translations_updated_for_', 'İçin çeviriler güncellendi', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26365', 'tr', 'language_has_been_inserted_successfully', 'Dil başarıyla eklendi', '2021-02-16 13:18:27', '2021-09-20 13:00:27'),
('26366', 'tr', 'verify_now', 'Şimdi doğrulayın', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26367', 'tr', 'iyzico', 'Iyzico', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26368', 'tr', 'bkash_credential', 'Bkash Kimlik Bilgileri', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26369', 'tr', 'bkash_checkout_app_key', 'BKASH CHECKOUT UYGULAMA ANAHTARI', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26370', 'tr', 'bkash_checkout_app_secret', 'BKASH CHECKOUT UYGULAMA GİZLİ', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26371', 'tr', 'bkash_checkout_user_name', 'BKASH CHECKOUT KULLANICI ADI', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26372', 'tr', 'bkash_checkout_password', 'BKASH CHECKOUT ŞİFRE', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26373', 'tr', 'bkash_sandbox_mode', 'Bkash Sandbox Modu', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26374', 'tr', 'nagad_credential', 'Nagad Yeterlilik', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26375', 'tr', 'nagad_mode', 'NAGAD MODU', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26376', 'tr', 'nagad_merchant_id', 'NAGAD TİCARİ KİMLİĞİ', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26377', 'tr', 'nagad_merchant_number', 'NAGAD TİCARİ NUMARASI', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26378', 'tr', 'nagad_pg_public_key', 'NAGAD PG HALK ANAHTARI', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26379', 'tr', 'nagad_merchant_private_key', 'NAGAD MERCHANT ÖZEL ANAHTAR', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26380', 'tr', 'iyzico_credential', 'Iyzico Kimlik Bilgisi', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26381', 'tr', 'iyzico_api_key', 'IYZICO_API_KEY', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26382', 'tr', 'iyzico_api_key', 'IYZICO API ANAHTARI', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26383', 'tr', 'iyzico_secret_key', 'IYZICO_SECRET_KEY', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26384', 'tr', 'iyzico_secret_key', 'IYZICO GİZLİ ANAHTAR', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26385', 'tr', 'iyzico_sandbox_mode', 'IYZICO Sandbox Modu', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26386', 'tr', 'instamojo', 'Instamojo', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26387', 'tr', 'nagad', 'Nagad', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26388', 'tr', 'bkash', 'Bkash', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26389', 'tr', 'your_order_has_been_placed', 'Siparişiniz alındı', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26390', 'tr', 'your_order_has_been_placed_successfully', 'Siparişiniz başarıyla verildi', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26391', 'tr', 'product_image', 'Ürün resmi', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26392', 'tr', 'step_1', 'Aşama 1', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26393', 'tr', 'download_the_skeleton_file_and_fill_it_with_proper_data', 'İskelet dosyasını indirin ve uygun verilerle doldurun', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26394', 'tr', 'you_can_download_the_example_file_to_understand_how_the_data_must_be_filled', 'Verilerin nasıl doldurulması gerektiğini anlamak için örnek dosyayı indirebilirsiniz.', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26395', 'tr', 'once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit', 'İskelet dosyasını indirip doldurduktan sonra aşağıdaki forma yükleyin ve gönderin', '2021-02-16 13:18:28', '2021-09-20 13:00:27'),
('26396', 'tr', 'after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices', 'Ürünleri yükledikten sonra onları düzenlemeniz ve ürünün resimlerini ve seçeneklerini ayarlamanız gerekir.', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26397', 'tr', 'step_2', 'Adım 2', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26398', 'tr', 'category_and_brand_should_be_in_numerical_id', 'Kategori ve Marka sayısal kimliğe sahip olmalıdır', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26399', 'tr', 'you_can_download_the_pdf_to_get_category_and_brand_id', 'Kategori ve Marka kimliğini almak için pdf\'yi indirebilirsiniz.', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26400', 'tr', 'upload_product_file', 'Ürün Dosyasını Yükle', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26401', 'tr', 'all_attributes', 'Tüm Öznitelikler', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26402', 'tr', 'add_new_attribute', 'Yeni Öznitelik Ekle', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26403', 'tr', 'attribute_has_been_inserted_successfully', 'Öznitelik başarıyla eklendi', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26404', 'tr', 'attribute_has_been_deleted_successfully', 'Öznitelik başarıyla silindi', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26405', 'tr', 'product_has_been_duplicated_successfully', 'Ürün başarıyla kopyalandı', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26406', 'tr', 'filter_by_date', 'Tarihe göre filtrele', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26407', 'tr', '1_category_and_brand_should_be_in_numerical_id', '1. Kategori ve Marka sayısal kimliğe sahip olmalıdır.', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26408', 'tr', '2_you_can_download_the_pdf_to_get_category_and_brand_id', '2. Kategori ve Marka kimliğini almak için pdf\'yi indirebilirsiniz.', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26409', 'tr', 'payment_completed', 'Ödeme tamamlandı', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26410', 'tr', 'contact', 'İletişim', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26411', 'tr', 'order_status_has_been_updated', 'Sipariş durumu güncellendi', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26412', 'tr', 'review_has_been_submitted_successfully', 'İnceleme başarıyla gönderildi', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26413', 'tr', 'pay_to_seller', 'Satıcıya öde', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26414', 'tr', 'txn_code', 'Txn Kodu', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26415', 'tr', 'clear_due', 'Vadesi temizle', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26416', 'tr', 'product_wish_report', 'Ürün İstek Raporu', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26417', 'tr', 'number_of_wish', 'Dilek Sayısı', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26418', 'tr', 'all_customers', 'Tüm Müşteriler', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26419', 'tr', 'type_email_or_name__enter', 'E-posta veya ad yazın ve Girin', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26420', 'tr', 'package', 'Paket içeriği', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26421', 'tr', 'log_in_as_this_customer', 'Bu Müşteri olarak oturum açın', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26422', 'tr', 'ban_this_customer', 'Bu Müşteriyi yasaklayın', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26423', 'tr', 'do_you_really_want_to_ban_this_customer', 'Bu Müşteriyi gerçekten yasaklamak istiyor musunuz?', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26424', 'tr', 'do_you_really_want_to_unban_this_customer', 'Bu Müşterinin yasağını gerçekten kaldırmak istiyor musunuz?', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26425', 'tr', 'ticket_has_been_sent_successfully', 'Bilet başarıyla gönderildi', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26426', 'tr', 'send_reply', 'Cevap Gönder', '2021-02-16 13:18:29', '2021-09-20 13:00:27'),
('26427', 'tr', 'recharge_wallet', 'Cüzdanı Şarj Et', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26428', 'tr', 'wallet_recharge_history', 'Cüzdan şarj geçmişi', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26429', 'tr', 'offline_recharge_wallet', 'Çevrimdışı Şarj Cüzdanı', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26430', 'tr', 'message_has_been_send_to_seller', 'Satıcıya mesaj gönderildi', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26431', 'tr', 'your_classified_product_upload_limit_has_been_reached_please_buy_a_package', 'Sınıflandırılmış ürün yükleme sınırınıza ulaşıldı. Lütfen bir paket satın alın.', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26432', 'tr', 'premium_packages_for_customers', 'Müşteriler için Premium Paketler', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26433', 'tr', 'offline_package_purchase_', 'Çevrimdışı Paket Satın Alma', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26434', 'tr', 'all_classifies_packages', 'Tüm Paketleri Sınıflandırır', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26435', 'tr', 'create_new_package', 'Yeni Paket Oluştur', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26436', 'tr', 'package_purchasing_successful', 'Paket satın alma işlemi başarılı', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26437', 'tr', 'product_upload_remaining', 'Kalan Ürün Yüklemesi', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26438', 'tr', 'current_package', 'Şu anki paket', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26439', 'tr', 'select_a_condition', 'Bir koşul seçin', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26440', 'tr', 'uploaded_by', 'Yükleyen', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26441', 'tr', 'customer_status', 'Müşteri Durumu', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26442', 'tr', 'unpublished', 'YAYINLANMAMIŞ', '2021-02-16 13:18:30', '2021-09-20 13:00:27'),
('26443', 'en', 'sendmail', 'Sendmail', '2021-02-16 13:26:29', '2021-09-20 13:00:27'),
('26444', 'en', 'mailgun', 'Mailgun', '2021-02-16 13:26:30', '2021-09-20 13:00:27'),
('26445', 'en', 'mail_host', 'MAIL HOST', '2021-02-16 13:26:30', '2021-09-20 13:00:27'),
('26446', 'en', 'mail_port', 'MAIL PORT', '2021-02-16 13:26:30', '2021-09-20 13:00:27'),
('26447', 'en', 'mail_username', 'MAIL USERNAME', '2021-02-16 13:26:30', '2021-09-20 13:00:27'),
('26448', 'en', 'mail_password', 'MAIL PASSWORD', '2021-02-16 13:26:30', '2021-09-20 13:00:27'),
('26449', 'en', 'mail_encryption', 'MAIL ENCRYPTION', '2021-02-16 13:26:30', '2021-09-20 13:00:27'),
('26450', 'en', 'mail_from_address', 'MAIL FROM ADDRESS', '2021-02-16 13:26:30', '2021-09-20 13:00:27'),
('26451', 'en', 'mail_from_name', 'MAIL FROM NAME', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26452', 'en', 'mailgun_domain', 'MAILGUN DOMAIN', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26453', 'en', 'mailgun_secret', 'MAILGUN SECRET', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26454', 'en', 'save_configuration', 'Save Configuration', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26455', 'en', 'test_smtp_configuration', 'Test SMTP configuration', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26456', 'en', 'enter_your_email_address', 'Enter your email address', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26457', 'en', 'send_test_email', 'Send test email', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26458', 'en', 'instruction', 'Instruction', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26459', 'en', 'please_be_carefull_when_you_are_configuring_smtp_for_incorrect_configuration_you_will_get_error_at_the_time_of_order_place_new_registration_sending_newsletter', 'Please be carefull when you are configuring SMTP. For incorrect configuration you will get error at the time of order place, new registration, sending newsletter.', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26460', 'en', 'for_nonssl', 'For Non-SSL', '2021-02-16 13:26:31', '2021-09-20 13:00:27'),
('26461', 'en', 'select_sendmail_for_mail_driver_if_you_face_any_issue_after_configuring_smtp_as_mail_driver_', 'Select sendmail for Mail Driver if you face any issue after configuring smtp as Mail Driver ', '2021-02-16 13:26:32', '2021-09-20 13:00:27'),
('26462', 'en', 'set_mail_host_according_to_your_server_mail_client_manual_settings', 'Set Mail Host according to your server Mail Client Manual Settings', '2021-02-16 13:26:32', '2021-09-20 13:00:27'),
('26463', 'en', 'set_mail_port_as_587', 'Set Mail port as 587', '2021-02-16 13:26:32', '2021-09-20 13:00:27'),
('26464', 'en', 'set_mail_encryption_as_ssl_if_you_face_issue_with_tls', 'Set Mail Encryption as ssl if you face issue with tls', '2021-02-16 13:26:32', '2021-09-20 13:00:27'),
('26465', 'en', 'for_ssl', 'For SSL', '2021-02-16 13:26:32', '2021-09-20 13:00:27'),
('26466', 'en', 'set_mail_port_as_465', 'Set Mail port as 465', '2021-02-16 13:26:32', '2021-09-20 13:00:27'),
('26467', 'en', 'set_mail_encryption_as_ssl', 'Set Mail Encryption as ssl', '2021-02-16 13:26:32', '2021-09-20 13:00:27'),
('26468', 'en', 'installupdate_addon', 'Install/Update Addon', '2021-02-18 11:20:31', '2021-09-20 13:00:27'),
('26469', 'en', 'no_addon_installed', 'No Addon Installed', '2021-02-18 11:20:31', '2021-09-20 13:00:27'),
('26470', 'en', 'blog_system', 'Blog System', '2021-02-18 15:31:49', '2021-09-20 13:00:27'),
('26471', 'en', 'all_posts', 'All Posts', '2021-02-18 15:31:49', '2021-09-20 13:00:27'),
('26472', 'en', 'facebook_comment', 'Facebook Comment', '2021-02-18 15:31:50', '2021-09-20 13:00:27'),
('26473', 'en', 'add_new_post', 'Add New Post', '2021-02-18 15:32:55', '2021-09-20 13:00:27'),
('26474', 'en', 'all_blog_posts', 'All blog posts', '2021-02-18 15:32:55', '2021-09-20 13:00:27'),
('26475', 'en', 'short_description', 'Short Description', '2021-02-18 15:32:55', '2021-09-20 13:00:27'),
('26476', 'en', 'change_blog_status_successfully', 'Change blog status successfully', '2021-02-18 15:32:56', '2021-09-20 13:00:27'),
('26477', 'en', 'blog_information', 'Blog Information', '2021-02-18 15:32:58', '2021-09-20 13:00:27'),
('26478', 'en', 'blog_title', 'Blog Title', '2021-02-18 15:32:58', '2021-09-20 13:00:27'),
('26479', 'en', 'meta_keywords', 'Meta Keywords', '2021-02-18 15:32:59', '2021-09-20 13:00:27'),
('26480', 'en', 'header_nav_menu', 'Header Nav Menu', '2021-02-18 15:34:04', '2021-09-20 13:00:27'),
('26481', 'en', 'link_with', 'Link with', '2021-02-18 15:34:04', '2021-09-20 13:00:27'),
('26482', 'en', 'blog', 'Blog', '2021-02-18 15:41:56', '2021-09-20 13:00:27'),
('26483', 'en', 'all_blog_categories', 'All Blog Categories', '2021-02-18 15:47:26', '2021-09-20 13:00:27'),
('26484', 'en', 'blog_categories', 'Blog Categories', '2021-02-18 15:47:26', '2021-09-20 13:00:27'),
('26485', 'en', 'blog_category_information', 'Blog Category Information', '2021-02-19 09:34:31', '2021-09-20 13:00:27'),
('26486', 'en', 'blog_category_has_been_created_successfully', 'Blog category has been created successfully', '2021-02-19 09:35:13', '2021-09-20 13:00:27'),
('26487', 'en', 'blog_post_has_been_created_successfully', 'Blog post has been created successfully', '2021-02-19 09:45:31', '2021-09-20 13:00:27'),
('26488', 'en', 'blog_post_has_been_updated_successfully', 'Blog post has been updated successfully', '2021-02-19 10:02:34', '2021-09-20 13:00:27'),
('26489', 'en', 'blog_category_has_been_updated_successfully', 'Blog category has been updated successfully', '2021-02-19 10:22:22', '2021-09-20 13:00:27'),
('26490', 'en', 'installupdate', 'Install/Update', '2021-02-22 09:30:43', '2021-09-20 13:00:27'),
('26493', 'en', 'addon_nstalled_successfully', 'Addon nstalled successfully', '2021-02-23 07:52:29', '2021-09-20 13:00:27'),
('26494', 'en', 'approved_refunds', 'Approved Refunds', '2021-02-23 07:53:39', '2021-09-20 13:00:27'),
('26495', 'en', 'rejected_refunds', 'rejected Refunds', '2021-02-23 07:53:40', '2021-09-20 13:00:27'),
('26496', 'en', 'affiliate_logs', 'Affiliate Logs', '2021-02-23 07:54:06', '2021-09-20 13:00:27'),
('26497', 'en', 'african_payment_gateway_addon', 'African Payment Gateway Addon', '2021-02-23 07:54:21', '2021-09-20 13:00:27'),
('26498', 'en', 'african_pg_configurations', 'African PG Configurations', '2021-02-23 07:54:21', '2021-09-20 13:00:27'),
('26499', 'en', 'set_african_pg_credentials', 'Set African PG Credentials', '2021-02-23 07:54:21', '2021-09-20 13:00:27'),
('26500', 'en', 'at_the_very_bottom_you_can_find_the_facebook_page_id', 'At the very bottom, you can find the “Facebook Page ID”', '2021-02-23 07:55:36', '2021-09-20 13:00:27'),
('26501', 'en', 'go_to_settings_of_your_page_and_find_the_option_of_advance_messaging', 'Go to Settings of your page and find the option of \"Advance Messaging\"', '2021-02-23 07:55:36', '2021-09-20 13:00:27'),
('26502', 'en', 'scroll_down_that_page_and_you_will_get_white_listed_domain', 'Scroll down that page and you will get \"white listed domain\"', '2021-02-23 07:55:36', '2021-09-20 13:00:27'),
('26503', 'en', 'paystack_currency_code', 'PAYSTACK CURRENCY CODE', '2021-02-23 07:56:16', '2021-09-20 13:00:27'),
('26504', 'en', 'mpesa_activation', 'MPesa Activation', '2021-02-23 07:56:48', '2021-09-20 13:00:27'),
('26505', 'en', 'you_need_to_configure_mpesa_correctly_to_enable_this_feature', 'You need to configure Mpesa correctly to enable this feature', '2021-02-23 07:56:48', '2021-09-20 13:00:27'),
('26506', 'en', 'flutterwave_activation', 'flutterwave Activation', '2021-02-23 07:56:48', '2021-09-20 13:00:27'),
('26507', 'en', 'you_need_to_configure_flutterwave_correctly_to_enable_this_feature', 'You need to configure flutterwave correctly to enable this feature', '2021-02-23 07:56:49', '2021-09-20 13:00:27'),
('26508', 'en', 'payfast_activation', 'Payfast Activation', '2021-02-23 07:56:49', '2021-09-20 13:00:27'),
('26509', 'en', 'you_need_to_configure_payfast_correctly_to_enable_this_feature', 'You need to configure payfast correctly to enable this feature', '2021-02-23 07:56:49', '2021-09-20 13:00:27'),
('26510', 'en', 'mpesa_username', 'MPESA USERNAME', '2021-02-23 07:56:59', '2021-09-20 13:00:27'),
('26511', 'en', 'mpesa_username', 'MPESA_USERNAME', '2021-02-23 07:56:59', '2021-09-20 13:00:27'),
('26512', 'en', 'mpesa_password', 'MPESA PASSWORD', '2021-02-23 07:56:59', '2021-09-20 13:00:27'),
('26513', 'en', 'mpesa_password', 'MPESA_PASSWORD', '2021-02-23 07:56:59', '2021-09-20 13:00:27'),
('26514', 'en', 'mpesa_passkey', 'MPESA PASSKEY', '2021-02-23 07:56:59', '2021-09-20 13:00:27'),
('26515', 'en', 'mpesa_passkey', 'MPESA_PASSKEY', '2021-02-23 07:56:59', '2021-09-20 13:00:27'),
('26516', 'en', 'payfast_credential', 'PAYFAST Credential', '2021-02-23 07:56:59', '2021-09-20 13:00:27'),
('26517', 'en', 'payfast_merchant_id', 'PAYFAST_MERCHANT_ID', '2021-02-23 07:56:59', '2021-09-20 13:00:28'),
('26518', 'en', 'payfast_merchant_key', 'PAYFAST_MERCHANT_KEY', '2021-02-23 07:57:00', '2021-09-20 13:00:28'),
('26519', 'en', 'payfast_sandbox_mode', 'PAYFAST Sandbox Mode', '2021-02-23 07:57:00', '2021-09-20 13:00:28'),
('26520', 'en', 'google_login_credential', 'Google Login Credential', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26521', 'en', 'client_id', 'Client ID', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26522', 'en', 'google_client_id', 'Google Client ID', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26523', 'en', 'client_secret', 'Client Secret', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26524', 'en', 'google_client_secret', 'Google Client Secret', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26525', 'en', 'facebook_login_credential', 'Facebook Login Credential', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26526', 'en', 'app_id', 'App ID', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26527', 'en', 'facebook_client_id', 'Facebook Client ID', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26528', 'en', 'app_secret', 'App Secret', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26529', 'en', 'facebook_client_secret', 'Facebook Client Secret', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26530', 'en', 'twitter_login_credential', 'Twitter Login Credential', '2021-02-23 07:57:51', '2021-09-20 13:00:28'),
('26531', 'en', 'twitter_client_id', 'Twitter Client ID', '2021-02-23 07:57:52', '2021-09-20 13:00:28'),
('26532', 'en', 'twitter_client_secret', 'Twitter Client Secret', '2021-02-23 07:57:52', '2021-09-20 13:00:28'),
('26533', 'en', 'point_convert_rate_has_been_updated_successfully', 'Point convert rate has been updated successfully', '2021-02-23 08:00:21', '2021-09-20 13:00:28'),
('26534', 'en', 'owner', 'Owner', '2021-02-23 08:00:24', '2021-09-20 13:00:28'),
('26535', 'en', 'set_any_specific_point_for_those_products_what_are_between_minprice_and_maxprice_minprice_should_be_less_than_maxprice', 'Set any specific point for those products what are between Min-price and Max-price. Min-price should be less than Max-price', '2021-02-23 08:00:25', '2021-09-20 13:00:28'),
('26536', 'en', 'set_point_for_product', 'Set Point for Product', '2021-02-23 08:00:31', '2021-09-20 13:00:28'),
('26537', 'en', 'set_point', 'Set Point', '2021-02-23 08:00:31', '2021-09-20 13:00:28'),
('26538', 'en', 'point_has_been_updated_successfully', 'Point has been updated successfully', '2021-02-23 08:00:37', '2021-09-20 13:00:28'),
('26539', 'en', 'point_has_been_inserted_successfully_for_', 'Point has been inserted successfully for ', '2021-02-23 08:01:06', '2021-09-20 13:00:28'),
('26540', 'en', '_products', ' products', '2021-02-23 08:01:06', '2021-09-20 13:00:28'),
('26541', 'en', 'customer_name', 'Customer Name', '2021-02-23 08:02:42', '2021-09-20 13:00:28'),
('26542', 'en', 'mimo_otp', 'MIMO OTP', '2021-02-23 08:02:49', '2021-09-20 13:00:28'),
('26543', 'en', 'mimo_credential', 'MIMO Credential', '2021-02-23 08:03:05', '2021-09-20 13:00:28'),
('26544', 'en', 'mimo_username', 'MIMO_USERNAME', '2021-02-23 08:03:05', '2021-09-20 13:00:28'),
('26545', 'en', 'mimo_password', 'MIMO_PASSWORD', '2021-02-23 08:03:05', '2021-09-20 13:00:28'),
('26546', 'en', 'mimo_sender_id', 'MIMO_SENDER_ID', '2021-02-23 08:03:06', '2021-09-20 13:00:28'),
('26547', 'en', 'reject_refund_request_', 'Reject Refund Request !', '2021-02-23 08:03:49', '2021-09-20 13:00:28'),
('26548', 'en', 'reject_reason', 'Reject Reason', '2021-02-23 08:03:49', '2021-09-20 13:00:28'),
('26549', 'en', 'submit', 'Submit', '2021-02-23 08:03:49', '2021-09-20 13:00:28'),
('26550', 'en', 'approval_has_been_done_successfully', 'Approval has been done successfully', '2021-02-23 08:03:49', '2021-09-20 13:00:28'),
('26551', 'en', 'refund_has_been_sent_successfully', 'Refund has been sent successfully', '2021-02-23 08:03:49', '2021-09-20 13:00:28'),
('26552', 'en', 'rejected_request', 'Rejected Request', '2021-02-23 08:04:05', '2021-09-20 13:00:28'),
('26553', 'en', 'refund_request_reject_reason', 'Refund Request Reject Reason', '2021-02-23 08:04:05', '2021-09-20 13:00:28'),
('26554', 'en', 'approved_request', 'Approved Request', '2021-02-23 08:04:08', '2021-09-20 13:00:28'),
('26555', 'en', 'mpesa', 'mpesa', '2021-02-23 08:05:33', '2021-02-23 08:05:33'),
('26556', 'en', 'flutterwave', 'flutterwave', '2021-02-23 08:05:33', '2021-02-23 08:05:33'),
('26557', 'en', 'payfast', 'payfast', '2021-02-23 08:05:33', '2021-02-23 08:05:33'),
('26558', 'en', 'this_addon_is_updated_successfully', 'This addon is updated successfully', '2021-02-23 08:10:18', '2021-09-20 13:00:28'),
('26559', 'en', 'nonrefundable', 'Non-refundable', '2021-02-23 20:36:44', '2021-09-20 13:00:28'),
('26560', 'en', 'offline_recharge_has_been_done_please_wait_for_response', 'Offline Recharge has been done. Please wait for response.', '2021-02-23 20:38:43', '2021-09-20 13:00:28'),
('26561', 'en', 'use_phone_instead', 'Use Phone Instead', '2021-02-23 20:43:57', '2021-09-20 13:00:28'),
('26562', 'en', 'phone_verification', 'Phone Verification', '2021-02-23 20:44:25', '2021-09-20 13:00:28'),
('26563', 'en', 'resend_code', 'Resend Code', '2021-02-23 20:44:25', '2021-09-20 13:00:28'),
('26564', 'en', 'staff_information', 'Staff Information', '2021-02-25 21:23:40', '2021-09-20 13:00:28'),
('26565', 'en', 'staff_has_been_inserted_successfully', 'Staff has been inserted successfully', '2021-02-25 21:24:00', '2021-09-20 13:00:28'),
('26566', 'en', 'role_information', 'Role Information', '2021-02-25 21:31:25', '2021-09-20 13:00:28'),
('26567', 'en', 'permissions', 'Permissions', '2021-02-25 21:31:25', '2021-09-20 13:00:28'),
('26568', 'en', 'role_has_been_updated_successfully', 'Role has been updated successfully', '2021-02-25 21:31:46', '2021-09-20 13:00:28'),
('26569', 'en', 'update_your_system', 'Update your system', '2021-02-25 21:33:26', '2021-09-20 13:00:28'),
('26570', 'en', 'current_verion', 'Current verion', '2021-02-25 21:33:26', '2021-09-20 13:00:28'),
('26571', 'en', 'make_sure_your_server_has_matched_with_all_requirements', 'Make sure your server has matched with all requirements.', '2021-02-25 21:33:26', '2021-09-20 13:00:28'),
('26572', 'en', 'check_here', 'Check Here', '2021-02-25 21:33:26', '2021-09-20 13:00:28'),
('26573', 'en', 'download_latest_version_from_codecanyon', 'Download latest version from codecanyon.', '2021-02-25 21:33:26', '2021-09-20 13:00:28'),
('26574', 'en', 'extract_downloaded_zip_you_will_find_updateszip_file_in_those_extraced_files', 'Extract downloaded zip. You will find updates.zip file in those extraced files.', '2021-02-25 21:33:27', '2021-09-20 13:00:28'),
('26575', 'en', 'upload_that_zip_file_here_and_click_update_now', 'Upload that zip file here and click update now.', '2021-02-25 21:33:27', '2021-09-20 13:00:28'),
('26576', 'en', 'if_you_are_using_any_addon_make_sure_to_update_those_addons_after_updating', 'If you are using any addon make sure to update those addons after updating.', '2021-02-25 21:33:27', '2021-09-20 13:00:28'),
('26577', 'en', 'package_duration', 'Package Duration', '2021-02-26 04:40:17', '2021-09-20 13:00:28'),
('26578', 'en', 'digital_product_upload_remaining', 'Digital Product Upload Remaining', '2021-02-26 04:42:10', '2021-09-20 13:00:28'),
('26579', 'en', 'package_expires_at', 'Package Expires at', '2021-02-26 04:42:10', '2021-09-20 13:00:28'),
('26580', 'en', 'ok_i_understood', 'Ok. I Understood', '2021-02-27 22:26:27', '2021-09-20 13:00:28'),
('26581', 'en', 'commission_history', 'Commission History', '2021-03-07 11:10:47', '2021-09-20 13:00:28'),
('26582', 'en', 'vat__tax', 'Vat & TAX', '2021-03-07 11:10:48', '2021-09-20 13:00:28'),
('26583', 'en', 'info', 'Info', '2021-03-07 11:10:54', '2021-09-20 13:00:28'),
('26584', 'en', 'product_wise_shipping', 'Product Wise Shipping', '2021-03-07 11:12:45', '2021-09-20 13:00:28'),
('26585', 'en', 'low_stock_quantity_warning', 'Low Stock Quantity Warning', '2021-03-07 11:12:45', '2021-09-20 13:00:28'),
('26586', 'en', 'stock_visibility_state', 'Stock Visibility State', '2021-03-07 11:12:45', '2021-09-20 13:00:28'),
('26587', 'en', 'show_stock_quantity', 'Show Stock Quantity', '2021-03-07 11:12:45', '2021-09-20 13:00:28'),
('26588', 'en', 'show_stock_with_text_only', 'Show Stock With Text Only', '2021-03-07 11:12:45', '2021-09-20 13:00:28'),
('26589', 'en', 'hide_stock', 'Hide Stock', '2021-03-07 11:12:46', '2021-09-20 13:00:28'),
('26590', 'en', 'flash_deal', 'Flash Deal', '2021-03-07 11:12:46', '2021-09-20 13:00:28'),
('26591', 'en', 'add_to_flash', 'Add To Flash', '2021-03-07 11:12:46', '2021-09-20 13:00:28'),
('26592', 'en', 'estimate_shipping_time', 'Estimate Shipping Time', '2021-03-07 11:12:46', '2021-09-20 13:00:28'),
('26593', 'en', 'shipping_days', 'Shipping Days', '2021-03-07 11:12:46', '2021-09-20 13:00:28'),
('26594', 'en', 'save_as_draft', 'Save As Draft', '2021-03-07 11:12:46', '2021-09-20 13:00:28'),
('26595', 'en', 'save__unpublish', 'Save & Unpublish', '2021-03-07 11:12:46', '2021-09-20 13:00:28'),
('26596', 'en', 'save__publish', 'Save & Publish', '2021-03-07 11:12:46', '2021-09-20 13:00:28'),
('26597', 'en', 'all_cities', 'All cities', '2021-03-07 11:13:04', '2021-09-20 13:00:28'),
('26598', 'en', 'cities', 'Cities', '2021-03-07 11:13:04', '2021-09-20 13:00:28'),
('26599', 'en', 'cost', 'Cost', '2021-03-07 11:13:04', '2021-09-20 13:00:28'),
('26600', 'en', 'add_new_city', 'Add New city', '2021-03-07 11:13:04', '2021-09-20 13:00:28'),
('26601', 'en', '_pts', ' pts', '2021-03-08 10:24:26', '2021-09-20 13:00:28'),
('26602', 'en', 'no', 'No', '2021-03-08 10:24:26', '2021-09-20 13:00:28'),
('26603', 'en', 'convert_now', 'Convert Now', '2021-03-08 10:24:26', '2021-09-20 13:00:28'),
('26604', 'en', 'affiliate_balance', 'Affiliate Balance', '2021-03-08 10:26:22', '2021-09-20 13:00:28'),
('26605', 'en', 'configure_payout', 'Configure Payout', '2021-03-08 10:26:22', '2021-09-20 13:00:28'),
('26606', 'en', 'affiliate_withdraw_request', 'Affiliate Withdraw Request', '2021-03-08 10:26:22', '2021-09-20 13:00:28'),
('26607', 'en', 'copy_url', 'Copy Url', '2021-03-08 10:26:22', '2021-09-20 13:00:28'),
('26608', 'en', 'affiliate_earning_history', 'Affiliate Earning History', '2021-03-08 10:26:22', '2021-09-20 13:00:28'),
('26609', 'en', 'referral_user', 'Referral User', '2021-03-08 10:26:22', '2021-09-20 13:00:28'),
('26610', 'en', 'referral_type', 'Referral Type', '2021-03-08 10:26:22', '2021-09-20 13:00:28'),
('26611', 'en', 'payment_settings', 'Payment Settings', '2021-03-08 10:26:50', '2021-09-20 13:00:28'),
('26612', 'en', 'paypal_email', 'Paypal Email', '2021-03-08 10:26:50', '2021-09-20 13:00:28'),
('26613', 'en', 'bank_informations', 'Bank Informations', '2021-03-08 10:26:50', '2021-09-20 13:00:28'),
('26614', 'en', 'acc_no_bank_name_etc', 'Acc. No, Bank Name etc', '2021-03-08 10:26:50', '2021-09-20 13:00:28'),
('26615', 'en', 'update_payment_settings', 'Update Payment Settings', '2021-03-08 10:26:50', '2021-09-20 13:00:28'),
('26616', 'en', 'affiliate_payment_settings_has_been_updated_successfully', 'Affiliate payment settings has been updated successfully', '2021-03-08 10:26:53', '2021-09-20 13:00:28'),
('26617', 'en', 'new_withdraw_request_created_successfully', 'New withdraw request created successfully', '2021-03-08 10:27:38', '2021-09-20 13:00:28'),
('26618', 'en', 'affiliate_withdraw_request_history', 'Affiliate withdraw request history', '2021-03-08 10:27:39', '2021-09-20 13:00:28'),
('26619', 'en', 'affiliate_payment_history', 'Affiliate payment history', '2021-03-08 10:30:42', '2021-09-20 13:00:28'),
('26620', 'en', 'default', 'Default', '2021-03-08 10:36:37', '2021-09-20 13:00:28'),
('26621', 'en', 'area_wise_flat_shipping_cost', 'Area Wise Flat Shipping Cost', '2021-03-08 11:16:02', '2021-09-20 13:00:28'),
('26622', 'en', 'seller_wise_flat_shipping_cost_calulation_fixed_rate_for_each_seller_if_customers_purchase_2_product_from_two_seller_shipping_cost_is_calculated_by_addition_of_each_seller_flat_shipping_cost', 'Seller Wise Flat Shipping Cost calulation: Fixed rate for each seller. If customers purchase 2 product from two seller shipping cost is calculated by addition of each seller flat shipping cost', '2021-03-08 11:16:02', '2021-09-20 13:00:28'),
('26623', 'en', 'area_wise_flat_shipping_cost_calulation_fixed_rate_for_each_area_if_customers_purchase_multiple_products_from_one_seller_shipping_cost_is_calculated_by_the_customer_shipping_area_to_configure_area_wise_shipping_cost_go_to_', 'Area Wise Flat Shipping Cost calulation: Fixed rate for each area. If customers purchase multiple products from one seller shipping cost is calculated by the customer shipping area. To configure area wise shipping cost go to ', '2021-03-08 11:16:03', '2021-09-20 13:00:28'),
('26624', 'en', '1_flat_rate_shipping_cost_is_applicable_if_flat_rate_shipping_is_enabled', '1. Flat rate shipping cost is applicable if Flat rate shipping is enabled.', '2021-03-08 11:16:03', '2021-09-20 13:00:28'),
('26625', 'en', '1_shipping_cost_for_admin_is_applicable_if_seller_wise_shipping_cost_is_enabled', '1. Shipping cost for admin is applicable if Seller wise shipping cost is enabled.', '2021-03-08 11:16:03', '2021-09-20 13:00:28'),
('26626', 'en', 'the_requested_quantity_is_not_available_for_', 'The requested quantity is not available for ', '2021-03-08 11:26:12', '2021-09-20 13:00:28'),
('26627', 'en', 'city_has_been_inserted_successfully', 'City has been inserted successfully', '2021-03-08 11:26:45', '2021-09-20 13:00:28'),
('26628', 'en', 'namibia', 'Namibia', '2021-03-08 11:27:17', '2021-09-20 13:00:28'),
('26629', 'en', 'city_information', 'City Information', '2021-03-08 11:44:10', '2021-09-20 13:00:28'),
('26630', 'en', 'city_has_been_updated_successfully', 'City has been updated successfully', '2021-03-08 11:44:23', '2021-09-20 13:00:28'),
('26631', 'en', 'sed_ea_dolore_offici', 'Sed ea dolore offici', '2021-03-08 11:47:47', '2021-09-20 13:00:28'),
('26632', 'en', 'pickup_point_information', 'Pickup Point Information', '2021-03-08 11:57:30', '2021-09-20 13:00:28'),
('26633', 'en', 'pickup_point_status', 'Pickup Point Status', '2021-03-08 11:57:30', '2021-09-20 13:00:28'),
('26634', 'en', 'pickup_point_manager', 'Pick-up Point Manager', '2021-03-08 11:57:30', '2021-09-20 13:00:28'),
('26635', 'en', 'picuppoint_has_been_inserted_successfully', 'PicupPoint has been inserted successfully', '2021-03-08 11:57:37', '2021-09-20 13:00:28'),
('26636', 'en', 'update_pickup_point_information', 'Update Pickup Point Information', '2021-03-08 11:57:41', '2021-09-20 13:00:28'),
('26637', 'en', 'picuppoint_has_been_updated_successfully', 'PicupPoint has been updated successfully', '2021-03-08 11:57:45', '2021-09-20 13:00:28'),
('26638', 'en', 'pickip_point', 'Pickip Point', '2021-03-08 11:58:05', '2021-09-20 13:00:28'),
('26639', 'en', 'yes', 'Yes', '2021-03-08 12:05:13', '2021-09-20 13:00:28'),
('26640', 'en', 'done', 'Done', '2021-03-08 12:05:13', '2021-09-20 13:00:28'),
('26641', 'en', 'conversations_with_', 'Conversations With ', '2021-03-08 12:06:37', '2021-09-20 13:00:28'),
('26642', 'en', 'between_you_and', 'Between you and', '2021-03-08 12:06:37', '2021-09-20 13:00:28'),
('26643', 'en', 'seller_product_manage_by_admin', 'Seller Product Manage By Admin', '2021-03-08 12:19:14', '2021-09-20 13:00:28'),
('26644', 'en', 'after_activate_this_option_cash_on_delivery_of_seller_product_will_be_managed_by_admin', 'After activate this option Cash On Delivery of Seller product will be managed by Admin', '2021-03-08 12:19:14', '2021-09-20 13:00:28'),
('26645', 'en', 'all_taxes', 'All Taxes', '2021-03-09 09:13:13', '2021-09-20 13:00:28'),
('26646', 'en', 'add_new_tax', 'Add New Tax', '2021-03-09 09:13:13', '2021-09-20 13:00:28'),
('26647', 'en', 'tax_type', 'Tax Type', '2021-03-09 09:13:13', '2021-09-20 13:00:28'),
('26648', 'en', 'tax_name', 'Tax Name', '2021-03-09 09:13:13', '2021-09-20 13:00:28'),
('26649', 'en', 'tax_status_updated_successfully', 'Tax status updated successfully', '2021-03-09 09:13:13', '2021-09-20 13:00:28'),
('26650', 'en', 'blogs', 'Blogs', '2021-03-24 13:31:32', '2021-09-20 13:00:28'),
('26651', 'en', 'blogs', 'Blogs', '2021-03-24 13:31:32', '2021-09-20 13:00:28'),
('26652', 'en', 'view_all_sellers', 'View All Sellers', '2021-03-25 05:01:18', '2021-09-20 13:00:28'),
('26653', 'en', 'file_selected', 'File selected', '2021-04-11 10:24:39', '2021-09-20 13:00:28'),
('26654', 'en', 'files_selected', 'Files selected', '2021-04-11 10:24:39', '2021-09-20 13:00:28'),
('26655', 'en', 'add_more_files', 'Add more files', '2021-04-11 10:24:39', '2021-09-20 13:00:28'),
('26656', 'en', 'adding_more_files', 'Adding more files', '2021-04-11 10:24:39', '2021-09-20 13:00:28'),
('26657', 'en', 'drop_files_here_paste_or', 'Drop files here, paste or', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26658', 'en', 'upload_complete', 'Upload complete', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26659', 'en', 'upload_paused', 'Upload paused', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26660', 'en', 'resume_upload', 'Resume upload', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26661', 'en', 'pause_upload', 'Pause upload', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26662', 'en', 'retry_upload', 'Retry upload', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26663', 'en', 'cancel_upload', 'Cancel upload', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26664', 'en', 'uploading', 'Uploading', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26665', 'en', 'processing', 'Processing', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26666', 'en', 'complete', 'Complete', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26667', 'en', 'files', 'Files', '2021-04-11 10:24:40', '2021-09-20 13:00:28'),
('26668', 'en', 'this_action_is_disabled_in_demo_mode', 'This action is disabled in demo mode', '2021-05-20 09:08:21', '2021-09-20 13:00:28'),
('26669', 'en', 'nothing_selected', 'Nothing selected', '2021-05-20 09:19:25', '2021-09-20 13:00:28'),
('26670', 'en', 'nothing_selected', 'Nothing selected', '2021-05-20 09:19:25', '2021-09-20 13:00:28'),
('26671', 'en', 'delivery_boy', 'Delivery Boy', '2021-05-20 09:33:03', '2021-09-20 13:00:28'),
('26672', 'en', 'all_delivery_boy', 'All Delivery Boy', '2021-05-20 09:33:03', '2021-09-20 13:00:28'),
('26673', 'en', 'add_delivery_boy', 'Add Delivery Boy', '2021-05-20 09:33:04', '2021-09-20 13:00:28'),
('26674', 'en', 'cancel_request', 'Cancel Request', '2021-05-20 09:33:04', '2021-09-20 13:00:28'),
('26675', 'en', 'configuration', 'Configuration', '2021-05-20 09:33:04', '2021-09-20 13:00:28'),
('26676', 'en', 'all_delivery_boys', 'All Delivery Boys', '2021-05-20 09:34:59', '2021-09-20 13:00:28'),
('26677', 'en', 'add_new_delivery_boy', 'Add New Delivery Boy', '2021-05-20 09:34:59', '2021-09-20 13:00:28'),
('26678', 'en', 'delivery_boys', 'Delivery Boys', '2021-05-20 09:34:59', '2021-09-20 13:00:28'),
('26679', 'en', 'collection', 'Collection', '2021-05-20 09:35:00', '2021-09-20 13:00:28'),
('26680', 'en', 'do_you_really_want_to_ban_this_delivery_boy', 'Do you really want to ban this delivery_boy?', '2021-05-20 09:35:00', '2021-09-20 13:00:28'),
('26681', 'en', 'do_you_really_want_to_unban_this_delivery_boy', 'Do you really want to unban this delivery_boy?', '2021-05-20 09:35:00', '2021-09-20 13:00:28'),
('26682', 'en', 'delivery_boy_information', 'Delivery Boy Information', '2021-05-20 09:35:06', '2021-09-20 13:00:28'),
('26683', 'en', 'select_city', 'Select City', '2021-05-20 09:35:06', '2021-09-20 13:00:28'),
('26684', 'en', 'delivery_boy_has_been_created_successfully', 'Delivery Boy has been created successfully', '2021-05-20 09:37:01', '2021-09-20 13:00:28'),
('26685', 'en', 'ban_this_delivery_boy', 'Ban this delivery boy', '2021-05-20 09:37:02', '2021-09-20 13:00:28'),
('26686', 'en', 'payment_configuration', 'Payment Configuration', '2021-05-20 10:02:11', '2021-09-20 13:00:28'),
('26687', 'en', 'monthly_salary', 'Monthly Salary', '2021-05-20 10:02:11', '2021-09-20 13:00:28'),
('26688', 'en', 'salary_amount', 'Salary Amount', '2021-05-20 10:02:11', '2021-09-20 13:00:28'),
('26689', 'en', 'per_order_commission', 'Per Order Commission', '2021-05-20 10:02:11', '2021-09-20 13:00:28'),
('26690', 'en', 'commission_rate', 'Commission Rate', '2021-05-20 10:02:11', '2021-09-20 13:00:28'),
('26691', 'en', 'notification_configuration', 'Notification Configuration', '2021-05-20 10:02:11', '2021-09-20 13:00:28'),
('26692', 'en', 'send_mail', 'Send Mail', '2021-05-20 10:02:11', '2021-09-20 13:00:28'),
('26693', 'en', 'send_otp', 'Send OTP', '2021-05-20 10:02:11', '2021-09-20 13:00:28'),
('26694', 'en', 'all_cancel_request', 'All Cancel Request', '2021-05-20 10:02:16', '2021-09-20 13:00:28'),
('26695', 'en', 'cancel_requests', 'Cancel Requests', '2021-05-20 10:02:16', '2021-09-20 13:00:28'),
('26696', 'en', 'request_by', 'Request By', '2021-05-20 10:02:16', '2021-09-20 13:00:28'),
('26697', 'en', 'request_at', 'Request At', '2021-05-20 10:02:16', '2021-09-20 13:00:28'),
('26698', 'en', 'offline_customer_package_payment_requests', 'Offline Customer Package Payment Requests', '2021-05-20 10:07:23', '2021-09-20 13:00:28'),
('26699', 'en', 'method', 'Method', '2021-05-20 10:07:23', '2021-09-20 13:00:28'),
('26700', 'en', 'txn_id', 'TXN ID', '2021-05-20 10:07:23', '2021-09-20 13:00:28'),
('26701', 'en', 'reciept', 'Reciept', '2021-05-20 10:07:23', '2021-09-20 13:00:28'),
('26702', 'en', 'offline_customer_package_payment_approved_successfully', 'Offline Customer Package Payment approved successfully', '2021-05-20 10:07:23', '2021-09-20 13:00:28'),
('26703', 'en', 'refferal_users', 'Refferal Users', '2021-05-20 10:07:37', '2021-09-20 13:00:28'),
('26704', 'en', 'reffered_by', 'Reffered By', '2021-05-20 10:07:37', '2021-09-20 13:00:28'),
('26705', 'en', 'affiliate_withdraw_request_reject', 'Affiliate Withdraw Request Reject', '2021-05-20 10:07:59', '2021-09-20 13:00:28'),
('26706', 'en', 'are_you_sure_you_want_to_reject_this', 'Are you sure, You want to reject this?', '2021-05-20 10:07:59', '2021-09-20 13:00:28'),
('26707', 'en', 'server_information', 'Server information', '2021-05-20 10:08:23', '2021-09-20 13:00:28'),
('26708', 'en', 'current_version', 'Current Version', '2021-05-20 10:08:23', '2021-09-20 13:00:28'),
('26709', 'en', 'required_version', 'Required Version', '2021-05-20 10:08:23', '2021-09-20 13:00:28'),
('26710', 'en', 'phpini_config', 'php.ini Config', '2021-05-20 10:08:23', '2021-09-20 13:00:28'),
('26711', 'en', 'config_name', 'Config Name', '2021-05-20 10:08:23', '2021-09-20 13:00:28'),
('26712', 'en', 'current', 'Current', '2021-05-20 10:08:24', '2021-09-20 13:00:28'),
('26713', 'en', 'recommended', 'Recommended', '2021-05-20 10:08:24', '2021-09-20 13:00:28'),
('26714', 'en', 'extensions_information', 'Extensions information', '2021-05-20 10:08:24', '2021-09-20 13:00:28'),
('26715', 'en', 'extension_name', 'Extension Name', '2021-05-20 10:08:24', '2021-09-20 13:00:28'),
('26716', 'en', 'filesystem_permissions', 'Filesystem Permissions', '2021-05-20 10:08:24', '2021-09-20 13:00:28'),
('26717', 'en', 'file_or_folder', 'File or Folder', '2021-05-20 10:08:24', '2021-09-20 13:00:28'),
('26718', 'en', 'assign_deliver_boy', 'Assign Deliver Boy', '2021-05-20 10:08:42', '2021-09-20 13:00:28'),
('26719', 'en', 'select_delivery_boy', 'Select Delivery Boy', '2021-05-20 10:08:42', '2021-09-20 13:00:28'),
('26720', 'en', 'picked_up', 'Picked Up', '2021-05-20 10:08:43', '2021-09-20 13:00:28'),
('26721', 'en', 'on_the_way', 'On The Way', '2021-05-20 10:08:43', '2021-09-20 13:00:28'),
('26722', 'en', 'delivery_boy_has_been_assigned', 'Delivery boy has been assigned', '2021-05-20 10:08:43', '2021-09-20 13:00:28'),
('26723', 'en', 'seller_account', 'Seller Account', '2021-05-20 10:23:34', '2021-09-20 13:00:28'),
('26724', 'en', 'copy_credentials', 'Copy credentials', '2021-05-20 10:23:34', '2021-09-20 13:00:28'),
('26725', 'en', 'customer_account', 'Customer Account', '2021-05-20 10:23:34', '2021-09-20 13:00:28'),
('26726', 'en', 'delivery_boy_account', 'Delivery Boy Account', '2021-05-20 10:24:07', '2021-09-20 13:00:28'),
('26727', 'en', 'invalid_coupon', 'Invalid coupon!', '2021-05-20 10:28:01', '2021-09-20 13:00:28'),
('26728', 'en', 'assigned_delivery', 'Assigned Delivery', '2021-05-20 10:31:59', '2021-09-20 13:00:28'),
('26729', 'en', 'pickup_delivery', 'Pickup Delivery', '2021-05-20 10:31:59', '2021-09-20 13:00:28'),
('26730', 'en', 'on_the_way_delivery', 'On The Way Delivery', '2021-05-20 10:31:59', '2021-09-20 13:00:28'),
('26731', 'en', 'completed_delivery', 'Completed Delivery', '2021-05-20 10:31:59', '2021-09-20 13:00:28'),
('26732', 'en', 'pending_delivery', 'Pending Delivery', '2021-05-20 10:31:59', '2021-09-20 13:00:28'),
('26733', 'en', 'cancelled_delivery', 'Cancelled Delivery', '2021-05-20 10:31:59', '2021-09-20 13:00:28'),
('26734', 'en', 'request_cancelled_delivery', 'Request Cancelled Delivery', '2021-05-20 10:31:59', '2021-09-20 13:00:28'),
('26735', 'en', 'total_collections', 'Total Collections', '2021-05-20 10:31:59', '2021-09-20 13:00:28'),
('26736', 'en', 'assigned_delivery_history', 'Assigned Delivery History', '2021-05-20 10:42:13', '2021-09-20 13:00:28'),
('26737', 'en', 'mark_as_pickup', 'Mark As Pickup', '2021-05-20 10:42:13', '2021-09-20 13:00:28'),
('26738', 'en', 'do_you_really_want_to_send_request_to_cancel', 'Do you really want to send request to cancel?', '2021-05-20 10:42:13', '2021-09-20 13:00:28'),
('26739', 'en', 'request_cancel', 'Request Cancel', '2021-05-20 10:42:13', '2021-09-20 13:00:28'),
('26740', 'en', 'total_collection_history', 'Total Collection History', '2021-05-20 10:43:48', '2021-09-20 13:00:28'),
('26741', 'en', 'cancelled_delivery_history', 'Cancelled Delivery History', '2021-05-20 10:43:53', '2021-09-20 13:00:28'),
('26742', 'en', 'completed_delivery_history', 'Completed Delivery History', '2021-05-20 10:43:59', '2021-09-20 13:00:28'),
('26743', 'en', 'on_the_way_delivery_history', 'On The Way Delivery History', '2021-05-20 10:44:03', '2021-09-20 13:00:28'),
('26744', 'en', 'pickup_delivery_history', 'Pickup Delivery History', '2021-05-20 10:44:08', '2021-09-20 13:00:28'),
('26745', 'en', 'website_popup', 'Website Popup', '2021-06-02 08:01:46', '2021-09-20 13:00:28'),
('26746', 'en', 'show_website_popup', 'Show website popup?', '2021-06-02 08:01:46', '2021-09-20 13:00:28'),
('26747', 'en', 'popup_content', 'Popup content', '2021-06-02 08:01:46', '2021-09-20 13:00:28'),
('26748', 'en', 'show_subscriber_form', 'Show Subscriber form?', '2021-06-02 08:01:46', '2021-09-20 13:00:28'),
('26749', 'en', 'topbar_banner', 'Topbar Banner', '2021-06-02 08:01:49', '2021-09-20 13:00:28'),
('26750', 'en', 'topbar_banner_link', 'Topbar Banner Link', '2021-06-02 08:01:49', '2021-09-20 13:00:28'),
('26751', 'en', 'disable_image_optimization', 'Disable image optimization?', '2021-06-02 08:48:51', '2021-09-20 13:00:28'),
('26752', 'en', 'back_to_uploaded_files', 'Back to uploaded files', '2021-06-02 09:11:55', '2021-09-20 13:00:28'),
('26753', 'en', 'drag__drop_your_files', 'Drag & drop your files', '2021-06-02 09:11:56', '2021-09-20 13:00:28'),
('26754', 'en', 'subscribe_now', 'Subscribe Now', '2021-06-02 09:14:19', '2021-09-20 13:00:28'),
('26755', 'en', 'play_store_link', 'Play Store Link', '2021-06-02 09:19:21', '2021-09-20 13:00:28'),
('26756', 'en', 'app_store_link', 'App Store Link', '2021-06-02 09:19:21', '2021-09-20 13:00:28'),
('26757', 'en', 'hello', 'Hello', '2021-06-08 10:59:55', '2021-09-20 13:00:28'),
('26758', 'en', 'shop_by_department', 'Shop By Department', '2021-06-08 10:59:55', '2021-09-20 13:00:28'),
('26759', 'en', 'log_out', 'Log Out', '2021-06-08 10:59:55', '2021-09-20 13:00:28'),
('26760', 'en', 'sms_templates', 'SMS Templates', '2021-06-21 11:31:43', '2021-09-20 13:00:28'),
('26761', 'en', 'loading', 'Loading..', '2021-06-21 11:32:59', '2021-09-20 13:00:28'),
('26762', 'en', 'place_order', 'Place Order', '2021-06-21 11:32:59', '2021-09-20 13:00:28'),
('26763', 'en', 'load_more', 'Load More.', '2021-06-21 11:32:59', '2021-09-20 13:00:28'),
('26764', 'en', 'nothing_more_found', 'Nothing more found.', '2021-06-21 11:32:59', '2021-09-20 13:00:28'),
('26765', 'en', 'phone_number_verification', 'Phone Number Verification', '2021-06-21 11:33:28', '2021-09-20 13:00:28'),
('26766', 'en', 'password_reset', 'Password Reset', '2021-06-21 11:33:28', '2021-09-20 13:00:28'),
('26767', 'en', 'delivery_status_change', 'Delivery Status Change', '2021-06-21 11:33:28', '2021-09-20 13:00:28'),
('26768', 'en', 'payment_status_change', 'Payment Status Change', '2021-06-21 11:33:28', '2021-09-20 13:00:28'),
('26769', 'en', 'assign_delivery_boy', 'Assign Delivery Boy', '2021-06-21 11:33:28', '2021-09-20 13:00:28'),
('26770', 'en', 'sms_body', 'SMS Body', '2021-06-21 11:33:28', '2021-09-20 13:00:28'),
('26771', 'en', 'template_id', 'Template ID', '2021-06-21 11:33:28', '2021-09-20 13:00:28'),
('26772', 'en', 'update_settings', 'Update Settings', '2021-06-21 11:33:28', '2021-09-20 13:00:28'),
('26773', 'en', 'please_turn_off_maintenance_mode_before_updating', 'Please turn off maintenance mode before updating.', '2021-07-28 06:04:17', '2021-09-20 13:00:28'),
('26774', 'en', 'file_system__cache_configuration', 'File System & Cache Configuration', '2021-07-28 06:04:18', '2021-09-20 13:00:28'),
('26775', 'en', 'google_map', 'Google Map', '2021-07-28 06:04:19', '2021-09-20 13:00:28'),
('26776', 'en', 'google_firebase', 'Google Firebase', '2021-07-28 06:04:19', '2021-09-20 13:00:28'),
('26777', 'en', 'no_notification_found', 'No notification found', '2021-07-28 06:04:19', '2021-09-20 13:00:28'),
('26778', 'en', 'view_all_notifications', 'View All Notifications', '2021-07-28 06:04:19', '2021-09-20 13:00:28'),
('26779', 'en', 'account', 'Account', '2021-08-10 01:42:43', '2021-09-20 13:00:28'),
('26780', 'en', 'item_has_been_removed_from_cart', 'Item has been removed from cart', '2021-08-10 01:42:43', '2021-09-20 13:00:28'),
('26781', 'en', 'please_choose_all_the_options', 'Please choose all the options', '2021-08-10 01:42:43', '2021-09-20 13:00:28'),
('26782', 'en', 'auction_products', 'Auction Products', '2021-08-10 01:45:40', '2021-09-20 13:00:28'),
('26783', 'en', 'add_new_auction_product', 'Add New auction product', '2021-08-10 01:45:40', '2021-09-20 13:00:28'),
('26784', 'en', 'all_auction_products', 'All Auction Products', '2021-08-10 01:45:40', '2021-09-20 13:00:28'),
('26785', 'en', 'select_brand', 'Select Brand', '2021-08-10 01:48:10', '2021-09-20 13:00:28'),
('26786', 'en', 'minimum_purchase_qty', 'Minimum Purchase Qty', '2021-08-10 01:48:11', '2021-09-20 13:00:28'),
('26787', 'en', 'discount_date_range', 'Discount Date Range', '2021-08-10 01:48:11', '2021-09-20 13:00:28'),
('26788', 'en', 'select_date', 'Select Date', '2021-08-10 01:48:11', '2021-09-20 13:00:28'),
('26789', 'en', '1', '1', '2021-08-10 01:48:11', '2021-08-10 01:48:11'),
('26790', 'en', 'product_wise_shipping_cost_is_disable_shipping_cost_is_configured_from_here', 'Product wise shipping cost is disable. Shipping cost is configured from here', '2021-08-10 01:48:11', '2021-09-20 13:00:28'),
('26791', 'en', 'starting_bidding_price', 'Starting bidding price', '2021-08-10 01:56:44', '2021-09-20 13:00:28'),
('26792', 'en', 'auction_date_range', 'Auction Date Range', '2021-08-10 01:56:44', '2021-09-20 13:00:28'),
('26793', 'en', 'auction_products_orders', 'Auction Products Orders', '2021-08-19 06:20:51', '2021-09-20 13:00:28'),
('26794', 'en', 'twilio_otp', 'Twilio OTP', '2021-08-21 11:26:00', '2021-09-20 13:00:28'),
('26795', 'en', 'mimsms', 'MIMSMS', '2021-08-21 11:26:00', '2021-09-20 13:00:28'),
('26796', 'en', 'twilio_credential', 'Twilio Credential', '2021-08-21 11:26:36', '2021-09-20 13:00:28'),
('26797', 'en', 'valid_twilio_number', 'VALID TWILIO NUMBER', '2021-08-21 11:26:36', '2021-09-20 13:00:28'),
('26798', 'en', 'entity_id', 'ENTITY ID', '2021-08-21 11:26:37', '2021-09-20 13:00:28'),
('26799', 'en', 'dlt_manual', 'DLT Manual', '2021-08-21 11:26:37', '2021-09-20 13:00:28'),
('26800', 'en', 'mimsms_credential', 'MIMSMS Credential', '2021-08-21 11:26:37', '2021-09-20 13:00:28'),
('26801', 'en', 'mim_api_key', 'MIM_API_KEY', '2021-08-21 11:26:37', '2021-09-20 13:00:28'),
('26802', 'en', 'mim_sender_id', 'MIM_SENDER_ID', '2021-08-21 11:26:37', '2021-09-20 13:00:28'),
('26803', 'en', 'product_bidding_price__date_range', 'Product Bidding Price + Date Range', '2021-08-21 12:49:33', '2021-09-20 13:00:28'),
('26804', 'en', 'is_product_quantity_mulitiply', 'Is Product Quantity Mulitiply', '2021-08-21 12:49:33', '2021-09-20 13:00:28'),
('26805', 'en', 'auction_product', 'Auction Product', '2021-08-22 00:46:21', '2021-09-20 13:00:28'),
('26806', 'en', 'bidded_products', 'Bidded Products', '2021-08-22 00:46:21', '2021-09-20 13:00:28'),
('26807', 'en', 'all_auction_product', 'All Auction Product', '2021-08-21 17:12:38', '2021-09-20 13:00:28'),
('26808', 'en', 'bid_starting_amount', 'Bid Starting Amount', '2021-08-21 17:12:38', '2021-09-20 13:00:28'),
('26809', 'en', 'auction_start_date', 'Auction Start Date', '2021-08-21 17:12:38', '2021-09-20 13:00:28'),
('26810', 'en', 'auction_end_date', 'Auction End Date', '2021-08-21 17:12:38', '2021-09-20 13:00:28'),
('26811', 'en', 'total_bids', 'Total Bids', '2021-08-21 17:12:38', '2021-09-20 13:00:28'),
('26812', 'en', 'bulk_action', 'Bulk Action', '2021-08-21 17:12:49', '2021-09-20 13:00:28'),
('26813', 'en', 'delete_selection', 'Delete selection', '2021-08-21 17:12:49', '2021-09-20 13:00:28'),
('26814', 'en', 'product_approval_update_successfully', 'Product approval update successfully', '2021-08-21 17:12:51', '2021-09-20 13:00:28'),
('26815', 'en', 'view_products', 'View Products', '2021-08-21 17:17:23', '2021-09-20 13:00:28'),
('26816', 'en', 'view_all_bids', 'View All Bids', '2021-08-21 17:17:23', '2021-09-20 13:00:28'),
('26817', 'en', 'edit_auction_product', 'Edit Auction Product', '2021-08-21 17:20:05', '2021-09-20 13:00:28'),
('26818', 'en', 'auction_will_end', 'Auction Will End', '2021-08-21 17:48:43', '2021-09-20 13:00:28'),
('26819', 'en', 'starting_bid', 'Starting Bid', '2021-08-21 17:48:43', '2021-09-20 13:00:28'),
('26820', 'en', 'highest_bid', 'Highest Bid', '2021-08-21 17:48:43', '2021-09-20 13:00:28'),
('26821', 'en', 'place_bid', 'Place Bid', '2021-08-21 17:48:43', '2021-09-20 13:00:28'),
('26822', 'en', 'bid_for_product', 'Bid For Product', '2021-08-21 17:48:44', '2021-09-20 13:00:28'),
('26823', 'en', 'min_bid_amount_', 'Min Bid Amount: ', '2021-08-21 17:48:44', '2021-09-20 13:00:28'),
('26824', 'en', 'place_bid_price', 'Place Bid Price', '2021-08-21 17:48:44', '2021-09-20 13:00:28'),
('26825', 'en', 'enter_amount', 'Enter Amount', '2021-08-21 17:48:44', '2021-09-20 13:00:28'),
('26826', 'en', 'bid_placed_successfully', 'Bid Placed Successfully', '2021-08-21 17:51:27', '2021-09-20 13:00:28'),
('26827', 'en', 'my_bidded_amount', 'My Bidded Amount', '2021-08-21 17:51:28', '2021-09-20 13:00:28'),
('26828', 'en', 'chnage_bid', 'Chnage Bid', '2021-08-21 17:51:29', '2021-09-20 13:00:28'),
('26829', 'en', 'highest_bid_amount', 'Highest Bid Amount', '2021-08-21 17:55:54', '2021-09-20 13:00:28'),
('26830', 'en', 'ended', 'Ended', '2021-08-21 17:58:51', '2021-09-20 13:00:28'),
('26831', 'en', 'buy', 'Buy', '2021-08-21 17:58:51', '2021-09-20 13:00:28'),
('26832', 'en', 'address_edit', 'Address Edit', '2021-08-21 18:00:27', '2021-09-20 13:00:28'),
('26833', 'en', 'proxypay', 'ProxyPay', '2021-08-21 18:00:40', '2021-09-20 13:00:28'),
('26834', 'en', 'has_been_placed', 'has been Placed', '2021-08-21 18:02:46', '2021-09-20 13:00:28'),
('26835', 'en', 'order_has_been_deleted_successfully', 'Order has been deleted successfully', '2021-08-21 18:03:00', '2021-09-20 13:00:28'),
('26836', 'en', 'purchased', 'Purchased', '2021-08-21 18:03:30', '2021-09-20 13:00:28'),
('26837', 'en', 'remove_other_items_to_add_auction_product', 'Remove other items to add auction product.', '2021-08-21 18:03:57', '2021-09-20 13:00:28'),
('26838', 'en', 'item_alreday_added_to_the_cart', 'Item alreday added to the cart.', '2021-08-21 18:03:57', '2021-09-20 13:00:28'),
('26839', 'en', 'total_collected', 'Total Collected', '2021-09-05 16:32:27', '2021-09-20 13:00:28'),
('26840', 'en', 'earnings', 'Earnings', '2021-09-05 16:32:27', '2021-09-20 13:00:28'),
('26841', 'en', 'values', 'Values', '2021-09-05 16:33:02', '2021-09-20 13:00:28'),
('26842', 'en', 'attribute_values', 'Attribute values', '2021-09-05 16:33:02', '2021-09-20 13:00:28'),
('26843', 'en', 'global_seo', 'Global SEO', '2021-09-14 10:53:18', '2021-09-20 13:00:28'),
('26844', 'en', 'keyword_keyword', 'Keyword, Keyword', '2021-09-14 10:53:18', '2021-09-20 13:00:28'),
('26845', 'en', 'choose_file', 'Choose File', '2021-09-14 10:53:18', '2021-09-20 13:00:29'),
('26846', 'en', 'nothing_found', 'Nothing found', '2021-09-14 10:53:18', '2021-09-20 13:00:29'),
('26847', 'en', 'wallet_recharge_history', 'Wallet Recharge History', '2021-09-14 10:53:18', '2021-09-20 13:00:29'),
('26848', 'en', 'order_code_', 'Order code: ', '2021-09-14 10:53:18', '2021-09-20 13:00:29'),
('26849', 'en', 'all_categories', 'All categories', '2021-09-14 10:53:19', '2021-09-20 13:14:39'),
('26850', 'en', 'new', 'new', '2021-09-14 12:48:02', '2021-09-14 12:48:02'),
('26851', 'en', 'password', 'Password', '2021-09-14 12:52:08', '2021-09-20 13:00:29'),
('26852', 'en', 'forgot_password', 'Forgot password?', '2021-09-14 12:52:08', '2021-09-20 13:00:29'),
('26853', 'en', 'times', 'Times', '2021-09-14 12:52:14', '2021-09-20 13:00:29'),
('26854', 'en', 'be_a_seller', 'Be A Seller', '2021-09-14 12:52:14', '2021-09-20 13:00:29'),
('26855', 'en', 'sort_by', 'Sort by', '2021-09-14 12:52:16', '2021-09-20 13:00:29'),
('26856', 'en', 'tax', 'Tax', '2021-09-14 12:52:21', '2021-09-20 13:00:29'),
('26857', 'en', 'total', 'Total', '2021-09-14 12:52:21', '2021-09-20 13:00:29'),
('26858', 'en', 'postal_code', 'Postal code', '2021-09-14 12:52:23', '2021-09-20 13:00:29'),
('26859', 'en', 'terms_and_conditions', 'terms and conditions', '2021-09-14 12:52:27', '2021-09-20 13:00:29'),
('26860', 'en', 'return_policy', 'return policy', '2021-09-14 12:52:27', '2021-09-20 13:00:29'),
('26861', 'en', 'privacy_policy', 'privacy policy', '2021-09-14 12:52:27', '2021-09-20 13:00:29'),
('26862', 'en', 'order_date', 'Order date', '2021-09-14 12:52:32', '2021-09-20 13:00:29'),
('26863', 'en', 'shipping_address', 'Shipping address', '2021-09-14 12:52:32', '2021-09-20 13:00:29'),
('26864', 'en', 'order_status', 'Order status', '2021-09-14 12:52:32', '2021-09-20 13:00:29'),
('26865', 'en', 'seller_commission_activation', 'Seller Commission Activation', '2021-09-19 10:12:21', '2021-09-20 13:00:29'),
('26866', 'en', 'of_seller_product_price_will_be_deducted_from_seller_earnings', 'of seller product price will be deducted from seller earnings', '2021-09-19 10:12:21', '2021-09-20 13:00:29'),
('26867', 'en', 'this_commission_only_works_when_category_based_commission_is_turned_off_from_business_settings', 'This commission only works when Category Based Commission is turned off from Business Settings', '2021-09-19 10:12:21', '2021-09-20 13:00:29'),
('26868', 'en', 'disable_image_encoding', 'Disable image encoding?', '2021-09-19 10:12:42', '2021-09-20 13:00:29'),
('26869', 'en', 'admin_approval_on_seller_product', 'Admin Approval On Seller Product', '2021-09-19 10:12:42', '2021-09-20 13:00:29'),
('26870', 'en', 'after_activate_this_option_admin_approval_need_to_seller_product', 'After activate this option, Admin approval need to seller product', '2021-09-19 10:12:42', '2021-09-20 13:00:29'),
('26871', 'en', 'proxy_pay_activation', 'Proxy Pay Activation', '2021-09-19 10:12:42', '2021-09-20 13:00:29'),
('26872', 'en', 'you_need_to_configure_proxypay_correctly_to_enable_this_feature', 'You need to configure proxypay correctly to enable this feature', '2021-09-19 10:12:42', '2021-09-20 13:00:29'),
('26873', 'en', 'amarpay_activation', 'Amarpay Activation', '2021-09-19 10:12:42', '2021-09-20 13:00:29'),
('26874', 'en', 'you_need_to_configure_amarpay_correctly_to_enable_this_feature', 'You need to configure amarpay correctly to enable this feature', '2021-09-19 10:12:42', '2021-09-20 13:00:29'),
('26875', 'en', 'category_based_commission', 'Category Based Commission', '2021-09-19 10:14:37', '2021-09-20 13:00:29'),
('26876', 'en', 'if_category_based_commission_is_enbaled_global_percentage_will_not_work', 'If Category Based Commission is enbaled, Global percentage will not work.', '2021-09-19 10:16:09', '2021-09-20 13:00:29'),
('26877', 'en', 'if_category_based_commission_is_enbaled_set_seller_commission_percentage_0', 'If Category Based Commission is enbaled, Set seller commission percentage 0.', '2021-09-19 10:16:38', '2021-09-20 13:00:29'),
('26878', 'en', 'seller_commission_activatation', 'Seller Commission Activatation', '2021-09-19 10:17:42', '2021-09-20 13:00:29'),
('26879', 'en', 'seller_commission_updated_successfully', 'Seller Commission updated successfully', '2021-09-19 10:58:32', '2021-09-20 13:00:29'),
('26880', 'en', 'order_level', 'Order Level', '2021-09-19 11:03:57', '2021-09-20 13:00:29'),
('26881', 'en', 'icon', 'Icon', '2021-09-19 11:03:57', '2021-09-20 13:00:29'),
('26882', 'en', 'all_products', 'All products', '2021-09-19 11:19:10', '2021-09-20 13:00:29'),
('26883', 'en', 'add_new_product', 'Add New Product', '2021-09-19 11:19:10', '2021-09-20 13:00:29'),
('26884', 'en', 'reviews', 'reviews', '2021-09-19 11:35:06', '2021-09-19 11:35:06'),
('26885', 'en', 'sold_by', 'Sold by', '2021-09-19 11:35:07', '2021-09-20 13:00:29'),
('26886', 'en', 'coupon_has_been_saved_successfully', 'Coupon has been saved successfully', '2021-09-20 07:05:28', '2021-09-20 13:00:29'),
('26887', 'en', 'cart_base', 'Cart Base', '2021-09-20 07:05:28', '2021-09-20 13:00:29'),
('26888', 'en', 'coupon_has_been_deleted_successfully', 'Coupon has been deleted successfully', '2021-09-20 07:22:19', '2021-09-20 13:00:29'),
('26889', 'en', 'coupon_has_been_updated_successfully', 'Coupon has been updated successfully', '2021-09-20 07:23:42', '2021-09-20 13:00:29'),
('26890', 'en', 'coupons', 'Coupons', '2021-09-20 07:32:10', '2021-09-20 13:00:29'),
('26891', 'en', 'add_your_coupon', 'Add Your Coupon', '2021-09-20 07:33:19', '2021-09-20 13:00:29'),
('26892', 'en', 'edit_your_coupon', 'Edit Your Coupon', '2021-09-20 07:44:13', '2021-09-20 13:00:29'),
('26893', 'en', 'paypal_client_id', 'Paypal Client Id', '2021-09-20 09:49:16', '2021-09-20 13:00:29'),
('26894', 'en', 'stripe_key', 'Stripe Key', '2021-09-20 09:49:16', '2021-09-20 13:00:29'),
('26895', 'en', 'stripe_secret', 'Stripe Secret', '2021-09-20 09:49:16', '2021-09-20 13:00:29'),
('26896', 'en', 'aamarpay_credential', 'Aamarpay Credential', '2021-09-20 09:49:16', '2021-09-20 13:00:29'),
('26897', 'en', 'aamarpay_store_id', 'Aamarpay Store Id', '2021-09-20 09:49:17', '2021-09-20 13:00:29'),
('26898', 'en', 'aamarpay_signature_key', 'Aamarpay signature key', '2021-09-20 09:49:17', '2021-09-20 13:00:29'),
('26899', 'en', 'aamarpay_sandbox_mode', 'Aamarpay Sandbox Mode', '2021-09-20 09:49:17', '2021-09-20 13:00:29'),
('26900', 'en', 'proxypay_credential', 'ProxyPay Credential', '2021-09-20 09:49:17', '2021-09-20 13:00:29'),
('26901', 'en', 'proxypay_token', 'PROXYPAY_TOKEN', '2021-09-20 09:49:17', '2021-09-20 13:00:29'),
('26902', 'en', 'proxypay_token', 'PROXYPAY TOKEN', '2021-09-20 09:49:17', '2021-09-20 13:00:29'),
('26903', 'en', 'proxypay_entity', 'PROXYPAY_ENTITY', '2021-09-20 09:49:17', '2021-09-20 13:00:29'),
('26904', 'en', 'proxypay_end_time', 'PROXYPAY_END_TIME', '2021-09-20 09:49:17', '2021-09-20 13:00:29'),
('26905', 'en', 'days', 'Days', '2021-09-20 09:49:17', '2021-09-20 13:00:29'),
('26906', 'en', 'flw_public_key', 'FLW_PUBLIC_KEY', '2021-09-20 10:34:59', '2021-09-20 13:00:29'),
('26907', 'en', 'flw_secret_key', 'FLW_SECRET_KEY', '2021-09-20 10:34:59', '2021-09-20 13:00:29'),
('26908', 'en', 'flw_secret_hash', 'FLW_SECRET_HASH', '2021-09-20 10:34:59', '2021-09-20 13:00:29'),
('26909', 'en', 'categories', 'Categories', '2021-09-20 13:00:29', '2021-09-20 13:00:29'),
('26910', 'en', 'featured_categories', 'Featured Categories', '2024-11-26 06:33:43', '2024-11-26 06:33:43'),
('26911', 'en', 'become_a_seller_', 'Become a Seller !', '2024-11-26 06:33:43', '2024-11-26 06:33:43'),
('26912', 'en', 'login_to_seller', 'Login to Seller', '2024-11-26 06:33:43', '2024-11-26 06:33:43'),
('26913', 'en', 'contacts', 'Contacts', '2024-11-26 06:33:43', '2024-11-26 06:33:43'),
('26914', 'en', 'seller_zone', 'Seller Zone', '2024-11-26 06:33:43', '2024-11-26 06:33:43'),
('26915', 'en', 'become_a_seller', 'Become A Seller', '2024-11-26 06:33:43', '2024-11-26 06:33:43'),
('26916', 'en', 'login_to_seller_panel', 'Login to Seller Panel', '2024-11-26 06:33:43', '2024-11-26 06:33:43'),
('26917', 'en', 'delete_your_account', 'Delete Your Account', '2024-11-26 06:33:43', '2024-11-26 06:33:43'),
('26918', 'en', 'warning_you_cannot_undo_this_action', 'Warning: You cannot undo this action', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26919', 'en', 'note_', 'Note: ', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26920', 'en', 'dont_click_to_any_button_or_dont_do_any_action_during_account_deletion_it_may_takes_some_times', 'Don\'t Click to any button or don\'t do any action during account Deletion, it may takes some times.', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26921', 'en', 'deleting_account_means', 'Deleting Account Means:', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26922', 'en', 'warning', 'warning', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26923', 'en', 'if_you_create_any_classified_ptoducts_after_deleting_your_account_those_products_will_no_longer_in_our_system', 'If you create any classified ptoducts, after deleting your account, those products will no longer in our system', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26924', 'en', 'after_deleting_your_account_wallet_balance_will_no_longer_in_our_system', 'After deleting your account, wallet balance will no longer in our system', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26925', 'en', 'delete_account', 'Delete Account', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26926', 'en', 'sorry_nothing_found_for', 'Sorry, nothing found for', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26927', 'en', 'coupon_code_copied', 'Coupon Code Copied', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26928', 'en', 'use_phone_number_instead', 'Use Phone Number Instead', '2024-11-26 06:33:44', '2024-11-26 06:33:44'),
('26929', 'en', 'admin_login_page_image', 'Admin Login Page Image', '2024-11-26 06:33:51', '2024-11-26 06:33:51'),
('26930', 'en', 'johndoeexamplecom', 'johndoe@example.com', '2024-11-26 06:33:51', '2024-11-26 06:33:51'),
('26931', 'en', 'back_to_previous_page', 'Back to Previous Page', '2024-11-26 06:33:51', '2024-11-26 06:33:51'),
('26932', 'en', 'total_customer', 'Total Customer', '2024-11-26 06:34:10', '2024-11-26 06:34:10'),
('26933', 'en', 'top_customers', 'Top Customers', '2024-11-26 06:34:10', '2024-11-26 06:34:10'),
('26934', 'en', 'sellers_products', 'Sellers Products', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26935', 'en', 'total_category', 'Total Category', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26936', 'en', 'total_brands', 'Total Brands', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26937', 'en', 'top_brands', 'Top Brands', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26938', 'en', 'total_sales', 'Total Sales', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26939', 'en', 'sales_this_month', 'Sales this month', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26940', 'en', 'sales_stat', 'Sales Stat', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26941', 'en', 'inhouse_sales', 'In-house Sales', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26942', 'en', 'sellers_sales', 'Sellers Sales', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26943', 'en', 'pending_seller', 'Pending Seller', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26944', 'en', 'top_sellers', 'Top Sellers', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26945', 'en', 'pending_sellers', 'Pending Sellers', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26946', 'en', 'total_order', 'Total Order', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26947', 'en', 'pending_order', 'Pending order', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26948', 'en', 'confirmed_order', 'Confirmed Order', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26949', 'en', 'processed_order', 'Processed Order', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26950', 'en', 'order_shipped', 'Order Shipped', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26951', 'en', 'inhouse_top_category', 'In-house Top Category', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26952', 'en', 'by_sales', 'By Sales', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26953', 'en', 'today', 'Today', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26954', 'en', 'week', 'Week', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26955', 'en', 'month', 'Month', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26956', 'en', 'inhouse_top_brands', 'In-house Top Brands', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26957', 'en', 'inhouse_store', 'In-house Store', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26958', 'en', 'all_inhouse_orders', 'All In-house Orders', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26959', 'en', 'ratings', 'Ratings', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26960', 'en', 'top_seller__products', 'Top Seller & Products', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26961', 'en', 'yearly_sales', 'Yearly Sales', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26962', 'en', 'seller_product', 'Seller Product', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26963', 'en', 'physical_products', 'Physical Products', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26964', 'en', 'category_based_discount', 'Category Based Discount', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26965', 'en', 'brand_bulk_import', 'Brand Bulk Import', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26966', 'en', 'size_guide', 'Size Guide', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26967', 'en', 'size_chart', 'Size Chart', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26968', 'en', 'measurement_points', 'Measurement Points', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26969', 'en', 'warranty', 'Warranty', '2024-11-26 06:34:11', '2024-11-26 06:34:11'),
('26970', 'en', 'notes', 'Notes', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26971', 'en', 'add_new_note', 'Add New Note', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26972', 'en', 'note_list', 'Note List', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26973', 'en', 'unpaid_orders', 'Unpaid Orders', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26974', 'en', 'seller_rating__followers', 'Seller Rating & Followers', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26975', 'en', 'earning_report', 'Earning Report', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26976', 'en', 'dynamic_popup', 'Dynamic Pop-up', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26977', 'en', 'custom_alert', 'Custom Alert', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26978', 'en', 'email_templates', 'Email Templates', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26979', 'en', 'admin_templates', 'Admin Templates', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26980', 'en', 'seller_templates', 'Seller Templates', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26981', 'en', 'customer_templates', 'Customer Templates', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26982', 'en', 'common_templates', 'Common Templates', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26983', 'en', 'notification', 'Notification', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26984', 'en', 'settings', 'Settings', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26985', 'en', 'notification_types', 'Notification Types', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26986', 'en', 'custom_notification', 'Custom Notification', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26987', 'en', 'custom_notification_history', 'Custom Notification History', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26988', 'en', 'product_conversations', 'Product Conversations', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26989', 'en', 'select_homepage', 'Select Homepage', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26990', 'en', 'homepage_settings', 'Homepage Settings', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26991', 'en', 'authentication_layout__settings', 'Authentication Layout & Settings', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26992', 'en', 'order_configuration', 'Order Configuration', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26993', 'en', 'shipping_states', 'Shipping States', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26994', 'en', 'shipping_zones', 'Shipping Zones', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26995', 'en', 'shipping_carrier', 'Shipping Carrier', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26996', 'en', 'import_demo_data', 'Import Demo Data', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26997', 'en', 'clear_cache', 'Clear Cache', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26998', 'en', 'new_product', 'New Product', '2024-11-26 06:34:12', '2024-11-26 06:34:12'),
('26999', 'en', 'new_category', 'New Category', '2024-11-26 06:34:13', '2024-11-26 06:34:13'),
('27000', 'en', 'new_brand', 'New Brand', '2024-11-26 06:34:13', '2024-11-26 06:34:13'),
('27001', 'en', 'customer_login_page_image', 'Customer Login Page Image', '2024-11-26 06:34:50', '2024-11-26 06:34:50'),
('27002', 'en', 'welcome_back_', 'Welcome Back !', '2024-11-26 06:34:50', '2024-11-26 06:34:50'),
('27003', 'en', 'please_login_as_a_customer_to_add_products_to_the_wishlist', 'Please Login as a customer to add products to the WishList.', '2024-11-26 06:34:57', '2024-11-26 06:34:57'),
('27004', 'en', 'please_login_as_a_customer_to_add_products_to_the_cart', 'Please Login as a customer to add products to the Cart.', '2024-11-26 06:34:57', '2024-11-26 06:34:57'),
('27005', 'en', 'sorry_only_customers__sellers_can_bid', 'Sorry, Only customers & Sellers can Bid.', '2024-11-26 06:34:57', '2024-11-26 06:34:57'),
('27006', 'en', 'customer_register_page_image', 'Customer Register Page Image', '2024-11-26 06:36:33', '2024-11-26 06:36:33'),
('27007', 'en', 'password_must_contain_at_least_6_digits', 'Password must contain at least 6 digits', '2024-11-26 06:36:33', '2024-11-26 06:36:33'),
('27008', 'en', 'by_signing_up_you_agree_to_our_', 'By signing up you agree to our ', '2024-11-26 06:36:34', '2024-11-26 06:36:34'),
('27009', 'en', 'seller_login_page_image', 'Seller Login Page Image', '2024-11-26 06:36:50', '2024-11-26 06:36:50'),
('27010', 'en', 'login_to_your_seller_account', 'Login To Your Seller Account', '2024-11-26 06:36:50', '2024-11-26 06:36:50'),
('27011', 'en', 'less', 'Less', '2024-11-26 06:55:22', '2024-11-26 06:55:22'),
('27012', 'en', 'more', 'More', '2024-11-26 06:55:22', '2024-11-26 06:55:22'),
('27013', 'en', 'clear_tempdata', 'Clear Tempdata', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27014', 'en', 'files__media', 'Files & Media', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27015', 'en', 'price__stock', 'Price & Stock', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27016', 'en', 'seo', 'SEO', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27017', 'en', 'frequently_bought', 'Frequently Bought', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27018', 'en', 'you_can_choose_a_brand_if_youd_like_to_display_your_product_by_brand', 'You can choose a brand if you\'d like to display your product by brand.', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27019', 'en', 'weight', 'Weight', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27020', 'en', 'in_kg', 'In Kg', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27021', 'en', 'the_minimum_quantity_needs_to_be_purchased_by_your_customer', 'The minimum quantity needs to be purchased by your customer.', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27022', 'en', 'select_main', 'Select Main', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27023', 'en', 'this_will_be_used_for_commission_based_calculations_and_homepage_category_wise_product_show', 'This will be used for commission based calculations and homepage category wise product Show.', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27024', 'en', 'if_you_enable_this_this_product_will_be_granted_as_a_featured_product', 'If you enable this, this product will be granted as a featured product.', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27025', 'en', 'if_you_enable_this_this_product_will_be_granted_as_a_todays_deal_product', 'If you enable this, this product will be granted as a todays deal product.', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27026', 'en', 'if_you_want_to_select_this_product_as_a_flash_deal_you_can_use_it', 'If you want to select this product as a flash deal, you can use it', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27027', 'en', 'choose_flash_title', 'Choose Flash Title', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27028', 'en', 'choose_discount_type', 'Choose Discount Type', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27029', 'en', 'product_files__media', 'Product Files & Media', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27030', 'en', 'these_images_are_visible_in_product_details_page_gallery_minimum_dimensions_required_900px_width_x_900px_height', 'These images are visible in product details page gallery. Minimum dimensions required: 900px width X 900px height.', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27031', 'en', 'this_image_is_visible_in_all_product_box_minimum_dimensions_required_195px_width_x_195px_height_keep_some_blank_space_around_main_object_of_your_image_as_we_had_to_crop_some_edge_in_different_devices_to_make_it_responsive', 'This image is visible in all product box. Minimum dimensions required: 195px width X 195px height. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27032', 'en', 'external_link', 'External link', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27033', 'en', 'leave_it_blank_if_you_do_not_use_external_site_link', 'Leave it blank if you do not use external site link', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27034', 'en', 'external_link_button_text', 'External link button text', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27035', 'en', 'select_warranty', 'Select Warranty', '2024-11-26 07:13:39', '2024-11-26 07:13:39'),
('27036', 'en', 'warranty_note', 'Warranty Note', '2024-11-26 07:13:40', '2024-11-26 07:13:40'),
('27037', 'en', 'select_warranty_note', 'Select Warranty Note', '2024-11-26 07:13:40', '2024-11-26 07:13:40'),
('27038', 'en', 'select_product', 'Select Product', '2024-11-26 07:13:40', '2024-11-26 07:13:40'),
('27039', 'en', 'add_products', 'Add Products', '2024-11-26 07:13:40', '2024-11-26 07:13:40'),
('27040', 'en', 'choose_category', 'Choose Category', '2024-11-26 07:13:40', '2024-11-26 07:13:40'),
('27041', 'en', 'search_by_product_name', 'Search by Product Name', '2024-11-26 07:13:40', '2024-11-26 07:13:40'),
('27042', 'en', 'add', 'Add', '2024-11-26 07:13:40', '2024-11-26 07:13:40'),
('27043', 'en', 'are_you_sure_to_delete_those', 'Are you sure to delete those?', '2024-11-26 07:14:19', '2024-11-26 07:14:19'),
('27044', 'en', 'data_can_not_change_in_demo_mode', 'Data can not change in demo mode.', '2024-11-26 07:14:19', '2024-11-26 07:14:19'),
('27045', 'en', 'if_the_commission_type_is_fixed_rate', 'If the Commission Type is Fixed Rate', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27046', 'en', 'if_the_commission_type_is_seller_based_set_commission_percentage_', 'If the Commission Type is Seller Based, set commission percentage ', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27047', 'en', 'here', 'Here', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27048', 'en', 'if_the_commission_type_is_category_based_set_commission_percentage_', 'If the Commission Type is Category Based, set commission percentage ', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27049', 'en', 'commission_type', 'Commission Type', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27050', 'en', 'fixed_commission_rate', 'Fixed Commission Rate', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27051', 'en', 'seller_based_commission_rate', 'Seller Based Commission Rate', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27052', 'en', 'category_based_commission_rate', 'Category Based Commission Rate', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27053', 'en', 'withdraw_seller_amount', 'Withdraw Seller Amount', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27054', 'en', 'minimum_seller_amount_withdraw', 'Minimum Seller Amount Withdraw', '2024-11-26 07:14:35', '2024-11-26 07:14:35'),
('27055', 'en', 'support_desk', 'Support Desk', '2024-11-26 07:14:59', '2024-11-26 07:14:59'),
('27056', 'en', 'type_ticket_code__enter', 'Type ticket code & Enter', '2024-11-26 07:14:59', '2024-11-26 07:14:59'),
('27057', 'en', 'user', 'User', '2024-11-26 07:14:59', '2024-11-26 07:14:59'),
('27058', 'en', 'last_reply', 'Last reply', '2024-11-26 07:14:59', '2024-11-26 07:14:59'),
('27059', 'en', 'homepage_1__classic', 'Homepage 1 - Classic', '2024-11-26 07:15:15', '2024-11-26 07:15:15'),
('27060', 'en', 'homepage_2__metro', 'Homepage 2 - Metro', '2024-11-26 07:15:15', '2024-11-26 07:15:15'),
('27061', 'en', 'homepage_3__minima', 'Homepage 3 - Minima', '2024-11-26 07:15:15', '2024-11-26 07:15:15'),
('27062', 'en', 'homepage_4__megamart', 'Homepage 4 - Megamart', '2024-11-26 07:15:15', '2024-11-26 07:15:15'),
('27063', 'en', 'homepage_5__reclassic', 'Homepage 5 - Re-Classic', '2024-11-26 07:15:15', '2024-11-26 07:15:15'),
('27064', 'en', 'configure_your_page_layout', 'Configure your page layout', '2024-11-26 07:15:15', '2024-11-26 07:15:15'),
('27065', 'en', 'each_page_contain_different_layout_choose_one_to_bundle_it_in_your_layout', 'Each page contain different layout, choose one to bundle it in your Layout.', '2024-11-26 07:15:15', '2024-11-26 07:15:15'),
('27066', 'en', 'homepage_settings_classic', 'Homepage Settings (Classic)', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27067', 'en', 'banner_level_1', 'Banner Level 1', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27068', 'en', 'banner_level_2', 'Banner Level 2', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27069', 'en', 'banner_level_3', 'Banner Level 3', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27070', 'en', 'category_wise_products', 'Category Wise Products', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27071', 'en', 'classifieds', 'Classifieds', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27072', 'en', 'minimum_dimensions_required_1100px_width_x_460px_height', 'Minimum dimensions required: 1100px width X 460px height.', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27073', 'en', 'large_banner', 'Large Banner', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27074', 'en', 'will_be_shown_in_large_device', 'Will be shown in large device', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27075', 'en', 'minimum_dimensions_required_1370px_width_x_242px_height', 'Minimum dimensions required: 1370px width X 242px height.', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27076', 'en', 'small_banner', 'Small Banner', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27077', 'en', 'will_be_shown_in_small_device', 'Will be shown in small device', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27078', 'en', 'minimum_dimensions_required_400px_width_x_200px_height', 'Minimum dimensions required: 400px width X 200px height.', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27079', 'en', 'products_background_color', 'Products background color', '2024-11-26 07:16:30', '2024-11-26 07:16:30'),
('27080', 'en', 'todays_deal_banner_text_color', 'Today\'s Deal Banner Text Color', '2024-11-26 07:16:31', '2024-11-26 07:16:31'),
('27081', 'en', 'light', 'Light', '2024-11-26 07:16:31', '2024-11-26 07:16:31'),
('27082', 'en', 'banner__links_max_3', 'Banner & Links (Max 3)', '2024-11-26 07:16:31', '2024-11-26 07:16:31'),
('27083', 'en', 'minimum_dimensions_required_436px_width_x_436px_height', 'Minimum dimensions required: 436px width X 436px height.', '2024-11-26 07:16:31', '2024-11-26 07:16:31'),
('27084', 'en', 'minimum_dimensions_required_1370px_width_x_420px_height_if_use_a_single_banner', 'Minimum dimensions required: 1370px width X 420px height (If use a single banner).', '2024-11-26 07:16:31', '2024-11-26 07:16:31'),
('27085', 'en', 'top_brands_max_12', 'Top Brands (Max 12)', '2024-11-26 07:16:31', '2024-11-26 07:16:31'),
('27086', 'en', 'authentication_page_layout', 'Authentication Page Layout', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27087', 'en', 'authentication_layout_1__boxed', 'Authentication Layout 1 - Boxed', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27088', 'en', 'authentication_layout_2__free', 'Authentication Layout 2 - Free', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27089', 'en', 'authentication_layout_3__focused', 'Authentication Layout 3 - Focused', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27090', 'en', 'configure_your_authentication_page_layout', 'Configure your authentication page layout', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27091', 'en', 'authentication_page_images', 'Authentication Page Images', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27092', 'en', 'minimum_dimensions_required_960px_width_x_911px_height', 'Minimum dimensions required: 960px width X 911px height.', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27093', 'en', 'minimum_dimensions_required_945px_width_x_839px_height', 'Minimum dimensions required: 945px width X 839px height.', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27094', 'en', 'minimum_dimensions_required_937px_width_x_965px_height', 'Minimum dimensions required: 937px width X 965px height.', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27095', 'en', 'seller_register_page_image', 'Seller Register Page Image', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27096', 'en', 'minimum_dimensions_required_945px_width_x_1036px_height', 'Minimum dimensions required: 945px width X 1036px height.', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27097', 'en', 'password_reset_page_image', 'Password Reset Page Image', '2024-11-26 07:17:19', '2024-11-26 07:17:19'),
('27098', 'en', 'sytem_settings', 'Sytem Settings', '2024-11-26 07:18:01', '2024-11-26 07:18:01'),
('27099', 'en', 'minimum_dimensions_required_32px_width_x_32px_height', 'Minimum dimensions required: 32px width X 32px height.', '2024-11-26 07:18:01', '2024-11-26 07:18:01'),
('27100', 'en', 'will_be_used_in_admin_panel_side_menu_minimum_dimensions_required_189px_width_x_31px_height', 'Will be used in admin panel side menu. Minimum dimensions required: 189px width X 31px height.', '2024-11-26 07:18:01', '2024-11-26 07:18:01'),
('27101', 'en', 'will_be_used_in_admin_login_page_seller_login_page__delivery_boy_login_page_minimum_dimensions_required_189px_width_x_31px_height', 'Will be used in Admin login page, Seller login page & Delivery Boy login page. Minimum dimensions required: 189px width X 31px height.', '2024-11-26 07:18:01', '2024-11-26 07:18:01'),
('27102', 'en', 'uploaded_image_format', 'Uploaded image format', '2024-11-26 07:18:01', '2024-11-26 07:18:01'),
('27103', 'en', 'png', 'PNG', '2024-11-26 07:18:01', '2024-11-26 07:18:01'),
('27104', 'en', 'jpeg', 'JPEG', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27105', 'en', 'webp', 'WebP', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27106', 'en', 'svg_image_will_not_be_converted', '\"svg\" image will not be converted.', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27107', 'en', 'website_secondary_base_color', 'Website Secondary Base Color', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27108', 'en', 'website_secondary_base_hover_color', 'Website Secondary Base Hover Color', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27109', 'en', 'flash_deal_page_banner__large', 'Flash Deal Page Banner - Large', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27110', 'en', 'will_be_shown_in_large_device_minimum_dimensions_required_1370px_width_x_242px_height', 'Will be shown in large device. Minimum dimensions required: 1370px width X 242px height.', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27111', 'en', 'flash_deal_page_banner__small', 'Flash Deal Page Banner - Small', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27112', 'en', 'will_be_shown_in_small_device_minimum_dimensions_required_400px_width_x_184px_height', 'Will be shown in small device. Minimum dimensions required: 400px width X 184px height.', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27113', 'en', 'image_watermark', 'Image Watermark', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27114', 'en', 'use_image_watermark_during_upload', 'Use Image Watermark (During Upload)', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27115', 'en', 'watermark_type', 'Watermark Type', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27116', 'en', 'text', 'Text', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27117', 'en', 'watermark_image', 'Watermark Image', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27118', 'en', 'do_not_use_svg_image', 'Do not use \"svg\" image.', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27119', 'en', 'watermark_text', 'Watermark Text', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27120', 'en', 'watermark_text_size', 'Watermark Text Size', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27121', 'en', 'watermark_text_color', 'Watermark Text Color', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27122', 'en', 'watermark_position', 'Watermark Position', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27123', 'en', 'topleft', 'Top-Left', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27124', 'en', 'topright', 'Top-Right', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27125', 'en', 'bottomleft', 'Bottom-Left', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27126', 'en', 'bottomright', 'Bottom-Right', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27127', 'en', 'center', 'Center', '2024-11-26 07:18:02', '2024-11-26 07:18:02'),
('27128', 'en', 'homepage_settings_metro', 'Homepage Settings (Metro)', '2024-11-26 12:50:39', '2024-11-26 12:50:39'),
('27129', 'en', 'minimum_dimensions_required_1903px_width_x_553px_height', 'Minimum dimensions required: 1903px width X 553px height.', '2024-11-26 12:50:40', '2024-11-26 12:50:40'),
('27130', 'en', 'flash_deal_section_settings', 'Flash Deal Section Settings', '2024-11-26 12:50:40', '2024-11-26 12:50:40'),
('27131', 'en', 'use_background_color_as_full_width', 'Use background color as full width', '2024-11-26 12:50:40', '2024-11-26 12:50:40'),
('27132', 'en', 'flash_deal_banner_text_color', 'Flash Deal Banner Text Color', '2024-11-26 12:50:40', '2024-11-26 12:50:40'),
('27133', 'en', 'todays_deal_section_settings', 'Today\'s Deal Section Settings', '2024-11-26 12:50:40', '2024-11-26 12:50:40'),
('27134', 'en', 'use_background_color_in_this_section', 'Use background color in this section', '2024-11-26 12:50:40', '2024-11-26 12:50:40'),
('27135', 'en', 'select_color', 'Select Color', '2024-11-26 12:50:40', '2024-11-26 12:50:40'),
('27136', 'en', 'minimum_dimensions_required_244px_width_x_40px_height', 'Minimum dimensions required: 244px width X 40px height.', '2024-11-26 12:50:53', '2024-11-26 12:50:53'),
('27137', 'en', 'topbar_banner_large', 'Topbar Banner Large', '2024-11-26 12:50:53', '2024-11-26 12:50:53'),
('27138', 'en', 'will_be_shown_in_large_device_minimum_dimensions_required_1920px_width_x_60px_height', 'Will be shown in large device. Minimum dimensions required: 1920px width X 60px height.', '2024-11-26 12:50:53', '2024-11-26 12:50:53'),
('27139', 'en', 'topbar_banner_medium', 'Topbar Banner Medium', '2024-11-26 12:50:53', '2024-11-26 12:50:53'),
('27140', 'en', 'will_be_shown_in_medium_device_minimum_dimensions_required_810px_width_x_40px_height', 'Will be shown in medium device. Minimum dimensions required: 810px width X 40px height.', '2024-11-26 12:50:53', '2024-11-26 12:50:53'),
('27141', 'en', 'topbar_banner_small', 'Topbar Banner Small', '2024-11-26 12:50:53', '2024-11-26 12:50:53'),
('27142', 'en', 'will_be_shown_in_small_device_minimum_dimensions_required_428px_width_x_40px_height', 'Will be shown in small device. Minimum dimensions required: 428px width X 40px height.', '2024-11-26 12:50:53', '2024-11-26 12:50:53'),
('27143', 'en', 'help_line_number', 'Help line number', '2024-11-26 12:50:53', '2024-11-26 12:50:53'),
('27144', 'en', 'header_nav_menu_text_color', 'Header Nav Menu Text Color', '2024-11-26 12:50:53', '2024-11-26 12:50:53'),
('27145', 'en', 'export', 'Export', '2024-11-26 12:51:52', '2024-11-26 12:51:52'),
('27146', 'en', 'filter_by_delivery_status', 'Filter by Delivery Status', '2024-11-26 12:51:52', '2024-11-26 12:51:52'),
('27147', 'en', 'seller', 'Seller', '2024-11-26 12:51:52', '2024-11-26 12:51:52'),
('27148', 'en', 'are_you_sure_to_send_notification_for_the_selected_orders', 'Are you sure to send notification for the selected orders?', '2024-11-26 12:51:52', '2024-11-26 12:51:52'),
('27149', 'en', 'send_notification', 'Send Notification', '2024-11-26 12:51:52', '2024-11-26 12:51:52'),
('27150', 'en', 'please_select_order_first', 'Please Select Order first.', '2024-11-26 12:51:52', '2024-11-26 12:51:52'),
('27151', 'en', 'total_sales_alltime', 'Total Sales Alltime', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27152', 'en', 'payouts_this_month', 'Payouts this month', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27153', 'en', 'net_sales', 'Net Sales', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27154', 'en', 'by_sale_category', 'By Sale Category', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27155', 'en', 'by_expense_category', 'By Expense Category', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27156', 'en', 'sale_analytics', 'Sale Analytics', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27157', 'en', 'payouts_analytics', 'Payouts Analytics', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27158', 'en', 'product_sales', 'Product Sales', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27159', 'en', 'seller_subscription', 'Seller Subscription', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27160', 'en', 'customer_subscription', 'Customer Subscription', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27161', 'en', 'delivery', 'Delivery', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27162', 'en', 'seller_payout', 'Seller Payout', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27163', 'en', 'product_refund', 'Product Refund', '2024-11-26 12:52:00', '2024-11-26 12:52:00'),
('27164', 'en', 'add_new_customer', 'Add New Customer', '2024-11-26 12:53:06', '2024-11-26 12:53:06'),
('27165', 'en', 'filter_by_verification_status', 'Filter by Verification Status', '2024-11-26 12:53:06', '2024-11-26 12:53:06'),
('27166', 'en', 'verified', 'Verified', '2024-11-26 12:53:06', '2024-11-26 12:53:06'),
('27167', 'en', 'unverified', 'Unverified', '2024-11-26 12:53:06', '2024-11-26 12:53:06'),
('27168', 'en', 'verification_status', 'Verification Status', '2024-11-26 12:53:06', '2024-11-26 12:53:06'),
('27169', 'en', 'set_bulk_commission', 'Set Bulk Commission', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27170', 'en', 'regular', 'Regular', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27171', 'en', 'set_commission', 'Set Commission', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27172', 'en', 'do_you_really_want_to_unban_this_seller', 'Do you really want to unban this seller?', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27173', 'en', 'set_seller_commission', 'Set Seller Commission', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27174', 'en', 'selle_commission', 'Selle Commission', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27175', 'en', 'commission_percentage', 'Commission Percentage', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27176', 'en', 'edit_seller_custom_followers', 'Edit Seller Custom Followers', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27177', 'en', 'custom_followers', 'Custom Followers', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27178', 'en', 'please_select_seller_first', 'Please Select Seller first.', '2024-11-26 12:53:38', '2024-11-26 12:53:38'),
('27179', 'en', 'followers', 'Followers', '2024-11-26 12:54:04', '2024-11-26 12:54:04'),
('27180', 'en', 'last_month', 'Last Month', '2024-11-26 12:54:05', '2024-11-26 12:54:05'),
('27181', 'en', 'category_wise_product_count', 'Category wise product count', '2024-11-26 12:54:05', '2024-11-26 12:54:05'),
('27182', 'en', 'this_month', 'This Month', '2024-11-26 12:54:05', '2024-11-26 12:54:05'),
('27183', 'en', 'new_order', 'New Order', '2024-11-26 12:54:05', '2024-11-26 12:54:05'),
('27184', 'en', 'cancelled', 'Cancelled', '2024-11-26 12:54:05', '2024-11-26 12:54:05'),
('27185', 'en', 'categorywise_discount', 'Category-Wise Discount', '2024-11-26 12:54:05', '2024-11-26 12:54:05'),
('27186', 'en', 'please_upgrade_your_package', 'Please upgrade your package.', '2024-11-26 12:54:43', '2024-11-26 12:54:43'),
('27187', 'en', 'you_do_not_have_enough_balance_to_send_withdraw_request', 'You do not have enough balance to send withdraw request', '2024-11-26 12:54:59', '2024-11-26 12:54:59'),
('27188', 'en', 'daterange', 'Daterange', '2024-11-26 12:55:42', '2024-11-26 12:55:42'),
('27189', 'en', 'admin_commission', 'Admin Commission', '2024-11-26 12:55:42', '2024-11-26 12:55:42'),
('27190', 'en', 'earning', 'Earning', '2024-11-26 12:55:42', '2024-11-26 12:55:42'),
('27191', 'en', 'created_at', 'Created At', '2024-11-26 12:55:42', '2024-11-26 12:55:42'),
('27192', 'en', 'select_all', 'Select All', '2024-11-26 12:56:47', '2024-11-26 12:56:47'),
('27193', 'en', 'admin_or_customer_cannot_be_a_seller', 'Admin or Customer cannot be a seller', '2024-11-26 12:58:30', '2024-11-26 12:58:30'),
('27194', 'en', 'activate_addon_link', 'Activate Addon Link', '2024-11-26 13:16:55', '2024-11-26 13:16:55'),
('27195', 'en', 'it_may_take_some_times_to_upload_so_do_not_close_the_browser_or_tab', 'It may take some times to upload so do not close the browser or tab.', '2024-11-26 13:17:14', '2024-11-26 13:17:14'),
('27196', 'en', 'if_you_have_previous_data_then_it_may_conflicts_with_some_of_your_current_data', 'If you have previous data, then it may conflicts with some of your current data.', '2024-11-26 13:17:14', '2024-11-26 13:17:14'),
('27197', 'en', 'make_sure_you_have_activated_your_system_with_the_domain_and_site_url', 'Make sure you have activated your system with the domain and site URL.', '2024-11-26 13:17:14', '2024-11-26 13:17:14'),
('27198', 'en', 'purchase_code', 'Purchase Code', '2024-11-26 13:17:14', '2024-11-26 13:17:14'),
('27199', 'en', 'domain_name', 'Domain Name', '2024-11-26 13:17:14', '2024-11-26 13:17:14'),
('27200', 'en', 'domain_name_example_abcdcom', 'Domain Name (example: abcd.com)', '2024-11-26 13:17:14', '2024-11-26 13:17:14'),
('27201', 'en', 'site_url', 'Site URL', '2024-11-26 13:17:14', '2024-11-26 13:17:14'),
('27202', 'en', 'site_url_example_httpswwwabcdcom_or_httpsabcdcom', 'Site URL (example: https://www.abcd.com or https://abcd.com)', '2024-11-26 13:17:14', '2024-11-26 13:17:14'),
('27203', 'en', 'import', 'Import', '2024-11-26 13:17:14', '2024-11-26 13:17:14'),
('27204', 'en', 'iyzico_currency_code', 'IYZICO CURRENCY CODE', '2024-11-26 16:42:32', '2024-11-26 16:42:32'),
('27205', 'en', 'aamarpay', 'aamarpay', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27206', 'en', 'authorizenet', 'authorizenet', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27207', 'en', 'merchant_login_id', 'MERCHANT_LOGIN_ID', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27208', 'en', 'merchant_transaction_key', 'MERCHANT_TRANSACTION_KEY', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27209', 'en', 'authorize_net_sandbox_mode', 'Authorize Net Sandbox Mode', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27210', 'en', 'payku', 'payku', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27211', 'en', 'payku_base_url', 'PAYKU_BASE_URL', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27212', 'en', 'payku_public_token', 'PAYKU_PUBLIC_TOKEN', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27213', 'en', 'payku_private_token', 'PAYKU_PRIVATE_TOKEN', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27214', 'en', 'mercadopago', 'mercadopago', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27215', 'en', 'mercadopago_key', 'Mercadopago Key', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27216', 'en', 'mercadopago_access', 'Mercadopago Access', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27217', 'en', 'mercadopago_currency', 'MERCADOPAGO CURRENCY', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27218', 'en', 'paymob', 'paymob', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27219', 'en', 'paymob_api_key', 'Paymob API Key', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27220', 'en', 'paymob_iframe_id', 'Paymob Iframe ID', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27221', 'en', 'paymob_integration_id', 'Paymob Integration ID', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27222', 'en', 'paymob_hmac', 'Paymob HMAC', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27223', 'en', 'tap', 'tap', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27224', 'en', 'tap_secret_key', 'Tap Secret Key', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27225', 'en', 'payment_settings_updated_successfully', 'Payment Settings updated successfully', '2024-11-26 16:42:33', '2024-11-26 16:42:33'),
('27226', 'en', 'facebook_comment_setting', 'Facebook Comment Setting', '2024-11-26 16:43:20', '2024-11-26 16:43:20'),
('27227', 'en', 'facebook_app_id', 'Facebook App ID', '2024-11-26 16:43:20', '2024-11-26 16:43:20'),
('27228', 'en', 'please_be_carefull_when_you_are_configuring_facebook_comment_for_incorrect_configuration_you_will_not_get_comment_section_on_your_userend_site', 'Please be carefull when you are configuring Facebook Comment. For incorrect configuration you will not get comment section on your user-end site.', '2024-11-26 16:43:20', '2024-11-26 16:43:20'),
('27229', 'en', 'after_then_go_to_this_url_httpsdevelopersfacebookcomapps', 'After then go to this URL https://developers.facebook.com/apps/', '2024-11-26 16:43:20', '2024-11-26 16:43:20'),
('27230', 'en', 'create_your_app', 'Create Your App', '2024-11-26 16:43:20', '2024-11-26 16:43:20'),
('27231', 'en', 'in_dashboard_page_you_will_get_your_app_id', 'In Dashboard page you will get your App ID', '2024-11-26 16:43:20', '2024-11-26 16:43:20'),
('27232', 'en', 'footer_info_widget', 'Footer Info Widget', '2024-11-27 09:53:32', '2024-11-27 09:53:32'),
('27233', 'en', 'footer_description', 'Footer description', '2024-11-27 09:53:32', '2024-11-27 09:53:32'),
('27234', 'en', 'minimum_dimensions_required_275px_width_x_44px_height', 'Minimum dimensions required: 275px width X 44px height.', '2024-11-27 09:53:32', '2024-11-27 09:53:32'),
('27235', 'en', 'download_app_link', 'Download App Link', '2024-11-27 09:53:32', '2024-11-27 09:53:32'),
('27236', 'en', 'seller_app_link', 'Seller App Link', '2024-11-27 09:53:32', '2024-11-27 09:53:32'),
('27237', 'en', 'minimum_dimensions_required_144px_width_x_20px_height', 'Minimum dimensions required: 144px width X 20px height.', '2024-11-27 09:53:32', '2024-11-27 09:53:32'),
('27238', 'en', 'follow_us', 'Follow Us', '2024-11-27 10:07:48', '2024-11-27 10:07:48'),
('27239', 'en', 'you_need_to_configure_smtp_correctly_to_enable_this_feature', 'You need to configure SMTP correctly to enable this feature.', '2024-11-27 12:12:15', '2024-11-27 12:12:15'),
('27240', 'en', 'product_query_activation', 'Product Query Activation', '2024-11-27 12:12:15', '2024-11-27 12:12:15'),
('27241', 'en', 'product_external_link_for_seller', 'Product External Link for Seller', '2024-11-27 12:12:15', '2024-11-27 12:12:15'),
('27242', 'en', 'use_floating_buttons_in_website', 'Use Floating Buttons In Website', '2024-11-27 12:12:15', '2024-11-27 12:12:15'),
('27243', 'en', 'last_viewed_products_activation', 'Last Viewed Products Activation', '2024-11-27 12:12:15', '2024-11-27 12:12:15'),
('27244', 'en', 'newsletter_activation', 'Newsletter Activation', '2024-11-27 12:12:15', '2024-11-27 12:12:15'),
('27245', 'en', 'apple_login', 'Apple login', '2024-11-27 12:12:15', '2024-11-27 12:12:15'),
('27246', 'en', 'you_need_to_configure_apple_client_correctly_to_enable_this_feature', 'You need to configure Apple Client correctly to enable this feature', '2024-11-27 12:12:15', '2024-11-27 12:12:15'),
('27247', 'en', 'import_app_translations', 'Import App Translations', '2024-11-27 12:12:39', '2024-11-27 12:12:39'),
('27248', 'en', 'english_trasnlation_file', 'English Trasnlation File', '2024-11-27 12:12:39', '2024-11-27 12:12:39'),
('27249', 'en', 'choose_app_enarb_file', 'Choose app_en.arb file', '2024-11-27 12:12:39', '2024-11-27 12:12:39'),
('27250', 'en', 'flutter_app_lang_code', 'Flutter App Lang Code', '2024-11-27 12:12:39', '2024-11-27 12:12:39'),
('27251', 'en', 'app_translation', 'App Translation', '2024-11-27 12:12:39', '2024-11-27 12:12:39'),
('27252', 'en', 'arb_file_export', 'arb File Export', '2024-11-27 12:12:39', '2024-11-27 12:12:39'),
('27253', 'en', 'system_default_currency', 'System Default Currency', '2024-11-27 12:17:32', '2024-11-27 12:17:32'),
('27254', 'en', 'set_currency_formats', 'Set Currency Formats', '2024-11-27 12:17:32', '2024-11-27 12:17:32'),
('27255', 'en', 'symbol_format', 'Symbol Format', '2024-11-27 12:17:33', '2024-11-27 12:17:33'),
('27256', 'en', 'decimal_separator', 'Decimal Separator', '2024-11-27 12:17:33', '2024-11-27 12:17:33'),
('27257', 'en', 'no_of_decimals', 'No of decimals', '2024-11-27 12:17:33', '2024-11-27 12:17:33'),
('27258', 'en', 'all_currencies', 'All Currencies', '2024-11-27 12:17:33', '2024-11-27 12:17:33'),
('27259', 'en', 'add_new_currency', 'Add New Currency', '2024-11-27 12:17:33', '2024-11-27 12:17:33'),
('27260', 'en', 'currency_name', 'Currency name', '2024-11-27 12:17:33', '2024-11-27 12:17:33'),
('27261', 'en', 'currency_symbol', 'Currency symbol', '2024-11-27 12:17:33', '2024-11-27 12:17:33'),
('27262', 'en', 'currency_code', 'Currency code', '2024-11-27 12:17:33', '2024-11-27 12:17:33'),
('27263', 'en', 'currency_status_updated_successfully', 'Currency Status updated successfully', '2024-11-27 12:17:33', '2024-11-27 12:17:33'),
('27264', 'en', 'symbol', 'Symbol', '2024-11-27 12:18:00', '2024-11-27 12:18:00'),
('27265', 'en', 'currency_updated_successfully', 'Currency updated successfully', '2024-11-27 12:19:52', '2024-11-27 12:19:52'),
('27266', 'en', 'minimum_order_amount_settings', 'Minimum Order Amount Settings', '2024-11-27 12:53:34', '2024-11-27 12:53:34'),
('27267', 'en', 'minimum_order_amount_check', 'Minimum Order Amount Check', '2024-11-27 12:53:34', '2024-11-27 12:53:34'),
('27268', 'en', 'set_minimum_order_amount', 'Set Minimum Order Amount', '2024-11-27 12:53:34', '2024-11-27 12:53:34'),
('27269', 'en', 'minimum_order_amount', 'Minimum Order Amount', '2024-11-27 12:53:34', '2024-11-27 12:53:34'),
('27270', 'en', 'backblaze_file_system_credentials', 'Backblaze File System Credentials', '2024-11-27 12:53:40', '2024-11-27 12:53:40'),
('27271', 'en', 'backblaze_access_key_id', 'BACKBLAZE_ACCESS_KEY_ID', '2024-11-27 12:53:40', '2024-11-27 12:53:40'),
('27272', 'en', 'backblaze_secret_access_key', 'BACKBLAZE_SECRET_ACCESS_KEY', '2024-11-27 12:53:40', '2024-11-27 12:53:40'),
('27273', 'en', 'backblaze_default_region', 'BACKBLAZE_DEFAULT_REGION', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27274', 'en', 'backblaze_bucket', 'BACKBLAZE_BUCKET', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27275', 'en', 'backblaze_endpoint', 'BACKBLAZE_ENDPOINT', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27276', 'en', 'backblaze_url', 'BACKBLAZE_URL', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27277', 'en', 'aws_s3_file_system_activation', 'AWS S3 File System Activation', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27278', 'en', 'backblaze_file_system_activation', 'Backblaze File System Activation', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27279', 'en', 'local_file_system_activation', 'Local File System Activation', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27280', 'en', 'cache__session_driver', 'Cache & Session Driver', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27281', 'en', 'cache_driver', 'CACHE_DRIVER', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27282', 'en', 'redis', 'redis', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27283', 'en', 'session_driver', 'SESSION_DRIVER', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27284', 'en', 'redis_configuration_if_you_use_redis_as_any_of_the_drivers', 'Redis Configuration (If you use redis as any of the drivers)', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27285', 'en', 'redis_host', 'REDIS_HOST', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27286', 'en', 'redis_password', 'REDIS_PASSWORD', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27287', 'en', 'redis_port', 'REDIS_PORT', '2024-11-27 12:53:41', '2024-11-27 12:53:41'),
('27288', 'en', 'cover_image', 'Cover Image', '2024-11-28 10:14:27', '2024-11-28 10:14:27'),
('27289', 'en', 'set_category_wise_product_discount', 'Set Category Wise Product Discount', '2024-11-28 10:14:49', '2024-11-28 10:14:49'),
('27290', 'en', 'set', 'Set', '2024-11-28 10:14:49', '2024-11-28 10:14:49'),
('27291', 'en', 'are_you_sure_you_want_to_set_this_discount', 'Are you sure you want to set this discount?', '2024-11-28 10:14:49', '2024-11-28 10:14:49'),
('27292', 'en', 'discount_can_not_be_less_than_0', 'Discount can not be less than 0', '2024-11-28 10:14:49', '2024-11-28 10:14:49'),
('27293', 'en', 'category_wise_product_discount_set_successfully', 'Category Wise Product Discount Set Successfully', '2024-11-28 10:14:49', '2024-11-28 10:14:49'),
('27294', 'en', 'we_are_under_maintenance', 'We are Under Maintenance.', '2024-11-28 10:44:38', '2024-11-28 10:44:38'),
('27295', 'en', 'we_will_be_back_soon', 'We will be back soon!', '2024-11-28 10:44:38', '2024-11-28 10:44:38'),
('27296', 'en', 'contact_us_page_information', 'Contact Us Page Information', '2025-07-21 12:26:12', '2025-07-21 12:26:12'),
('27297', 'en', 'type_here', 'Type here...', '2025-07-21 12:26:12', '2025-07-21 12:26:12'),
('27298', 'en', 'invalid_login_credentials', 'Invalid login credentials', '2025-07-21 12:41:30', '2025-07-21 12:41:30'),
('27299', 'en', 'new_page_has_been_created_successfully', 'New page has been created successfully', '2025-07-21 15:40:38', '2025-07-21 15:40:38'),
('27300', 'en', 'test', 'test', '2025-07-21 15:41:31', '2025-07-21 15:41:31'),
('27301', 'en', 'sellers_review__followers_', 'Sellers Review & Followers ', '2025-07-21 15:46:29', '2025-07-21 15:46:29'),
('27302', 'en', 'edit_custom_follower', 'Edit Custom Follower', '2025-07-21 15:46:29', '2025-07-21 15:46:29'),
('27303', 'en', 'you_need_to_configure_smtp_correctly_to_to_add_seller', 'You need to configure SMTP correctly to to add Seller.', '2025-07-21 15:48:10', '2025-07-21 15:48:10'),
('27304', 'en', 'name_is_required', 'Name is required', '2025-07-21 15:48:43', '2025-07-21 15:48:43'),
('27305', 'en', 'max_255_character', 'Max 255 Character', '2025-07-21 15:48:43', '2025-07-21 15:48:43'),
('27306', 'en', 'email_is_required', 'Email is required', '2025-07-21 15:48:43', '2025-07-21 15:48:43'),
('27307', 'en', 'email_must_be_a_valid_email_address', 'Email must be a valid email address', '2025-07-21 15:48:43', '2025-07-21 15:48:43'),
('27308', 'en', 'an_user_exists_with_this_email', 'An user exists with this email', '2025-07-21 15:48:43', '2025-07-21 15:48:43'),
('27309', 'en', 'max_200_character', 'Max 200 Character', '2025-07-21 15:48:43', '2025-07-21 15:48:43'),
('27310', 'en', 'registration_failed_please_try_again_later', 'Registration failed. Please try again later.', '2025-07-21 15:48:43', '2025-07-21 15:48:43'),
('27311', 'en', 'select_sendmail_for_mail_driver_if_you_face_any_issue_after_configuring_smtp_as_mail_driver', 'Select sendmail for Mail Driver if you face any issue after configuring smtp as Mail Driver', '2025-07-21 15:50:13', '2025-07-21 15:50:13'),
('27312', 'en', 'product_name_is_required', 'Product name is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27313', 'en', 'product_category_is_required', 'Product category is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27314', 'en', 'main_category_is_required', 'Main Category is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27315', 'en', 'main_category_must_be_within_selected_categories', 'Main Category must be within selected categories', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27316', 'en', 'product_unit_is_required', 'Product unit is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27317', 'en', 'minimum_purchase_quantity_is_required', 'Minimum purchase quantity is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27318', 'en', 'minimum_purchase_must_be_numeric', 'Minimum purchase must be numeric', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27319', 'en', 'the_unit_price_must_be_greater_than_0', 'The unit price must be greater than 0', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27320', 'en', 'unit_price_is_required', 'Unit price is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27321', 'en', 'unit_price_must_be_numeric', 'Unit price must be numeric', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27322', 'en', 'discount_is_required', 'Discount is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27323', 'en', 'discount_must_be_numeric', 'Discount must be numeric', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27324', 'en', 'discount_should_be_less_than_unit_price', 'Discount should be less than unit price', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27325', 'en', 'current_stock_is_required', 'Current stock is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27326', 'en', 'current_stock_must_be_numeric', 'Current stock must be numeric', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27327', 'en', 'starting_bid_is_required', 'Starting Bid is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27328', 'en', 'starting_bid_must_be_numeric', 'Starting Bid must be numeric', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27329', 'en', 'minimum_starting_bid_is_1', 'Minimum Starting Bid is 1', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27330', 'en', 'auction_date_range_is_required', 'Auction Date Range is required', '2025-07-21 16:37:38', '2025-07-21 16:37:38'),
('27331', 'en', 'low', 'Low', '2025-07-21 16:38:02', '2025-07-21 16:38:02'),
('27332', 'en', 'view_all', 'View All', '2025-07-21 16:38:46', '2025-07-21 16:38:46'),
('27333', 'en', 'new_products', 'New Products', '2025-07-21 16:38:46', '2025-07-21 16:38:46'),
('27334', 'en', 'reviews__ratings', 'Reviews & Ratings', '2025-07-21 17:36:37', '2025-07-21 17:36:37'),
('27335', 'en', 'out_of_50', 'out of 5.0', '2025-07-21 17:36:37', '2025-07-21 17:36:37'),
('27336', 'en', 'rate_this_product', 'Rate this Product', '2025-07-21 17:36:37', '2025-07-21 17:36:37'),
('27337', 'en', 'frequently_bought_products', 'Frequently Bought Products', '2025-07-21 17:36:37', '2025-07-21 17:36:37'),
('27338', 'en', 'refund_note', 'Refund Note', '2025-07-21 17:36:37', '2025-07-21 17:36:37'),
('27339', 'en', 'sorry_only_customers_can_give_review', 'Sorry, Only customers can give review.', '2025-07-21 17:36:37', '2025-07-21 17:36:37'),
('27340', 'en', 'sorry_there_is_no_size_guide_found_for_this_product', 'Sorry, There is no size guide found for this product.', '2025-07-21 17:36:37', '2025-07-21 17:36:37'),
('27341', 'en', 'forgot_password_page_image', 'Forgot Password Page Image', '2025-07-22 01:04:38', '2025-07-22 01:04:38'),
('27342', 'en', 'send_password_reset_code', 'Send Password Reset Code', '2025-07-22 01:04:38', '2025-07-22 01:04:38'),
('27343', 'en', 'recent_posts', 'Recent Posts', '2025-08-03 19:10:32', '2025-08-03 19:10:32'),
('27344', 'en', 'name_should_be_string_type', 'Name should be string type', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27345', 'en', 'max_255_characters', 'Max 255 characters', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27346', 'en', 'please_type_a_valid_email', 'Please type a valid email', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27347', 'en', 'email_should_be_unique', 'Email should be unique', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27348', 'en', 'password_is_required', 'Password is required', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27349', 'en', 'password_should_be_string_type', 'Password should be string type', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27350', 'en', 'min_6_characters', 'Min 6 characters', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27351', 'en', 'confirm_password_do_not_matched', 'Confirm password do not matched', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27352', 'en', 'shop_name_is_required', 'Shop name is required', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27353', 'en', 'address_is_required', 'Address is required', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27354', 'en', 'your_shop_has_been_created_successfully', 'Your Shop has been created successfully!', '2025-08-04 12:51:29', '2025-08-04 12:51:29'),
('27355', 'en', 'shop_phone', 'Shop Phone', '2025-08-04 12:51:30', '2025-08-04 12:51:30'),
('27356', 'en', 'top_banner', 'Top Banner', '2025-08-04 12:51:30', '2025-08-04 12:51:30'),
('27357', 'en', 'top_banner_link', 'Top banner Link', '2025-08-04 12:51:30', '2025-08-04 12:51:30'),
('27358', 'en', 'slider_banners', 'Slider Banners', '2025-08-04 12:51:30', '2025-08-04 12:51:30'),
('27359', 'en', 'banner_full_width_1', 'Banner Full width 1', '2025-08-04 12:51:30', '2025-08-04 12:51:30'),
('27360', 'en', 'banners_half_width', 'Banners half width', '2025-08-04 12:51:30', '2025-08-04 12:51:30'),
('27361', 'en', '2_equal_banners', '2 Equal Banners', '2025-08-04 12:51:30', '2025-08-04 12:51:30'),
('27362', 'en', 'banner_full_width_2', 'Banner Full width 2', '2025-08-04 12:51:30', '2025-08-04 12:51:30'),
('27363', 'en', 'instagram', 'Instagram', '2025-08-04 12:51:30', '2025-08-04 12:51:30'),
('27364', 'en', 'upload_product', 'Upload Product', '2025-08-04 12:51:32', '2025-08-04 12:51:32'),
('27365', 'en', 'type_city_name__enter', 'Type city name & Enter', '2025-08-07 18:52:56', '2025-08-07 18:52:56'),
('27366', 'en', 'select_state', 'Select State', '2025-08-07 18:52:56', '2025-08-07 18:52:56'),
('27367', 'en', 'state', 'State', '2025-08-07 18:52:56', '2025-08-07 18:52:56'),
('27368', 'en', 'area_wise_shipping_cost', 'Area Wise Shipping Cost', '2025-08-07 18:52:56', '2025-08-07 18:52:56'),
('27369', 'en', 'all_carriers', 'All Carriers', '2025-08-07 19:03:18', '2025-08-07 19:03:18'),
('27370', 'en', 'add_new_carrier', 'Add New Carrier', '2025-08-07 19:03:18', '2025-08-07 19:03:18'),
('27371', 'en', 'carriers', 'Carriers', '2025-08-07 19:03:18', '2025-08-07 19:03:18'),
('27372', 'en', 'transit_time', 'Transit Time', '2025-08-07 19:03:18', '2025-08-07 19:03:18'),
('27373', 'en', 'carrier_status_updated_successfully', 'Carrier Status updated successfully', '2025-08-07 19:03:18', '2025-08-07 19:03:18'),
('27374', 'en', 'carrier_status_went_wrong', 'Carrier Status went wrong', '2025-08-07 19:03:18', '2025-08-07 19:03:18'),
('27375', 'en', 'back', 'Back', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27376', 'en', 'carrier_information', 'Carrier Information', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27377', 'en', 'carrier_name', 'Carrier Name', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27378', 'en', 'billing_type', 'Billing Type', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27379', 'en', 'according_to_weight', 'According to Weight', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27380', 'en', 'according_to_price', 'According to Price', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27381', 'en', 'add_new_range', 'Add new range', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27382', 'en', 'weight_based_carrier_price_range', 'Weight based carrier price range', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27383', 'en', 'price_based_carrier_price_range', 'Price based carrier price range', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27384', 'en', 'will_be_applied_when_the_weight_is', 'Will be applied when the weight is', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27385', 'en', 'will_be_applied_when_the_price_is', 'Will be applied when the price is', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27386', 'en', 'kg', 'kg', '2025-08-07 19:03:25', '2025-08-07 19:03:25'),
('27387', 'en', 'carrier_name_is_required', 'Carrier name is required', '2025-08-07 19:08:50', '2025-08-07 19:08:50'),
('27388', 'en', 'transit_time_is_required', 'Transit time is required', '2025-08-07 19:08:50', '2025-08-07 19:08:50'),
('27389', 'en', 'delimiter1_is_required', 'Delimiter1 is required', '2025-08-07 19:08:50', '2025-08-07 19:08:50'),
('27390', 'en', 'delimiter2_is_required', 'Delimiter2 is required', '2025-08-07 19:08:50', '2025-08-07 19:08:50'),
('27391', 'en', 'carrier_price_is_required', 'Carrier price is required', '2025-08-07 19:08:50', '2025-08-07 19:08:50'),
('27392', 'en', 'zone_is_required_if_zone_is_not_created_then_create_zone_at_first', 'Zone is required. If zone is not created, then create zone at first', '2025-08-07 19:08:50', '2025-08-07 19:08:50'),
('27393', 'en', 'all_zones', 'All Zones', '2025-08-07 19:13:02', '2025-08-07 19:13:02'),
('27394', 'en', 'add_new_zone', 'Add New Zone', '2025-08-07 19:13:02', '2025-08-07 19:13:02'),
('27395', 'en', 'zones', 'Zones', '2025-08-07 19:13:02', '2025-08-07 19:13:02'),
('27396', 'en', 'zone_information', 'Zone Information', '2025-08-07 19:13:14', '2025-08-07 19:13:14'),
('27397', 'en', 'zone_name', 'Zone Name', '2025-08-07 19:13:14', '2025-08-07 19:13:14'),
('27398', 'en', 'note_description_is_required', 'Note description is required', '2025-08-07 19:15:09', '2025-08-07 19:15:09'),
('27399', 'en', 'max_900_character', 'Max 900 character', '2025-08-07 19:15:09', '2025-08-07 19:15:09'),
('27400', 'en', 'note_information', 'Note Information', '2025-08-07 19:15:10', '2025-08-07 19:15:10'),
('27401', 'en', 'note_has_been_created_successfully', 'Note has been created successfully!', '2025-08-07 19:15:56', '2025-08-07 19:15:56'),
('27402', 'en', 'all_notes', 'All Notes', '2025-08-07 19:15:57', '2025-08-07 19:15:57'),
('27403', 'en', 'seller_can_add_note', 'Seller Can Add Note', '2025-08-07 19:15:57', '2025-08-07 19:15:57'),
('27404', 'en', 'inhouse', 'In-House', '2025-08-07 19:15:57', '2025-08-07 19:15:57'),
('27405', 'en', 'seller_can_access', 'Seller Can Access', '2025-08-07 19:15:57', '2025-08-07 19:15:57'),
('27406', 'en', 'note_description', 'Note Description', '2025-08-07 19:15:57', '2025-08-07 19:15:57'),
('27407', 'en', 'admin_note_seller_access_status_update_successfully', 'Admin note seller access status update successfully', '2025-08-07 19:15:57', '2025-08-07 19:15:57'),
('27408', 'en', 'query', 'Query', '2025-08-07 19:16:53', '2025-08-07 19:16:53'),
('27409', 'en', 'reply', 'Reply', '2025-08-07 19:16:53', '2025-08-07 19:16:53'),
('27410', 'en', 'google_map_setting', 'Google Map Setting', '2025-08-07 19:19:43', '2025-08-07 19:19:43'),
('27411', 'en', 'map_api_key', 'Map API KEY', '2025-08-07 19:19:43', '2025-08-07 19:19:43'),
('27412', 'en', 'google_map_configuration_notes', 'Google Map Configuration Notes', '2025-08-07 19:19:43', '2025-08-07 19:19:43'),
('27413', 'en', 'enable_google_map_', 'Enable Google map ', '2025-08-07 19:19:43', '2025-08-07 19:19:43'),
('27414', 'en', 'set_the_google_map_api_key', 'Set the google map API key', '2025-08-07 19:19:43', '2025-08-07 19:19:43'),
('27415', 'en', 'after_then_you_will_find_the_google_map_option_to_set_default_location', 'After then you will find the google map option to set default location', '2025-08-07 19:19:43', '2025-08-07 19:19:43'),
('27416', 'en', 'default_location_setting', 'Default Location Setting', '2025-08-07 19:20:00', '2025-08-07 19:20:00'),
('27417', 'en', 'all_colors', 'All Colors', '2025-08-07 19:26:25', '2025-08-07 19:26:25'),
('27418', 'en', 'type_color_name__enter', 'Type color name & Enter', '2025-08-07 19:26:25', '2025-08-07 19:26:25'),
('27419', 'en', 'add_new_color', 'Add New Color', '2025-08-07 19:26:25', '2025-08-07 19:26:25'),
('27420', 'en', 'color_code', 'Color Code', '2025-08-07 19:26:25', '2025-08-07 19:26:25'),
('27421', 'en', 'color_filter_activation', 'Color filter activation', '2025-08-07 19:26:25', '2025-08-07 19:26:25'),
('27422', 'en', 'color_information', 'Color Information', '2025-08-07 19:27:04', '2025-08-07 19:27:04'),
('27423', 'en', 'all_size_chart', 'All Size Chart', '2025-08-07 19:28:02', '2025-08-07 19:28:02'),
('27424', 'en', 'add_new_size_chart', 'Add New Size Chart', '2025-08-07 19:28:02', '2025-08-07 19:28:02'),
('27425', 'en', 'details', 'Details', '2025-08-07 19:28:02', '2025-08-07 19:28:02'),
('27426', 'en', 'size_chart_information', 'Size Chart Information', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27427', 'en', 'chart_name', 'Chart Name', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27428', 'en', 'these_images_are_visible_in_product_size_gide_beside_size_description', 'These images are visible in product size gide beside size description.', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27429', 'en', 'size_description', 'Size Description', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27430', 'en', 'size_configuration', 'Size Configuration', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27431', 'en', 'fit_type', 'Fit Type', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27432', 'en', 'select_fit_type', 'Select Fit Type', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27433', 'en', 'slim_fit', 'Slim Fit', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27434', 'en', 'regular_fit', 'Regular Fit', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27435', 'en', 'relaxed', 'Relaxed', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27436', 'en', 'stretch_type', 'Stretch Type', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27437', 'en', 'select_stretch_type', 'Select Stretch Type', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27438', 'en', 'non', 'Non', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27439', 'en', 'slight', 'Slight', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27440', 'en', 'medium', 'Medium', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27441', 'en', 'hign', 'Hign', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27442', 'en', 'choose_measurement_points', 'Choose Measurement Points', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27443', 'en', 'size_options', 'Size Options', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27444', 'en', 'choose_size_options', 'Choose Size Options', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27445', 'en', 'measurement_type', 'Measurement Type', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27446', 'en', 'inches', 'Inches', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27447', 'en', 'centimeter', 'Centimeter', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27448', 'en', 'size_combination', 'Size Combination', '2025-08-07 19:28:08', '2025-08-07 19:28:08'),
('27449', 'en', 'member_since', 'Member Since', '2025-08-11 08:23:16', '2025-08-11 08:23:16'),
('27450', 'en', 'has_not_been_verified_yet', 'has not been verified yet.', '2025-08-11 08:23:16', '2025-08-11 08:23:16'),
('27451', 'en', 'email_or_phone_already_exists', 'Email or Phone already exists.', '2025-08-14 00:37:22', '2025-08-14 00:37:22'),
('27452', 'en', 'registration_successful', 'Registration successful.', '2025-08-14 08:30:12', '2025-08-14 08:30:12'),
('27453', 'en', 'sorry_you_need_to_buy_this_product_to_give_review', 'Sorry, You need to buy this product to give review.', '2025-08-14 08:30:14', '2025-08-14 08:30:14'),
('27454', 'en', 'last_viewed_products', 'Last Viewed Products', '2025-08-14 08:30:14', '2025-08-14 08:30:14'),
('27455', 'en', 'followed_sellers', 'Followed Sellers', '2025-08-14 08:30:15', '2025-08-14 08:30:15'),
('27456', 'en', 'delete_my_account', 'Delete My Account', '2025-08-14 08:30:15', '2025-08-14 08:30:15'),
('27457', 'en', 'sign_out', 'Sign Out', '2025-08-14 08:30:15', '2025-08-14 08:30:15'),
('27458', 'en', 'frequently_bought_together', 'Frequently Bought Together', '2025-08-14 08:30:26', '2025-08-14 08:30:26'),
('27459', 'en', 'shipping_info', 'Shipping Info', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27460', 'en', 'delivery_info', 'Delivery Info', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27461', 'en', 'any_additional_info', 'Any additional info?', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27462', 'en', 'type_your_text', 'Type your text...', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27463', 'en', 'enter_a_location', 'Enter a location', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27464', 'en', 'longitude', 'Longitude', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27465', 'en', 'latitude', 'Latitude', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27466', 'en', 'you_order_amount_is_less_then_the_minimum_order_amount', 'You order amount is less then the minimum order amount', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27467', 'en', 'please_fill_in_all_mandatory_fields', 'Please fill in all mandatory fields!', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27468', 'en', 'you_need_to_put_transaction_id', 'You need to put Transaction id', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27469', 'en', 'you_already_have_an_account_with_this_information_please_login_first', 'You already have an account with this information. Please Login first.', '2025-08-14 08:32:02', '2025-08-14 08:32:02'),
('27470', 'en', 'helpline', 'Helpline', '2025-08-14 08:41:28', '2025-08-14 08:41:28'),
('27471', 'en', 'page_has_been_updated_successfully', 'Page has been updated successfully', '2025-08-14 08:56:36', '2025-08-14 08:56:36'),
('27472', 'en', 'category_has_been_deleted_successfully', 'Category has been deleted successfully', '2025-08-21 10:18:46', '2025-08-21 10:18:46'),
('27473', 'en', 'minimum_dimensions_required_126px_width_x_100px_height', 'Minimum dimensions required: 126px width X 100px height.', '2025-08-21 10:19:24', '2025-08-21 10:19:24'),
('27474', 'en', 'cache_cleared_successfully', 'Cache cleared successfully', '2025-08-21 10:20:53', '2025-08-21 10:20:53'),
('27475', 'en', 'page_has_been_deleted_successfully', 'Page has been deleted successfully', '2025-08-21 10:22:05', '2025-08-21 10:22:05'),
('27476', 'en', '', '', '2025-08-21 10:23:45', '2025-08-21 10:23:45'),
('27477', 'en', 'homepage_settings_megamart', 'Homepage Settings (Megamart)', '2025-08-22 12:31:19', '2025-08-22 12:31:19'),
('27478', 'en', 'banner_level_4', 'Banner Level 4', '2025-08-22 12:31:19', '2025-08-22 12:31:19'),
('27479', 'en', 'banner_level_5', 'Banner Level 5', '2025-08-22 12:31:19', '2025-08-22 12:31:19'),
('27480', 'en', 'banner_level_6', 'Banner Level 6', '2025-08-22 12:31:19', '2025-08-22 12:31:19'),
('27481', 'en', 'slider_section_settings', 'Slider Section Settings', '2025-08-22 12:31:20', '2025-08-22 12:31:20'),
('27482', 'en', 'use_slider_as_full_width', 'Use Slider as full width', '2025-08-22 12:31:20', '2025-08-22 12:31:20'),
('27483', 'en', 'select_background_color_in_this_section', 'Select background color in this section', '2025-08-22 12:31:20', '2025-08-22 12:31:20'),
('27484', 'en', 'minimum_dimensions_required_315px_width_x_370px_height', 'Minimum dimensions required: 315px width X 370px height.', '2025-08-22 12:31:20', '2025-08-22 12:31:20'),
('27485', 'en', 'minimum_dimensions_required_1370px_width_x_450px_height_if_use_a_single_banner', 'Minimum dimensions required: 1370px width X 450px height (If use a single banner).', '2025-08-22 12:31:20', '2025-08-22 12:31:20'),
('27486', 'en', 'minimum_dimensions_required_432px_width_x_655px_height', 'Minimum dimensions required: 432px width X 655px height.', '2025-08-22 12:31:20', '2025-08-22 12:31:20'),
('27487', 'en', 'minimum_dimensions_required_896px_width_x_655px_height', 'Minimum dimensions required: 896px width X 655px height.', '2025-08-22 12:31:20', '2025-08-22 12:31:20'),
('27488', 'en', 'total_expenditure', 'Total Expenditure', '2025-09-03 14:30:04', '2025-09-03 14:30:04'),
('27489', 'en', 'view_order_history', 'View Order History', '2025-09-03 14:30:05', '2025-09-03 14:30:05'),
('27490', 'en', 'products_in_cart', 'Products in Cart', '2025-09-03 14:30:06', '2025-09-03 14:30:06'),
('27491', 'en', 'products_in_wishlist', 'Products in Wishlist', '2025-09-03 14:30:06', '2025-09-03 14:30:06'),
('27492', 'en', 'total_products_ordered', 'Total Products Ordered', '2025-09-03 14:30:06', '2025-09-03 14:30:06'),
('27493', 'en', 'there_isnt_anything_added_yet', 'There isn\'t anything added yet', '2025-09-03 14:30:06', '2025-09-03 14:30:06'),
('27494', 'en', 'ordering_number', 'Ordering Number', '2025-09-03 15:43:50', '2025-09-03 15:43:50'),
('27495', 'en', 'higher_number_has_high_priority', 'Higher number has high priority', '2025-09-03 15:43:50', '2025-09-03 15:43:50'),
('27496', 'en', 'minimum_dimensions_required_150px_width_x_150px_height', 'Minimum dimensions required: 150px width X 150px height.', '2025-09-03 15:43:50', '2025-09-03 15:43:50'),
('27497', 'en', 'minimum_dimensions_required_16px_width_x_16px_height', 'Minimum dimensions required: 16px width X 16px height.', '2025-09-03 15:43:50', '2025-09-03 15:43:50'),
('27498', 'en', 'minimum_dimensions_required_260px_width_x_260px_height', 'Minimum dimensions required: 260px width X 260px height.', '2025-09-03 15:43:50', '2025-09-03 15:43:50'),
('27499', 'en', 'filtering_attributes', 'Filtering Attributes', '2025-09-03 15:43:50', '2025-09-03 15:43:50'),
('27500', 'en', 'content', 'Content..', '2025-09-04 09:20:12', '2025-09-04 09:20:12'),
('27501', 'en', 'enter_name', 'Enter Name', '2025-09-04 09:20:34', '2025-09-04 09:20:34'),
('27502', 'en', 'enter_email', 'Enter Email', '2025-09-04 09:20:34', '2025-09-04 09:20:34'),
('27503', 'en', 'phone_no_optional', 'Phone no. (optional)', '2025-09-04 09:20:34', '2025-09-04 09:20:34'),
('27504', 'en', 'enter_phone', 'Enter Phone', '2025-09-04 09:20:34', '2025-09-04 09:20:34'),
('27505', 'en', 'tell_us_about_your_query', 'Tell us about your query', '2025-09-04 09:20:34', '2025-09-04 09:20:34'),
('27506', 'en', 'remove_from_wishlist', 'Remove from wishlist', '2025-09-12 22:27:43', '2025-09-12 22:27:43'),
('27507', 'en', 'please_select_cart_items_to_proceed', 'Please Select cart items to Proceed', '2025-09-12 22:29:58', '2025-09-12 22:29:58'),
('27508', 'en', 'access_denined', 'Access Denined!', '2025-09-19 01:41:28', '2025-09-19 01:41:28'),
('27509', 'en', 'you_do_not_have_the_right_permission_to_access', 'You Do not Have The Right Permission To Access.', '2025-09-19 01:41:28', '2025-09-19 01:41:28'),
('27510', 'en', 'minimum_dimensions_required_318px_width_x_340px_height', 'Minimum dimensions required: 318px width X 340px height.', '2025-09-23 12:24:15', '2025-09-23 12:24:15'),
('27511', 'en', 'emails', 'Emails', '2025-11-09 13:02:01', '2025-11-09 13:02:01'),
('27512', 'en', 'users', 'Users', '2025-11-09 13:02:01', '2025-11-09 13:02:01'),
('27513', 'en', 'newsletter_subject', 'Newsletter subject', '2025-11-09 13:02:02', '2025-11-09 13:02:02'),
('27514', 'en', 'newsletter_content', 'Newsletter content', '2025-11-09 13:02:02', '2025-11-09 13:02:02'),
('27515', 'en', 'notification_settings', 'Notification Settings', '2025-11-09 13:02:43', '2025-11-09 13:02:43'),
('27516', 'en', 'you_can_add_new_types__upload_image_for_every_type_if_you_do_not_upload_image_or_edit_images_from_default_types_then_default_image_will_be_shown', 'You can add new types & upload image for every type. If you do not upload image or edit images from default types then default image will be shown.', '2025-11-09 13:02:43', '2025-11-09 13:02:43'),
('27517', 'en', 'has_been_delivered', 'has been Delivered', '2025-11-09 13:02:43', '2025-11-09 13:02:43'),
('27518', 'en', 'only_text_', 'Only Text ', '2025-11-09 13:02:43', '2025-11-09 13:02:43'),
('27519', 'en', 'design_1', 'Design 1', '2025-11-09 13:02:43', '2025-11-09 13:02:43'),
('27520', 'en', 'design_2', 'Design 2', '2025-11-09 13:02:43', '2025-11-09 13:02:43'),
('27521', 'en', 'design_3', 'Design 3', '2025-11-09 13:02:43', '2025-11-09 13:02:43'),
('27522', 'en', 'all_notification_types', 'All Notification Types', '2025-11-09 13:03:02', '2025-11-09 13:03:02'),
('27523', 'en', 'default_notification_types_can_not_be_deleted', 'Default notification types can not be deleted.', '2025-11-09 13:03:02', '2025-11-09 13:03:02'),
('27524', 'en', 'admin', 'Admin', '2025-11-09 13:03:02', '2025-11-09 13:03:02'),
('27525', 'en', 'default_text', 'DEfault Text', '2025-11-09 13:03:02', '2025-11-09 13:03:02'),
('27526', 'en', 'add_new_notification_type', 'Add New Notification Type', '2025-11-09 13:03:03', '2025-11-09 13:03:03'),
('27527', 'en', 'notification_type', 'Notification Type', '2025-11-09 13:03:03', '2025-11-09 13:03:03'),
('27528', 'en', 'best_within_80_character', 'Best within 80 character', '2025-11-09 13:03:03', '2025-11-09 13:03:03'),
('27529', 'en', 'nb__use_character_number_only', 'N.B : Use character, number only', '2025-11-09 13:03:03', '2025-11-09 13:03:03'),
('27530', 'en', 'notification_type_status_updated_successfully', 'Notification type status updated successfully', '2025-11-09 13:03:03', '2025-11-09 13:03:03'),
('27531', 'en', 'notification_types_deleted_successfully', 'Notification types deleted successfully', '2025-11-09 13:03:03', '2025-11-09 13:03:03'),
('27532', 'en', 'carrier_wise_shipping_cost', 'Carrier Wise Shipping Cost', '2025-11-18 13:16:48', '2025-11-18 13:16:48'),
('27533', 'en', 'product_wise_shipping_cost_calculation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost', 'Product Wise Shipping Cost calculation: Shipping cost is calculate by addition of each product shipping cost', '2025-11-18 13:16:48', '2025-11-18 13:16:48'),
('27534', 'en', 'flat_rate_shipping_cost_calculation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed', 'Flat Rate Shipping Cost calculation: How many products a customer purchase, doesn\'t matter. Shipping cost is fixed', '2025-11-18 13:16:48', '2025-11-18 13:16:48'),
('27535', 'en', 'seller_wise_flat_shipping_cost_calculation_fixed_rate_for_each_seller_if_customers_purchase_2_product_from_two_seller_shipping_cost_is_calculated_by_addition_of_each_seller_flat_shipping_cost', 'Seller Wise Flat Shipping Cost calculation: Fixed rate for each seller. If customers purchase 2 product from two seller shipping cost is calculated by addition of each seller flat shipping cost', '2025-11-18 13:16:48', '2025-11-18 13:16:48'),
('27536', 'en', 'area_wise_flat_shipping_cost_calculation_fixed_rate_for_each_area_if_customers_purchase_multiple_products_from_one_seller_shipping_cost_is_calculated_by_the_customer_shipping_area_to_configure_area_wise_shipping_cost_go_to_', 'Area Wise Flat Shipping Cost calculation: Fixed rate for each area. If customers purchase multiple products from one seller shipping cost is calculated by the customer shipping area. To configure area wise shipping cost go to ', '2025-11-18 13:16:48', '2025-11-18 13:16:48'),
('27537', 'en', 'carrier_based_shipping_cost_calculation_shipping_cost_calculate_in_addition_with_carrier_in_each_carrier_you_can_set_free_shipping_cost_or_can_set_weight_range_or_price_range_shipping_cost_to_configure_carrier_based_shipping_cost_go_to_', 'Carrier Based Shipping Cost calculation: Shipping cost calculate in addition with carrier. In each carrier you can set free shipping cost or can set weight range or price range shipping cost. To configure carrier based shipping cost go to ', '2025-11-18 13:16:48', '2025-11-18 13:16:48'),
('27538', 'en', 'shipping_carriers', 'Shipping Carriers', '2025-11-18 13:16:48', '2025-11-18 13:16:48'),
('27539', 'en', 'type_country_name', 'Type country name', '2025-11-18 13:17:12', '2025-11-18 13:17:12'),
('27540', 'en', 'all_states', 'All States', '2025-11-18 13:17:26', '2025-11-18 13:17:26'),
('27541', 'en', 'states', 'States', '2025-11-18 13:17:26', '2025-11-18 13:17:26'),
('27542', 'en', 'type_state_name', 'Type state name', '2025-11-18 13:17:26', '2025-11-18 13:17:26'),
('27543', 'en', 'add_new_state', 'Add New State', '2025-11-18 13:17:26', '2025-11-18 13:17:26'),
('27544', 'en', 'note_has_been_deleted_successfully', 'Note has been deleted successfully!', '2025-11-18 15:49:27', '2025-11-18 15:49:27'),
('27545', 'en', 'send_custom_notification', 'Send Custom Notification', '2025-11-18 15:54:14', '2025-11-18 15:54:14'),
('27546', 'en', 'deselect_all', 'Deselect All', '2025-11-18 15:54:14', '2025-11-18 15:54:14'),
('27547', 'en', 'select_type', 'Select Type', '2025-11-18 15:54:14', '2025-11-18 15:54:14'),
('27548', 'en', 'select_the_type_of_the_notification', 'Select the type of the notification', '2025-11-18 15:54:14', '2025-11-18 15:54:14'),
('27549', 'en', 'write_what_your_notification_will_display', 'Write what your notification will display…', '2025-11-18 15:54:14', '2025-11-18 15:54:14'),
('27550', 'en', 'paste_your_link_here', 'Paste your link here', '2025-11-18 15:54:14', '2025-11-18 15:54:14'),
('27551', 'en', 'send_notifications', 'Send Notifications', '2025-11-18 15:54:14', '2025-11-18 15:54:14'),
('27552', 'en', 'default_system_notifications_doesnt_show_in_custom_notification_history', 'Default system notifications doesn’t show in custom notification history', '2025-11-18 15:54:22', '2025-11-18 15:54:22'),
('27553', 'en', 'date__time_', 'Date & Time ', '2025-11-18 15:54:22', '2025-11-18 15:54:22'),
('27554', 'en', 'custom_notification_deleted_successfully', 'Custom Notification Deleted successfully', '2025-11-18 15:54:22', '2025-11-18 15:54:22'),
('27555', 'en', 'file_name', 'File Name', '2025-11-18 16:07:44', '2025-11-18 16:07:44'),
('27556', 'en', 'file_type', 'File Type', '2025-11-18 16:07:44', '2025-11-18 16:07:44'),
('27557', 'en', 'file_size', 'File Size', '2025-11-18 16:07:44', '2025-11-18 16:07:44'),
('27558', 'en', 'uploaded_at', 'Uploaded At', '2025-11-18 16:07:44', '2025-11-18 16:07:44'),
('27559', 'en', 'dynamic_popups', 'Dynamic Popups', '2025-11-19 11:04:57', '2025-11-19 11:04:57'),
('27560', 'en', 'create_new_dynamic_popup', 'Create New Dynamic Popup', '2025-11-19 11:04:58', '2025-11-19 11:04:58'),
('27561', 'en', 'all_dynamic_popups', 'All Dynamic Popups', '2025-11-19 11:04:58', '2025-11-19 11:04:58'),
('27562', 'en', 'are_you_sure_you_want_to_trigger_this_popup', 'Are you sure you want to trigger this Popup?', '2025-11-19 11:04:58', '2025-11-19 11:04:58'),
('27563', 'en', 'are_you_sure_you_want_to_close_this_popup', 'Are you sure you want to close this Popup?', '2025-11-19 11:04:58', '2025-11-19 11:04:58'),
('27564', 'en', 'triggering_this_will_show_this_popup_to_all_visiting_customer_immediately', 'Triggering this will show this Popup to all visiting customer immediately.', '2025-11-19 11:04:58', '2025-11-19 11:04:58'),
('27565', 'en', 'closing_this_will_hide_this_popup_from_all_visiting_customer_immediately', 'closing this will hide this Popup from all visiting customer immediately.', '2025-11-19 11:04:58', '2025-11-19 11:04:58'),
('27566', 'en', 'trigger_this_popup', 'Trigger This Popup', '2025-11-19 11:04:58', '2025-11-19 11:04:58'),
('27567', 'en', 'hide_this_popup', 'Hide This Popup', '2025-11-19 11:04:58', '2025-11-19 11:04:58'),
('27568', 'en', 'dynamic_popup_status_updated_successfully', 'Dynamic popup status updated successfully', '2025-11-19 11:04:58', '2025-11-19 11:04:58'),
('27569', 'en', 'email_type', 'Email Type', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27570', 'en', 'customer_registration', 'Customer Registration', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27571', 'en', 'seller_registration', 'Seller Registration', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27572', 'en', 'order_placed_', 'Order Placed ', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27573', 'en', 'order_confirmed', 'Order Confirmed', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27574', 'en', 'order_picked_up', 'Order Picked Up', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27575', 'en', 'order_on_the_way', 'Order On The Way', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27576', 'en', 'order_delivered', 'Order Delivered', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27577', 'en', 'order_cancelled_', 'Order Cancelled ', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27578', 'en', 'order_paid', 'Order Paid', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27579', 'en', 'seller_payout_request', 'Seller Payout Request', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27580', 'en', 'email_template_status_updated_successfully', 'Email Template status updated successfully', '2025-11-19 11:09:09', '2025-11-19 11:09:09'),
('27581', 'en', 'choose_status', 'Choose Status', '2025-11-19 12:19:00', '2025-11-19 12:19:00'),
('27582', 'en', 'card_number', 'Card number', '2026-04-07 18:08:15', '2026-04-07 18:08:15'),
('27583', 'en', 'expiry', 'Expiry', '2026-04-07 18:08:15', '2026-04-07 18:08:15'),
('27584', 'en', 'mm__yy', 'MM / YY', '2026-04-07 18:08:15', '2026-04-07 18:08:15'),
('27585', 'en', 'cvc', 'CVC', '2026-04-07 18:08:15', '2026-04-07 18:08:15'),
('27586', 'en', 'you_had_placed_your_items_in_the_shopping_cart_try_to_order_before_the_product_quantity_runs_out', 'You had placed your items in the shopping cart. Try to order before the product quantity runs out.', '2026-05-26 12:42:14', '2026-05-26 12:42:14'),
('27587', 'en', 'all_warranties', 'All Warranties', '2026-06-19 14:57:25', '2026-06-19 14:57:25'),
('27588', 'en', 'warranties', 'Warranties', '2026-06-19 14:57:25', '2026-06-19 14:57:25'),
('27589', 'en', 'warranty_text', 'Warranty Text', '2026-06-19 14:57:25', '2026-06-19 14:57:25'),
('27590', 'en', 'add_new_warranty', 'Add New Warranty', '2026-06-19 14:57:25', '2026-06-19 14:57:25'),
('27591', 'en', '40x40', '40x40', '2026-06-19 14:57:25', '2026-06-19 14:57:25'),
('27592', 'en', 'minimum_dimensions_required_40px_width_x_40px_height', 'Minimum dimensions required: 40px width X 40px height.', '2026-06-19 14:57:25', '2026-06-19 14:57:25'),
('27593', 'en', 'new_warranty_has_been_added_successfully', 'New Warranty has been added successfully', '2026-06-19 14:57:42', '2026-06-19 14:57:42'),
('27594', 'en', 'warranty_logo', 'Warranty Logo', '2026-06-19 14:57:43', '2026-06-19 14:57:43'),
('27595', 'en', 'address_info_stored_successfully', 'Address info Stored successfully', '2026-08-31 09:25:11', '2026-08-31 09:25:11'),
('27596', 'en', 'change', 'Change', '2026-08-31 09:25:11', '2026-08-31 09:25:11'),
('27597', 'en', 'unpaid_order_payment_notification', 'Unpaid Order Payment Notification', '2026-08-31 09:26:10', '2026-08-31 09:26:10'),
('27598', 'en', 'inhouse_order', 'Inhouse Order', '2026-08-31 09:27:30', '2026-08-31 09:27:30');

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

DROP TABLE IF EXISTS `uploads`;
CREATE TABLE `uploads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `file_original_name` varchar(255) DEFAULT NULL,
  `file_name` varchar(255) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `file_size` int(11) DEFAULT NULL,
  `extension` varchar(10) DEFAULT NULL,
  `type` varchar(15) DEFAULT NULL,
  `external_link` varchar(500) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=213 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `uploads`
-- ----------------------------------------

INSERT INTO `uploads` (`id`, `file_original_name`, `file_name`, `user_id`, `file_size`, `extension`, `type`, `external_link`, `created_at`, `updated_at`, `deleted_at`) VALUES
('1', '360 smart locking system', 'uploads/all/JxWDHz5lrHDcu40TTJtDc1ur6YEZ2qyMc4UH2sL9.png', '9', '330032', 'png', 'image', NULL, '2025-07-21 16:36:25', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('2', 'WhatsApp Image 2025-07-22 at 11.09.31 AM', 'uploads/all/EE3dHjSSTfatc5rw8nxz83nmRPjgRrTDBcVeHzZE.jpeg', '9', '65667', 'jpeg', 'image', NULL, '2025-07-22 11:11:19', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('3', 'WhatsApp Image 2025-07-22 at 6.39.00 PM (3)', 'uploads/all/msUmDp9N1pp9BRIMPC1pl8fKXhbWD78bVHrp87SI.jpeg', '9', '26785', 'jpeg', 'image', NULL, '2025-07-22 19:28:26', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('4', 'WhatsApp Image 2025-07-22 at 6.39.00 PM (1)', 'uploads/all/k3QGvKzp2o3x4Lr7irlNT9mrqEzRDt7q3krc39vO.jpeg', '9', '86959', 'jpeg', 'image', NULL, '2025-07-22 19:28:26', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('5', 'WhatsApp Image 2025-07-22 at 6.39.01 PM (1)', 'uploads/all/Tz2CW8BHND3PRvL46Cp8pbvEHsEptFfzLuPd9pn8.jpeg', '9', '43228', 'jpeg', 'image', NULL, '2025-07-22 19:28:26', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('6', 'WhatsApp Image 2025-07-22 at 6.38.59 PM', 'uploads/all/wPebidZ4fjeiSViULIDTmWHSBu4nZJ4Ph1ghpoFM.jpeg', '9', '98197', 'jpeg', 'image', NULL, '2025-07-22 19:28:26', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('7', 'WhatsApp Image 2025-07-22 at 6.39.01 PM (2)', 'uploads/all/qFGsFmBc3RNDbSQCApnYINc9anaj3h5qnW7g9sLd.jpeg', '9', '79105', 'jpeg', 'image', NULL, '2025-07-22 19:28:26', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('8', 'WhatsApp Image 2025-07-22 at 6.39.01 PM', 'uploads/all/REAIH8mwitLitdPob8Uvm9n2dZYMOZnPeV4gW2R3.jpeg', '9', '184101', 'jpeg', 'image', NULL, '2025-07-22 19:28:26', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('9', 'WhatsApp Image 2025-07-22 at 6.39.00 PM (2)', 'uploads/all/KTrJrxI10Fk1xgqwwWj2TuLrc6fL1YMwRni7uLXr.jpeg', '9', '256999', 'jpeg', 'image', NULL, '2025-07-22 19:28:27', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('10', 'WhatsApp Image 2025-07-22 at 6.39.00 PM', 'uploads/all/gu2EsxpEdsGxGlNL51rbMbBJYoblFY7lvSCnZrGj.jpeg', '9', '86959', 'jpeg', 'image', NULL, '2025-07-22 19:28:36', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('11', 'WhatsApp Image 2025-07-22 at 11.09.31 AM', 'uploads/all/yBAdrHWa7ZzX7YIbljz9PSOUYAGTtwfUL7aZpbZx.jpeg', '9', '65667', 'jpeg', 'image', NULL, '2025-07-22 19:28:37', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('12', 'logo', 'uploads/all/Fm0n5XopCzrjiBW5x97KSd3NwCZEw3l91WE7IfBn.pdf', '9', '397730', 'pdf', 'document', NULL, '2025-08-07 18:38:30', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('13', 'Screenshot 2025-08-07 184236', 'uploads/all/icoTCgZWE2PU1KgBlcKdluZCDWraHYoCy6aI3Uz7.png', '9', '23016', 'png', 'image', NULL, '2025-08-07 18:43:06', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('14', 'WhatsApp Image 2025-08-05 at 10.25.51 AM (1)', 'uploads/all/SWZlp4zlnNgCXAFt4U3wNQPwcxIpR6SxyQhhiS63.jpeg', '9', '141227', 'jpeg', 'image', NULL, '2025-08-07 19:06:45', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('15', 'logo', 'uploads/all/FebaB2b3td3CHFqFE1OyufDVkg2rHNQgLv73k7et.png', '9', '12338', 'png', 'image', NULL, '2025-08-07 19:07:10', '2025-08-21 10:16:11', '2025-08-21 10:16:11'),
('16', 'Screenshot 2025-08-07 184236', 'uploads/all/ogb92rYExrrRcO2Pmw1bL17OHDxe6AMlPBbcKozB.png', '9', '23016', 'png', 'image', NULL, '2025-08-22 11:46:17', '2025-08-22 11:46:17', NULL),
('17', 'logo', 'uploads/all/UX44jHt6pBwTSJ9I7lJyjkPSvIqAIIthiGmqPpnY.png', '9', '10216', 'png', 'image', NULL, '2025-08-22 12:33:01', '2025-08-22 12:33:01', NULL),
('18', 'UX44jHt6pBwTSJ9I7lJyjkPSvIqAIIthiGmqPpnY-min', 'uploads/all/5wARLWfsphOhZVORM6BouRIMJV3JHDbemDMquQ7Y.png', '9', '10324', 'png', 'image', NULL, '2025-08-31 08:08:50', '2025-08-31 08:08:50', NULL),
('19', 'UX44jHt6pBwTSJ9I7lJyjkPSvIqAIIthiGmqPpnY-min', 'uploads/all/FYj4uzh8g5m4Nyu1wGDEqrpfDejNnamLwXKdvoqA.png', '9', '10324', 'png', 'image', NULL, '2025-08-31 08:09:40', '2025-08-31 08:09:40', NULL),
('20', 'LOGO 5050', 'uploads/all/pHpcImyCRsgEonO0x9tvRkxkIrxbgbZZySrwsZAJ.png', '9', '9255', 'png', 'image', NULL, '2025-08-31 08:13:15', '2025-08-31 08:13:15', NULL),
('21', 'LOGO2002', 'uploads/all/2Xz8XKv37RJaebZuY2M8BVSQiXw0XaUtn3imZ2DC.png', '9', '183', 'png', 'image', NULL, '2025-08-31 08:28:01', '2025-08-31 08:28:01', NULL),
('22', 'Screenshot (24)', 'uploads/all/7kxqNrymLgPIzcvBlbjI2YqrXrtdecfttktIKRFy.png', '9', '22160', 'png', 'image', NULL, '2025-08-31 09:00:40', '2025-08-31 09:00:40', NULL),
('23', 'IMG_20250903_141635', 'uploads/all/W9aw3E9wobJLDpf8H9UPNs0MVbgiYhw2ghhyf9Qa.jpg', '9', '268897', 'jpg', 'image', NULL, '2025-09-03 15:28:40', '2025-09-03 15:28:40', NULL),
('24', 'IMG_20250903_141310', 'uploads/all/IFll8CyrxvNwQFWPB9GZkgQdNf6WXqZgzXWKwPAG.jpg', '9', '128681', 'jpg', 'image', NULL, '2025-09-03 15:56:32', '2025-09-03 15:56:32', NULL),
('25', 'IMG_20250903_141356', 'uploads/all/2rKLOQmMXEyGQmG4UEQTBJ2jHEHhlvEy5X14Q5J0.jpg', '9', '134864', 'jpg', 'image', NULL, '2025-09-03 15:56:33', '2025-09-03 15:56:33', NULL),
('26', 'IMG_20250903_141046', 'uploads/all/6RLBTwGPrLK2Zz6r9EBb00jkB4dPdtqiKELIeAYq.jpg', '9', '145396', 'jpg', 'image', NULL, '2025-09-03 15:56:33', '2025-09-03 15:56:33', NULL),
('27', 'IMG_20250903_140822', 'uploads/all/g6Jq5jPdYWW0h6AtZwIOuDGgDL35dBDIWNtdmNzB.jpg', '9', '148964', 'jpg', 'image', NULL, '2025-09-03 15:56:34', '2025-09-03 15:56:34', NULL),
('28', 'IMG_20250903_141312', 'uploads/all/doT0Etl4a3PahEDI4Qr89fuOSXmAAV9Fm0EKsHBw.jpg', '9', '146100', 'jpg', 'image', NULL, '2025-09-03 15:56:34', '2025-09-03 15:56:34', NULL),
('29', 'IMG_20250903_141019', 'uploads/all/Ooyn7ecAiE0dz46Pf1ghNV0LklMMPNvBY9q6rFhq.jpg', '9', '158344', 'jpg', 'image', NULL, '2025-09-03 15:56:34', '2025-09-03 15:56:34', NULL),
('30', 'IMG_20250903_141148', 'uploads/all/HNzUOWP0bHnrqUzs70qAboiPpZbW0naMwXSwK4kW.jpg', '9', '152827', 'jpg', 'image', NULL, '2025-09-03 15:56:34', '2025-09-03 15:56:34', NULL),
('31', 'IMG_20250903_141445', 'uploads/all/iolt3N9O0Q9HPyMeUVmWfPot8eiNy9u7Nb58NvW4.jpg', '9', '162007', 'jpg', 'image', NULL, '2025-09-03 15:56:35', '2025-09-03 15:56:35', NULL),
('32', 'IMG_20250903_140806', 'uploads/all/VhzJWdVjNepU7uBxcsRa7jZjhOBelnmHeiuYoPUi.jpg', '9', '178749', 'jpg', 'image', NULL, '2025-09-03 15:56:35', '2025-09-03 15:56:35', NULL),
('33', 'IMG_20250903_141154', 'uploads/all/wmdDyhJIDvGdGFsp5HJjjr7fZX4dk49irfS5VF9Q.jpg', '9', '191720', 'jpg', 'image', NULL, '2025-09-03 15:56:36', '2025-09-03 15:56:36', NULL),
('34', 'IMG_20250903_140152', 'uploads/all/czpNh7Ri48oUnR91D3eCdzJ6UxYXgfhMY5aH6OD9.jpg', '9', '199272', 'jpg', 'image', NULL, '2025-09-03 15:56:36', '2025-09-03 15:56:36', NULL),
('35', 'IMG_20250903_141635', 'uploads/all/RVjdQZbIMJFQuI4AKncLcBkXlMWhj9lGaeIEB7Tn.jpg', '9', '270107', 'jpg', 'image', NULL, '2025-09-03 15:56:39', '2025-09-03 15:56:39', NULL),
('36', 'IMG_20250903_140233', 'uploads/all/TyVz43oG13LaWGftPSvd4uVpV3HCkmweqY49SQO8.jpg', '9', '298148', 'jpg', 'image', NULL, '2025-09-03 15:56:40', '2025-09-03 15:56:40', NULL),
('37', 'IMG_20250903_141236', 'uploads/all/R4fHbh6o7EmoQ56jIY035gg3mkZOFhxT6zdcZ37Q.jpg', '9', '306499', 'jpg', 'image', NULL, '2025-09-03 15:56:41', '2025-09-03 15:56:41', NULL),
('38', 'IMG_20250903_140715', 'uploads/all/ThwVhez2UBSHABdjDe88awjGxfvPlwwSTvRkHvDM.jpg', '9', '296709', 'jpg', 'image', NULL, '2025-09-03 15:56:41', '2025-09-03 15:56:41', NULL),
('39', 'IMG_20250903_140607', 'uploads/all/goGwg4iX3ldFLtf5YcG3hfuyPOEGIAoYrPvjJEzG.jpg', '9', '294081', 'jpg', 'image', NULL, '2025-09-03 15:56:41', '2025-09-03 15:56:41', NULL),
('40', 'IMG_20250903_140730', 'uploads/all/VknMOHUtN1S56x4rtS1E0Z9EzLoPsSSmPNYSG5X7.jpg', '9', '313134', 'jpg', 'image', NULL, '2025-09-03 15:56:41', '2025-09-03 15:56:41', NULL),
('41', 'IMG_20250903_141238', 'uploads/all/PWq2149r2lhcRfWRuqMaOvL1fbAVeu3CxJTmBlDZ.jpg', '9', '327969', 'jpg', 'image', NULL, '2025-09-03 15:56:41', '2025-09-03 15:56:41', NULL),
('42', 'IMG_20250903_140116', 'uploads/all/4eHSyGNyQQON0Yzl3mkLAD8g03CwyZMDwQrDw8m3.jpg', '9', '339259', 'jpg', 'image', NULL, '2025-09-03 15:56:42', '2025-09-03 15:56:42', NULL),
('43', 'IMG_20250903_135945', 'uploads/all/nfOuJQkA8AWmVuhNHBbXRZfXZWBjS8zKd0G4EWjW.jpg', '9', '394135', 'jpg', 'image', NULL, '2025-09-03 15:56:43', '2025-09-03 15:56:43', NULL),
('44', 'IMG_20250903_140504', 'uploads/all/KWZ3E4GMXoGXb2YdIl3R8vS9cgHRAopCdSiw72aa.jpg', '9', '369504', 'jpg', 'image', NULL, '2025-09-03 15:56:43', '2025-09-03 15:56:43', NULL),
('45', 'IMG_20250903_140547', 'uploads/all/szv3aoNrOmggglwBEEqMQmrzzdKIDgZ9EsTAPMwn.jpg', '9', '381213', 'jpg', 'image', NULL, '2025-09-03 15:56:43', '2025-09-03 15:56:43', NULL),
('46', 'IMG_20250903_140450', 'uploads/all/e0QNSuE1n1rvJH9iDiGnOiaKXM2C4c9YjvExps0w.jpg', '9', '391890', 'jpg', 'image', NULL, '2025-09-03 15:56:43', '2025-09-03 15:56:43', NULL),
('47', 'IMG_20250903_140125', 'uploads/all/8o8gCMQ311OWk67wOwbCNRWOkfidWkz0WLfPw3hD.jpg', '9', '374628', 'jpg', 'image', NULL, '2025-09-03 15:56:43', '2025-09-03 15:56:43', NULL),
('48', 'IMG_20250903_140431', 'uploads/all/pbUaP7aapK9qetILtrsbSycFbg4tQUHFsdKsIQ2J.jpg', '9', '396723', 'jpg', 'image', NULL, '2025-09-03 15:56:43', '2025-09-03 15:56:43', NULL),
('49', 'IMG_20250903_135854', 'uploads/all/QyaRxVrHPHH40ZJq8knIDOFQSEXAtt91kDHFERTk.jpg', '9', '464803', 'jpg', 'image', NULL, '2025-09-03 15:56:43', '2025-09-03 15:56:43', NULL),
('50', 'IMG_20250903_141521', 'uploads/all/g7zmk0hv4z10Bxiefjn6YrlZdj8HbNuI7Snk0VbO.jpg', '9', '451348', 'jpg', 'image', NULL, '2025-09-03 15:56:43', '2025-09-03 15:56:43', NULL),
('51', 'IMG_20250903_141506', 'uploads/all/olDLPlaHad0OFhTFTcLKPHOuqCGTDWWtnXQi4bmK.jpg', '9', '505538', 'jpg', 'image', NULL, '2025-09-03 15:56:44', '2025-09-03 15:56:44', NULL),
('52', 'IMG_20250903_140822', 'uploads/all/5m2gyaueJpeVw8hw1vee2o2qzXvJYLyjC3Voikzw.jpg', '9', '62751', 'jpg', 'image', NULL, '2025-09-03 19:45:05', '2025-09-03 19:45:05', NULL),
('53', 'IMG_20250903_141310', 'uploads/all/toS2tuxybuGAxEpTrfPZTqARPDix78UjNWqHxt3s.jpg', '9', '44501', 'jpg', 'image', NULL, '2025-09-03 19:45:05', '2025-09-03 19:45:05', NULL),
('54', 'IMG_20250903_141445', 'uploads/all/F4hcB6M1p8ZSIOTDwu9xPfcoRoy7OUHRXHT1ZocG.jpg', '9', '26154', 'jpg', 'image', NULL, '2025-09-03 19:45:05', '2025-09-03 19:45:05', NULL),
('55', 'IMG_20250903_141046', 'uploads/all/GamSzn2Q7MkaZrcCECaMIQ8Tiru2S8litIgsQpKa.jpg', '9', '61095', 'jpg', 'image', NULL, '2025-09-03 19:45:07', '2025-09-03 19:45:07', NULL),
('56', 'IMG_20250903_141236', 'uploads/all/bYyjhJsX1egcNudAAewzZFB8LgzqdDsCxPLjLmie.jpg', '9', '125775', 'jpg', 'image', NULL, '2025-09-03 19:45:07', '2025-09-03 19:45:07', NULL),
('57', 'IMG_20250903_141019', 'uploads/all/SOBg5eqIfRTEbPr6RKuPwtkoeGwFiEbOrMHg4o8v.jpg', '9', '59809', 'jpg', 'image', NULL, '2025-09-03 19:45:08', '2025-09-03 19:45:08', NULL),
('58', 'IMG_20250903_141312', 'uploads/all/Q7hem6IfSQDrDistKYnKVcrSF30Fds3e8bGsubPa.jpg', '9', '63092', 'jpg', 'image', NULL, '2025-09-03 19:45:08', '2025-09-03 19:45:08', NULL),
('59', 'IMG_20250903_141154', 'uploads/all/BePqvICe8OR90Ze9Yb36Gndyse94FfYdc5qkoTH7.jpg', '9', '71898', 'jpg', 'image', NULL, '2025-09-03 19:45:08', '2025-09-03 19:45:08', NULL),
('60', 'IMG_20250903_141356', 'uploads/all/8fnl4i4SQoUCwQcNYwuvrOm5Tjk701wa5TidaI3i.jpg', '9', '47142', 'jpg', 'image', NULL, '2025-09-03 19:45:08', '2025-09-03 19:45:08', NULL),
('61', 'IMG_20250903_141635', 'uploads/all/71I8hScXesspLdZsaXNZ2w8bbXOzVQFJ8kIaWgYA.jpg', '9', '226717', 'jpg', 'image', NULL, '2025-09-03 19:45:09', '2025-09-03 19:45:09', NULL),
('62', 'IMG_20250903_140715', 'uploads/all/f9HKJ6w9jnoMDDcPv9FXGTtdjhI4zbs21z6IJcIc.jpg', '9', '222289', 'jpg', 'image', NULL, '2025-09-03 19:45:09', '2025-09-03 19:45:09', NULL),
('63', 'IMG_20250903_140806', 'uploads/all/fj0ecTHcptHD7MoLEhbOSWVMRArvmmIRxhoPw2OS.jpg', '9', '84744', 'jpg', 'image', NULL, '2025-09-03 19:45:09', '2025-09-03 19:45:09', NULL),
('64', 'IMG_20250903_141148', 'uploads/all/gJdheiriRkKUfiQ0Bz1oHtNyvSZBqqdncjHLW1RC.jpg', '9', '86033', 'jpg', 'image', NULL, '2025-09-03 19:45:09', '2025-09-03 19:45:09', NULL),
('65', 'IMG_20250903_140607', 'uploads/all/LChyNZmx1Sj43Zq9KZfgvTZv1o0nl7wlmCt73Xtr.jpg', '9', '145022', 'jpg', 'image', NULL, '2025-09-03 19:45:09', '2025-09-03 19:45:09', NULL),
('66', 'IMG_20250903_141238', 'uploads/all/OZ4XERYXODNjww8eUO84jg5zk5qDierRMT8Lxk3g.jpg', '9', '86506', 'jpg', 'image', NULL, '2025-09-03 19:45:09', '2025-09-03 19:45:09', NULL),
('67', 'IMG_20250903_141506', 'uploads/all/uRugixlYhShkPrU6LoInkkmEv9BrSPhabR7BaapM.jpg', '9', '371057', 'jpg', 'image', NULL, '2025-09-03 19:45:09', '2025-09-03 19:45:09', NULL),
('68', 'IMG_20250903_140730', 'uploads/all/o7uvMteqptbPeIrqnHO6Khel28rhp3KSlw2zPBFL.jpg', '9', '253841', 'jpg', 'image', NULL, '2025-09-03 19:45:10', '2025-09-03 19:45:10', NULL),
('69', 'IMG_20250903_141521', 'uploads/all/6npxc0Q9w5jzmsddS3vbJefwaSjKrVlVzXYvBPSH.jpg', '9', '271668', 'jpg', 'image', NULL, '2025-09-03 19:45:10', '2025-09-03 19:45:10', NULL),
('70', 'IMG_20250903_140547', 'uploads/all/grfxkvWHZrhtlMBUiWwT8J3xc81y357jXxzjVtdb.jpg', '9', '400849', 'jpg', 'image', NULL, '2025-09-03 19:45:10', '2025-09-03 19:45:10', NULL),
('71', 'IMG_20250903_135854', 'uploads/all/sULcDgoIi7UQP1jrJJwXnLLlgU8E1TDVUilx5BPQ.jpg', '9', '386182', 'jpg', 'image', NULL, '2025-09-03 19:48:39', '2025-09-03 19:48:39', NULL),
('72', 'IMG_20250903_140822', 'uploads/all/ebGs50tsHRkrlqJLv0UpkCZNgehVCqpdVxxYBj0A.jpg', '9', '51661', 'jpg', 'image', NULL, '2025-09-03 19:52:11', '2025-09-03 19:52:11', NULL),
('73', 'IMG_20250903_140806', 'uploads/all/5aevT3G3Wgk3iGPXCUSI67fsY3cgDba9V89AUocN.jpg', '9', '66769', 'jpg', 'image', NULL, '2025-09-03 19:52:11', '2025-09-03 19:52:11', NULL),
('74', 'IMG_20250903_140822', 'uploads/all/WYXIgNC3u1eKzc4tnI7kkIlpSziuO8u7W1lmiPAN.jpg', '9', '66100', 'jpg', 'image', NULL, '2025-09-03 19:57:17', '2025-09-03 19:57:17', NULL),
('75', 'IMG_20250903_140806', 'uploads/all/2XXaISt9Q2ALNRLO8E68eOLmZBlnXSJ7AriKsBKH.jpg', '9', '87163', 'jpg', 'image', NULL, '2025-09-03 19:57:17', '2025-09-03 19:57:17', NULL),
('76', 'IMG_20250903_140822', 'uploads/all/7U8wPfWE2LLoege9lip9fVvWRUq9btk2VQWFU4Xr.jpg', '9', '64017', 'jpg', 'image', NULL, '2025-09-03 20:02:02', '2025-09-03 20:02:02', NULL),
('77', 'IMG_20250903_140806', 'uploads/all/4ekj6mIJQUxkgnrsAy0Ys15WDSWL5ZxHmxXFwFJe.jpg', '9', '87156', 'jpg', 'image', NULL, '2025-09-03 20:02:03', '2025-09-03 20:02:03', NULL),
('78', 'IMG_20250903_140607', 'uploads/all/tzfkqPtoUbMjzUvmMU4LF4GrlmlYTkwyLsqskhSK.jpg', '9', '144354', 'jpg', 'image', NULL, '2025-09-03 20:04:40', '2025-09-03 20:04:40', NULL),
('79', 'IMG_20250903_140547', 'uploads/all/HZUfuBg63aUvd8ynRtAMA6nhE5ZLXAkcJdfsnimP.jpg', '9', '399824', 'jpg', 'image', NULL, '2025-09-03 20:04:40', '2025-09-03 20:04:40', NULL),
('80', 'IMG_20250903_141635', 'uploads/all/41YQbPLwVABcc8njXQVDckaX2a0csgRylS05niDj.jpg', '9', '228247', 'jpg', 'image', NULL, '2025-09-03 20:06:05', '2025-09-03 20:06:05', NULL),
('81', 'IMG_20250903_135945', 'uploads/all/aPWNcVhNM5jYwhDN7TL6ImoqGK52c7EO0gdLc35O.jpg', '9', '373409', 'jpg', 'image', NULL, '2025-09-03 20:14:59', '2025-09-03 20:14:59', NULL),
('82', 'IMG_20250903_135854', 'uploads/all/quRAj5UoiTLdTNIicuMw2AHZ7X46rNFqDB0whHT8.jpg', '9', '385631', 'jpg', 'image', NULL, '2025-09-03 20:14:59', '2025-09-03 20:14:59', NULL),
('83', 'IMG_20250903_140152', 'uploads/all/cZl45iKvYlLGWMxpiMibjmlTBZUCGeNZh7eA1TLu.jpg', '9', '210792', 'jpg', 'image', NULL, '2025-09-03 20:22:08', '2025-09-03 20:22:08', NULL),
('84', 'IMG_20250903_140233', 'uploads/all/X0bjK7d11Mv1xwqlrCcumSRJUnMkCIni2lpHpDUw.jpg', '9', '191491', 'jpg', 'image', NULL, '2025-09-03 20:22:08', '2025-09-03 20:22:08', NULL),
('85', 'IMG_20250903_140715', 'uploads/all/TTlDwImn2DrkxwLe2WUReoxaJTtSCPJXI9VSqIWw.jpg', '9', '224634', 'jpg', 'image', NULL, '2025-09-03 20:30:43', '2025-09-03 20:30:43', NULL),
('86', 'IMG_20250903_140730', 'uploads/all/HC9u4v2uS9Q3qq3xQ5Uq0eROdbCQerGc4O7ijurF.jpg', '9', '255629', 'jpg', 'image', NULL, '2025-09-03 20:30:43', '2025-09-03 20:30:43', NULL),
('87', 'IMG_20250903_141019', 'uploads/all/XCHjlDnQBEasEMwZqQqt9sGBetP8HROBzWkDiIFD.jpg', '9', '61877', 'jpg', 'image', NULL, '2025-09-03 20:38:18', '2025-09-03 20:38:18', NULL),
('88', 'IMG_20250903_141046', 'uploads/all/H1Wizsh7gWFS4pwYctbJ39W2H2k85cYVY7oUKq72.jpg', '9', '61131', 'jpg', 'image', NULL, '2025-09-03 20:38:19', '2025-09-03 20:38:19', NULL),
('89', 'IMG_20250903_141238', 'uploads/all/bMj7lQgu4vWjrpUfuALjwdX5kVpR2U6rOGUkMySd.jpg', '9', '86691', 'jpg', 'image', NULL, '2025-09-03 20:44:27', '2025-09-03 20:44:27', NULL),
('90', 'IMG_20250903_141236', 'uploads/all/5qgY1yP8AJduq4jWnnc3fZgQMFwJ2sxNbRuSiJ67.jpg', '9', '127181', 'jpg', 'image', NULL, '2025-09-03 20:44:27', '2025-09-03 20:44:27', NULL),
('91', 'IMG_20250903_140450', 'uploads/all/pDQnn26ug34YCVT7o4XEMwgr3aGrjjRXj0hULoC0.jpg', '9', '343664', 'jpg', 'image', NULL, '2025-09-03 20:53:45', '2025-09-03 20:53:45', NULL),
('92', 'IMG_20250903_140431', 'uploads/all/lx1Hm9cScbxw6UKsaBEnkwAptqCyb1GbX5zKz2x1.jpg', '9', '365536', 'jpg', 'image', NULL, '2025-09-03 20:53:45', '2025-09-03 20:53:45', NULL),
('93', 'IMG_20250903_140504', 'uploads/all/90LWfoaHKGYZ2Y64zGeQmOPqxfaDn91QkYw0pyAb.jpg', '9', '336493', 'jpg', 'image', NULL, '2025-09-03 20:53:45', '2025-09-03 20:53:45', NULL),
('94', 'IMG_20250903_141154', 'uploads/all/2aQ5W2sIgahrkEBoktonKO9tYeNx4YnigXvJ4X45.jpg', '9', '75263', 'jpg', 'image', NULL, '2025-09-03 21:05:04', '2025-09-03 21:05:04', NULL),
('95', 'IMG_20250903_141148', 'uploads/all/cSxbKTNjkBcUHgiJ3Xy6zwDUWR6nsWeVDEAhe55n.jpg', '9', '88070', 'jpg', 'image', NULL, '2025-09-03 21:05:04', '2025-09-03 21:05:04', NULL),
('96', 'Screenshot (24)', 'uploads/all/LdoBEwU3uZsHoef5udEHzmBswU0xRFGvBeWFjDVb.png', '9', '27272', 'png', 'image', NULL, '2025-09-06 09:04:02', '2025-09-06 09:04:02', NULL),
('97', 'Screenshot (24)', 'uploads/all/MVqWonpDcchLGROeqTvFJPDaP51glBpeaazVPYby.png', '9', '27272', 'png', 'image', NULL, '2025-09-06 09:08:58', '2025-09-06 09:08:58', NULL),
('98', 'Screenshot 2025-08-07 184236', 'uploads/all/jcJhmsDckGMAAfnjbfAFihrr1wNg82nE1VWLp5RY.png', '9', '26769', 'png', 'image', NULL, '2025-09-06 09:32:57', '2025-09-06 09:32:57', NULL),
('99', 'banner 01', 'uploads/all/xp86Lh3bXdLtHV569l87YL8ZbG8QaZfNvrl1RQKn.jpg', '9', '123759', 'jpg', 'image', NULL, '2025-09-09 19:49:43', '2025-09-09 19:49:43', NULL),
('100', 'banner 01', 'uploads/all/zERoYwWtYlLvekABfG2Tj3dVAsI86cDVJb1kilJ8.jpg', '9', '123759', 'jpg', 'image', NULL, '2025-09-09 19:50:42', '2025-09-09 19:50:42', NULL),
('101', 'Banner 02', 'uploads/all/Uoq6icX8LzU9DFsIkPzSZxs3ECfL8fZBkb3tscSR.jpg', '9', '171113', 'jpg', 'image', NULL, '2025-09-09 19:54:47', '2025-09-09 21:19:05', '2025-09-09 21:19:05'),
('102', 'Banner 03', 'uploads/all/L8tOfOFAja5vQNBmCyczFkAX1dvTQVfcYzsycqgU.png', '9', '1464235', 'png', 'image', NULL, '2025-09-09 20:15:16', '2025-09-09 21:19:18', '2025-09-09 21:19:18'),
('103', 'banner 04', 'uploads/all/Svucbt1wcyNRpjYRFmMeLAc2iXbPHCTI4wM235Ob.png', '9', '1456742', 'png', 'image', NULL, '2025-09-09 20:31:23', '2025-09-09 21:18:58', '2025-09-09 21:18:58'),
('104', 'banner 04', 'uploads/all/E7AkmGiDeNUbkQoCdbKrptamzsHcJ6UJvsSkrRKi.png', '9', '1451436', 'png', 'image', NULL, '2025-09-09 20:34:23', '2025-09-09 20:34:23', NULL),
('105', 'banner 04', 'uploads/all/AAVHEtzDHmY6mAVy6WgG9SsW1V1yb59RYQrkhDCO.png', '9', '1450966', 'png', 'image', NULL, '2025-09-09 20:43:47', '2025-09-09 21:18:31', '2025-09-09 21:18:31'),
('106', 'Banner 03', 'uploads/all/xvkPcBmn27DSvT9fCntO1SOeOpz2CquGtPOOB4Tv.png', '9', '1529889', 'png', 'image', NULL, '2025-09-09 20:43:47', '2025-09-09 20:43:47', NULL),
('107', 'icon white', 'uploads/all/22msVu9gs5BLEcMGycTIgP5CsiQ4PswcxKTny24w.png', '9', '731', 'png', 'image', NULL, '2025-09-09 20:58:21', '2025-09-09 21:18:42', '2025-09-09 21:18:42'),
('108', 'icon black', 'uploads/all/BJRe8K2RQMY2zwg4rc4mrtmCBaunbPcmCYu088RH.png', '9', '844', 'png', 'image', NULL, '2025-09-09 20:59:13', '2025-09-09 20:59:13', NULL),
('109', 'icon white', 'uploads/all/5CXfiTydrzyvEb9LrnYK52M1DkO9roP6AH5JmKBr.png', '9', '3264', 'png', 'image', NULL, '2025-09-09 21:07:34', '2025-09-09 21:17:36', '2025-09-09 21:17:36'),
('110', 'icon white', 'uploads/all/wKJwVvdTpwzRTXDN65ES6jHdEl1jfK3yEZ6GXISl.png', '9', '2190', 'png', 'image', NULL, '2025-09-09 21:08:14', '2025-09-09 21:08:14', NULL),
('111', 'icon black', 'uploads/all/GXuEnYqrMXYtTkFdEFPnJDs9qy83TA47ymlKDVCH.png', '9', '17655', 'png', 'image', NULL, '2025-09-09 21:15:46', '2025-09-09 21:15:46', NULL),
('112', 'banner 04', 'uploads/all/2cGPpEhzAnbbJL2syUDOS0ZHh3gZIvnREJeDRisK.png', '9', '1447600', 'png', 'image', NULL, '2025-09-09 21:24:37', '2025-09-09 21:24:37', NULL),
('113', '51txAetTHfL._UF1000,1000_QL80_', 'uploads/all/vA6PHdMg1Mf97CZt2qZwqeUC9kruhlwGKTjV96xU.jpg', '9', '54969', 'jpg', 'image', NULL, '2025-09-10 02:03:22', '2025-09-10 02:03:22', NULL),
('114', '01028-720x720', 'uploads/all/ifFMX9KXo5KpW9REUgJvkC7kTng3J33VsCDbIDVc.png', '9', '497042', 'png', 'image', NULL, '2025-09-10 02:03:28', '2025-09-10 02:03:28', NULL),
('115', '549a2d06-b2b1-49b4-89e0-4f330a34459b.__CR0,0,970,600_PT0_SX970_V1___', 'uploads/all/bv5lWiD2wyjhl5PJluRQzyFTwJsHD2covw8ce6kl.jpeg', '9', '143953', 'jpeg', 'image', NULL, '2025-09-10 02:03:29', '2025-09-10 02:03:29', NULL),
('116', '51txAetTHfL._UF1000,1000_QL80_', 'uploads/all/KyTSq5ENPsAbLbetBR1eWX1ZFuTb2RRZFJ3d5KQN.jpg', '9', '59655', 'jpg', 'image', NULL, '2025-09-10 02:24:30', '2025-09-10 02:24:30', NULL),
('117', '549a2d06-b2b1-49b4-89e0-4f330a34459b.__CR0,0,970,600_PT0_SX970_V1___', 'uploads/all/JGObyzw5108WVEomYMnWv2PuUA6NEoCe8RgRxlaP.jpeg', '9', '148078', 'jpeg', 'image', NULL, '2025-09-10 02:24:34', '2025-09-10 02:24:34', NULL),
('118', '01028-720x720', 'uploads/all/PM584AlMlOYvBhchBXPc3INGwLe3PCIEabuwH7xn.png', '9', '498920', 'png', 'image', NULL, '2025-09-10 02:24:34', '2025-09-10 02:24:34', NULL),
('119', 'ChatGPT Image Sep 16, 2025, 09_07_59 AM', 'uploads/all/NgskKbfLiRicC25PCArLRypqR0oeQJsxwsgrQtyo.png', '9', '489', 'png', 'image', NULL, '2025-09-16 10:01:46', '2025-09-16 10:01:46', NULL),
('120', 'ChatGPT Image Sep 16, 2025, 02_55_47 AM', 'uploads/all/85Cfeaex1vENponea4qsD5CqXRynPVje29HjCRUc.png', '9', '2045118', 'png', 'image', NULL, '2025-09-16 10:01:56', '2025-09-16 10:01:56', NULL),
('121', 'ChatGPT Image Sep 16, 2025, 02_59_44 AM', 'uploads/all/7VA8nH03UfDtVHk6ZxPtFxZtX72wvmXdTBxU1VOp.png', '9', '2641881', 'png', 'image', NULL, '2025-09-16 10:01:59', '2025-09-16 10:01:59', NULL),
('122', 'ChatGPT Image Sep 16, 2025, 03_16_03 AM', 'uploads/all/UKA0KkUqQyR0rYjMagcrtwtcUiM1riscM4xgPVVm.png', '9', '2766975', 'png', 'image', NULL, '2025-09-16 10:02:00', '2025-09-16 10:02:00', NULL),
('123', 'ChatGPT Image Sep 16, 2025, 10_17_01 AM', 'uploads/all/wYSjrsfW5Xmyn3eja1oNb53TY0zGfbxhBcfhmx2G.png', '9', '2601103', 'png', 'image', NULL, '2025-09-16 10:32:42', '2025-09-16 10:32:42', NULL),
('124', 'Hikvision-Logo', 'uploads/all/eDtxHGozSvTWEwvYGrHOfeK62GXOtFXUSU6axcPU.png', '9', '61656', 'png', 'image', NULL, '2025-09-22 12:37:14', '2025-09-22 12:37:14', NULL),
('125', 'IMG_20250922_115328', 'uploads/all/UsBLkm5bE9DUpYO3uGIRHMcJz7D80O3mtiTwkEd7.jpg', '9', '0', 'jpg', 'image', NULL, '2025-09-22 12:49:53', '2025-09-22 12:49:53', NULL),
('126', 'IMG_20250922_115355', 'uploads/all/Za12BvFmq5cWRPh3HYccsGGKckRnxNM601TCijgP.jpg', '9', '0', 'jpg', 'image', NULL, '2025-09-22 12:49:53', '2025-09-22 12:49:53', NULL),
('127', 'IMG_20250922_115444', 'uploads/all/ocgmqwc7yurxNbuSroidEUy3Age2UftJe0grnM85.jpg', '9', '0', 'jpg', 'image', NULL, '2025-09-22 12:49:53', '2025-09-22 12:49:53', NULL),
('128', 'IMG_20250922_115549', 'uploads/all/0blcYEfQXk0sQem2deaFAGH1T7Sbn1nr8fKewYgq.jpg', '9', '169485', 'jpg', 'image', NULL, '2025-09-22 12:50:10', '2025-09-22 12:50:10', NULL),
('129', 'IMG_20250922_115556', 'uploads/all/UbV6vatr1mgIWmRdgqSQV9ywxPCFfhWFLOQ71fFU.jpg', '9', '178022', 'jpg', 'image', NULL, '2025-09-22 12:50:13', '2025-09-22 12:50:13', NULL),
('130', 'IMG_20250922_121251', 'uploads/all/toZVuvHPTHMr5IVAXqhxU8gBVw1ijyIF489nlnHe.jpg', '9', '165456', 'jpg', 'image', NULL, '2025-09-22 12:50:14', '2025-09-22 12:50:14', NULL),
('131', 'IMG_20250922_120118', 'uploads/all/GigSIZNfLQNYqBoutFuOrUMCP3hx7JXpL1ZgX9io.jpg', '9', '212577', 'jpg', 'image', NULL, '2025-09-22 12:50:15', '2025-09-22 12:50:15', NULL),
('132', 'IMG_20250922_121300', 'uploads/all/bspQjAdRT7WB9IJ6Ebwkuh8au8kfKbaTrg44G7Yh.jpg', '9', '174603', 'jpg', 'image', NULL, '2025-09-22 12:50:15', '2025-09-22 12:50:15', NULL),
('133', 'IMG_20250922_121243', 'uploads/all/fhj3aRSb2oOoq9DxBkjqptBgmsn6Rr6wxu5ILXhr.jpg', '9', '173923', 'jpg', 'image', NULL, '2025-09-22 12:50:15', '2025-09-22 12:50:15', NULL),
('134', 'IMG_20250922_121010', 'uploads/all/ZiVEp0L3mpLzR7FkYDbmu1TZv1Fa320aJ7PPhiwQ.jpg', '9', '183770', 'jpg', 'image', NULL, '2025-09-22 12:50:16', '2025-09-22 12:50:16', NULL),
('135', 'IMG_20250922_120227', 'uploads/all/MxOKChfcaLjteLHSQi0rVyjisLfoOBPMsX8fFD6k.jpg', '9', '188970', 'jpg', 'image', NULL, '2025-09-22 12:50:16', '2025-09-22 12:50:16', NULL),
('136', 'IMG_20250922_121015', 'uploads/all/envRDAtnLqfSS1O1AUO9tNTFsR4AOj9rUgUz2SLt.jpg', '9', '194878', 'jpg', 'image', NULL, '2025-09-22 12:50:17', '2025-09-22 12:50:17', NULL),
('137', 'IMG_20250922_121037', 'uploads/all/IIySpDiOONouDuMvBoZpklIgGVfx094sIHtxXXMK.jpg', '9', '194601', 'jpg', 'image', NULL, '2025-09-22 12:50:17', '2025-09-22 12:50:17', NULL),
('138', 'IMG_20250922_120720', 'uploads/all/VAu8pTFWoExd2qmbrF4ZZDgsDYiBXYOe6kbXWnGy.jpg', '9', '204304', 'jpg', 'image', NULL, '2025-09-22 12:50:17', '2025-09-22 12:50:17', NULL),
('139', 'IMG_20250922_120922', 'uploads/all/rSiDyewJ6FsygYSxBvBl10cPg1mQmcGzegGBJgRU.jpg', '9', '208984', 'jpg', 'image', NULL, '2025-09-22 12:50:17', '2025-09-22 12:50:17', NULL),
('140', 'IMG_20250922_121117', 'uploads/all/UQr3goMBfzpZPB1IIv5aKI1vpeopDBVA4GWumPzP.jpg', '9', '208601', 'jpg', 'image', NULL, '2025-09-22 12:50:18', '2025-09-22 12:50:18', NULL),
('141', 'IMG_20250922_121114', 'uploads/all/g2EV1bcxA0xyzrA2Ngm5784klIyZJC7TDliQXRjM.jpg', '9', '202954', 'jpg', 'image', NULL, '2025-09-22 12:50:18', '2025-09-22 12:50:18', NULL),
('142', 'IMG_20250922_120927', 'uploads/all/wKmwJHKIyBm8hwU0KnY4NaJp6HbXSP9XnQ1EK0fu.jpg', '9', '207793', 'jpg', 'image', NULL, '2025-09-22 12:50:18', '2025-09-22 12:50:18', NULL),
('143', 'IMG_20250922_121426', 'uploads/all/t9O0DjCbmhscCZdX9s5hspD9fPDErb8vL5DwEGtI.jpg', '9', '226096', 'jpg', 'image', NULL, '2025-09-22 12:50:19', '2025-09-22 12:50:19', NULL),
('144', 'IMG_20250922_121326', 'uploads/all/oVy7pXgYeXPBArrMBYpNwa5FsTPCS0BnuSThfzjI.jpg', '9', '247765', 'jpg', 'image', NULL, '2025-09-22 12:50:20', '2025-09-22 12:50:20', NULL),
('145', 'IMG_20250922_121446', 'uploads/all/TzO1i5HJi7fU2KWvHOSJsg8bS5Qv4PNUaCJiOGCQ.jpg', '9', '249341', 'jpg', 'image', NULL, '2025-09-22 12:50:20', '2025-09-22 12:50:20', NULL),
('146', 'IMG_20250922_121632', 'uploads/all/JkTZwC92wtgAyrFJNSzKQuA0ETNxaIQN7pkMKezU.jpg', '9', '246344', 'jpg', 'image', NULL, '2025-09-22 12:50:20', '2025-09-22 12:50:20', NULL),
('147', 'IMG_20250922_120651', 'uploads/all/fKg1kqWxgNYFtCdLXENjrdCooHAbZ0UPceWhMeOg.jpg', '9', '279959', 'jpg', 'image', NULL, '2025-09-22 12:50:21', '2025-09-22 12:50:21', NULL),
('148', 'IMG_20250922_121331', 'uploads/all/159IKfXlUKFrmKmOMlYBPG4OS37yTbBJGswtyyL9.jpg', '9', '261195', 'jpg', 'image', NULL, '2025-09-22 12:50:22', '2025-09-22 12:50:22', NULL),
('149', 'IMG_20250922_115803', 'uploads/all/AUF06SXIndWtP2ACOAMnZUxFKSk3KKJG5J80ssyD.jpg', '9', '217404', 'jpg', 'image', NULL, '2025-09-22 12:50:22', '2025-09-22 12:50:22', NULL),
('150', 'IMG_20250922_120903', 'uploads/all/7t309tHrwg2lGKDKDmRf7GviSQWFWKfOfkfZD8wM.jpg', '9', '308673', 'jpg', 'image', NULL, '2025-09-22 12:50:22', '2025-09-22 12:50:22', NULL),
('151', 'IMG_20250922_121625', 'uploads/all/xzjaPSmGnM2Pc0ZpjAfRRU3wndEtpgI7YkVFCMeI.jpg', '9', '297042', 'jpg', 'image', NULL, '2025-09-22 12:50:23', '2025-09-22 12:50:23', NULL),
('152', 'IMG_20250922_121542', 'uploads/all/E2utmOQa66WZaveoK5kRTSqFwEZRCsYOqaRp2rdg.jpg', '9', '293417', 'jpg', 'image', NULL, '2025-09-22 12:50:23', '2025-09-22 12:50:23', NULL),
('153', 'IMG_20250922_120247', 'uploads/all/hM4bD7rC7nVlgmO5W3RiVQh5l3VD1EHMOFx97bCN.jpg', '9', '386575', 'jpg', 'image', NULL, '2025-09-22 12:50:26', '2025-09-22 12:50:26', NULL),
('154', 'IMG_20250922_115857', 'uploads/all/DCFRr8ztMiLL20P50wU6hmeRxu7ZJDGKqM1NTGc5.jpg', '9', '146970', 'jpg', 'image', NULL, '2025-09-22 12:50:32', '2025-09-22 12:50:32', NULL),
('155', 'IMG_20250922_115724', 'uploads/all/88JGEX3aLpQubjdmugQ0hM7QkVdgzYUuo19QEXRF.jpg', '9', '74956', 'jpg', 'image', NULL, '2025-09-22 12:58:07', '2025-09-22 12:58:07', NULL),
('156', 'IMG_20250922_115721', 'uploads/all/09PqLCVML0qHZKx7XyH6YIfN2kLzDHf9XOaTQMem.jpg', '9', '75444', 'jpg', 'image', NULL, '2025-09-22 12:58:07', '2025-09-22 12:58:07', NULL),
('157', 'IMG_20250922_120426', 'uploads/all/DjuKsaK7t3mCABJSxMkuYHQp1l6iZDxmBJAD9ZOL.jpg', '9', '129483', 'jpg', 'image', NULL, '2025-09-22 13:14:23', '2025-09-22 13:14:23', NULL),
('158', 'IMG_20250922_120351', 'uploads/all/sNdtsOfbC1O055rEiErMLa6q3otrku6mBjTYx9b6.jpg', '9', '200171', 'jpg', 'image', NULL, '2025-09-22 13:14:23', '2025-09-22 13:14:23', NULL),
('159', 'IMG_20250922_120355', 'uploads/all/BZCuUsYnqh0vLsDHYwLJa9qM9QCgapuQNYR7knXK.jpg', '9', '76815', 'jpg', 'image', NULL, '2025-09-22 13:14:24', '2025-09-22 13:14:24', NULL),
('160', 'ChatGPT Image Nov 9, 2025, 01_20_49 PM', 'uploads/all/yIcuB9eKBBCER7Df7qyagzzpG6HOnAw9SooBvmlG.png', '9', '1937068', 'png', 'image', NULL, '2025-11-09 13:31:20', '2025-11-09 13:31:20', NULL),
('161', 'ChatGPT Image Nov 9, 2025, 01_18_03 PM', 'uploads/all/bAcmZ78GuenPDy3l2HwES88h7exA3HJIkHBnWkD7.png', '9', '2008315', 'png', 'image', NULL, '2025-11-09 13:31:22', '2025-11-09 13:31:22', NULL),
('162', 'ChatGPT Image Nov 9, 2025, 01_11_16 PM', 'uploads/all/cFG1Y55mVQa9yJa0QQv6ChJTMucyn6PsmiIDhqv2.png', '9', '1924972', 'png', 'image', NULL, '2025-11-09 13:31:22', '2025-11-09 13:31:22', NULL),
('163', 'ChatGPT Image Nov 9, 2025, 01_15_25 PM', 'uploads/all/LXdRyFeprXuFx1AN4TLCFFP8RDaSommWGSMQysjc.png', '9', '2031961', 'png', 'image', NULL, '2025-11-09 13:31:23', '2025-11-09 13:31:23', NULL),
('164', 'ChatGPT Image Nov 9, 2025, 01_11_16 PM', 'uploads/all/UBDrF6wukU26TDOruFPBSjbPgugfMV2kyatHmtfX.png', '9', '1924972', 'png', 'image', NULL, '2025-11-09 13:31:40', '2025-11-09 13:31:40', NULL),
('165', 'Hailuo_Image_A realistic studio photograph _445238802729963526', 'uploads/all/AziSjnmW0IpYxPfN3qokXxR4bn6slWao5xbGT3IL.png', '9', '865699', 'png', 'image', NULL, '2025-11-13 10:21:39', '2025-11-13 10:21:39', NULL),
('166', 'Hailuo_Image_A realistic studio photograph _445241544395476999', 'uploads/all/vGM2cvYaeanbQxnXHu4xlejvS2r4fsqokq39f8im.png', '9', '1029489', 'png', 'image', NULL, '2025-11-13 10:53:27', '2025-11-13 10:53:27', NULL),
('167', 'Hailuo_Image_CAN YOU MAKE A IMAGE FOR WEBSI_445242595097980936', 'uploads/all/dwmwoAR1sXeHw0t9ntgiwhhk223HuHOOdups9N7w.png', '9', '1237890', 'png', 'image', NULL, '2025-11-13 10:53:28', '2025-11-13 10:53:28', NULL),
('168', 'Hailuo_Image_CAN YOU MAKE A IMAGE FOR WEBSI_445242092364525568', 'uploads/all/ecYtuw7q1q1ZvzVsc2bmxspmO4BbxbSGzjviMi0S.png', '9', '1655631', 'png', 'image', NULL, '2025-11-13 10:53:29', '2025-11-13 10:53:29', NULL),
('169', 'UX44jHt6pBwTSJ9I7lJyjkPSvIqAIIthiGmqPpnY', 'uploads/all/4g5tmaxLZsN8TbC5E7XWRUux1MrOakcwkEQU2XYV.png', '9', '14339', 'png', 'image', NULL, '2025-11-18 12:50:08', '2025-11-18 15:51:50', '2025-11-18 15:51:50'),
('170', 'UX44jHt6pBwTSJ9I7lJyjkPSvIqAIIthiGmqPpnY', 'uploads/all/bjCfU741Cv2O7KlQpiegecc25bzNEULuJsD3UMJU.png', '9', '14339', 'png', 'image', NULL, '2025-11-18 12:51:05', '2025-11-18 15:50:51', '2025-11-18 15:50:51'),
('171', 'GXuEnYqrMXYtTkFdEFPnJDs9qy83TA47ymlKDVCH', 'uploads/all/pMT3C69JBbn1ZTo0B489cb6apqUsnAREZ11mpDAE.png', '9', '23186', 'png', 'image', NULL, '2025-11-18 13:03:22', '2025-11-18 15:51:40', '2025-11-18 15:51:40'),
('172', 'GXuEnYqrMXYtTkFdEFPnJDs9qy83TA47ymlKDVCH', 'uploads/all/EhNlhbKj4LQETY9O6jQikYgrNVctCSx4QLfaCy2R.png', '9', '23186', 'png', 'image', NULL, '2025-11-18 13:04:03', '2025-11-18 15:51:27', '2025-11-18 15:51:27'),
('173', 'new', 'uploads/all/1hFG5QZZAKcmmkn06uFc67owAtr50K3f909RtJOD.png', '9', '23186', 'png', 'image', NULL, '2025-11-18 13:05:55', '2025-11-18 15:51:16', '2025-11-18 15:51:16'),
('174', 'new', 'uploads/all/C5IjZab960iG2nmE4D235on8Cf1KpLPfNF9KlLGO.png', '9', '23186', 'png', 'image', NULL, '2025-11-18 13:10:31', '2025-11-18 15:51:06', '2025-11-18 15:51:06'),
('175', 'components', 'uploads/all/QNCBOdFWSoeUziIK7RIONjzVmZvC2kiEfMovOYgs.png', '9', '18533', 'png', 'image', NULL, '2025-11-18 16:03:11', '2025-11-18 16:07:12', '2025-11-18 16:07:12'),
('176', 'components', 'uploads/all/ITvEg70Ds3I4oEB4M4Hs2LNf1lau60NQBnnKinyB.png', '9', '18533', 'png', 'image', NULL, '2025-11-18 16:07:27', '2025-11-18 16:08:33', '2025-11-18 16:08:33'),
('177', 'components', 'uploads/all/HbXbqgkVNNibLfPrKF2mwIzIP3cCzWNxuU6lyjm5.png', '9', '13151', 'png', 'image', NULL, '2025-11-18 16:10:45', '2025-11-18 16:10:45', NULL),
('178', 'battery', 'uploads/all/jifJ6GJJs9jTEQkIsObvKGmO4yfSqerC77d3ovAW.png', '9', '15401', 'png', 'image', NULL, '2025-11-18 16:15:15', '2025-11-18 16:15:15', NULL),
('179', 'cctv-camera', 'uploads/all/3acwWln3pEJoxOxN9EdBv6d2HlsBXqnredJiXITf.png', '9', '22495', 'png', 'image', NULL, '2025-11-18 16:18:21', '2025-11-18 16:18:21', NULL),
('180', 'computer', 'uploads/all/HzYHbXBDbAm4TFauUYjacbJGkxHXQ3AIkV5JWRvv.png', '9', '8525', 'png', 'image', NULL, '2025-11-18 16:24:33', '2025-11-18 16:24:33', NULL),
('181', 'spare', 'uploads/all/g3FlVvBY3rs4KACmNGQK3CyBXlM7x0eg8X6adOrq.png', '9', '20372', 'png', 'image', NULL, '2025-11-18 16:28:07', '2025-11-18 16:28:07', NULL),
('182', 'motor', 'uploads/all/OdESP5eWyQbjyVVOX6powUWVCuI4UmiMJLJBjSpI.png', '9', '14243', 'png', 'image', NULL, '2025-11-18 16:32:40', '2025-11-18 16:32:40', NULL),
('183', 'cog', 'uploads/all/mGrGaq97nfsAQYdN10jG8HefzXkTkZ6FDO5zRHFt.png', '9', '36609', 'png', 'image', NULL, '2025-11-18 16:32:40', '2025-11-18 16:32:40', NULL),
('184', 'regisrter', 'uploads/all/13725JX9bkZHOf2fzPjRdqHRJ9pY912m0uDAcKab.png', '9', '19050', 'png', 'image', NULL, '2025-11-19 11:17:03', '2025-11-19 12:16:27', '2025-11-19 12:16:27'),
('185', 'Untitled-1', 'uploads/all/P7Dofkz8EgewT7HraudLUG97pCDU1RP5E0UQj4x4.jpg', '9', '14945', 'jpg', 'image', NULL, '2025-11-19 11:29:32', '2025-11-19 11:29:32', NULL),
('186', 'cc06feb1-bab8-4063-8c7e-6e9d460e06b6', 'uploads/all/v8csPhxYjsMAuUrGF8ws78JL5h1zLZ8nHwfb7BYV.png', '9', '270334', 'png', 'image', NULL, '2025-11-19 11:45:26', '2025-11-19 12:16:20', '2025-11-19 12:16:20'),
('187', 'Untitled-3', 'uploads/all/2e90btmfAhSs1cNVMhlelM7ujVFe9AJmnncXIJRu.jpg', '9', '6412', 'jpg', 'image', NULL, '2025-11-19 12:05:53', '2025-11-19 12:16:13', '2025-11-19 12:16:13'),
('188', 'techwave_resized_58x60', 'uploads/all/pJVgTh3eB6QWXyE49cMptiXMFK7zsLlf6ESNUkCM.png', '9', '1462', 'png', 'image', NULL, '2025-11-19 12:09:24', '2025-11-19 12:32:46', '2025-11-19 12:32:46'),
('189', 'techwave_resized_58x60', 'uploads/all/r9cWwI8WpMp4K4KCgstGVad7eLNVjzTCYStpPyTV.png', '9', '1462', 'png', 'image', NULL, '2025-11-19 12:30:18', '2025-11-19 12:30:39', '2025-11-19 12:30:39'),
('190', 'techwave_resized_58x60', 'uploads/all/VCYctD2PcRoBqDKKelEilnwNLXSoWPdpq7kvkJWi.png', '9', '1514', 'png', 'image', NULL, '2025-11-19 12:32:31', '2025-11-19 12:32:31', NULL),
('191', 'techwave_resized_58x60', 'uploads/all/30h01JmRAsnZvhC4jdmHlmXfNzKdYkZxaKBvhZAd.png', '9', '1603', 'png', 'image', NULL, '2025-11-19 12:34:44', '2025-11-19 12:36:05', '2025-11-19 12:36:05'),
('192', 'sonoff-logo-png_seeklogo-410422', 'uploads/all/Wpcv8Avhjjjtm0HglHhp6DFVK3ETi4jWa30bugPs.png', '9', '8124', 'png', 'image', NULL, '2026-05-12 15:06:26', '2026-05-12 15:06:26', NULL),
('193', 'TECHWAVE.LK', 'uploads/all/1x1WP1trvt5SvnBMGJ8JbloVBjw63X5KLdUsQ9dj.png', '9', '263354', 'png', 'image', NULL, '2026-05-12 15:24:23', '2026-05-12 15:24:23', NULL),
('194', 'WhatsApp Image 2026-06-19 at 10.26.41', 'uploads/all/VJtyEBBUiXZiwOCHH69lgph4mPeWpFvmsot6NyG9.jpeg', '9', '215731', 'jpeg', 'image', NULL, '2026-06-19 10:27:01', '2026-06-19 10:27:01', NULL),
('195', 'image', 'uploads/all/p3edWV2caLi8A6ayiLUXEIiidTx0mkgqkep5sg5M.png', '9', '9252', 'png', 'image', NULL, '2026-06-19 14:40:06', '2026-06-19 14:40:06', NULL),
('196', 'image', 'uploads/all/0ddu61h02qGNCh7YKaakCXxHtcuIXaxYt9lQJO4N.png', '9', '2171000', 'png', 'image', NULL, '2026-06-19 15:00:38', '2026-06-19 15:00:38', NULL),
('197', 'image', 'uploads/all/MMM8V8LydmRxCP9NkVjSs7TDdj3lK5TdSc7dptlk.png', '9', '1433090', 'png', 'image', NULL, '2026-06-19 15:01:07', '2026-06-19 15:01:07', NULL),
('198', 'image', 'uploads/all/aGKJ4w3GHbY7IDNLARY0DTTawwWOuPkzunorRHRn.png', '9', '1908897', 'png', 'image', NULL, '2026-06-19 15:01:27', '2026-06-19 15:01:27', NULL),
('199', 'image', 'uploads/all/KSuPPhAQiekaRwwfwlFr2LIQIrh3rGVYehC9qUBk.png', '9', '863599', 'png', 'image', NULL, '2026-06-19 15:01:43', '2026-06-19 15:01:43', NULL),
('200', 'image', 'uploads/all/GS26oAwLuwkw4fAy8KbAuNJtTz1TFR8BMutYGf50.png', '9', '1779301', 'png', 'image', NULL, '2026-06-19 15:02:01', '2026-06-19 15:02:01', NULL),
('201', 'TECHWAVE.LK (1)', 'uploads/all/xvUYE5Xb3cyLJGcU1OBUYOg10gOwrWvSmcRpEean.png', '9', '1108372', 'png', 'image', NULL, '2026-06-19 16:13:45', '2026-06-19 16:13:45', NULL),
('202', 'image', 'uploads/all/TrNnxynjdcyBaoWKqFh8opTFOF9cBx4ZSLscRWjL.png', '9', '1161035', 'png', 'image', NULL, '2026-06-19 16:42:07', '2026-06-19 16:42:07', NULL),
('203', 'image', 'uploads/all/jnt7E44YWmpXKttlCSZ3fBihmgzB6XPBwTL3Bu0X.png', '9', '1387200', 'png', 'image', NULL, '2026-06-19 16:42:31', '2026-06-19 16:42:31', NULL),
('204', 'image', 'uploads/all/m1ZDEdaKr85WIq5vcJ5ynmt3opgf0ntj938qQg26.png', '9', '1288592', 'png', 'image', NULL, '2026-06-19 16:42:59', '2026-06-19 16:42:59', NULL),
('205', 'image', 'uploads/all/U5Vwkrl6R71S2Lrbq0oHFABGR7To0YfFkU0qmytz.png', '9', '1161035', 'png', 'image', NULL, '2026-06-19 16:43:08', '2026-06-19 16:43:08', NULL),
('206', 'image', 'uploads/all/6uliJk2T1bfQUUnaIZbprBkDW8fYLOHOuiabNVse.png', '9', '1216171', 'png', 'image', NULL, '2026-06-19 16:43:16', '2026-06-19 16:43:16', NULL),
('207', 'ChatGPT Image Jun 22, 2026, 09_41_59 AM', 'uploads/all/b2ehV1SxTOBOjdnYviCBl9w5FQwebRHD0TTJ6Zu6.png', '9', '891294', 'png', 'image', NULL, '2026-06-22 09:48:35', '2026-06-22 09:48:35', NULL),
('208', 'ChatGPT Image Jun 22, 2026, 09_41_36 AM', 'uploads/all/MSQllVv72n297ZU3OncHYy8iPggvFt9pulTxSGS9.png', '9', '1108763', 'png', 'image', NULL, '2026-06-22 09:48:35', '2026-06-22 09:48:35', NULL),
('209', 'ChatGPT Image Jun 22, 2026, 09_42_15 AM', 'uploads/all/DeB0BftxU7uLVdiP7tYhdlKhTJ54Lkle8z35S9we.png', '9', '1107368', 'png', 'image', NULL, '2026-06-22 09:48:36', '2026-06-22 09:48:36', NULL),
('210', 'renata-batteries-logo-vector', 'uploads/all/Zi0ncez2bal8Gpqk06kamZNDWnexmSi9fesZpgjb.png', '9', '12904', 'png', 'image', NULL, '2026-08-30 16:23:40', '2026-08-30 16:23:40', NULL),
('211', 'images', 'uploads/all/s2XIGpaLmhu63FD8unI0uobSiJcjCNMredwcMsve.png', '9', '15193', 'png', 'image', NULL, '2026-08-30 16:26:48', '2026-08-30 16:26:48', NULL),
('212', 'SanDisk-Logo', 'uploads/all/TtyuQZO0NkCWRSTNKoLtfGs0I0l64Da5E8EiNAXB.jpg', '9', '15497', 'jpg', 'image', NULL, '2026-08-30 16:43:30', '2026-08-30 16:43:30', NULL);

-- ----------------------------------------
-- Table structure for `user_coupons`
-- ----------------------------------------

DROP TABLE IF EXISTS `user_coupons`;
CREATE TABLE `user_coupons` (
  `user_id` int(11) NOT NULL,
  `coupon_id` int(11) NOT NULL,
  `coupon_code` varchar(255) NOT NULL,
  `min_buy` double(20,2) NOT NULL,
  `validation_days` int(11) NOT NULL,
  `discount` double(20,2) NOT NULL,
  `discount_type` varchar(20) NOT NULL,
  `expiry_date` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `user_coupons`
-- ----------------------------------------

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

DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
  `id` int(9) unsigned NOT NULL AUTO_INCREMENT,
  `referred_by` int(11) DEFAULT NULL,
  `provider` varchar(255) DEFAULT NULL,
  `provider_id` varchar(50) DEFAULT NULL,
  `refresh_token` text DEFAULT NULL,
  `access_token` longtext DEFAULT NULL,
  `user_type` varchar(20) NOT NULL DEFAULT 'customer',
  `name` varchar(191) NOT NULL,
  `email` varchar(191) DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `verification_code` text DEFAULT NULL,
  `new_email_verificiation_code` text DEFAULT NULL,
  `password` varchar(191) DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `device_token` varchar(255) DEFAULT NULL,
  `avatar` varchar(256) DEFAULT NULL,
  `avatar_original` varchar(256) DEFAULT NULL,
  `address` varchar(300) DEFAULT NULL,
  `country` varchar(30) DEFAULT NULL,
  `state` varchar(30) DEFAULT NULL,
  `city` varchar(30) DEFAULT NULL,
  `postal_code` varchar(20) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `balance` double(20,2) NOT NULL DEFAULT 0.00,
  `banned` tinyint(4) NOT NULL DEFAULT 0,
  `referral_code` varchar(255) DEFAULT NULL,
  `customer_package_id` int(11) DEFAULT NULL,
  `remaining_uploads` int(11) DEFAULT 0,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `users`
-- ----------------------------------------

INSERT INTO `users` (`id`, `referred_by`, `provider`, `provider_id`, `refresh_token`, `access_token`, `user_type`, `name`, `email`, `email_verified_at`, `verification_code`, `new_email_verificiation_code`, `password`, `remember_token`, `device_token`, `avatar`, `avatar_original`, `address`, `country`, `state`, `city`, `postal_code`, `phone`, `balance`, `banned`, `referral_code`, `customer_package_id`, `remaining_uploads`, `created_at`, `updated_at`) VALUES
('8', NULL, NULL, NULL, NULL, NULL, 'customer', 'Mr. Customer', 'customer@example.com', '2018-12-11 23:30:00', NULL, NULL, '$2y$10$eUKRlkmm2TAug75cfGQ4i.WoUbcJ2uVPqUlVkox.cv4CCyGEIMQEm', '9ndcz5o7xgnuxctJIbvUQcP41QKmgnWCc7JDSnWdHOvipOP2AijpamCNafEe', NULL, 'https://lh3.googleusercontent.com/-7OnRtLyua5Q/AAAAAAAAAAI/AAAAAAAADRk/VqWKMl4f8CI/photo.jpg?sz=50', NULL, 'Demo address', 'US', NULL, 'Demo city', '1234', NULL, '0.00', '0', '8zJTyXTlTT', NULL, NULL, '2018-10-07 10:12:57', '2020-03-03 09:56:11'),
('9', NULL, NULL, NULL, NULL, NULL, 'admin', 'addsolutions', 'addpacksbusiness@gmail.com', '2024-11-26 06:11:15', NULL, NULL, '$2y$10$ZG/saE7DtQNlqQ5o9nyq7uanupDhhgYFXLus9CqoejhTKy1GzVoy2', 'ivcTMTNwrSiWxpKgntHbibEbSasL7JOf0UhqdXNHyKB3vKKqH5cJBcp3LnpE', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2024-11-26 06:33:15', '2024-11-26 06:33:15'),
('14', NULL, NULL, NULL, NULL, NULL, 'customer', 'Sam', 'is.samaka06@gmail.com', '2025-08-14 08:08:12', NULL, NULL, '$2y$10$7qA6NCI6xOVNH7eW3elEJ.3/c1MdcjR5/BRB7ogbIVNtAKrptdjRO', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-08-14 08:30:12', '2025-08-14 08:30:12'),
('15', NULL, NULL, NULL, NULL, NULL, 'seller', 'grettasonedge', 'viantesroirieab@web.de', '2025-09-01 11:09:08', NULL, NULL, '$2y$10$kfu.Df34RRZ3xZSb4neS3.pHb0v3hvu4B99VF76mgf8iQTFV7ki1G', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-09-01 11:10:08', '2025-09-01 11:10:08'),
('16', NULL, NULL, NULL, NULL, NULL, 'customer', 'adminexp', 'adminexp@gmail.com', '2025-09-30 17:09:59', NULL, NULL, '$2y$10$zaKzmSLcVQXFkKTm5etsMuYrwyGWM7ea6/coXmJsDpw.BYkzv0RCC', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-09-30 17:27:59', '2025-09-30 17:27:59'),
('17', NULL, NULL, NULL, NULL, NULL, 'seller', 'pugiwjmia', 'hardbadrustmark1983@op.pl', '2025-10-09 14:10:51', NULL, NULL, '$2y$10$lG.pJjPeVLikryS1Qo/xiebSGna5QHDrEmyNZ57L9LgugtqXGIiRa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-10-09 14:43:51', '2025-10-09 14:43:51'),
('18', NULL, NULL, NULL, NULL, NULL, 'seller', 'desporteeieza7', 'loraxzrher@gmx.com', '2025-10-12 20:10:21', NULL, NULL, '$2y$10$Y2CIGxNrBMV0Qn6kiGm4t.jhpBSBG55hfHPUXE9ODXmWYlXy9bHD.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-10-12 20:30:21', '2025-10-12 20:30:21'),
('19', NULL, NULL, NULL, NULL, NULL, 'customer', 'Sithum Vitharana', 'ssw6421@gmail.com', '2025-10-15 15:10:04', NULL, NULL, '$2y$10$vZxgLeCkIchB28n0yDOTy.rstZmmhJeIB13rHpqMNnshjfTr44Fkm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-10-15 15:46:03', '2025-10-15 15:46:04'),
('20', NULL, NULL, NULL, NULL, NULL, 'seller', 'mrsticky', 'leilani.bashore@mail.com', '2025-10-16 19:10:00', NULL, NULL, '$2y$10$PUjmc93i1af59LY5tDqMEOP0yTRfAKdcGsCm2ore28b7Gx4z1k0Yu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-10-16 19:23:00', '2025-10-16 19:23:00'),
('21', NULL, NULL, NULL, NULL, NULL, 'seller', '16immenseballs', 'paijukotopreskg@web.de', '2025-10-16 20:10:13', NULL, NULL, '$2y$10$I9MQFatXcLbsO.3N6npmsuOJRXpAu1ngrrqMvdDJS2K1CYgmGNxLm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-10-16 20:20:13', '2025-10-16 20:20:13'),
('22', NULL, NULL, NULL, NULL, NULL, 'customer', 'Amara Kumari', 'addsolutions.crm@gmail.com', '2025-10-17 10:10:27', NULL, NULL, '$2y$10$u.xXPVyHHp5tK2VRbLaXNOZ5fyRlyHfvRcYgyQl/EwqmRmaBy2bWO', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-10-17 10:22:27', '2025-10-17 10:22:27'),
('23', NULL, NULL, NULL, NULL, NULL, 'seller', '2006architectwilton', 'klasondabuser9y@web.de', '2025-10-20 13:10:20', NULL, NULL, '$2y$10$zh0sRIierdfMslxlYCf1y.jA9hCPoOJAiq0D.kfQIpH8blq36roNy', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-10-20 13:06:20', '2025-10-20 13:06:20'),
('24', NULL, NULL, NULL, NULL, NULL, 'seller', 'counsellor1967', 'be_minerva@gmx.us', '2025-11-11 14:11:58', NULL, NULL, '$2y$10$zTGcrbx76v7NBT6N3cgLCepAeVJKZl26kW20OWx9oAugt3ZkCwt.O', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-11-11 14:51:58', '2025-11-11 14:51:58'),
('25', NULL, NULL, NULL, NULL, NULL, 'seller', 'princecharles1968', 'restbreakaobardsz@web.de', '2025-11-14 23:11:57', NULL, NULL, '$2y$10$Kvd/ZrbNWkymNrQ7.XGK3uO5MBwXEmjDq1shSrwvmuCxQoS/dwrRu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-11-14 23:24:57', '2025-11-14 23:24:57'),
('26', NULL, NULL, NULL, NULL, NULL, 'seller', 'xboxemulator1974', 'matoshyasirato@gazeta.pl', '2025-11-15 23:11:32', NULL, NULL, '$2y$10$xiTsPqWTdvINnKFMVxR65uFv1smgcq92uK7ZaAWO3JW55cnKDEWOq', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-11-15 23:05:32', '2025-11-15 23:05:32'),
('27', NULL, NULL, NULL, NULL, NULL, 'seller', 'missttiny', 'mariloudenaci@gazeta.pl', '2025-11-22 15:11:01', NULL, NULL, '$2y$10$GNN4XjBMyXWLD/I4/GobZeGSbUY9Z6CqDddSw3URA4HUHwf.bZU2.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-11-22 15:13:01', '2025-11-22 15:13:01'),
('28', NULL, NULL, NULL, NULL, NULL, 'seller', 'atlastvo', 'inothelfi1977@op.pl', '2025-12-07 14:12:09', NULL, NULL, '$2y$10$etoWz8BjbyZYJMrxYvy5w.yJ31CPzkPXHite96WBvp6kWJR5F/UJe', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-12-07 14:29:09', '2025-12-07 14:29:09'),
('29', NULL, NULL, NULL, NULL, NULL, 'seller', 'raspydamagingceline', 'nova_burns2003@gmx.com', '2025-12-23 03:12:53', NULL, NULL, '$2y$10$08paarnzTwjqBV4IzIpuqe3McfIqjdPxZYlxs9lZi49Enhc18n.yu', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2025-12-23 03:32:53', '2025-12-23 03:32:53'),
('30', NULL, NULL, NULL, NULL, NULL, 'seller', 'goldfishcamba', 'tinaromeza@gazeta.pl', '2026-01-05 12:01:41', NULL, NULL, '$2y$10$A1qB27QJdEFjZGyLgV.ZzuW2nvzIawVE8sBalIwNUc0/p4/ujQM2O', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-01-05 12:02:41', '2026-01-05 12:02:41'),
('31', NULL, NULL, NULL, NULL, NULL, 'seller', '2more4uw', 'morlaloti1985@op.pl', '2026-01-05 13:01:38', NULL, NULL, '$2y$10$.x6DlsCKl7YwnWqtUpgzUOzb1ZrKAtKRZ9I3TGmzMnA8R9BXNTvai', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-01-05 13:08:38', '2026-01-05 13:08:38'),
('32', NULL, NULL, NULL, NULL, NULL, 'seller', 'steviesfruit', 'fo-melony@gmx.us', '2026-02-01 15:02:26', NULL, NULL, '$2y$10$osv4pdm4JFArgsParK55U.eB5WQ2zLbTcJo1KoJW8qCzE2BZAde0C', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-02-01 15:02:26', '2026-02-01 15:02:26'),
('33', NULL, NULL, NULL, NULL, NULL, 'seller', '4grotatingproxies687', 'emil.farmar@gawab.com', '2026-02-01 20:02:00', NULL, NULL, '$2y$10$a2XVutehF9LIHtCCQbRpaeABLbGDqzdKb5Q27JAzThcu21pbAZz1e', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-02-01 20:04:00', '2026-02-01 20:04:00'),
('34', NULL, NULL, NULL, NULL, NULL, 'seller', '60lupekincaide', 'stocdomiczromedd@gmx.com', '2026-02-02 13:02:47', NULL, NULL, '$2y$10$7THfT/qsU6N84NYTcknFQufVzihQ5svLaY0AzP7WW7NVU6EBEq1YW', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-02-02 13:00:47', '2026-02-02 13:00:47'),
('35', NULL, NULL, NULL, NULL, NULL, 'seller', 'nocountry4u40', 'hulick-leslie@gmx.us', '2026-02-16 12:02:03', NULL, NULL, '$2y$10$OgHql02HZGTZqn4qCKTyDuw1OisW5y7ZhgM6Bc9CwiLZxmmFqpWqO', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-02-16 12:28:03', '2026-02-16 12:28:03'),
('36', NULL, NULL, NULL, NULL, NULL, 'seller', 'gainfuleducatedflynn232', 'olin_gorecki236@gmx.us', '2026-02-18 22:02:52', NULL, NULL, '$2y$10$c14oGKk7v9Yvi7QbtAFRH.fzBuua6kutlz7qftSoQxlsgFGeW2Twa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-02-18 22:27:52', '2026-02-18 22:27:52'),
('37', NULL, NULL, NULL, NULL, NULL, 'seller', '4grotatingmobileproxy1959', 'jacques.hupka@email.com', '2026-03-01 14:03:05', NULL, NULL, '$2y$10$B9RzRlDG8GJwVupbjEQ2.uMJSBrbra083.jNgFVkhZl/u8TQGMFTa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-03-01 14:41:05', '2026-03-01 14:41:05'),
('38', NULL, NULL, NULL, NULL, NULL, 'seller', 'shakygreedypamala', 'tobaterhou1986@op.pl', '2026-03-09 13:03:54', NULL, NULL, '$2y$10$PRaugph4l2tYLV35qH16kODH4cesSHq1bG38Yv3t6QxK7ZMqrQ/.a', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-03-09 13:11:54', '2026-03-09 13:11:54'),
('39', NULL, NULL, NULL, NULL, NULL, 'seller', 'hamster717', 'fesaraning1983@op.pl', '2026-03-16 18:03:05', NULL, NULL, '$2y$10$OwET4iJZ0HfcCjoNZMChXu7bbLkfwKWoZpsjsw0MNYyU94Jrra1HC', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-03-16 18:59:05', '2026-03-16 18:59:05'),
('40', NULL, NULL, NULL, NULL, NULL, 'seller', 'vedapocket42', 'sherri-adeymcg@gmx.com', '2026-03-23 12:03:20', NULL, NULL, '$2y$10$FsZqNBvZkewRJHunBCoSc.kTzNQPOx9kx.tZAs6Tre4QejjXkS6UW', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-03-23 12:57:20', '2026-03-23 12:57:20'),
('41', NULL, NULL, NULL, NULL, NULL, 'customer', 'Krishantha Pathum', 'krishanthapathum9@gmail.com', '2026-04-07 18:04:49', NULL, NULL, '$2y$10$5QqyRQtF1p.T2goTw1Cl3.VxG21zWpC1BFyL7ZfeWnlMkcPsahyJa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-04-07 18:07:49', '2026-04-07 18:07:49'),
('42', NULL, NULL, NULL, NULL, NULL, 'seller', 'lizardsnumberone', 'michellekitoki@gazeta.pl', '2026-04-15 23:04:29', NULL, NULL, '$2y$10$OxpT9qDu4AqbFWDHPRX0QeCWSMunODViCjpH0Ge5szdcl0vWbL0v.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-04-15 23:55:29', '2026-04-15 23:55:29'),
('43', NULL, NULL, NULL, NULL, NULL, 'seller', 'riggles638', 'roscoe-jover2o6@gmx.com', '2026-05-04 21:05:33', NULL, NULL, '$2y$10$f/Z5ax9cvHlCpknmAm2rte3RizbsXtPt5H7qVStL3V2yoOfTmRzJO', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-05-04 21:43:33', '2026-05-04 21:43:33'),
('44', NULL, NULL, NULL, NULL, NULL, 'customer', 'lanka shikhar', 'lankashikhar@gmail.com', '2026-05-07 10:05:21', NULL, NULL, '$2y$10$sk73ne58l0TqIBe.WNJquOdvrRGq4.GFIXFZE9LyypEph/3NFJOMW', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-05-07 10:32:21', '2026-05-07 10:32:21'),
('45', NULL, NULL, NULL, NULL, NULL, 'seller', 'themonthlycreepy301', 'stabtiverdiga@gmx.com', '2026-05-25 14:05:50', NULL, NULL, '$2y$10$0hG.O8M3Z/uTMoTWtdXPMOaYY1SbX5nqe9i9HWS01mVpsYbG6rnZ.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-05-25 14:05:50', '2026-05-25 14:05:50'),
('46', NULL, NULL, NULL, NULL, NULL, 'customer', 'Susith Rodrigo', 'susith.eits@gmail.com', '2026-05-26 12:05:12', NULL, NULL, '$2y$10$k9F3Cg7xQmHXwIPenUFN7e7SrA//SWuVw9Am7hmrnZwWFpax2MPBG', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-05-26 12:30:12', '2026-05-26 12:30:12'),
('47', NULL, NULL, NULL, NULL, NULL, 'seller', 'besthistorypodcasts', 'neta.thurgood@yandex.com', '2026-05-27 11:05:20', NULL, NULL, '$2y$10$s.rf2UaBRfRKb9dETgtACu3F1wMh37XfnTzTb.OtMAAAOISUSM9he', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-05-27 11:17:20', '2026-05-27 11:17:20'),
('48', NULL, NULL, NULL, NULL, NULL, 'seller', 'indianaleaf781', 'kaeleagra97@gmx.us', '2026-06-16 16:06:34', NULL, NULL, '$2y$10$Hkxq4T175hv6ojy50k14B.azhPjzNtXmuD/VG7fsDX/b0mOfmtEAm', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-06-16 16:23:34', '2026-06-16 16:23:34'),
('49', NULL, NULL, NULL, NULL, NULL, 'customer', 'amara', 'hmamarakumaribandara@gmail.com', '2026-06-19 17:06:34', NULL, NULL, '$2y$10$7boL1N17DNfsBIaOoL.f..22W1OHPW13iRTkcI0WGo.ihtkbP6bqC', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-06-19 17:26:34', '2026-06-19 17:26:34'),
('50', NULL, NULL, NULL, NULL, NULL, 'customer', 'hasini', 'hasiekanayake2000@gmail.com', '2026-06-22 08:06:38', NULL, NULL, '$2y$10$txDJWnoObLzzuF6wjndAuOfO6jojRAxXsfCrpkJi2mYFNNWTZAxHK', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-06-22 08:54:38', '2026-06-22 08:54:38'),
('51', NULL, NULL, NULL, NULL, NULL, 'seller', 'ernesthemingwaysnews', 'reausmearenasout@gmx.com', '2026-06-23 08:06:21', NULL, NULL, '$2y$10$.d5iMUBMzflwRt8t8zKv9ejcPprzOfktLUztVEnq7zw4y4wdgkCGK', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-06-23 08:57:21', '2026-06-23 08:57:21'),
('52', NULL, NULL, NULL, NULL, NULL, 'seller', 'keenanlrfosf', 'royal-koepfer929@gmx.us', '2026-06-29 20:06:08', NULL, NULL, '$2y$10$0OE7hvXI3P5M4T0vPzOGXueDzSPPqKpWJfC221uIaVUmvicZES/.y', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-06-29 20:20:08', '2026-06-29 20:20:08'),
('53', NULL, NULL, NULL, NULL, NULL, 'customer', 'Lakshitha', 'lakshitha@addsolutions.biz', '2026-07-27 10:07:18', NULL, NULL, '$2y$10$cfLd2Uy..YFZ1TnMYL0k8uNSIAk9owmX2d4XUdK2vod2.KBGi5/Z.', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-07-27 10:40:18', '2026-07-27 10:40:18'),
('54', NULL, NULL, NULL, NULL, NULL, 'customer', 'Rachel Taylor', 'tickettm2019@gmail.com', '2026-08-29 10:08:00', NULL, NULL, '$2y$10$GsSDwjf21YuhQXL0C8RPGOtBpGkxfm9gRG1/Aqw2ZQZ8P0.NW.Zki', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.00', '0', NULL, NULL, '0', '2026-08-29 10:25:00', '2026-08-29 10:25:00');

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

DROP TABLE IF EXISTS `wallets`;
CREATE TABLE `wallets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `amount` double(20,2) NOT NULL,
  `payment_method` varchar(255) DEFAULT NULL,
  `payment_details` longtext DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `wallets`
-- ----------------------------------------

-- ----------------------------------------
-- Table structure for `warranties`
-- ----------------------------------------

DROP TABLE IF EXISTS `warranties`;
CREATE TABLE `warranties` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `text` varchar(100) NOT NULL,
  `logo` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `warranties`
-- ----------------------------------------

INSERT INTO `warranties` (`id`, `text`, `logo`, `created_at`, `updated_at`) VALUES
('1', '1 Year', NULL, '2026-06-19 14:57:42', '2026-06-19 14:57:42');

-- ----------------------------------------
-- Table structure for `warranty_translations`
-- ----------------------------------------

DROP TABLE IF EXISTS `warranty_translations`;
CREATE TABLE `warranty_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `warranty_id` bigint(20) NOT NULL,
  `text` varchar(50) NOT NULL,
  `lang` varchar(100) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `warranty_translations`
-- ----------------------------------------

INSERT INTO `warranty_translations` (`id`, `warranty_id`, `text`, `lang`, `created_at`, `updated_at`) VALUES
('1', '1', '1 Year', 'en', '2026-06-19 14:57:42', '2026-06-19 14:57:42');

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

DROP TABLE IF EXISTS `wishlists`;
CREATE TABLE `wishlists` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- ----------------------------------------
-- Data for `wishlists`
-- ----------------------------------------

INSERT INTO `wishlists` (`id`, `user_id`, `product_id`, `created_at`, `updated_at`) VALUES
('1', '14', '18', '2025-09-12 22:26:43', '2025-09-12 22:26:43'),
('2', '14', '19', '2025-09-12 22:26:52', '2025-09-12 22:26:52');

-- ----------------------------------------
-- Table structure for `zones`
-- ----------------------------------------

DROP TABLE IF EXISTS `zones`;
CREATE TABLE `zones` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `status` tinyint(1) NOT NULL COMMENT '0 = Inactive, 1 = Active',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- ----------------------------------------
-- Data for `zones`
-- ----------------------------------------

SET FOREIGN_KEY_CHECKS=1;
-- Backup completed: 2026-09-04 00:33:48
